9e4408ba209cdb6a47c1fcbcfbf99ddcaaad5d8f
[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     initEvents : function()
4549     {
4550         if (this.allow_close) {
4551             this.closeEl.on('click', this.hide, this);
4552         }
4553         Roo.EventManager.onWindowResize(this.resize, this, true);
4554         if (this.editableTitle) {
4555             this.headerEditEl =  this.headerEl.select('.form-control',true).first();
4556             this.headerEl.on('click', function() { this.toggleHeaderInput(true) } , this);
4557             this.headerEditEl.on('keyup', function(e) {
4558                     if([  e.RETURN , e.TAB , e.ESC ].indexOf(e.keyCode) > -1) {
4559                         this.toggleHeaderInput(false)
4560                     }
4561                 }, this);
4562             this.headerEditEl.on('blur', function(e) {
4563                 this.toggleHeaderInput(false)
4564             },this);
4565         }
4566
4567     },
4568   
4569
4570     resize : function()
4571     {
4572         this.maskEl.setSize(
4573             Roo.lib.Dom.getViewWidth(true),
4574             Roo.lib.Dom.getViewHeight(true)
4575         );
4576         
4577         if (this.fitwindow) {
4578             
4579            this.dialogEl.setStyle( { 'max-width' : '100%' });
4580             this.setSize(
4581                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
4582                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
4583             );
4584             return;
4585         }
4586         
4587         if(this.max_width !== 0) {
4588             
4589             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
4590             
4591             if(this.height) {
4592                 this.setSize(w, this.height);
4593                 return;
4594             }
4595             
4596             if(this.max_height) {
4597                 this.setSize(w,Math.min(
4598                     this.max_height,
4599                     Roo.lib.Dom.getViewportHeight(true) - 60
4600                 ));
4601                 
4602                 return;
4603             }
4604             
4605             if(!this.fit_content) {
4606                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
4607                 return;
4608             }
4609             
4610             this.setSize(w, Math.min(
4611                 60 +
4612                 this.headerEl.getHeight() + 
4613                 this.footerEl.getHeight() + 
4614                 this.getChildHeight(this.bodyEl.dom.childNodes),
4615                 Roo.lib.Dom.getViewportHeight(true) - 60)
4616             );
4617         }
4618         
4619     },
4620
4621     setSize : function(w,h)
4622     {
4623         if (!w && !h) {
4624             return;
4625         }
4626         
4627         this.resizeTo(w,h);
4628         // any layout/border etc.. resize..
4629         (function () {
4630             this.items.forEach( function(e) {
4631                 e.layout ? e.layout() : false;
4632
4633             });
4634         }).defer(100,this);
4635         
4636     },
4637
4638     show : function() {
4639
4640         if (!this.rendered) {
4641             this.render();
4642         }
4643         this.toggleHeaderInput(false);
4644         //this.el.setStyle('display', 'block');
4645         this.el.removeClass('hideing');
4646         this.el.dom.style.display='block';
4647         
4648         Roo.get(document.body).addClass('modal-open');
4649  
4650         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
4651             
4652             (function(){
4653                 this.el.addClass('show');
4654                 this.el.addClass('in');
4655             }).defer(50, this);
4656         }else{
4657             this.el.addClass('show');
4658             this.el.addClass('in');
4659         }
4660
4661         // not sure how we can show data in here..
4662         //if (this.tmpl) {
4663         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
4664         //}
4665
4666         Roo.get(document.body).addClass("x-body-masked");
4667         
4668         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
4669         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
4670         this.maskEl.dom.style.display = 'block';
4671         this.maskEl.addClass('show');
4672         
4673         
4674         this.resize();
4675         
4676         this.fireEvent('show', this);
4677
4678         // set zindex here - otherwise it appears to be ignored...
4679         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
4680         
4681         
4682         // this is for children that are... layout.Border 
4683         (function () {
4684             this.items.forEach( function(e) {
4685                 e.layout ? e.layout() : false;
4686
4687             });
4688         }).defer(100,this);
4689
4690     },
4691     hide : function()
4692     {
4693         if(this.fireEvent("beforehide", this) !== false){
4694             
4695             this.maskEl.removeClass('show');
4696             
4697             this.maskEl.dom.style.display = '';
4698             Roo.get(document.body).removeClass("x-body-masked");
4699             this.el.removeClass('in');
4700             this.el.select('.modal-dialog', true).first().setStyle('transform','');
4701
4702             if(this.animate){ // why
4703                 this.el.addClass('hideing');
4704                 this.el.removeClass('show');
4705                 (function(){
4706                     if (!this.el.hasClass('hideing')) {
4707                         return; // it's been shown again...
4708                     }
4709                     
4710                     this.el.dom.style.display='';
4711
4712                     Roo.get(document.body).removeClass('modal-open');
4713                     this.el.removeClass('hideing');
4714                 }).defer(150,this);
4715                 
4716             }else{
4717                 this.el.removeClass('show');
4718                 this.el.dom.style.display='';
4719                 Roo.get(document.body).removeClass('modal-open');
4720
4721             }
4722             this.fireEvent('hide', this);
4723         }
4724     },
4725     isVisible : function()
4726     {
4727         
4728         return this.el.hasClass('show') && !this.el.hasClass('hideing');
4729         
4730     },
4731
4732     addButton : function(str, cb)
4733     {
4734
4735
4736         var b = Roo.apply({}, { html : str } );
4737         b.xns = b.xns || Roo.bootstrap;
4738         b.xtype = b.xtype || 'Button';
4739         if (typeof(b.listeners) == 'undefined') {
4740             b.listeners = { click : cb.createDelegate(this)  };
4741         }
4742
4743         var btn = Roo.factory(b);
4744
4745         btn.render(this.getButtonContainer());
4746
4747         return btn;
4748
4749     },
4750
4751     setDefaultButton : function(btn)
4752     {
4753         //this.el.select('.modal-footer').()
4754     },
4755
4756     resizeTo: function(w,h)
4757     {
4758         this.dialogEl.setWidth(w);
4759         
4760         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 60; // dialog margin-bottom: 30  
4761
4762         this.bodyEl.setHeight(h - diff);
4763         
4764         this.fireEvent('resize', this);
4765     },
4766     
4767     setContentSize  : function(w, h)
4768     {
4769
4770     },
4771     onButtonClick: function(btn,e)
4772     {
4773         //Roo.log([a,b,c]);
4774         this.fireEvent('btnclick', btn.name, e);
4775     },
4776      /**
4777      * Set the title of the Dialog
4778      * @param {String} str new Title
4779      */
4780     setTitle: function(str) {
4781         this.titleEl.dom.innerHTML = str;
4782         this.title = str;
4783     },
4784     /**
4785      * Set the body of the Dialog
4786      * @param {String} str new Title
4787      */
4788     setBody: function(str) {
4789         this.bodyEl.dom.innerHTML = str;
4790     },
4791     /**
4792      * Set the body of the Dialog using the template
4793      * @param {Obj} data - apply this data to the template and replace the body contents.
4794      */
4795     applyBody: function(obj)
4796     {
4797         if (!this.tmpl) {
4798             Roo.log("Error - using apply Body without a template");
4799             //code
4800         }
4801         this.tmpl.overwrite(this.bodyEl, obj);
4802     },
4803     
4804     getChildHeight : function(child_nodes)
4805     {
4806         if(
4807             !child_nodes ||
4808             child_nodes.length == 0
4809         ) {
4810             return 0;
4811         }
4812         
4813         var child_height = 0;
4814         
4815         for(var i = 0; i < child_nodes.length; i++) {
4816             
4817             /*
4818             * for modal with tabs...
4819             if(child_nodes[i].classList.contains('roo-layout-panel')) {
4820                 
4821                 var layout_childs = child_nodes[i].childNodes;
4822                 
4823                 for(var j = 0; j < layout_childs.length; j++) {
4824                     
4825                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
4826                         
4827                         var layout_body_childs = layout_childs[j].childNodes;
4828                         
4829                         for(var k = 0; k < layout_body_childs.length; k++) {
4830                             
4831                             if(layout_body_childs[k].classList.contains('navbar')) {
4832                                 child_height += layout_body_childs[k].offsetHeight;
4833                                 continue;
4834                             }
4835                             
4836                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
4837                                 
4838                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
4839                                 
4840                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
4841                                     
4842                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
4843                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
4844                                         continue;
4845                                     }
4846                                     
4847                                 }
4848                                 
4849                             }
4850                             
4851                         }
4852                     }
4853                 }
4854                 continue;
4855             }
4856             */
4857             
4858             child_height += child_nodes[i].offsetHeight;
4859             // Roo.log(child_nodes[i].offsetHeight);
4860         }
4861         
4862         return child_height;
4863     },
4864     toggleHeaderInput : function(is_edit)
4865     {
4866         if (!this.editableTitle) {
4867             return; // not editable.
4868         }
4869         if (is_edit && this.is_header_editing) {
4870             return; // already editing..
4871         }
4872         if (is_edit) {
4873     
4874             this.headerEditEl.dom.value = this.title;
4875             this.headerEditEl.removeClass('d-none');
4876             this.headerEditEl.dom.focus();
4877             this.titleEl.addClass('d-none');
4878             
4879             this.is_header_editing = true;
4880             return
4881         }
4882         // flip back to not editing.
4883         this.title = this.headerEditEl.dom.value;
4884         this.headerEditEl.addClass('d-none');
4885         this.titleEl.removeClass('d-none');
4886         this.titleEl.dom.innerHTML = String.format('{0}', this.title);
4887         this.is_header_editing = false;
4888         this.fireEvent('titlechanged', this, this.title);
4889     
4890             
4891         
4892     }
4893
4894 });
4895
4896
4897 Roo.apply(Roo.bootstrap.Modal,  {
4898     /**
4899          * Button config that displays a single OK button
4900          * @type Object
4901          */
4902         OK :  [{
4903             name : 'ok',
4904             weight : 'primary',
4905             html : 'OK'
4906         }],
4907         /**
4908          * Button config that displays Yes and No buttons
4909          * @type Object
4910          */
4911         YESNO : [
4912             {
4913                 name  : 'no',
4914                 html : 'No'
4915             },
4916             {
4917                 name  :'yes',
4918                 weight : 'primary',
4919                 html : 'Yes'
4920             }
4921         ],
4922
4923         /**
4924          * Button config that displays OK and Cancel buttons
4925          * @type Object
4926          */
4927         OKCANCEL : [
4928             {
4929                name : 'cancel',
4930                 html : 'Cancel'
4931             },
4932             {
4933                 name : 'ok',
4934                 weight : 'primary',
4935                 html : 'OK'
4936             }
4937         ],
4938         /**
4939          * Button config that displays Yes, No and Cancel buttons
4940          * @type Object
4941          */
4942         YESNOCANCEL : [
4943             {
4944                 name : 'yes',
4945                 weight : 'primary',
4946                 html : 'Yes'
4947             },
4948             {
4949                 name : 'no',
4950                 html : 'No'
4951             },
4952             {
4953                 name : 'cancel',
4954                 html : 'Cancel'
4955             }
4956         ],
4957         
4958         zIndex : 10001
4959 });
4960
4961 /*
4962  * - LGPL
4963  *
4964  * messagebox - can be used as a replace
4965  * 
4966  */
4967 /**
4968  * @class Roo.MessageBox
4969  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
4970  * Example usage:
4971  *<pre><code>
4972 // Basic alert:
4973 Roo.Msg.alert('Status', 'Changes saved successfully.');
4974
4975 // Prompt for user data:
4976 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
4977     if (btn == 'ok'){
4978         // process text value...
4979     }
4980 });
4981
4982 // Show a dialog using config options:
4983 Roo.Msg.show({
4984    title:'Save Changes?',
4985    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
4986    buttons: Roo.Msg.YESNOCANCEL,
4987    fn: processResult,
4988    animEl: 'elId'
4989 });
4990 </code></pre>
4991  * @static
4992  */
4993 Roo.bootstrap.MessageBox = function(){
4994     var dlg, opt, mask, waitTimer;
4995     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
4996     var buttons, activeTextEl, bwidth;
4997
4998     
4999     // private
5000     var handleButton = function(button){
5001         dlg.hide();
5002         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
5003     };
5004
5005     // private
5006     var handleHide = function(){
5007         if(opt && opt.cls){
5008             dlg.el.removeClass(opt.cls);
5009         }
5010         //if(waitTimer){
5011         //    Roo.TaskMgr.stop(waitTimer);
5012         //    waitTimer = null;
5013         //}
5014     };
5015
5016     // private
5017     var updateButtons = function(b){
5018         var width = 0;
5019         if(!b){
5020             buttons["ok"].hide();
5021             buttons["cancel"].hide();
5022             buttons["yes"].hide();
5023             buttons["no"].hide();
5024             dlg.footerEl.hide();
5025             
5026             return width;
5027         }
5028         dlg.footerEl.show();
5029         for(var k in buttons){
5030             if(typeof buttons[k] != "function"){
5031                 if(b[k]){
5032                     buttons[k].show();
5033                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.bootstrap.MessageBox.buttonText[k]);
5034                     width += buttons[k].el.getWidth()+15;
5035                 }else{
5036                     buttons[k].hide();
5037                 }
5038             }
5039         }
5040         return width;
5041     };
5042
5043     // private
5044     var handleEsc = function(d, k, e){
5045         if(opt && opt.closable !== false){
5046             dlg.hide();
5047         }
5048         if(e){
5049             e.stopEvent();
5050         }
5051     };
5052
5053     return {
5054         /**
5055          * Returns a reference to the underlying {@link Roo.BasicDialog} element
5056          * @return {Roo.BasicDialog} The BasicDialog element
5057          */
5058         getDialog : function(){
5059            if(!dlg){
5060                 dlg = new Roo.bootstrap.Modal( {
5061                     //draggable: true,
5062                     //resizable:false,
5063                     //constraintoviewport:false,
5064                     //fixedcenter:true,
5065                     //collapsible : false,
5066                     //shim:true,
5067                     //modal: true,
5068                 //    width: 'auto',
5069                   //  height:100,
5070                     //buttonAlign:"center",
5071                     closeClick : function(){
5072                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
5073                             handleButton("no");
5074                         }else{
5075                             handleButton("cancel");
5076                         }
5077                     }
5078                 });
5079                 dlg.render();
5080                 dlg.on("hide", handleHide);
5081                 mask = dlg.mask;
5082                 //dlg.addKeyListener(27, handleEsc);
5083                 buttons = {};
5084                 this.buttons = buttons;
5085                 var bt = this.buttonText;
5086                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
5087                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
5088                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
5089                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
5090                 //Roo.log(buttons);
5091                 bodyEl = dlg.bodyEl.createChild({
5092
5093                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" />' +
5094                         '<textarea class="roo-mb-textarea"></textarea>' +
5095                         '<div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
5096                 });
5097                 msgEl = bodyEl.dom.firstChild;
5098                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
5099                 textboxEl.enableDisplayMode();
5100                 textboxEl.addKeyListener([10,13], function(){
5101                     if(dlg.isVisible() && opt && opt.buttons){
5102                         if(opt.buttons.ok){
5103                             handleButton("ok");
5104                         }else if(opt.buttons.yes){
5105                             handleButton("yes");
5106                         }
5107                     }
5108                 });
5109                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
5110                 textareaEl.enableDisplayMode();
5111                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
5112                 progressEl.enableDisplayMode();
5113                 
5114                 // This is supposed to be the progessElement.. but I think it's controlling the height of everything..
5115                 var pf = progressEl.dom.firstChild;
5116                 if (pf) {
5117                     pp = Roo.get(pf.firstChild);
5118                     pp.setHeight(pf.offsetHeight);
5119                 }
5120                 
5121             }
5122             return dlg;
5123         },
5124
5125         /**
5126          * Updates the message box body text
5127          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
5128          * the XHTML-compliant non-breaking space character '&amp;#160;')
5129          * @return {Roo.MessageBox} This message box
5130          */
5131         updateText : function(text)
5132         {
5133             if(!dlg.isVisible() && !opt.width){
5134                 dlg.dialogEl.setStyle({ 'max-width' : this.maxWidth});
5135                 // dlg.resizeTo(this.maxWidth, 100); // forcing the height breaks long alerts()
5136             }
5137             msgEl.innerHTML = text || '&#160;';
5138       
5139             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
5140             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
5141             var w = Math.max(
5142                     Math.min(opt.width || cw , this.maxWidth), 
5143                     Math.max(opt.minWidth || this.minWidth, bwidth)
5144             );
5145             if(opt.prompt){
5146                 activeTextEl.setWidth(w);
5147             }
5148             if(dlg.isVisible()){
5149                 dlg.fixedcenter = false;
5150             }
5151             // to big, make it scroll. = But as usual stupid IE does not support
5152             // !important..
5153             
5154             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
5155                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
5156                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
5157             } else {
5158                 bodyEl.dom.style.height = '';
5159                 bodyEl.dom.style.overflowY = '';
5160             }
5161             if (cw > w) {
5162                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
5163             } else {
5164                 bodyEl.dom.style.overflowX = '';
5165             }
5166             
5167             dlg.setContentSize(w, bodyEl.getHeight());
5168             if(dlg.isVisible()){
5169                 dlg.fixedcenter = true;
5170             }
5171             return this;
5172         },
5173
5174         /**
5175          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
5176          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
5177          * @param {Number} value Any number between 0 and 1 (e.g., .5)
5178          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
5179          * @return {Roo.MessageBox} This message box
5180          */
5181         updateProgress : function(value, text){
5182             if(text){
5183                 this.updateText(text);
5184             }
5185             
5186             if (pp) { // weird bug on my firefox - for some reason this is not defined
5187                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
5188                 pp.setHeight(Math.floor(progressEl.dom.firstChild.offsetHeight));
5189             }
5190             return this;
5191         },        
5192
5193         /**
5194          * Returns true if the message box is currently displayed
5195          * @return {Boolean} True if the message box is visible, else false
5196          */
5197         isVisible : function(){
5198             return dlg && dlg.isVisible();  
5199         },
5200
5201         /**
5202          * Hides the message box if it is displayed
5203          */
5204         hide : function(){
5205             if(this.isVisible()){
5206                 dlg.hide();
5207             }  
5208         },
5209
5210         /**
5211          * Displays a new message box, or reinitializes an existing message box, based on the config options
5212          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
5213          * The following config object properties are supported:
5214          * <pre>
5215 Property    Type             Description
5216 ----------  ---------------  ------------------------------------------------------------------------------------
5217 animEl            String/Element   An id or Element from which the message box should animate as it opens and
5218                                    closes (defaults to undefined)
5219 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
5220                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
5221 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
5222                                    progress and wait dialogs will ignore this property and always hide the
5223                                    close button as they can only be closed programmatically.
5224 cls               String           A custom CSS class to apply to the message box element
5225 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
5226                                    displayed (defaults to 75)
5227 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
5228                                    function will be btn (the name of the button that was clicked, if applicable,
5229                                    e.g. "ok"), and text (the value of the active text field, if applicable).
5230                                    Progress and wait dialogs will ignore this option since they do not respond to
5231                                    user actions and can only be closed programmatically, so any required function
5232                                    should be called by the same code after it closes the dialog.
5233 icon              String           A CSS class that provides a background image to be used as an icon for
5234                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
5235 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
5236 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
5237 modal             Boolean          False to allow user interaction with the page while the message box is
5238                                    displayed (defaults to true)
5239 msg               String           A string that will replace the existing message box body text (defaults
5240                                    to the XHTML-compliant non-breaking space character '&#160;')
5241 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
5242 progress          Boolean          True to display a progress bar (defaults to false)
5243 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
5244 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
5245 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
5246 title             String           The title text
5247 value             String           The string value to set into the active textbox element if displayed
5248 wait              Boolean          True to display a progress bar (defaults to false)
5249 width             Number           The width of the dialog in pixels
5250 </pre>
5251          *
5252          * Example usage:
5253          * <pre><code>
5254 Roo.Msg.show({
5255    title: 'Address',
5256    msg: 'Please enter your address:',
5257    width: 300,
5258    buttons: Roo.MessageBox.OKCANCEL,
5259    multiline: true,
5260    fn: saveAddress,
5261    animEl: 'addAddressBtn'
5262 });
5263 </code></pre>
5264          * @param {Object} config Configuration options
5265          * @return {Roo.MessageBox} This message box
5266          */
5267         show : function(options)
5268         {
5269             
5270             // this causes nightmares if you show one dialog after another
5271             // especially on callbacks..
5272              
5273             if(this.isVisible()){
5274                 
5275                 this.hide();
5276                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
5277                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
5278                 Roo.log("New Dialog Message:" +  options.msg )
5279                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
5280                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
5281                 
5282             }
5283             var d = this.getDialog();
5284             opt = options;
5285             d.setTitle(opt.title || "&#160;");
5286             d.closeEl.setDisplayed(opt.closable !== false);
5287             activeTextEl = textboxEl;
5288             opt.prompt = opt.prompt || (opt.multiline ? true : false);
5289             if(opt.prompt){
5290                 if(opt.multiline){
5291                     textboxEl.hide();
5292                     textareaEl.show();
5293                     textareaEl.setHeight(typeof opt.multiline == "number" ?
5294                         opt.multiline : this.defaultTextHeight);
5295                     activeTextEl = textareaEl;
5296                 }else{
5297                     textboxEl.show();
5298                     textareaEl.hide();
5299                 }
5300             }else{
5301                 textboxEl.hide();
5302                 textareaEl.hide();
5303             }
5304             progressEl.setDisplayed(opt.progress === true);
5305             if (opt.progress) {
5306                 d.animate = false; // do not animate progress, as it may not have finished animating before we close it..
5307             }
5308             this.updateProgress(0);
5309             activeTextEl.dom.value = opt.value || "";
5310             if(opt.prompt){
5311                 dlg.setDefaultButton(activeTextEl);
5312             }else{
5313                 var bs = opt.buttons;
5314                 var db = null;
5315                 if(bs && bs.ok){
5316                     db = buttons["ok"];
5317                 }else if(bs && bs.yes){
5318                     db = buttons["yes"];
5319                 }
5320                 dlg.setDefaultButton(db);
5321             }
5322             bwidth = updateButtons(opt.buttons);
5323             this.updateText(opt.msg);
5324             if(opt.cls){
5325                 d.el.addClass(opt.cls);
5326             }
5327             d.proxyDrag = opt.proxyDrag === true;
5328             d.modal = opt.modal !== false;
5329             d.mask = opt.modal !== false ? mask : false;
5330             if(!d.isVisible()){
5331                 // force it to the end of the z-index stack so it gets a cursor in FF
5332                 document.body.appendChild(dlg.el.dom);
5333                 d.animateTarget = null;
5334                 d.show(options.animEl);
5335             }
5336             return this;
5337         },
5338
5339         /**
5340          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
5341          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
5342          * and closing the message box when the process is complete.
5343          * @param {String} title The title bar text
5344          * @param {String} msg The message box body text
5345          * @return {Roo.MessageBox} This message box
5346          */
5347         progress : function(title, msg){
5348             this.show({
5349                 title : title,
5350                 msg : msg,
5351                 buttons: false,
5352                 progress:true,
5353                 closable:false,
5354                 minWidth: this.minProgressWidth,
5355                 modal : true
5356             });
5357             return this;
5358         },
5359
5360         /**
5361          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
5362          * If a callback function is passed it will be called after the user clicks the button, and the
5363          * id of the button that was clicked will be passed as the only parameter to the callback
5364          * (could also be the top-right close button).
5365          * @param {String} title The title bar text
5366          * @param {String} msg The message box body text
5367          * @param {Function} fn (optional) The callback function invoked after the message box is closed
5368          * @param {Object} scope (optional) The scope of the callback function
5369          * @return {Roo.MessageBox} This message box
5370          */
5371         alert : function(title, msg, fn, scope)
5372         {
5373             this.show({
5374                 title : title,
5375                 msg : msg,
5376                 buttons: this.OK,
5377                 fn: fn,
5378                 closable : false,
5379                 scope : scope,
5380                 modal : true
5381             });
5382             return this;
5383         },
5384
5385         /**
5386          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
5387          * interaction while waiting for a long-running process to complete that does not have defined intervals.
5388          * You are responsible for closing the message box when the process is complete.
5389          * @param {String} msg The message box body text
5390          * @param {String} title (optional) The title bar text
5391          * @return {Roo.MessageBox} This message box
5392          */
5393         wait : function(msg, title){
5394             this.show({
5395                 title : title,
5396                 msg : msg,
5397                 buttons: false,
5398                 closable:false,
5399                 progress:true,
5400                 modal:true,
5401                 width:300,
5402                 wait:true
5403             });
5404             waitTimer = Roo.TaskMgr.start({
5405                 run: function(i){
5406                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
5407                 },
5408                 interval: 1000
5409             });
5410             return this;
5411         },
5412
5413         /**
5414          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
5415          * If a callback function is passed it will be called after the user clicks either button, and the id of the
5416          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
5417          * @param {String} title The title bar text
5418          * @param {String} msg The message box body text
5419          * @param {Function} fn (optional) The callback function invoked after the message box is closed
5420          * @param {Object} scope (optional) The scope of the callback function
5421          * @return {Roo.MessageBox} This message box
5422          */
5423         confirm : function(title, msg, fn, scope){
5424             this.show({
5425                 title : title,
5426                 msg : msg,
5427                 buttons: this.YESNO,
5428                 fn: fn,
5429                 scope : scope,
5430                 modal : true
5431             });
5432             return this;
5433         },
5434
5435         /**
5436          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
5437          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
5438          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
5439          * (could also be the top-right close button) and the text that was entered will be passed as the two
5440          * parameters to the callback.
5441          * @param {String} title The title bar text
5442          * @param {String} msg The message box body text
5443          * @param {Function} fn (optional) The callback function invoked after the message box is closed
5444          * @param {Object} scope (optional) The scope of the callback function
5445          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
5446          * property, or the height in pixels to create the textbox (defaults to false / single-line)
5447          * @return {Roo.MessageBox} This message box
5448          */
5449         prompt : function(title, msg, fn, scope, multiline){
5450             this.show({
5451                 title : title,
5452                 msg : msg,
5453                 buttons: this.OKCANCEL,
5454                 fn: fn,
5455                 minWidth:250,
5456                 scope : scope,
5457                 prompt:true,
5458                 multiline: multiline,
5459                 modal : true
5460             });
5461             return this;
5462         },
5463
5464         /**
5465          * Button config that displays a single OK button
5466          * @type Object
5467          */
5468         OK : {ok:true},
5469         /**
5470          * Button config that displays Yes and No buttons
5471          * @type Object
5472          */
5473         YESNO : {yes:true, no:true},
5474         /**
5475          * Button config that displays OK and Cancel buttons
5476          * @type Object
5477          */
5478         OKCANCEL : {ok:true, cancel:true},
5479         /**
5480          * Button config that displays Yes, No and Cancel buttons
5481          * @type Object
5482          */
5483         YESNOCANCEL : {yes:true, no:true, cancel:true},
5484
5485         /**
5486          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
5487          * @type Number
5488          */
5489         defaultTextHeight : 75,
5490         /**
5491          * The maximum width in pixels of the message box (defaults to 600)
5492          * @type Number
5493          */
5494         maxWidth : 600,
5495         /**
5496          * The minimum width in pixels of the message box (defaults to 100)
5497          * @type Number
5498          */
5499         minWidth : 100,
5500         /**
5501          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
5502          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
5503          * @type Number
5504          */
5505         minProgressWidth : 250,
5506         /**
5507          * An object containing the default button text strings that can be overriden for localized language support.
5508          * Supported properties are: ok, cancel, yes and no.
5509          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
5510          * @type Object
5511          */
5512         buttonText : {
5513             ok : "OK",
5514             cancel : "Cancel",
5515             yes : "Yes",
5516             no : "No"
5517         }
5518     };
5519 }();
5520
5521 /**
5522  * Shorthand for {@link Roo.MessageBox}
5523  */
5524 Roo.MessageBox = Roo.MessageBox || Roo.bootstrap.MessageBox;
5525 Roo.Msg = Roo.Msg || Roo.MessageBox;
5526 /*
5527  * - LGPL
5528  *
5529  * navbar
5530  * 
5531  */
5532
5533 /**
5534  * @class Roo.bootstrap.nav.Bar
5535  * @extends Roo.bootstrap.Component
5536  * @abstract
5537  * Bootstrap Navbar class
5538
5539  * @constructor
5540  * Create a new Navbar
5541  * @param {Object} config The config object
5542  */
5543
5544
5545 Roo.bootstrap.nav.Bar = function(config){
5546     Roo.bootstrap.nav.Bar.superclass.constructor.call(this, config);
5547     this.addEvents({
5548         // raw events
5549         /**
5550          * @event beforetoggle
5551          * Fire before toggle the menu
5552          * @param {Roo.EventObject} e
5553          */
5554         "beforetoggle" : true
5555     });
5556 };
5557
5558 Roo.extend(Roo.bootstrap.nav.Bar, Roo.bootstrap.Component,  {
5559     
5560     
5561    
5562     // private
5563     navItems : false,
5564     loadMask : false,
5565     
5566     
5567     getAutoCreate : function(){
5568         
5569         
5570         throw { message : "nav bar is now a abstract base class - use NavSimplebar / NavHeaderbar / NavSidebar etc..."};
5571         
5572     },
5573     
5574     initEvents :function ()
5575     {
5576         //Roo.log(this.el.select('.navbar-toggle',true));
5577         this.el.select('.navbar-toggle',true).on('click', this.onToggle , this);
5578         
5579         var mark = {
5580             tag: "div",
5581             cls:"x-dlg-mask"
5582         };
5583         
5584         this.maskEl = Roo.DomHelper.append(this.el, mark, true);
5585         
5586         var size = this.el.getSize();
5587         this.maskEl.setSize(size.width, size.height);
5588         this.maskEl.enableDisplayMode("block");
5589         this.maskEl.hide();
5590         
5591         if(this.loadMask){
5592             this.maskEl.show();
5593         }
5594     },
5595     
5596     
5597     getChildContainer : function()
5598     {
5599         if (this.el && this.el.select('.collapse').getCount()) {
5600             return this.el.select('.collapse',true).first();
5601         }
5602         
5603         return this.el;
5604     },
5605     
5606     mask : function()
5607     {
5608         this.maskEl.show();
5609     },
5610     
5611     unmask : function()
5612     {
5613         this.maskEl.hide();
5614     },
5615     onToggle : function()
5616     {
5617         
5618         if(this.fireEvent('beforetoggle', this) === false){
5619             return;
5620         }
5621         var ce = this.el.select('.navbar-collapse',true).first();
5622       
5623         if (!ce.hasClass('show')) {
5624            this.expand();
5625         } else {
5626             this.collapse();
5627         }
5628         
5629         
5630     
5631     },
5632     /**
5633      * Expand the navbar pulldown 
5634      */
5635     expand : function ()
5636     {
5637        
5638         var ce = this.el.select('.navbar-collapse',true).first();
5639         if (ce.hasClass('collapsing')) {
5640             return;
5641         }
5642         ce.dom.style.height = '';
5643                // show it...
5644         ce.addClass('in'); // old...
5645         ce.removeClass('collapse');
5646         ce.addClass('show');
5647         var h = ce.getHeight();
5648         Roo.log(h);
5649         ce.removeClass('show');
5650         // at this point we should be able to see it..
5651         ce.addClass('collapsing');
5652         
5653         ce.setHeight(0); // resize it ...
5654         ce.on('transitionend', function() {
5655             //Roo.log('done transition');
5656             ce.removeClass('collapsing');
5657             ce.addClass('show');
5658             ce.removeClass('collapse');
5659
5660             ce.dom.style.height = '';
5661         }, this, { single: true} );
5662         ce.setHeight(h);
5663         ce.dom.scrollTop = 0;
5664     },
5665     /**
5666      * Collapse the navbar pulldown 
5667      */
5668     collapse : function()
5669     {
5670          var ce = this.el.select('.navbar-collapse',true).first();
5671        
5672         if (ce.hasClass('collapsing') || ce.hasClass('collapse') ) {
5673             // it's collapsed or collapsing..
5674             return;
5675         }
5676         ce.removeClass('in'); // old...
5677         ce.setHeight(ce.getHeight());
5678         ce.removeClass('show');
5679         ce.addClass('collapsing');
5680         
5681         ce.on('transitionend', function() {
5682             ce.dom.style.height = '';
5683             ce.removeClass('collapsing');
5684             ce.addClass('collapse');
5685         }, this, { single: true} );
5686         ce.setHeight(0);
5687     }
5688     
5689     
5690     
5691 });
5692
5693
5694
5695  
5696
5697  /*
5698  * - LGPL
5699  *
5700  * navbar
5701  * 
5702  */
5703
5704 /**
5705  * @class Roo.bootstrap.nav.Simplebar
5706  * @extends Roo.bootstrap.nav.Bar
5707  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container Roo.bootstrap.form.Form Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Link
5708  * Bootstrap Sidebar class
5709  *
5710  * @cfg {Boolean} inverse is inverted color
5711  * 
5712  * @cfg {String} type (nav | pills | tabs)
5713  * @cfg {Boolean} arrangement stacked | justified
5714  * @cfg {String} align (left | right) alignment
5715  * 
5716  * @cfg {Boolean} main (true|false) main nav bar? default false
5717  * @cfg {Boolean} loadMask (true|false) loadMask on the bar
5718  * 
5719  * @cfg {String} tag (header|footer|nav|div) default is nav 
5720
5721  * @cfg {String} weight (light|primary|secondary|success|danger|warning|info|dark|white) default is light.
5722  * 
5723  * 
5724  * @constructor
5725  * Create a new Sidebar
5726  * @param {Object} config The config object
5727  */
5728
5729
5730 Roo.bootstrap.nav.Simplebar = function(config){
5731     Roo.bootstrap.nav.Simplebar.superclass.constructor.call(this, config);
5732 };
5733
5734 Roo.extend(Roo.bootstrap.nav.Simplebar, Roo.bootstrap.nav.Bar,  {
5735     
5736     inverse: false,
5737     
5738     type: false,
5739     arrangement: '',
5740     align : false,
5741     
5742     weight : 'light',
5743     
5744     main : false,
5745     
5746     
5747     tag : false,
5748     
5749     
5750     getAutoCreate : function(){
5751         
5752         
5753         var cfg = {
5754             tag : this.tag || 'div',
5755             cls : 'navbar roo-navbar-simple' //navbar-expand-lg ??
5756         };
5757         if (['light','white'].indexOf(this.weight) > -1) {
5758             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
5759         }
5760         cfg.cls += ' bg-' + this.weight;
5761         
5762         if (this.inverse) {
5763             cfg.cls += ' navbar-inverse';
5764             
5765         }
5766         
5767         // i'm not actually sure these are really used - normally we add a navGroup to a navbar
5768         
5769         if (Roo.bootstrap.version == 4 && this.xtype == 'NavSimplebar') {
5770             return cfg;
5771         }
5772         
5773         
5774     
5775         
5776         cfg.cn = [
5777             {
5778                 cls: 'nav nav-' + this.xtype,
5779                 tag : 'ul'
5780             }
5781         ];
5782         
5783          
5784         this.type = this.type || 'nav';
5785         if (['tabs','pills'].indexOf(this.type) != -1) {
5786             cfg.cn[0].cls += ' nav-' + this.type
5787         
5788         
5789         } else {
5790             if (this.type!=='nav') {
5791                 Roo.log('nav type must be nav/tabs/pills')
5792             }
5793             cfg.cn[0].cls += ' navbar-nav'
5794         }
5795         
5796         
5797         
5798         
5799         if (['stacked','justified'].indexOf(this.arrangement) != -1) {
5800             cfg.cn[0].cls += ' nav-' + this.arrangement;
5801         }
5802         
5803         
5804         if (this.align === 'right') {
5805             cfg.cn[0].cls += ' navbar-right';
5806         }
5807         
5808         
5809         
5810         
5811         return cfg;
5812     
5813         
5814     }
5815     
5816     
5817     
5818 });
5819
5820
5821
5822  
5823
5824  
5825        /*
5826  * - LGPL
5827  *
5828  * navbar
5829  * navbar-fixed-top
5830  * navbar-expand-md  fixed-top 
5831  */
5832
5833 /**
5834  * @class Roo.bootstrap.nav.Headerbar
5835  * @extends Roo.bootstrap.nav.Simplebar
5836  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container Roo.bootstrap.form.Form Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Link
5837  * Bootstrap Sidebar class
5838  *
5839  * @cfg {String} brand what is brand
5840  * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
5841  * @cfg {String} brand_href href of the brand
5842  * @cfg {Boolean} srButton generate the (screen reader / mobile) sr-only button   default true
5843  * @cfg {Boolean} autohide a top nav bar header that hides on scroll.
5844  * @cfg {Boolean} desktopCenter should the header be centered on desktop using a container class
5845  * @cfg {Roo.bootstrap.Row} mobilerow - a row to display on mobile only..
5846  * 
5847  * @constructor
5848  * Create a new Sidebar
5849  * @param {Object} config The config object
5850  */
5851
5852
5853 Roo.bootstrap.nav.Headerbar = function(config){
5854     Roo.bootstrap.nav.Headerbar.superclass.constructor.call(this, config);
5855       
5856 };
5857
5858 Roo.extend(Roo.bootstrap.nav.Headerbar, Roo.bootstrap.nav.Simplebar,  {
5859     
5860     position: '',
5861     brand: '',
5862     brand_href: false,
5863     srButton : true,
5864     autohide : false,
5865     desktopCenter : false,
5866    
5867     
5868     getAutoCreate : function(){
5869         
5870         var   cfg = {
5871             tag: this.nav || 'nav',
5872             cls: 'navbar navbar-expand-md',
5873             role: 'navigation',
5874             cn: []
5875         };
5876         
5877         var cn = cfg.cn;
5878         if (this.desktopCenter) {
5879             cn.push({cls : 'container', cn : []});
5880             cn = cn[0].cn;
5881         }
5882         
5883         if(this.srButton){
5884             var btn = {
5885                 tag: 'button',
5886                 type: 'button',
5887                 cls: 'navbar-toggle navbar-toggler',
5888                 'data-toggle': 'collapse',
5889                 cn: [
5890                     {
5891                         tag: 'span',
5892                         cls: 'sr-only',
5893                         html: 'Toggle navigation'
5894                     },
5895                     {
5896                         tag: 'span',
5897                         cls: 'icon-bar navbar-toggler-icon'
5898                     },
5899                     {
5900                         tag: 'span',
5901                         cls: 'icon-bar'
5902                     },
5903                     {
5904                         tag: 'span',
5905                         cls: 'icon-bar'
5906                     }
5907                 ]
5908             };
5909             
5910             cn.push( Roo.bootstrap.version == 4 ? btn : {
5911                 tag: 'div',
5912                 cls: 'navbar-header',
5913                 cn: [
5914                     btn
5915                 ]
5916             });
5917         }
5918         
5919         cn.push({
5920             tag: 'div',
5921             cls: Roo.bootstrap.version == 4  ? 'nav flex-row roo-navbar-collapse collapse navbar-collapse' : 'collapse navbar-collapse roo-navbar-collapse',
5922             cn : []
5923         });
5924         
5925         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
5926         
5927         if (['light','white'].indexOf(this.weight) > -1) {
5928             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
5929         }
5930         cfg.cls += ' bg-' + this.weight;
5931         
5932         
5933         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
5934             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
5935             
5936             // tag can override this..
5937             
5938             cfg.tag = this.tag || (this.position  == 'fixed-bottom' ? 'footer' : 'header');
5939         }
5940         
5941         if (this.brand !== '') {
5942             var cp =  Roo.bootstrap.version == 4 ? cn : cn[0].cn;
5943             cp.unshift({ // changed from push ?? BS4 needs it at the start? - does this break or exsiting?
5944                 tag: 'a',
5945                 href: this.brand_href ? this.brand_href : '#',
5946                 cls: 'navbar-brand',
5947                 cn: [
5948                 this.brand
5949                 ]
5950             });
5951         }
5952         
5953         if(this.main){
5954             cfg.cls += ' main-nav';
5955         }
5956         
5957         
5958         return cfg;
5959
5960         
5961     },
5962     getHeaderChildContainer : function()
5963     {
5964         if (this.srButton && this.el.select('.navbar-header').getCount()) {
5965             return this.el.select('.navbar-header',true).first();
5966         }
5967         
5968         return this.getChildContainer();
5969     },
5970     
5971     getChildContainer : function()
5972     {
5973          
5974         return this.el.select('.roo-navbar-collapse',true).first();
5975          
5976         
5977     },
5978     
5979     initEvents : function()
5980     {
5981         Roo.bootstrap.nav.Headerbar.superclass.initEvents.call(this);
5982         
5983         if (this.autohide) {
5984             
5985             var prevScroll = 0;
5986             var ft = this.el;
5987             
5988             Roo.get(document).on('scroll',function(e) {
5989                 var ns = Roo.get(document).getScroll().top;
5990                 var os = prevScroll;
5991                 prevScroll = ns;
5992                 
5993                 if(ns > os){
5994                     ft.removeClass('slideDown');
5995                     ft.addClass('slideUp');
5996                     return;
5997                 }
5998                 ft.removeClass('slideUp');
5999                 ft.addClass('slideDown');
6000                  
6001               
6002           },this);
6003         }
6004     }    
6005     
6006 });
6007
6008
6009
6010  
6011
6012  /*
6013  * - LGPL
6014  *
6015  * navbar
6016  * 
6017  */
6018
6019 /**
6020  * @class Roo.bootstrap.nav.Sidebar
6021  * @extends Roo.bootstrap.nav.Bar
6022  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container Roo.bootstrap.form.Form Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Link
6023  * Bootstrap Sidebar class
6024  * 
6025  * @constructor
6026  * Create a new Sidebar
6027  * @param {Object} config The config object
6028  */
6029
6030
6031 Roo.bootstrap.nav.Sidebar = function(config){
6032     Roo.bootstrap.nav.Sidebar.superclass.constructor.call(this, config);
6033 };
6034
6035 Roo.extend(Roo.bootstrap.nav.Sidebar, Roo.bootstrap.nav.Bar,  {
6036     
6037     sidebar : true, // used by Navbar Item and NavbarGroup at present...
6038     
6039     getAutoCreate : function(){
6040         
6041         
6042         return  {
6043             tag: 'div',
6044             cls: 'sidebar sidebar-nav'
6045         };
6046     
6047         
6048     }
6049     
6050     
6051     
6052 });
6053
6054
6055
6056  
6057
6058  /*
6059  * - LGPL
6060  *
6061  * nav group
6062  * 
6063  */
6064
6065 /**
6066  * @class Roo.bootstrap.nav.Group
6067  * @extends Roo.bootstrap.Component
6068  * @children Roo.bootstrap.nav.Item
6069  * Bootstrap NavGroup class
6070  * @cfg {String} align (left|right)
6071  * @cfg {Boolean} inverse
6072  * @cfg {String} type (nav|pills|tab) default nav
6073  * @cfg {String} navId - reference Id for navbar.
6074  * @cfg {Boolean} pilltype default true (turn to off to disable active toggle)
6075  * 
6076  * @constructor
6077  * Create a new nav group
6078  * @param {Object} config The config object
6079  */
6080
6081 Roo.bootstrap.nav.Group = function(config){
6082     Roo.bootstrap.nav.Group.superclass.constructor.call(this, config);
6083     this.navItems = [];
6084    
6085     Roo.bootstrap.nav.Group.register(this);
6086      this.addEvents({
6087         /**
6088              * @event changed
6089              * Fires when the active item changes
6090              * @param {Roo.bootstrap.nav.Group} this
6091              * @param {Roo.bootstrap.Navbar.Item} selected The item selected
6092              * @param {Roo.bootstrap.Navbar.Item} prev The previously selected item 
6093          */
6094         'changed': true
6095      });
6096     
6097 };
6098
6099 Roo.extend(Roo.bootstrap.nav.Group, Roo.bootstrap.Component,  {
6100     
6101     align: '',
6102     inverse: false,
6103     form: false,
6104     type: 'nav',
6105     navId : '',
6106     // private
6107     pilltype : true,
6108     
6109     navItems : false, 
6110     
6111     getAutoCreate : function()
6112     {
6113         var cfg = Roo.apply({}, Roo.bootstrap.nav.Group.superclass.getAutoCreate.call(this));
6114         
6115         cfg = {
6116             tag : 'ul',
6117             cls: 'nav' 
6118         };
6119         if (Roo.bootstrap.version == 4) {
6120             if (['tabs','pills'].indexOf(this.type) != -1) {
6121                 cfg.cls += ' nav-' + this.type; 
6122             } else {
6123                 // trying to remove so header bar can right align top?
6124                 if (this.parent() && this.parent().xtype != 'NavHeaderbar') {
6125                     // do not use on header bar... 
6126                     cfg.cls += ' navbar-nav';
6127                 }
6128             }
6129             
6130         } else {
6131             if (['tabs','pills'].indexOf(this.type) != -1) {
6132                 cfg.cls += ' nav-' + this.type
6133             } else {
6134                 if (this.type !== 'nav') {
6135                     Roo.log('nav type must be nav/tabs/pills')
6136                 }
6137                 cfg.cls += ' navbar-nav'
6138             }
6139         }
6140         
6141         if (this.parent() && this.parent().sidebar) {
6142             cfg = {
6143                 tag: 'ul',
6144                 cls: 'dashboard-menu sidebar-menu'
6145             };
6146             
6147             return cfg;
6148         }
6149         
6150         if (this.form === true) {
6151             cfg = {
6152                 tag: 'form',
6153                 cls: 'navbar-form form-inline'
6154             };
6155             //nav navbar-right ml-md-auto
6156             if (this.align === 'right') {
6157                 cfg.cls += ' navbar-right ml-md-auto';
6158             } else {
6159                 cfg.cls += ' navbar-left';
6160             }
6161         }
6162         
6163         if (this.align === 'right') {
6164             cfg.cls += ' navbar-right ml-md-auto';
6165         } else {
6166             cfg.cls += ' mr-auto';
6167         }
6168         
6169         if (this.inverse) {
6170             cfg.cls += ' navbar-inverse';
6171             
6172         }
6173         
6174         
6175         return cfg;
6176     },
6177     /**
6178     * sets the active Navigation item
6179     * @param {Roo.bootstrap.nav.Item} the new current navitem
6180     */
6181     setActiveItem : function(item)
6182     {
6183         var prev = false;
6184         Roo.each(this.navItems, function(v){
6185             if (v == item) {
6186                 return ;
6187             }
6188             if (v.isActive()) {
6189                 v.setActive(false, true);
6190                 prev = v;
6191                 
6192             }
6193             
6194         });
6195
6196         item.setActive(true, true);
6197         this.fireEvent('changed', this, item, prev);
6198         
6199         
6200     },
6201     /**
6202     * gets the active Navigation item
6203     * @return {Roo.bootstrap.nav.Item} the current navitem
6204     */
6205     getActive : function()
6206     {
6207         
6208         var prev = false;
6209         Roo.each(this.navItems, function(v){
6210             
6211             if (v.isActive()) {
6212                 prev = v;
6213                 
6214             }
6215             
6216         });
6217         return prev;
6218     },
6219     
6220     indexOfNav : function()
6221     {
6222         
6223         var prev = false;
6224         Roo.each(this.navItems, function(v,i){
6225             
6226             if (v.isActive()) {
6227                 prev = i;
6228                 
6229             }
6230             
6231         });
6232         return prev;
6233     },
6234     /**
6235     * adds a Navigation item
6236     * @param {Roo.bootstrap.nav.Item} the navitem to add
6237     */
6238     addItem : function(cfg)
6239     {
6240         if (this.form && Roo.bootstrap.version == 4) {
6241             cfg.tag = 'div';
6242         }
6243         var cn = new Roo.bootstrap.nav.Item(cfg);
6244         this.register(cn);
6245         cn.parentId = this.id;
6246         cn.onRender(this.el, null);
6247         return cn;
6248     },
6249     /**
6250     * register a Navigation item
6251     * @param {Roo.bootstrap.nav.Item} the navitem to add
6252     */
6253     register : function(item)
6254     {
6255         this.navItems.push( item);
6256         item.navId = this.navId;
6257     
6258     },
6259     
6260     /**
6261     * clear all the Navigation item
6262     */
6263    
6264     clearAll : function()
6265     {
6266         this.navItems = [];
6267         this.el.dom.innerHTML = '';
6268     },
6269     
6270     getNavItem: function(tabId)
6271     {
6272         var ret = false;
6273         Roo.each(this.navItems, function(e) {
6274             if (e.tabId == tabId) {
6275                ret =  e;
6276                return false;
6277             }
6278             return true;
6279             
6280         });
6281         return ret;
6282     },
6283     
6284     setActiveNext : function()
6285     {
6286         var i = this.indexOfNav(this.getActive());
6287         if (i > this.navItems.length) {
6288             return;
6289         }
6290         this.setActiveItem(this.navItems[i+1]);
6291     },
6292     setActivePrev : function()
6293     {
6294         var i = this.indexOfNav(this.getActive());
6295         if (i  < 1) {
6296             return;
6297         }
6298         this.setActiveItem(this.navItems[i-1]);
6299     },
6300     clearWasActive : function(except) {
6301         Roo.each(this.navItems, function(e) {
6302             if (e.tabId != except.tabId && e.was_active) {
6303                e.was_active = false;
6304                return false;
6305             }
6306             return true;
6307             
6308         });
6309     },
6310     getWasActive : function ()
6311     {
6312         var r = false;
6313         Roo.each(this.navItems, function(e) {
6314             if (e.was_active) {
6315                r = e;
6316                return false;
6317             }
6318             return true;
6319             
6320         });
6321         return r;
6322     }
6323     
6324     
6325 });
6326
6327  
6328 Roo.apply(Roo.bootstrap.nav.Group, {
6329     
6330     groups: {},
6331      /**
6332     * register a Navigation Group
6333     * @param {Roo.bootstrap.nav.Group} the navgroup to add
6334     */
6335     register : function(navgrp)
6336     {
6337         this.groups[navgrp.navId] = navgrp;
6338         
6339     },
6340     /**
6341     * fetch a Navigation Group based on the navigation ID
6342     * @param {string} the navgroup to add
6343     * @returns {Roo.bootstrap.nav.Group} the navgroup 
6344     */
6345     get: function(navId) {
6346         if (typeof(this.groups[navId]) == 'undefined') {
6347             return false;
6348             //this.register(new Roo.bootstrap.nav.Group({ navId : navId }));
6349         }
6350         return this.groups[navId] ;
6351     }
6352     
6353     
6354     
6355 });
6356
6357  /**
6358  * @class Roo.bootstrap.nav.Item
6359  * @extends Roo.bootstrap.Component
6360  * @children Roo.bootstrap.Container Roo.bootstrap.Button
6361  * @parent Roo.bootstrap.nav.Group
6362  * @licence LGPL
6363  * Bootstrap Navbar.NavItem class
6364  * 
6365  * @cfg {String} href  link to
6366  * @cfg {String} button_weight (default|primary|secondary|success|info|warning|danger|link|light|dark) default none
6367  * @cfg {Boolean} button_outline show and outlined button
6368  * @cfg {String} html content of button
6369  * @cfg {String} badge text inside badge
6370  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
6371  * @cfg {String} glyphicon DEPRICATED - use fa
6372  * @cfg {String} icon DEPRICATED - use fa
6373  * @cfg {String} fa - Fontawsome icon name (can add stuff to it like fa-2x)
6374  * @cfg {Boolean} active Is item active
6375  * @cfg {Boolean} disabled Is item disabled
6376  * @cfg {String} linkcls  Link Class
6377  * @cfg {Boolean} preventDefault (true | false) default false
6378  * @cfg {String} tabId the tab that this item activates.
6379  * @cfg {String} tagtype (a|span) render as a href or span?
6380  * @cfg {Boolean} animateRef (true|false) link to element default false  
6381  * @cfg {Roo.bootstrap.menu.Menu} menu a Menu 
6382   
6383  * @constructor
6384  * Create a new Navbar Item
6385  * @param {Object} config The config object
6386  */
6387 Roo.bootstrap.nav.Item = function(config){
6388     Roo.bootstrap.nav.Item.superclass.constructor.call(this, config);
6389     this.addEvents({
6390         // raw events
6391         /**
6392          * @event click
6393          * The raw click event for the entire grid.
6394          * @param {Roo.EventObject} e
6395          */
6396         "click" : true,
6397          /**
6398             * @event changed
6399             * Fires when the active item active state changes
6400             * @param {Roo.bootstrap.nav.Item} this
6401             * @param {boolean} state the new state
6402              
6403          */
6404         'changed': true,
6405         /**
6406             * @event scrollto
6407             * Fires when scroll to element
6408             * @param {Roo.bootstrap.nav.Item} this
6409             * @param {Object} options
6410             * @param {Roo.EventObject} e
6411              
6412          */
6413         'scrollto': true
6414     });
6415    
6416 };
6417
6418 Roo.extend(Roo.bootstrap.nav.Item, Roo.bootstrap.Component,  {
6419     
6420     href: false,
6421     html: '',
6422     badge: '',
6423     icon: false,
6424     fa : false,
6425     glyphicon: false,
6426     active: false,
6427     preventDefault : false,
6428     tabId : false,
6429     tagtype : 'a',
6430     tag: 'li',
6431     disabled : false,
6432     animateRef : false,
6433     was_active : false,
6434     button_weight : '',
6435     button_outline : false,
6436     linkcls : '',
6437     navLink: false,
6438     
6439     getAutoCreate : function(){
6440          
6441         var cfg = {
6442             tag: this.tag,
6443             cls: 'nav-item'
6444         };
6445         
6446         cfg.cls =  typeof(cfg.cls) == 'undefined'  ? '' : cfg.cls;
6447         
6448         if (this.active) {
6449             cfg.cls +=  ' active' ;
6450         }
6451         if (this.disabled) {
6452             cfg.cls += ' disabled';
6453         }
6454         
6455         // BS4 only?
6456         if (this.button_weight.length) {
6457             cfg.tag = this.href ? 'a' : 'button';
6458             cfg.html = this.html || '';
6459             cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
6460             if (this.href) {
6461                 cfg.href = this.href;
6462             }
6463             if (this.fa) {
6464                 cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span class="nav-html">' + this.html + '</span>';
6465             } else {
6466                 cfg.cls += " nav-html";
6467             }
6468             
6469             // menu .. should add dropdown-menu class - so no need for carat..
6470             
6471             if (this.badge !== '') {
6472                  
6473                 cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
6474             }
6475             return cfg;
6476         }
6477         
6478         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
6479             cfg.cn = [
6480                 {
6481                     tag: this.tagtype,
6482                     href : this.href || "#",
6483                     html: this.html || '',
6484                     cls : ''
6485                 }
6486             ];
6487             if (this.tagtype == 'a') {
6488                 cfg.cn[0].cls = 'nav-link' +  (this.active ?  ' active'  : '') + ' ' + this.linkcls;
6489         
6490             }
6491             if (this.icon) {
6492                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span class="nav-html">' + cfg.cn[0].html + '</span>';
6493             } else  if (this.fa) {
6494                 cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span class="nav-html">' + cfg.cn[0].html + '</span>';
6495             } else if(this.glyphicon) {
6496                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
6497             } else {
6498                 cfg.cn[0].cls += " nav-html";
6499             }
6500             
6501             if (this.menu) {
6502                 cfg.cn[0].html += " <span class='caret'></span>";
6503              
6504             }
6505             
6506             if (this.badge !== '') {
6507                 cfg.cn[0].html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
6508             }
6509         }
6510         
6511         
6512         
6513         return cfg;
6514     },
6515     onRender : function(ct, position)
6516     {
6517        // Roo.log("Call onRender: " + this.xtype);
6518         if (Roo.bootstrap.version == 4 && ct.dom.type != 'ul') {
6519             this.tag = 'div';
6520         }
6521         
6522         var ret = Roo.bootstrap.nav.Item.superclass.onRender.call(this, ct, position);
6523         this.navLink = this.el.select('.nav-link',true).first();
6524         this.htmlEl = this.el.hasClass('nav-html') ? this.el : this.el.select('.nav-html',true).first();
6525         return ret;
6526     },
6527       
6528     
6529     initEvents: function() 
6530     {
6531         if (typeof (this.menu) != 'undefined') {
6532             this.menu.parentType = this.xtype;
6533             this.menu.triggerEl = this.el;
6534             this.menu = this.addxtype(Roo.apply({}, this.menu));
6535         }
6536         
6537         this.el.on('click', this.onClick, this);
6538         
6539         //if(this.tagtype == 'span'){
6540         //    this.el.select('span',true).on('click', this.onClick, this);
6541         //}
6542        
6543         // at this point parent should be available..
6544         this.parent().register(this);
6545     },
6546     
6547     onClick : function(e)
6548     {
6549         if (e.getTarget('.dropdown-menu-item')) {
6550             // did you click on a menu itemm.... - then don't trigger onclick..
6551             return;
6552         }
6553         
6554         if(
6555                 this.preventDefault ||
6556                                 this.href === false ||
6557                 this.href === '#' 
6558         ){
6559             //Roo.log("NavItem - prevent Default?");
6560             e.preventDefault();
6561         }
6562         
6563         if (this.disabled) {
6564             return;
6565         }
6566         
6567         var tg = Roo.bootstrap.TabGroup.get(this.navId);
6568         if (tg && tg.transition) {
6569             Roo.log("waiting for the transitionend");
6570             return;
6571         }
6572         
6573         
6574         
6575         //Roo.log("fire event clicked");
6576         if(this.fireEvent('click', this, e) === false){
6577             return;
6578         };
6579         
6580         if(this.tagtype == 'span'){
6581             return;
6582         }
6583         
6584         //Roo.log(this.href);
6585         var ael = this.el.select('a',true).first();
6586         //Roo.log(ael);
6587         
6588         if(ael && this.animateRef && this.href.indexOf('#') > -1){
6589             //Roo.log(["test:",ael.dom.href.split("#")[0], document.location.toString().split("#")[0]]);
6590             if (ael.dom.href.split("#")[0] != document.location.toString().split("#")[0]) {
6591                 return; // ignore... - it's a 'hash' to another page.
6592             }
6593             Roo.log("NavItem - prevent Default?");
6594             e.preventDefault();
6595             this.scrollToElement(e);
6596         }
6597         
6598         
6599         var p =  this.parent();
6600    
6601         if (['tabs','pills'].indexOf(p.type)!==-1 && p.pilltype) {
6602             if (typeof(p.setActiveItem) !== 'undefined') {
6603                 p.setActiveItem(this);
6604             }
6605         }
6606         
6607         // if parent is a navbarheader....- and link is probably a '#' page ref.. then remove the expanded menu.
6608         if (p.parentType == 'NavHeaderbar' && !this.menu) {
6609             // remove the collapsed menu expand...
6610             p.parent().el.select('.roo-navbar-collapse',true).removeClass('in');  
6611         }
6612     },
6613     
6614     isActive: function () {
6615         return this.active
6616     },
6617     setActive : function(state, fire, is_was_active)
6618     {
6619         if (this.active && !state && this.navId) {
6620             this.was_active = true;
6621             var nv = Roo.bootstrap.nav.Group.get(this.navId);
6622             if (nv) {
6623                 nv.clearWasActive(this);
6624             }
6625             
6626         }
6627         this.active = state;
6628         
6629         if (!state ) {
6630             this.el.removeClass('active');
6631             this.navLink ? this.navLink.removeClass('active') : false;
6632         } else if (!this.el.hasClass('active')) {
6633             
6634             this.el.addClass('active');
6635             if (Roo.bootstrap.version == 4 && this.navLink ) {
6636                 this.navLink.addClass('active');
6637             }
6638             
6639         }
6640         if (fire) {
6641             this.fireEvent('changed', this, state);
6642         }
6643         
6644         // show a panel if it's registered and related..
6645         
6646         if (!this.navId || !this.tabId || !state || is_was_active) {
6647             return;
6648         }
6649         
6650         var tg = Roo.bootstrap.TabGroup.get(this.navId);
6651         if (!tg) {
6652             return;
6653         }
6654         var pan = tg.getPanelByName(this.tabId);
6655         if (!pan) {
6656             return;
6657         }
6658         // if we can not flip to new panel - go back to old nav highlight..
6659         if (false == tg.showPanel(pan)) {
6660             var nv = Roo.bootstrap.nav.Group.get(this.navId);
6661             if (nv) {
6662                 var onav = nv.getWasActive();
6663                 if (onav) {
6664                     onav.setActive(true, false, true);
6665                 }
6666             }
6667             
6668         }
6669         
6670         
6671         
6672     },
6673      // this should not be here...
6674     setDisabled : function(state)
6675     {
6676         this.disabled = state;
6677         if (!state ) {
6678             this.el.removeClass('disabled');
6679         } else if (!this.el.hasClass('disabled')) {
6680             this.el.addClass('disabled');
6681         }
6682         
6683     },
6684     
6685     /**
6686      * Fetch the element to display the tooltip on.
6687      * @return {Roo.Element} defaults to this.el
6688      */
6689     tooltipEl : function()
6690     {
6691         return this.el; //this.tagtype  == 'a' ? this.el  : this.el.select('' + this.tagtype + '', true).first();
6692     },
6693     
6694     scrollToElement : function(e)
6695     {
6696         var c = document.body;
6697         
6698         /*
6699          * Firefox / IE places the overflow at the html level, unless specifically styled to behave differently.
6700          */
6701         if(Roo.isFirefox || Roo.isIE || Roo.isIE11){
6702             c = document.documentElement;
6703         }
6704         
6705         var target = Roo.get(c).select('a[name=' + this.href.split('#')[1] +']', true).first();
6706         
6707         if(!target){
6708             return;
6709         }
6710
6711         var o = target.calcOffsetsTo(c);
6712         
6713         var options = {
6714             target : target,
6715             value : o[1]
6716         };
6717         
6718         this.fireEvent('scrollto', this, options, e);
6719         
6720         Roo.get(c).scrollTo('top', options.value, true);
6721         
6722         return;
6723     },
6724     /**
6725      * Set the HTML (text content) of the item
6726      * @param {string} html  content for the nav item
6727      */
6728     setHtml : function(html)
6729     {
6730         this.html = html;
6731         this.htmlEl.dom.innerHTML = html;
6732         
6733     } 
6734 });
6735  
6736
6737  /*
6738  * - LGPL
6739  *
6740  * sidebar item
6741  *
6742  *  li
6743  *    <span> icon </span>
6744  *    <span> text </span>
6745  *    <span>badge </span>
6746  */
6747
6748 /**
6749  * @class Roo.bootstrap.nav.SidebarItem
6750  * @extends Roo.bootstrap.nav.Item
6751  * Bootstrap Navbar.NavSidebarItem class
6752  * 
6753  * {String} badgeWeight (default|primary|success|info|warning|danger)the extra classes for the badge
6754  * {Boolean} open is the menu open
6755  * {Boolean} buttonView use button as the tigger el rather that a (default false)
6756  * {String} buttonWeight (default|primary|success|info|warning|danger)the extra classes for the button
6757  * {String} buttonSize (sm|md|lg)the extra classes for the button
6758  * {Boolean} showArrow show arrow next to the text (default true)
6759  * @constructor
6760  * Create a new Navbar Button
6761  * @param {Object} config The config object
6762  */
6763 Roo.bootstrap.nav.SidebarItem = function(config){
6764     Roo.bootstrap.nav.SidebarItem.superclass.constructor.call(this, config);
6765     this.addEvents({
6766         // raw events
6767         /**
6768          * @event click
6769          * The raw click event for the entire grid.
6770          * @param {Roo.EventObject} e
6771          */
6772         "click" : true,
6773          /**
6774             * @event changed
6775             * Fires when the active item active state changes
6776             * @param {Roo.bootstrap.nav.SidebarItem} this
6777             * @param {boolean} state the new state
6778              
6779          */
6780         'changed': true
6781     });
6782    
6783 };
6784
6785 Roo.extend(Roo.bootstrap.nav.SidebarItem, Roo.bootstrap.nav.Item,  {
6786     
6787     badgeWeight : 'default',
6788     
6789     open: false,
6790     
6791     buttonView : false,
6792     
6793     buttonWeight : 'default',
6794     
6795     buttonSize : 'md',
6796     
6797     showArrow : true,
6798     
6799     getAutoCreate : function(){
6800         
6801         
6802         var a = {
6803                 tag: 'a',
6804                 href : this.href || '#',
6805                 cls: '',
6806                 html : '',
6807                 cn : []
6808         };
6809         
6810         if(this.buttonView){
6811             a = {
6812                 tag: 'button',
6813                 href : this.href || '#',
6814                 cls: 'btn btn-' + this.buttonWeight + ' btn-' + this.buttonSize + 'roo-button-dropdown-toggle',
6815                 html : this.html,
6816                 cn : []
6817             };
6818         }
6819         
6820         var cfg = {
6821             tag: 'li',
6822             cls: '',
6823             cn: [ a ]
6824         };
6825         
6826         if (this.active) {
6827             cfg.cls += ' active';
6828         }
6829         
6830         if (this.disabled) {
6831             cfg.cls += ' disabled';
6832         }
6833         if (this.open) {
6834             cfg.cls += ' open x-open';
6835         }
6836         // left icon..
6837         if (this.glyphicon || this.icon) {
6838             var c = this.glyphicon  ? ('glyphicon glyphicon-'+this.glyphicon)  : this.icon;
6839             a.cn.push({ tag : 'i', cls : c }) ;
6840         }
6841         
6842         if(!this.buttonView){
6843             var span = {
6844                 tag: 'span',
6845                 html : this.html || ''
6846             };
6847
6848             a.cn.push(span);
6849             
6850         }
6851         
6852         if (this.badge !== '') {
6853             a.cn.push({ tag: 'span',  cls : 'badge pull-right badge-' + this.badgeWeight, html: this.badge }); 
6854         }
6855         
6856         if (this.menu) {
6857             
6858             if(this.showArrow){
6859                 a.cn.push({ tag : 'i', cls : 'glyphicon glyphicon-chevron-down pull-right'});
6860             }
6861             
6862             a.cls += ' dropdown-toggle treeview' ;
6863         }
6864         
6865         return cfg;
6866     },
6867     
6868     initEvents : function()
6869     { 
6870         if (typeof (this.menu) != 'undefined') {
6871             this.menu.parentType = this.xtype;
6872             this.menu.triggerEl = this.el;
6873             this.menu = this.addxtype(Roo.apply({}, this.menu));
6874         }
6875         
6876         this.el.on('click', this.onClick, this);
6877         
6878         if(this.badge !== ''){
6879             this.badgeEl = this.el.select('.badge', true).first().setVisibilityMode(Roo.Element.DISPLAY);
6880         }
6881         
6882     },
6883     
6884     onClick : function(e)
6885     {
6886         if(this.disabled){
6887             e.preventDefault();
6888             return;
6889         }
6890         
6891         if(this.preventDefault){
6892             e.preventDefault();
6893         }
6894         
6895         this.fireEvent('click', this, e);
6896     },
6897     
6898     disable : function()
6899     {
6900         this.setDisabled(true);
6901     },
6902     
6903     enable : function()
6904     {
6905         this.setDisabled(false);
6906     },
6907     
6908     setDisabled : function(state)
6909     {
6910         if(this.disabled == state){
6911             return;
6912         }
6913         
6914         this.disabled = state;
6915         
6916         if (state) {
6917             this.el.addClass('disabled');
6918             return;
6919         }
6920         
6921         this.el.removeClass('disabled');
6922         
6923         return;
6924     },
6925     
6926     setActive : function(state)
6927     {
6928         if(this.active == state){
6929             return;
6930         }
6931         
6932         this.active = state;
6933         
6934         if (state) {
6935             this.el.addClass('active');
6936             return;
6937         }
6938         
6939         this.el.removeClass('active');
6940         
6941         return;
6942     },
6943     
6944     isActive: function () 
6945     {
6946         return this.active;
6947     },
6948     
6949     setBadge : function(str)
6950     {
6951         if(!this.badgeEl){
6952             return;
6953         }
6954         
6955         this.badgeEl.dom.innerHTML = str;
6956     }
6957     
6958    
6959      
6960  
6961 });
6962  
6963
6964  /*
6965  * - LGPL
6966  *
6967  * nav progress bar
6968  * 
6969  */
6970
6971 /**
6972  * @class Roo.bootstrap.nav.ProgressBar
6973  * @extends Roo.bootstrap.Component
6974  * @children Roo.bootstrap.nav.ProgressBarItem
6975  * Bootstrap NavProgressBar class
6976  * 
6977  * @constructor
6978  * Create a new nav progress bar - a bar indicating step along a process
6979  * @param {Object} config The config object
6980  */
6981
6982 Roo.bootstrap.nav.ProgressBar = function(config){
6983     Roo.bootstrap.nav.ProgressBar.superclass.constructor.call(this, config);
6984
6985     this.bullets = this.bullets || [];
6986    
6987 //    Roo.bootstrap.nav.ProgressBar.register(this);
6988      this.addEvents({
6989         /**
6990              * @event changed
6991              * Fires when the active item changes
6992              * @param {Roo.bootstrap.nav.ProgressBar} this
6993              * @param {Roo.bootstrap.nav.ProgressItem} selected The item selected
6994              * @param {Roo.bootstrap.nav.ProgressItem} prev The previously selected item 
6995          */
6996         'changed': true
6997      });
6998     
6999 };
7000
7001 Roo.extend(Roo.bootstrap.nav.ProgressBar, Roo.bootstrap.Component,  {
7002     /**
7003      * @cfg {Roo.bootstrap.nav.ProgressItem} NavProgressBar:bullets[]
7004      * Bullets for the Nav Progress bar for the toolbar
7005      */
7006     bullets : [],
7007     barItems : [],
7008     
7009     getAutoCreate : function()
7010     {
7011         var cfg = Roo.apply({}, Roo.bootstrap.nav.ProgressBar.superclass.getAutoCreate.call(this));
7012         
7013         cfg = {
7014             tag : 'div',
7015             cls : 'roo-navigation-bar-group',
7016             cn : [
7017                 {
7018                     tag : 'div',
7019                     cls : 'roo-navigation-top-bar'
7020                 },
7021                 {
7022                     tag : 'div',
7023                     cls : 'roo-navigation-bullets-bar',
7024                     cn : [
7025                         {
7026                             tag : 'ul',
7027                             cls : 'roo-navigation-bar'
7028                         }
7029                     ]
7030                 },
7031                 
7032                 {
7033                     tag : 'div',
7034                     cls : 'roo-navigation-bottom-bar'
7035                 }
7036             ]
7037             
7038         };
7039         
7040         return cfg;
7041         
7042     },
7043     
7044     initEvents: function() 
7045     {
7046         
7047     },
7048     
7049     onRender : function(ct, position) 
7050     {
7051         Roo.bootstrap.nav.ProgressBar.superclass.onRender.call(this, ct, position);
7052         
7053         if(this.bullets.length){
7054             Roo.each(this.bullets, function(b){
7055                this.addItem(b);
7056             }, this);
7057         }
7058         
7059         this.format();
7060         
7061     },
7062     
7063     addItem : function(cfg)
7064     {
7065         var item = new Roo.bootstrap.nav.ProgressItem(cfg);
7066         
7067         item.parentId = this.id;
7068         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
7069         
7070         if(cfg.html){
7071             var top = new Roo.bootstrap.Element({
7072                 tag : 'div',
7073                 cls : 'roo-navigation-bar-text'
7074             });
7075             
7076             var bottom = new Roo.bootstrap.Element({
7077                 tag : 'div',
7078                 cls : 'roo-navigation-bar-text'
7079             });
7080             
7081             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
7082             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
7083             
7084             var topText = new Roo.bootstrap.Element({
7085                 tag : 'span',
7086                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
7087             });
7088             
7089             var bottomText = new Roo.bootstrap.Element({
7090                 tag : 'span',
7091                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
7092             });
7093             
7094             topText.onRender(top.el, null);
7095             bottomText.onRender(bottom.el, null);
7096             
7097             item.topEl = top;
7098             item.bottomEl = bottom;
7099         }
7100         
7101         this.barItems.push(item);
7102         
7103         return item;
7104     },
7105     
7106     getActive : function()
7107     {
7108         var active = false;
7109         
7110         Roo.each(this.barItems, function(v){
7111             
7112             if (!v.isActive()) {
7113                 return;
7114             }
7115             
7116             active = v;
7117             return false;
7118             
7119         });
7120         
7121         return active;
7122     },
7123     
7124     setActiveItem : function(item)
7125     {
7126         var prev = false;
7127         
7128         Roo.each(this.barItems, function(v){
7129             if (v.rid == item.rid) {
7130                 return ;
7131             }
7132             
7133             if (v.isActive()) {
7134                 v.setActive(false);
7135                 prev = v;
7136             }
7137         });
7138
7139         item.setActive(true);
7140         
7141         this.fireEvent('changed', this, item, prev);
7142     },
7143     
7144     getBarItem: function(rid)
7145     {
7146         var ret = false;
7147         
7148         Roo.each(this.barItems, function(e) {
7149             if (e.rid != rid) {
7150                 return;
7151             }
7152             
7153             ret =  e;
7154             return false;
7155         });
7156         
7157         return ret;
7158     },
7159     
7160     indexOfItem : function(item)
7161     {
7162         var index = false;
7163         
7164         Roo.each(this.barItems, function(v, i){
7165             
7166             if (v.rid != item.rid) {
7167                 return;
7168             }
7169             
7170             index = i;
7171             return false
7172         });
7173         
7174         return index;
7175     },
7176     
7177     setActiveNext : function()
7178     {
7179         var i = this.indexOfItem(this.getActive());
7180         
7181         if (i > this.barItems.length) {
7182             return;
7183         }
7184         
7185         this.setActiveItem(this.barItems[i+1]);
7186     },
7187     
7188     setActivePrev : function()
7189     {
7190         var i = this.indexOfItem(this.getActive());
7191         
7192         if (i  < 1) {
7193             return;
7194         }
7195         
7196         this.setActiveItem(this.barItems[i-1]);
7197     },
7198     
7199     format : function()
7200     {
7201         if(!this.barItems.length){
7202             return;
7203         }
7204      
7205         var width = 100 / this.barItems.length;
7206         
7207         Roo.each(this.barItems, function(i){
7208             i.el.setStyle('width', width + '%');
7209             i.topEl.el.setStyle('width', width + '%');
7210             i.bottomEl.el.setStyle('width', width + '%');
7211         }, this);
7212         
7213     }
7214     
7215 });
7216 /*
7217  * - LGPL
7218  *
7219  * Nav Progress Item
7220  * 
7221  */
7222
7223 /**
7224  * @class Roo.bootstrap.nav.ProgressBarItem
7225  * @extends Roo.bootstrap.Component
7226  * Bootstrap NavProgressBarItem class
7227  * @cfg {String} rid the reference id
7228  * @cfg {Boolean} active (true|false) Is item active default false
7229  * @cfg {Boolean} disabled (true|false) Is item active default false
7230  * @cfg {String} html
7231  * @cfg {String} position (top|bottom) text position default bottom
7232  * @cfg {String} icon show icon instead of number
7233  * 
7234  * @constructor
7235  * Create a new NavProgressBarItem
7236  * @param {Object} config The config object
7237  */
7238 Roo.bootstrap.nav.ProgressBarItem = function(config){
7239     Roo.bootstrap.nav.ProgressBarItem.superclass.constructor.call(this, config);
7240     this.addEvents({
7241         // raw events
7242         /**
7243          * @event click
7244          * The raw click event for the entire grid.
7245          * @param {Roo.bootstrap.nav.ProgressBarItem} this
7246          * @param {Roo.EventObject} e
7247          */
7248         "click" : true
7249     });
7250    
7251 };
7252
7253 Roo.extend(Roo.bootstrap.nav.ProgressBarItem, Roo.bootstrap.Component,  {
7254     
7255     rid : '',
7256     active : false,
7257     disabled : false,
7258     html : '',
7259     position : 'bottom',
7260     icon : false,
7261     
7262     getAutoCreate : function()
7263     {
7264         var iconCls = 'roo-navigation-bar-item-icon';
7265         
7266         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
7267         
7268         var cfg = {
7269             tag: 'li',
7270             cls: 'roo-navigation-bar-item',
7271             cn : [
7272                 {
7273                     tag : 'i',
7274                     cls : iconCls
7275                 }
7276             ]
7277         };
7278         
7279         if(this.active){
7280             cfg.cls += ' active';
7281         }
7282         if(this.disabled){
7283             cfg.cls += ' disabled';
7284         }
7285         
7286         return cfg;
7287     },
7288     
7289     disable : function()
7290     {
7291         this.setDisabled(true);
7292     },
7293     
7294     enable : function()
7295     {
7296         this.setDisabled(false);
7297     },
7298     
7299     initEvents: function() 
7300     {
7301         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
7302         
7303         this.iconEl.on('click', this.onClick, this);
7304     },
7305     
7306     onClick : function(e)
7307     {
7308         e.preventDefault();
7309         
7310         if(this.disabled){
7311             return;
7312         }
7313         
7314         if(this.fireEvent('click', this, e) === false){
7315             return;
7316         };
7317         
7318         this.parent().setActiveItem(this);
7319     },
7320     
7321     isActive: function () 
7322     {
7323         return this.active;
7324     },
7325     
7326     setActive : function(state)
7327     {
7328         if(this.active == state){
7329             return;
7330         }
7331         
7332         this.active = state;
7333         
7334         if (state) {
7335             this.el.addClass('active');
7336             return;
7337         }
7338         
7339         this.el.removeClass('active');
7340         
7341         return;
7342     },
7343     
7344     setDisabled : function(state)
7345     {
7346         if(this.disabled == state){
7347             return;
7348         }
7349         
7350         this.disabled = state;
7351         
7352         if (state) {
7353             this.el.addClass('disabled');
7354             return;
7355         }
7356         
7357         this.el.removeClass('disabled');
7358     },
7359     
7360     tooltipEl : function()
7361     {
7362         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
7363     }
7364 });
7365  
7366
7367  /*
7368  * - LGPL
7369  *
7370  *  Breadcrumb Nav
7371  * 
7372  */
7373 Roo.namespace('Roo.bootstrap.breadcrumb');
7374
7375
7376 /**
7377  * @class Roo.bootstrap.breadcrumb.Nav
7378  * @extends Roo.bootstrap.Component
7379  * Bootstrap Breadcrumb Nav Class
7380  *  
7381  * @children Roo.bootstrap.breadcrumb.Item
7382  * 
7383  * @constructor
7384  * Create a new breadcrumb.Nav
7385  * @param {Object} config The config object
7386  */
7387
7388
7389 Roo.bootstrap.breadcrumb.Nav = function(config){
7390     Roo.bootstrap.breadcrumb.Nav.superclass.constructor.call(this, config);
7391     
7392     
7393 };
7394
7395 Roo.extend(Roo.bootstrap.breadcrumb.Nav, Roo.bootstrap.Component,  {
7396     
7397     getAutoCreate : function()
7398     {
7399
7400         var cfg = {
7401             tag: 'nav',
7402             cn : [
7403                 {
7404                     tag : 'ol',
7405                     cls : 'breadcrumb'
7406                 }
7407             ]
7408             
7409         };
7410           
7411         return cfg;
7412     },
7413     
7414     initEvents: function()
7415     {
7416         this.olEl = this.el.select('ol',true).first();    
7417     },
7418     getChildContainer : function()
7419     {
7420         return this.olEl;  
7421     }
7422     
7423 });
7424
7425  /*
7426  * - LGPL
7427  *
7428  *  Breadcrumb Item
7429  * 
7430  */
7431
7432
7433 /**
7434  * @class Roo.bootstrap.breadcrumb.Nav
7435  * @extends Roo.bootstrap.Component
7436  * @children Roo.bootstrap.Component
7437  * @parent Roo.bootstrap.breadcrumb.Nav
7438  * Bootstrap Breadcrumb Nav Class
7439  *  
7440  * 
7441  * @cfg {String} html the content of the link.
7442  * @cfg {String} href where it links to if '#' is used the link will be handled by onClick.
7443  * @cfg {Boolean} active is it active
7444
7445  * 
7446  * @constructor
7447  * Create a new breadcrumb.Nav
7448  * @param {Object} config The config object
7449  */
7450
7451 Roo.bootstrap.breadcrumb.Item = function(config){
7452     Roo.bootstrap.breadcrumb.Item.superclass.constructor.call(this, config);
7453     this.addEvents({
7454         // img events
7455         /**
7456          * @event click
7457          * The img click event for the img.
7458          * @param {Roo.EventObject} e
7459          */
7460         "click" : true
7461     });
7462     
7463 };
7464
7465 Roo.extend(Roo.bootstrap.breadcrumb.Item, Roo.bootstrap.Component,  {
7466     
7467     href: false,
7468     html : '',
7469     
7470     getAutoCreate : function()
7471     {
7472
7473         var cfg = {
7474             tag: 'li',
7475             cls : 'breadcrumb-item' + (this.active ? ' active' : '')
7476         };
7477         if (this.href !== false) {
7478             cfg.cn = [{
7479                 tag : 'a',
7480                 href : this.href,
7481                 html : this.html
7482             }];
7483         } else {
7484             cfg.html = this.html;
7485         }
7486         
7487         return cfg;
7488     },
7489     
7490     initEvents: function()
7491     {
7492         if (this.href) {
7493             this.el.select('a', true).first().on('click',this.onClick, this)
7494         }
7495         
7496     },
7497     onClick : function(e)
7498     {
7499         e.preventDefault();
7500         this.fireEvent('click',this,  e);
7501     }
7502     
7503 });
7504
7505  /*
7506  * - LGPL
7507  *
7508  * row
7509  * 
7510  */
7511
7512 /**
7513  * @class Roo.bootstrap.Row
7514  * @extends Roo.bootstrap.Component
7515  * @children Roo.bootstrap.Component
7516  * Bootstrap Row class (contains columns...)
7517  * 
7518  * @constructor
7519  * Create a new Row
7520  * @param {Object} config The config object
7521  */
7522
7523 Roo.bootstrap.Row = function(config){
7524     Roo.bootstrap.Row.superclass.constructor.call(this, config);
7525 };
7526
7527 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
7528     
7529     getAutoCreate : function(){
7530        return {
7531             cls: 'row clearfix'
7532        };
7533     }
7534     
7535     
7536 });
7537
7538  
7539
7540  /*
7541  * - LGPL
7542  *
7543  * pagination
7544  * 
7545  */
7546
7547 /**
7548  * @class Roo.bootstrap.Pagination
7549  * @extends Roo.bootstrap.Component
7550  * @children Roo.bootstrap.Pagination
7551  * Bootstrap Pagination class
7552  * 
7553  * @cfg {String} size (xs|sm|md|lg|xl)
7554  * @cfg {Boolean} inverse 
7555  * 
7556  * @constructor
7557  * Create a new Pagination
7558  * @param {Object} config The config object
7559  */
7560
7561 Roo.bootstrap.Pagination = function(config){
7562     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
7563 };
7564
7565 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
7566     
7567     cls: false,
7568     size: false,
7569     inverse: false,
7570     
7571     getAutoCreate : function(){
7572         var cfg = {
7573             tag: 'ul',
7574                 cls: 'pagination'
7575         };
7576         if (this.inverse) {
7577             cfg.cls += ' inverse';
7578         }
7579         if (this.html) {
7580             cfg.html=this.html;
7581         }
7582         if (this.cls) {
7583             cfg.cls += " " + this.cls;
7584         }
7585         return cfg;
7586     }
7587    
7588 });
7589
7590  
7591
7592  /*
7593  * - LGPL
7594  *
7595  * Pagination item
7596  * 
7597  */
7598
7599
7600 /**
7601  * @class Roo.bootstrap.PaginationItem
7602  * @extends Roo.bootstrap.Component
7603  * Bootstrap PaginationItem class
7604  * @cfg {String} html text
7605  * @cfg {String} href the link
7606  * @cfg {Boolean} preventDefault (true | false) default true
7607  * @cfg {Boolean} active (true | false) default false
7608  * @cfg {Boolean} disabled default false
7609  * 
7610  * 
7611  * @constructor
7612  * Create a new PaginationItem
7613  * @param {Object} config The config object
7614  */
7615
7616
7617 Roo.bootstrap.PaginationItem = function(config){
7618     Roo.bootstrap.PaginationItem.superclass.constructor.call(this, config);
7619     this.addEvents({
7620         // raw events
7621         /**
7622          * @event click
7623          * The raw click event for the entire grid.
7624          * @param {Roo.EventObject} e
7625          */
7626         "click" : true
7627     });
7628 };
7629
7630 Roo.extend(Roo.bootstrap.PaginationItem, Roo.bootstrap.Component,  {
7631     
7632     href : false,
7633     html : false,
7634     preventDefault: true,
7635     active : false,
7636     cls : false,
7637     disabled: false,
7638     
7639     getAutoCreate : function(){
7640         var cfg= {
7641             tag: 'li',
7642             cn: [
7643                 {
7644                     tag : 'a',
7645                     href : this.href ? this.href : '#',
7646                     html : this.html ? this.html : ''
7647                 }
7648             ]
7649         };
7650         
7651         if(this.cls){
7652             cfg.cls = this.cls;
7653         }
7654         
7655         if(this.disabled){
7656             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' disabled' : 'disabled';
7657         }
7658         
7659         if(this.active){
7660             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' active' : 'active';
7661         }
7662         
7663         return cfg;
7664     },
7665     
7666     initEvents: function() {
7667         
7668         this.el.on('click', this.onClick, this);
7669         
7670     },
7671     onClick : function(e)
7672     {
7673         Roo.log('PaginationItem on click ');
7674         if(this.preventDefault){
7675             e.preventDefault();
7676         }
7677         
7678         if(this.disabled){
7679             return;
7680         }
7681         
7682         this.fireEvent('click', this, e);
7683     }
7684    
7685 });
7686
7687  
7688
7689  /*
7690  * - LGPL
7691  *
7692  * slider
7693  * 
7694  */
7695
7696
7697 /**
7698  * @class Roo.bootstrap.Slider
7699  * @extends Roo.bootstrap.Component
7700  * Bootstrap Slider class
7701  *    
7702  * @constructor
7703  * Create a new Slider
7704  * @param {Object} config The config object
7705  */
7706
7707 Roo.bootstrap.Slider = function(config){
7708     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
7709 };
7710
7711 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
7712     
7713     getAutoCreate : function(){
7714         
7715         var cfg = {
7716             tag: 'div',
7717             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
7718             cn: [
7719                 {
7720                     tag: 'a',
7721                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
7722                 }
7723             ]
7724         };
7725         
7726         return cfg;
7727     }
7728    
7729 });
7730
7731  /*
7732  * Based on:
7733  * Ext JS Library 1.1.1
7734  * Copyright(c) 2006-2007, Ext JS, LLC.
7735  *
7736  * Originally Released Under LGPL - original licence link has changed is not relivant.
7737  *
7738  * Fork - LGPL
7739  * <script type="text/javascript">
7740  */
7741  /**
7742  * @extends Roo.dd.DDProxy
7743  * @class Roo.grid.SplitDragZone
7744  * Support for Column Header resizing
7745  * @constructor
7746  * @param {Object} config
7747  */
7748 // private
7749 // This is a support class used internally by the Grid components
7750 Roo.grid.SplitDragZone = function(grid, hd, hd2){
7751     this.grid = grid;
7752     this.view = grid.getView();
7753     this.proxy = this.view.resizeProxy;
7754     Roo.grid.SplitDragZone.superclass.constructor.call(
7755         this,
7756         hd, // ID
7757         "gridSplitters" + this.grid.getGridEl().id, // SGROUP
7758         {  // CONFIG
7759             dragElId : Roo.id(this.proxy.dom),
7760             resizeFrame:false
7761         }
7762     );
7763     
7764     this.setHandleElId(Roo.id(hd));
7765     if (hd2 !== false) {
7766         this.setOuterHandleElId(Roo.id(hd2));
7767     }
7768     
7769     this.scroll = false;
7770 };
7771 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
7772     fly: Roo.Element.fly,
7773
7774     b4StartDrag : function(x, y){
7775         this.view.headersDisabled = true;
7776         var h = this.view.mainWrap ? this.view.mainWrap.getHeight() : (
7777                     this.view.headEl.getHeight() + this.view.bodyEl.getHeight()
7778         );
7779         this.proxy.setHeight(h);
7780         
7781         // for old system colWidth really stored the actual width?
7782         // in bootstrap we tried using xs/ms/etc.. to do % sizing?
7783         // which in reality did not work.. - it worked only for fixed sizes
7784         // for resizable we need to use actual sizes.
7785         var w = this.cm.getColumnWidth(this.cellIndex);
7786         if (!this.view.mainWrap) {
7787             // bootstrap.
7788             w = this.view.getHeaderIndex(this.cellIndex).getWidth();
7789         }
7790         
7791         
7792         
7793         // this was w-this.grid.minColumnWidth;
7794         // doesnt really make sense? - w = thie curren width or the rendered one?
7795         var minw = Math.max(w-this.grid.minColumnWidth, 0);
7796         this.resetConstraints();
7797         this.setXConstraint(minw, 1000);
7798         this.setYConstraint(0, 0);
7799         this.minX = x - minw;
7800         this.maxX = x + 1000;
7801         this.startPos = x;
7802         if (!this.view.mainWrap) { // this is Bootstrap code..
7803             this.getDragEl().style.display='block';
7804         }
7805         
7806         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
7807     },
7808
7809
7810     handleMouseDown : function(e){
7811         ev = Roo.EventObject.setEvent(e);
7812         var t = this.fly(ev.getTarget());
7813         if(t.hasClass("x-grid-split")){
7814             this.cellIndex = this.view.getCellIndex(t.dom);
7815             this.split = t.dom;
7816             this.cm = this.grid.colModel;
7817             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
7818                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
7819             }
7820         }
7821     },
7822
7823     endDrag : function(e){
7824         this.view.headersDisabled = false;
7825         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
7826         var diff = endX - this.startPos;
7827         // 
7828         var w = this.cm.getColumnWidth(this.cellIndex);
7829         if (!this.view.mainWrap) {
7830             w = 0;
7831         }
7832         this.view.onColumnSplitterMoved(this.cellIndex, w+diff);
7833     },
7834
7835     autoOffset : function(){
7836         this.setDelta(0,0);
7837     }
7838 });/*
7839  * Based on:
7840  * Ext JS Library 1.1.1
7841  * Copyright(c) 2006-2007, Ext JS, LLC.
7842  *
7843  * Originally Released Under LGPL - original licence link has changed is not relivant.
7844  *
7845  * Fork - LGPL
7846  * <script type="text/javascript">
7847  */
7848
7849 /**
7850  * @class Roo.grid.AbstractSelectionModel
7851  * @extends Roo.util.Observable
7852  * @abstract
7853  * Abstract base class for grid SelectionModels.  It provides the interface that should be
7854  * implemented by descendant classes.  This class should not be directly instantiated.
7855  * @constructor
7856  */
7857 Roo.grid.AbstractSelectionModel = function(){
7858     this.locked = false;
7859     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
7860 };
7861
7862 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
7863     /** @ignore Called by the grid automatically. Do not call directly. */
7864     init : function(grid){
7865         this.grid = grid;
7866         this.initEvents();
7867     },
7868
7869     /**
7870      * Locks the selections.
7871      */
7872     lock : function(){
7873         this.locked = true;
7874     },
7875
7876     /**
7877      * Unlocks the selections.
7878      */
7879     unlock : function(){
7880         this.locked = false;
7881     },
7882
7883     /**
7884      * Returns true if the selections are locked.
7885      * @return {Boolean}
7886      */
7887     isLocked : function(){
7888         return this.locked;
7889     }
7890 });/*
7891  * Based on:
7892  * Ext JS Library 1.1.1
7893  * Copyright(c) 2006-2007, Ext JS, LLC.
7894  *
7895  * Originally Released Under LGPL - original licence link has changed is not relivant.
7896  *
7897  * Fork - LGPL
7898  * <script type="text/javascript">
7899  */
7900 /**
7901  * @extends Roo.grid.AbstractSelectionModel
7902  * @class Roo.grid.RowSelectionModel
7903  * The default SelectionModel used by {@link Roo.grid.Grid}.
7904  * It supports multiple selections and keyboard selection/navigation. 
7905  * @constructor
7906  * @param {Object} config
7907  */
7908 Roo.grid.RowSelectionModel = function(config){
7909     Roo.apply(this, config);
7910     this.selections = new Roo.util.MixedCollection(false, function(o){
7911         return o.id;
7912     });
7913
7914     this.last = false;
7915     this.lastActive = false;
7916
7917     this.addEvents({
7918         /**
7919         * @event selectionchange
7920         * Fires when the selection changes
7921         * @param {SelectionModel} this
7922         */
7923        "selectionchange" : true,
7924        /**
7925         * @event afterselectionchange
7926         * Fires after the selection changes (eg. by key press or clicking)
7927         * @param {SelectionModel} this
7928         */
7929        "afterselectionchange" : true,
7930        /**
7931         * @event beforerowselect
7932         * Fires when a row is selected being selected, return false to cancel.
7933         * @param {SelectionModel} this
7934         * @param {Number} rowIndex The selected index
7935         * @param {Boolean} keepExisting False if other selections will be cleared
7936         */
7937        "beforerowselect" : true,
7938        /**
7939         * @event rowselect
7940         * Fires when a row is selected.
7941         * @param {SelectionModel} this
7942         * @param {Number} rowIndex The selected index
7943         * @param {Roo.data.Record} r The record
7944         */
7945        "rowselect" : true,
7946        /**
7947         * @event rowdeselect
7948         * Fires when a row is deselected.
7949         * @param {SelectionModel} this
7950         * @param {Number} rowIndex The selected index
7951         */
7952         "rowdeselect" : true
7953     });
7954     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
7955     this.locked = false;
7956 };
7957
7958 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
7959     /**
7960      * @cfg {Boolean} singleSelect
7961      * True to allow selection of only one row at a time (defaults to false)
7962      */
7963     singleSelect : false,
7964
7965     // private
7966     initEvents : function(){
7967
7968         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
7969             this.grid.on("mousedown", this.handleMouseDown, this);
7970         }else{ // allow click to work like normal
7971             this.grid.on("rowclick", this.handleDragableRowClick, this);
7972         }
7973         // bootstrap does not have a view..
7974         var view = this.grid.view ? this.grid.view : this.grid;
7975         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
7976             "up" : function(e){
7977                 if(!e.shiftKey){
7978                     this.selectPrevious(e.shiftKey);
7979                 }else if(this.last !== false && this.lastActive !== false){
7980                     var last = this.last;
7981                     this.selectRange(this.last,  this.lastActive-1);
7982                     view.focusRow(this.lastActive);
7983                     if(last !== false){
7984                         this.last = last;
7985                     }
7986                 }else{
7987                     this.selectFirstRow();
7988                 }
7989                 this.fireEvent("afterselectionchange", this);
7990             },
7991             "down" : function(e){
7992                 if(!e.shiftKey){
7993                     this.selectNext(e.shiftKey);
7994                 }else if(this.last !== false && this.lastActive !== false){
7995                     var last = this.last;
7996                     this.selectRange(this.last,  this.lastActive+1);
7997                     view.focusRow(this.lastActive);
7998                     if(last !== false){
7999                         this.last = last;
8000                     }
8001                 }else{
8002                     this.selectFirstRow();
8003                 }
8004                 this.fireEvent("afterselectionchange", this);
8005             },
8006             scope: this
8007         });
8008
8009          
8010         view.on("refresh", this.onRefresh, this);
8011         view.on("rowupdated", this.onRowUpdated, this);
8012         view.on("rowremoved", this.onRemove, this);
8013     },
8014
8015     // private
8016     onRefresh : function(){
8017         var ds = this.grid.ds, i, v = this.grid.view;
8018         var s = this.selections;
8019         s.each(function(r){
8020             if((i = ds.indexOfId(r.id)) != -1){
8021                 v.onRowSelect(i);
8022                 s.add(ds.getAt(i)); // updating the selection relate data
8023             }else{
8024                 s.remove(r);
8025             }
8026         });
8027     },
8028
8029     // private
8030     onRemove : function(v, index, r){
8031         this.selections.remove(r);
8032     },
8033
8034     // private
8035     onRowUpdated : function(v, index, r){
8036         if(this.isSelected(r)){
8037             v.onRowSelect(index);
8038         }
8039     },
8040
8041     /**
8042      * Select records.
8043      * @param {Array} records The records to select
8044      * @param {Boolean} keepExisting (optional) True to keep existing selections
8045      */
8046     selectRecords : function(records, keepExisting){
8047         if(!keepExisting){
8048             this.clearSelections();
8049         }
8050         var ds = this.grid.ds;
8051         for(var i = 0, len = records.length; i < len; i++){
8052             this.selectRow(ds.indexOf(records[i]), true);
8053         }
8054     },
8055
8056     /**
8057      * Gets the number of selected rows.
8058      * @return {Number}
8059      */
8060     getCount : function(){
8061         return this.selections.length;
8062     },
8063
8064     /**
8065      * Selects the first row in the grid.
8066      */
8067     selectFirstRow : function(){
8068         this.selectRow(0);
8069     },
8070
8071     /**
8072      * Select the last row.
8073      * @param {Boolean} keepExisting (optional) True to keep existing selections
8074      */
8075     selectLastRow : function(keepExisting){
8076         this.selectRow(this.grid.ds.getCount() - 1, keepExisting);
8077     },
8078
8079     /**
8080      * Selects the row immediately following the last selected row.
8081      * @param {Boolean} keepExisting (optional) True to keep existing selections
8082      */
8083     selectNext : function(keepExisting){
8084         if(this.last !== false && (this.last+1) < this.grid.ds.getCount()){
8085             this.selectRow(this.last+1, keepExisting);
8086             var view = this.grid.view ? this.grid.view : this.grid;
8087             view.focusRow(this.last);
8088         }
8089     },
8090
8091     /**
8092      * Selects the row that precedes the last selected row.
8093      * @param {Boolean} keepExisting (optional) True to keep existing selections
8094      */
8095     selectPrevious : function(keepExisting){
8096         if(this.last){
8097             this.selectRow(this.last-1, keepExisting);
8098             var view = this.grid.view ? this.grid.view : this.grid;
8099             view.focusRow(this.last);
8100         }
8101     },
8102
8103     /**
8104      * Returns the selected records
8105      * @return {Array} Array of selected records
8106      */
8107     getSelections : function(){
8108         return [].concat(this.selections.items);
8109     },
8110
8111     /**
8112      * Returns the first selected record.
8113      * @return {Record}
8114      */
8115     getSelected : function(){
8116         return this.selections.itemAt(0);
8117     },
8118
8119
8120     /**
8121      * Clears all selections.
8122      */
8123     clearSelections : function(fast){
8124         if(this.locked) {
8125             return;
8126         }
8127         if(fast !== true){
8128             var ds = this.grid.ds;
8129             var s = this.selections;
8130             s.each(function(r){
8131                 this.deselectRow(ds.indexOfId(r.id));
8132             }, this);
8133             s.clear();
8134         }else{
8135             this.selections.clear();
8136         }
8137         this.last = false;
8138     },
8139
8140
8141     /**
8142      * Selects all rows.
8143      */
8144     selectAll : function(){
8145         if(this.locked) {
8146             return;
8147         }
8148         this.selections.clear();
8149         for(var i = 0, len = this.grid.ds.getCount(); i < len; i++){
8150             this.selectRow(i, true);
8151         }
8152     },
8153
8154     /**
8155      * Returns True if there is a selection.
8156      * @return {Boolean}
8157      */
8158     hasSelection : function(){
8159         return this.selections.length > 0;
8160     },
8161
8162     /**
8163      * Returns True if the specified row is selected.
8164      * @param {Number/Record} record The record or index of the record to check
8165      * @return {Boolean}
8166      */
8167     isSelected : function(index){
8168         var r = typeof index == "number" ? this.grid.ds.getAt(index) : index;
8169         return (r && this.selections.key(r.id) ? true : false);
8170     },
8171
8172     /**
8173      * Returns True if the specified record id is selected.
8174      * @param {String} id The id of record to check
8175      * @return {Boolean}
8176      */
8177     isIdSelected : function(id){
8178         return (this.selections.key(id) ? true : false);
8179     },
8180
8181     // private
8182     handleMouseDown : function(e, t)
8183     {
8184         var view = this.grid.view ? this.grid.view : this.grid;
8185         var rowIndex;
8186         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
8187             return;
8188         };
8189         if(e.shiftKey && this.last !== false){
8190             var last = this.last;
8191             this.selectRange(last, rowIndex, e.ctrlKey);
8192             this.last = last; // reset the last
8193             view.focusRow(rowIndex);
8194         }else{
8195             var isSelected = this.isSelected(rowIndex);
8196             if(e.button !== 0 && isSelected){
8197                 view.focusRow(rowIndex);
8198             }else if(e.ctrlKey && isSelected){
8199                 this.deselectRow(rowIndex);
8200             }else if(!isSelected){
8201                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
8202                 view.focusRow(rowIndex);
8203             }
8204         }
8205         this.fireEvent("afterselectionchange", this);
8206     },
8207     // private
8208     handleDragableRowClick :  function(grid, rowIndex, e) 
8209     {
8210         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
8211             this.selectRow(rowIndex, false);
8212             var view = this.grid.view ? this.grid.view : this.grid;
8213             view.focusRow(rowIndex);
8214              this.fireEvent("afterselectionchange", this);
8215         }
8216     },
8217     
8218     /**
8219      * Selects multiple rows.
8220      * @param {Array} rows Array of the indexes of the row to select
8221      * @param {Boolean} keepExisting (optional) True to keep existing selections
8222      */
8223     selectRows : function(rows, keepExisting){
8224         if(!keepExisting){
8225             this.clearSelections();
8226         }
8227         for(var i = 0, len = rows.length; i < len; i++){
8228             this.selectRow(rows[i], true);
8229         }
8230     },
8231
8232     /**
8233      * Selects a range of rows. All rows in between startRow and endRow are also selected.
8234      * @param {Number} startRow The index of the first row in the range
8235      * @param {Number} endRow The index of the last row in the range
8236      * @param {Boolean} keepExisting (optional) True to retain existing selections
8237      */
8238     selectRange : function(startRow, endRow, keepExisting){
8239         if(this.locked) {
8240             return;
8241         }
8242         if(!keepExisting){
8243             this.clearSelections();
8244         }
8245         if(startRow <= endRow){
8246             for(var i = startRow; i <= endRow; i++){
8247                 this.selectRow(i, true);
8248             }
8249         }else{
8250             for(var i = startRow; i >= endRow; i--){
8251                 this.selectRow(i, true);
8252             }
8253         }
8254     },
8255
8256     /**
8257      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
8258      * @param {Number} startRow The index of the first row in the range
8259      * @param {Number} endRow The index of the last row in the range
8260      */
8261     deselectRange : function(startRow, endRow, preventViewNotify){
8262         if(this.locked) {
8263             return;
8264         }
8265         for(var i = startRow; i <= endRow; i++){
8266             this.deselectRow(i, preventViewNotify);
8267         }
8268     },
8269
8270     /**
8271      * Selects a row.
8272      * @param {Number} row The index of the row to select
8273      * @param {Boolean} keepExisting (optional) True to keep existing selections
8274      */
8275     selectRow : function(index, keepExisting, preventViewNotify){
8276         if(this.locked || (index < 0 || index >= this.grid.ds.getCount())) {
8277             return;
8278         }
8279         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
8280             if(!keepExisting || this.singleSelect){
8281                 this.clearSelections();
8282             }
8283             var r = this.grid.ds.getAt(index);
8284             this.selections.add(r);
8285             this.last = this.lastActive = index;
8286             if(!preventViewNotify){
8287                 var view = this.grid.view ? this.grid.view : this.grid;
8288                 view.onRowSelect(index);
8289             }
8290             this.fireEvent("rowselect", this, index, r);
8291             this.fireEvent("selectionchange", this);
8292         }
8293     },
8294
8295     /**
8296      * Deselects a row.
8297      * @param {Number} row The index of the row to deselect
8298      */
8299     deselectRow : function(index, preventViewNotify){
8300         if(this.locked) {
8301             return;
8302         }
8303         if(this.last == index){
8304             this.last = false;
8305         }
8306         if(this.lastActive == index){
8307             this.lastActive = false;
8308         }
8309         var r = this.grid.ds.getAt(index);
8310         this.selections.remove(r);
8311         if(!preventViewNotify){
8312             var view = this.grid.view ? this.grid.view : this.grid;
8313             view.onRowDeselect(index);
8314         }
8315         this.fireEvent("rowdeselect", this, index);
8316         this.fireEvent("selectionchange", this);
8317     },
8318
8319     // private
8320     restoreLast : function(){
8321         if(this._last){
8322             this.last = this._last;
8323         }
8324     },
8325
8326     // private
8327     acceptsNav : function(row, col, cm){
8328         return !cm.isHidden(col) && cm.isCellEditable(col, row);
8329     },
8330
8331     // private
8332     onEditorKey : function(field, e){
8333         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
8334         if(k == e.TAB){
8335             e.stopEvent();
8336             ed.completeEdit();
8337             if(e.shiftKey){
8338                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
8339             }else{
8340                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
8341             }
8342         }else if(k == e.ENTER && !e.ctrlKey){
8343             e.stopEvent();
8344             ed.completeEdit();
8345             if(e.shiftKey){
8346                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
8347             }else{
8348                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
8349             }
8350         }else if(k == e.ESC){
8351             ed.cancelEdit();
8352         }
8353         if(newCell){
8354             g.startEditing(newCell[0], newCell[1]);
8355         }
8356     }
8357 });/*
8358  * Based on:
8359  * Ext JS Library 1.1.1
8360  * Copyright(c) 2006-2007, Ext JS, LLC.
8361  *
8362  * Originally Released Under LGPL - original licence link has changed is not relivant.
8363  *
8364  * Fork - LGPL
8365  * <script type="text/javascript">
8366  */
8367  
8368
8369 /**
8370  * @class Roo.grid.ColumnModel
8371  * @extends Roo.util.Observable
8372  * This is the default implementation of a ColumnModel used by the Grid. It defines
8373  * the columns in the grid.
8374  * <br>Usage:<br>
8375  <pre><code>
8376  var colModel = new Roo.grid.ColumnModel([
8377         {header: "Ticker", width: 60, sortable: true, locked: true},
8378         {header: "Company Name", width: 150, sortable: true},
8379         {header: "Market Cap.", width: 100, sortable: true},
8380         {header: "$ Sales", width: 100, sortable: true, renderer: money},
8381         {header: "Employees", width: 100, sortable: true, resizable: false}
8382  ]);
8383  </code></pre>
8384  * <p>
8385  
8386  * The config options listed for this class are options which may appear in each
8387  * individual column definition.
8388  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
8389  * @constructor
8390  * @param {Object} config An Array of column config objects. See this class's
8391  * config objects for details.
8392 */
8393 Roo.grid.ColumnModel = function(config){
8394         /**
8395      * The config passed into the constructor
8396      */
8397     this.config = []; //config;
8398     this.lookup = {};
8399
8400     // if no id, create one
8401     // if the column does not have a dataIndex mapping,
8402     // map it to the order it is in the config
8403     for(var i = 0, len = config.length; i < len; i++){
8404         this.addColumn(config[i]);
8405         
8406     }
8407
8408     /**
8409      * The width of columns which have no width specified (defaults to 100)
8410      * @type Number
8411      */
8412     this.defaultWidth = 100;
8413
8414     /**
8415      * Default sortable of columns which have no sortable specified (defaults to false)
8416      * @type Boolean
8417      */
8418     this.defaultSortable = false;
8419
8420     this.addEvents({
8421         /**
8422              * @event widthchange
8423              * Fires when the width of a column changes.
8424              * @param {ColumnModel} this
8425              * @param {Number} columnIndex The column index
8426              * @param {Number} newWidth The new width
8427              */
8428             "widthchange": true,
8429         /**
8430              * @event headerchange
8431              * Fires when the text of a header changes.
8432              * @param {ColumnModel} this
8433              * @param {Number} columnIndex The column index
8434              * @param {Number} newText The new header text
8435              */
8436             "headerchange": true,
8437         /**
8438              * @event hiddenchange
8439              * Fires when a column is hidden or "unhidden".
8440              * @param {ColumnModel} this
8441              * @param {Number} columnIndex The column index
8442              * @param {Boolean} hidden true if hidden, false otherwise
8443              */
8444             "hiddenchange": true,
8445             /**
8446          * @event columnmoved
8447          * Fires when a column is moved.
8448          * @param {ColumnModel} this
8449          * @param {Number} oldIndex
8450          * @param {Number} newIndex
8451          */
8452         "columnmoved" : true,
8453         /**
8454          * @event columlockchange
8455          * Fires when a column's locked state is changed
8456          * @param {ColumnModel} this
8457          * @param {Number} colIndex
8458          * @param {Boolean} locked true if locked
8459          */
8460         "columnlockchange" : true
8461     });
8462     Roo.grid.ColumnModel.superclass.constructor.call(this);
8463 };
8464 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
8465     /**
8466      * @cfg {String} header [required] The header text to display in the Grid view.
8467      */
8468         /**
8469      * @cfg {String} xsHeader Header at Bootsrap Extra Small width (default for all)
8470      */
8471         /**
8472      * @cfg {String} smHeader Header at Bootsrap Small width
8473      */
8474         /**
8475      * @cfg {String} mdHeader Header at Bootsrap Medium width
8476      */
8477         /**
8478      * @cfg {String} lgHeader Header at Bootsrap Large width
8479      */
8480         /**
8481      * @cfg {String} xlHeader Header at Bootsrap extra Large width
8482      */
8483     /**
8484      * @cfg {String} dataIndex  The name of the field in the grid's {@link Roo.data.Store}'s
8485      * {@link Roo.data.Record} definition from which to draw the column's value. If not
8486      * specified, the column's index is used as an index into the Record's data Array.
8487      */
8488     /**
8489      * @cfg {Number} width  The initial width in pixels of the column. Using this
8490      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
8491      */
8492     /**
8493      * @cfg {Boolean} sortable True if sorting is to be allowed on this column.
8494      * Defaults to the value of the {@link #defaultSortable} property.
8495      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
8496      */
8497     /**
8498      * @cfg {Boolean} locked  True to lock the column in place while scrolling the Grid.  Defaults to false.
8499      */
8500     /**
8501      * @cfg {Boolean} fixed  True if the column width cannot be changed.  Defaults to false.
8502      */
8503     /**
8504      * @cfg {Boolean} resizable  False to disable column resizing. Defaults to true.
8505      */
8506     /**
8507      * @cfg {Boolean} hidden  True to hide the column. Defaults to false.
8508      */
8509     /**
8510      * @cfg {Function} renderer A function used to generate HTML markup for a cell
8511      * given the cell's data value. See {@link #setRenderer}. If not specified, the
8512      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
8513      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
8514      */
8515        /**
8516      * @cfg {Roo.grid.GridEditor} editor  For grid editors - returns the grid editor 
8517      */
8518     /**
8519      * @cfg {String} align (left|right) Set the CSS text-align property of the column.  Defaults to undefined (left).
8520      */
8521     /**
8522      * @cfg {String} valign (top|bottom|middle) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined (middle)
8523      */
8524     /**
8525      * @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)
8526      */
8527     /**
8528      * @cfg {String} tooltip mouse over tooltip text
8529      */
8530     /**
8531      * @cfg {Number} xs  can be '0' for hidden at this size (number less than 12)
8532      */
8533     /**
8534      * @cfg {Number} sm can be '0' for hidden at this size (number less than 12)
8535      */
8536     /**
8537      * @cfg {Number} md can be '0' for hidden at this size (number less than 12)
8538      */
8539     /**
8540      * @cfg {Number} lg   can be '0' for hidden at this size (number less than 12)
8541      */
8542         /**
8543      * @cfg {Number} xl   can be '0' for hidden at this size (number less than 12)
8544      */
8545     /**
8546      * Returns the id of the column at the specified index.
8547      * @param {Number} index The column index
8548      * @return {String} the id
8549      */
8550     getColumnId : function(index){
8551         return this.config[index].id;
8552     },
8553
8554     /**
8555      * Returns the column for a specified id.
8556      * @param {String} id The column id
8557      * @return {Object} the column
8558      */
8559     getColumnById : function(id){
8560         return this.lookup[id];
8561     },
8562
8563     
8564     /**
8565      * Returns the column Object for a specified dataIndex.
8566      * @param {String} dataIndex The column dataIndex
8567      * @return {Object|Boolean} the column or false if not found
8568      */
8569     getColumnByDataIndex: function(dataIndex){
8570         var index = this.findColumnIndex(dataIndex);
8571         return index > -1 ? this.config[index] : false;
8572     },
8573     
8574     /**
8575      * Returns the index for a specified column id.
8576      * @param {String} id The column id
8577      * @return {Number} the index, or -1 if not found
8578      */
8579     getIndexById : function(id){
8580         for(var i = 0, len = this.config.length; i < len; i++){
8581             if(this.config[i].id == id){
8582                 return i;
8583             }
8584         }
8585         return -1;
8586     },
8587     
8588     /**
8589      * Returns the index for a specified column dataIndex.
8590      * @param {String} dataIndex The column dataIndex
8591      * @return {Number} the index, or -1 if not found
8592      */
8593     
8594     findColumnIndex : function(dataIndex){
8595         for(var i = 0, len = this.config.length; i < len; i++){
8596             if(this.config[i].dataIndex == dataIndex){
8597                 return i;
8598             }
8599         }
8600         return -1;
8601     },
8602     
8603     
8604     moveColumn : function(oldIndex, newIndex){
8605         var c = this.config[oldIndex];
8606         this.config.splice(oldIndex, 1);
8607         this.config.splice(newIndex, 0, c);
8608         this.dataMap = null;
8609         this.fireEvent("columnmoved", this, oldIndex, newIndex);
8610     },
8611
8612     isLocked : function(colIndex){
8613         return this.config[colIndex].locked === true;
8614     },
8615
8616     setLocked : function(colIndex, value, suppressEvent){
8617         if(this.isLocked(colIndex) == value){
8618             return;
8619         }
8620         this.config[colIndex].locked = value;
8621         if(!suppressEvent){
8622             this.fireEvent("columnlockchange", this, colIndex, value);
8623         }
8624     },
8625
8626     getTotalLockedWidth : function(){
8627         var totalWidth = 0;
8628         for(var i = 0; i < this.config.length; i++){
8629             if(this.isLocked(i) && !this.isHidden(i)){
8630                 this.totalWidth += this.getColumnWidth(i);
8631             }
8632         }
8633         return totalWidth;
8634     },
8635
8636     getLockedCount : function(){
8637         for(var i = 0, len = this.config.length; i < len; i++){
8638             if(!this.isLocked(i)){
8639                 return i;
8640             }
8641         }
8642         
8643         return this.config.length;
8644     },
8645
8646     /**
8647      * Returns the number of columns.
8648      * @return {Number}
8649      */
8650     getColumnCount : function(visibleOnly){
8651         if(visibleOnly === true){
8652             var c = 0;
8653             for(var i = 0, len = this.config.length; i < len; i++){
8654                 if(!this.isHidden(i)){
8655                     c++;
8656                 }
8657             }
8658             return c;
8659         }
8660         return this.config.length;
8661     },
8662
8663     /**
8664      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
8665      * @param {Function} fn
8666      * @param {Object} scope (optional)
8667      * @return {Array} result
8668      */
8669     getColumnsBy : function(fn, scope){
8670         var r = [];
8671         for(var i = 0, len = this.config.length; i < len; i++){
8672             var c = this.config[i];
8673             if(fn.call(scope||this, c, i) === true){
8674                 r[r.length] = c;
8675             }
8676         }
8677         return r;
8678     },
8679
8680     /**
8681      * Returns true if the specified column is sortable.
8682      * @param {Number} col The column index
8683      * @return {Boolean}
8684      */
8685     isSortable : function(col){
8686         if(typeof this.config[col].sortable == "undefined"){
8687             return this.defaultSortable;
8688         }
8689         return this.config[col].sortable;
8690     },
8691
8692     /**
8693      * Returns the rendering (formatting) function defined for the column.
8694      * @param {Number} col The column index.
8695      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
8696      */
8697     getRenderer : function(col){
8698         if(!this.config[col].renderer){
8699             return Roo.grid.ColumnModel.defaultRenderer;
8700         }
8701         return this.config[col].renderer;
8702     },
8703
8704     /**
8705      * Sets the rendering (formatting) function for a column.
8706      * @param {Number} col The column index
8707      * @param {Function} fn The function to use to process the cell's raw data
8708      * to return HTML markup for the grid view. The render function is called with
8709      * the following parameters:<ul>
8710      * <li>Data value.</li>
8711      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
8712      * <li>css A CSS style string to apply to the table cell.</li>
8713      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
8714      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
8715      * <li>Row index</li>
8716      * <li>Column index</li>
8717      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
8718      */
8719     setRenderer : function(col, fn){
8720         this.config[col].renderer = fn;
8721     },
8722
8723     /**
8724      * Returns the width for the specified column.
8725      * @param {Number} col The column index
8726      * @param (optional) {String} gridSize bootstrap width size.
8727      * @return {Number}
8728      */
8729     getColumnWidth : function(col, gridSize)
8730         {
8731                 var cfg = this.config[col];
8732                 
8733                 if (typeof(gridSize) == 'undefined') {
8734                         return cfg.width * 1 || this.defaultWidth;
8735                 }
8736                 if (gridSize === false) { // if we set it..
8737                         return cfg.width || false;
8738                 }
8739                 var sizes = ['xl', 'lg', 'md', 'sm', 'xs'];
8740                 
8741                 for(var i = sizes.indexOf(gridSize); i < sizes.length; i++) {
8742                         if (typeof(cfg[ sizes[i] ] ) == 'undefined') {
8743                                 continue;
8744                         }
8745                         return cfg[ sizes[i] ];
8746                 }
8747                 return 1;
8748                 
8749     },
8750
8751     /**
8752      * Sets the width for a column.
8753      * @param {Number} col The column index
8754      * @param {Number} width The new width
8755      */
8756     setColumnWidth : function(col, width, suppressEvent){
8757         this.config[col].width = width;
8758         this.totalWidth = null;
8759         if(!suppressEvent){
8760              this.fireEvent("widthchange", this, col, width);
8761         }
8762     },
8763
8764     /**
8765      * Returns the total width of all columns.
8766      * @param {Boolean} includeHidden True to include hidden column widths
8767      * @return {Number}
8768      */
8769     getTotalWidth : function(includeHidden){
8770         if(!this.totalWidth){
8771             this.totalWidth = 0;
8772             for(var i = 0, len = this.config.length; i < len; i++){
8773                 if(includeHidden || !this.isHidden(i)){
8774                     this.totalWidth += this.getColumnWidth(i);
8775                 }
8776             }
8777         }
8778         return this.totalWidth;
8779     },
8780
8781     /**
8782      * Returns the header for the specified column.
8783      * @param {Number} col The column index
8784      * @return {String}
8785      */
8786     getColumnHeader : function(col){
8787         return this.config[col].header;
8788     },
8789
8790     /**
8791      * Sets the header for a column.
8792      * @param {Number} col The column index
8793      * @param {String} header The new header
8794      */
8795     setColumnHeader : function(col, header){
8796         this.config[col].header = header;
8797         this.fireEvent("headerchange", this, col, header);
8798     },
8799
8800     /**
8801      * Returns the tooltip for the specified column.
8802      * @param {Number} col The column index
8803      * @return {String}
8804      */
8805     getColumnTooltip : function(col){
8806             return this.config[col].tooltip;
8807     },
8808     /**
8809      * Sets the tooltip for a column.
8810      * @param {Number} col The column index
8811      * @param {String} tooltip The new tooltip
8812      */
8813     setColumnTooltip : function(col, tooltip){
8814             this.config[col].tooltip = tooltip;
8815     },
8816
8817     /**
8818      * Returns the dataIndex for the specified column.
8819      * @param {Number} col The column index
8820      * @return {Number}
8821      */
8822     getDataIndex : function(col){
8823         return this.config[col].dataIndex;
8824     },
8825
8826     /**
8827      * Sets the dataIndex for a column.
8828      * @param {Number} col The column index
8829      * @param {Number} dataIndex The new dataIndex
8830      */
8831     setDataIndex : function(col, dataIndex){
8832         this.config[col].dataIndex = dataIndex;
8833     },
8834
8835     
8836     
8837     /**
8838      * Returns true if the cell is editable.
8839      * @param {Number} colIndex The column index
8840      * @param {Number} rowIndex The row index - this is nto actually used..?
8841      * @return {Boolean}
8842      */
8843     isCellEditable : function(colIndex, rowIndex){
8844         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
8845     },
8846
8847     /**
8848      * Returns the editor defined for the cell/column.
8849      * return false or null to disable editing.
8850      * @param {Number} colIndex The column index
8851      * @param {Number} rowIndex The row index
8852      * @return {Object}
8853      */
8854     getCellEditor : function(colIndex, rowIndex){
8855         return this.config[colIndex].editor;
8856     },
8857
8858     /**
8859      * Sets if a column is editable.
8860      * @param {Number} col The column index
8861      * @param {Boolean} editable True if the column is editable
8862      */
8863     setEditable : function(col, editable){
8864         this.config[col].editable = editable;
8865     },
8866
8867
8868     /**
8869      * Returns true if the column is hidden.
8870      * @param {Number} colIndex The column index
8871      * @return {Boolean}
8872      */
8873     isHidden : function(colIndex){
8874         return this.config[colIndex].hidden;
8875     },
8876
8877
8878     /**
8879      * Returns true if the column width cannot be changed
8880      */
8881     isFixed : function(colIndex){
8882         return this.config[colIndex].fixed;
8883     },
8884
8885     /**
8886      * Returns true if the column can be resized
8887      * @return {Boolean}
8888      */
8889     isResizable : function(colIndex){
8890         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
8891     },
8892     /**
8893      * Sets if a column is hidden.
8894      * @param {Number} colIndex The column index
8895      * @param {Boolean} hidden True if the column is hidden
8896      */
8897     setHidden : function(colIndex, hidden){
8898         this.config[colIndex].hidden = hidden;
8899         this.totalWidth = null;
8900         this.fireEvent("hiddenchange", this, colIndex, hidden);
8901     },
8902
8903     /**
8904      * Sets the editor for a column.
8905      * @param {Number} col The column index
8906      * @param {Object} editor The editor object
8907      */
8908     setEditor : function(col, editor){
8909         this.config[col].editor = editor;
8910     },
8911     /**
8912      * Add a column (experimental...) - defaults to adding to the end..
8913      * @param {Object} config 
8914     */
8915     addColumn : function(c)
8916     {
8917     
8918         var i = this.config.length;
8919         this.config[i] = c;
8920         
8921         if(typeof c.dataIndex == "undefined"){
8922             c.dataIndex = i;
8923         }
8924         if(typeof c.renderer == "string"){
8925             c.renderer = Roo.util.Format[c.renderer];
8926         }
8927         if(typeof c.id == "undefined"){
8928             c.id = Roo.id();
8929         }
8930         if(c.editor && c.editor.xtype){
8931             c.editor  = Roo.factory(c.editor, Roo.grid);
8932         }
8933         if(c.editor && c.editor.isFormField){
8934             c.editor = new Roo.grid.GridEditor(c.editor);
8935         }
8936         this.lookup[c.id] = c;
8937     }
8938     
8939 });
8940
8941 Roo.grid.ColumnModel.defaultRenderer = function(value)
8942 {
8943     if(typeof value == "object") {
8944         return value;
8945     }
8946         if(typeof value == "string" && value.length < 1){
8947             return "&#160;";
8948         }
8949     
8950         return String.format("{0}", value);
8951 };
8952
8953 // Alias for backwards compatibility
8954 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
8955 /*
8956  * Based on:
8957  * Ext JS Library 1.1.1
8958  * Copyright(c) 2006-2007, Ext JS, LLC.
8959  *
8960  * Originally Released Under LGPL - original licence link has changed is not relivant.
8961  *
8962  * Fork - LGPL
8963  * <script type="text/javascript">
8964  */
8965  
8966 /**
8967  * @class Roo.LoadMask
8968  * A simple utility class for generically masking elements while loading data.  If the element being masked has
8969  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
8970  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
8971  * element's UpdateManager load indicator and will be destroyed after the initial load.
8972  * @constructor
8973  * Create a new LoadMask
8974  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
8975  * @param {Object} config The config object
8976  */
8977 Roo.LoadMask = function(el, config){
8978     this.el = Roo.get(el);
8979     Roo.apply(this, config);
8980     if(this.store){
8981         this.store.on('beforeload', this.onBeforeLoad, this);
8982         this.store.on('load', this.onLoad, this);
8983         this.store.on('loadexception', this.onLoadException, this);
8984         this.removeMask = false;
8985     }else{
8986         var um = this.el.getUpdateManager();
8987         um.showLoadIndicator = false; // disable the default indicator
8988         um.on('beforeupdate', this.onBeforeLoad, this);
8989         um.on('update', this.onLoad, this);
8990         um.on('failure', this.onLoad, this);
8991         this.removeMask = true;
8992     }
8993 };
8994
8995 Roo.LoadMask.prototype = {
8996     /**
8997      * @cfg {Boolean} removeMask
8998      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
8999      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
9000      */
9001     removeMask : false,
9002     /**
9003      * @cfg {String} msg
9004      * The text to display in a centered loading message box (defaults to 'Loading...')
9005      */
9006     msg : 'Loading...',
9007     /**
9008      * @cfg {String} msgCls
9009      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
9010      */
9011     msgCls : 'x-mask-loading',
9012
9013     /**
9014      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
9015      * @type Boolean
9016      */
9017     disabled: false,
9018
9019     /**
9020      * Disables the mask to prevent it from being displayed
9021      */
9022     disable : function(){
9023        this.disabled = true;
9024     },
9025
9026     /**
9027      * Enables the mask so that it can be displayed
9028      */
9029     enable : function(){
9030         this.disabled = false;
9031     },
9032     
9033     onLoadException : function()
9034     {
9035         Roo.log(arguments);
9036         
9037         if (typeof(arguments[3]) != 'undefined') {
9038             Roo.MessageBox.alert("Error loading",arguments[3]);
9039         } 
9040         /*
9041         try {
9042             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
9043                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
9044             }   
9045         } catch(e) {
9046             
9047         }
9048         */
9049     
9050         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
9051     },
9052     // private
9053     onLoad : function()
9054     {
9055         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
9056     },
9057
9058     // private
9059     onBeforeLoad : function(){
9060         if(!this.disabled){
9061             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
9062         }
9063     },
9064
9065     // private
9066     destroy : function(){
9067         if(this.store){
9068             this.store.un('beforeload', this.onBeforeLoad, this);
9069             this.store.un('load', this.onLoad, this);
9070             this.store.un('loadexception', this.onLoadException, this);
9071         }else{
9072             var um = this.el.getUpdateManager();
9073             um.un('beforeupdate', this.onBeforeLoad, this);
9074             um.un('update', this.onLoad, this);
9075             um.un('failure', this.onLoad, this);
9076         }
9077     }
9078 };/**
9079  * @class Roo.bootstrap.Table
9080  * @licence LGBL
9081  * @extends Roo.bootstrap.Component
9082  * @children Roo.bootstrap.TableBody
9083  * Bootstrap Table class.  This class represents the primary interface of a component based grid control.
9084  * Similar to Roo.grid.Grid
9085  * <pre><code>
9086  var table = Roo.factory({
9087     xtype : 'Table',
9088     xns : Roo.bootstrap,
9089     autoSizeColumns: true,
9090     
9091     
9092     store : {
9093         xtype : 'Store',
9094         xns : Roo.data,
9095         remoteSort : true,
9096         sortInfo : { direction : 'ASC', field: 'name' },
9097         proxy : {
9098            xtype : 'HttpProxy',
9099            xns : Roo.data,
9100            method : 'GET',
9101            url : 'https://example.com/some.data.url.json'
9102         },
9103         reader : {
9104            xtype : 'JsonReader',
9105            xns : Roo.data,
9106            fields : [ 'id', 'name', whatever' ],
9107            id : 'id',
9108            root : 'data'
9109         }
9110     },
9111     cm : [
9112         {
9113             xtype : 'ColumnModel',
9114             xns : Roo.grid,
9115             align : 'center',
9116             cursor : 'pointer',
9117             dataIndex : 'is_in_group',
9118             header : "Name",
9119             sortable : true,
9120             renderer : function(v, x , r) {  
9121             
9122                 return String.format("{0}", v)
9123             }
9124             width : 3
9125         } // more columns..
9126     ],
9127     selModel : {
9128         xtype : 'RowSelectionModel',
9129         xns : Roo.bootstrap.Table
9130         // you can add listeners to catch selection change here....
9131     }
9132      
9133
9134  });
9135  // set any options
9136  grid.render(Roo.get("some-div"));
9137 </code></pre>
9138
9139 Currently the Table  uses multiple headers to try and handle XL / Medium etc... styling
9140
9141
9142
9143  *
9144  * @cfg {Roo.grid.AbstractSelectionModel} sm The selection model to use (cell selection is not supported yet)
9145  * @cfg {Roo.data.Store} store The data store to use
9146  * @cfg {Roo.grid.ColumnModel} cm[] A column for the grid.
9147  * 
9148  * @cfg {String} cls table class
9149  *
9150  *
9151  * @cfg {string} empty_results  Text to display for no results 
9152  * @cfg {boolean} striped Should the rows be alternative striped
9153  * @cfg {boolean} bordered Add borders to the table
9154  * @cfg {boolean} hover Add hover highlighting
9155  * @cfg {boolean} condensed Format condensed
9156  * @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,
9157  *                also adds table-responsive (see bootstrap docs for details)
9158  * @cfg {Boolean} loadMask (true|false) default false
9159  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
9160  * @cfg {Boolean} headerShow (true|false) generate thead, default true
9161  * @cfg {Boolean} rowSelection (true|false) default false
9162  * @cfg {Boolean} cellSelection (true|false) default false
9163  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header (with resizable columns)
9164  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
9165  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
9166  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
9167  * @cfg {Boolean} enableColumnResize default true if columns can be resized = needs scrollBody to be set to work (drag/drop)
9168  *
9169  * 
9170  * @cfg {Number} minColumnWidth default 50 pixels minimum column width 
9171  * 
9172  * @constructor
9173  * Create a new Table
9174  * @param {Object} config The config object
9175  */
9176
9177 Roo.bootstrap.Table = function(config)
9178 {
9179     Roo.bootstrap.Table.superclass.constructor.call(this, config);
9180      
9181     // BC...
9182     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
9183     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
9184     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
9185     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
9186     
9187     this.view = this; // compat with grid.
9188     
9189     this.sm = this.sm || {xtype: 'RowSelectionModel'};
9190     if (this.sm) {
9191         this.sm.grid = this;
9192         this.selModel = Roo.factory(this.sm, Roo.grid);
9193         this.sm = this.selModel;
9194         this.sm.xmodule = this.xmodule || false;
9195     }
9196     
9197     if (this.cm && typeof(this.cm.config) == 'undefined') {
9198         this.colModel = new Roo.grid.ColumnModel(this.cm);
9199         this.cm = this.colModel;
9200         this.cm.xmodule = this.xmodule || false;
9201     }
9202     if (this.store) {
9203         this.store= Roo.factory(this.store, Roo.data);
9204         this.ds = this.store;
9205         this.ds.xmodule = this.xmodule || false;
9206          
9207     }
9208     if (this.footer && this.store) {
9209         this.footer.dataSource = this.ds;
9210         this.footer = Roo.factory(this.footer);
9211     }
9212     
9213     /** @private */
9214     this.addEvents({
9215         /**
9216          * @event cellclick
9217          * Fires when a cell is clicked
9218          * @param {Roo.bootstrap.Table} this
9219          * @param {Roo.Element} el
9220          * @param {Number} rowIndex
9221          * @param {Number} columnIndex
9222          * @param {Roo.EventObject} e
9223          */
9224         "cellclick" : true,
9225         /**
9226          * @event celldblclick
9227          * Fires when a cell is double clicked
9228          * @param {Roo.bootstrap.Table} this
9229          * @param {Roo.Element} el
9230          * @param {Number} rowIndex
9231          * @param {Number} columnIndex
9232          * @param {Roo.EventObject} e
9233          */
9234         "celldblclick" : true,
9235         /**
9236          * @event rowclick
9237          * Fires when a row is clicked
9238          * @param {Roo.bootstrap.Table} this
9239          * @param {Roo.Element} el
9240          * @param {Number} rowIndex
9241          * @param {Roo.EventObject} e
9242          */
9243         "rowclick" : true,
9244         /**
9245          * @event rowdblclick
9246          * Fires when a row is double clicked
9247          * @param {Roo.bootstrap.Table} this
9248          * @param {Roo.Element} el
9249          * @param {Number} rowIndex
9250          * @param {Roo.EventObject} e
9251          */
9252         "rowdblclick" : true,
9253         /**
9254          * @event mouseover
9255          * Fires when a mouseover occur
9256          * @param {Roo.bootstrap.Table} this
9257          * @param {Roo.Element} el
9258          * @param {Number} rowIndex
9259          * @param {Number} columnIndex
9260          * @param {Roo.EventObject} e
9261          */
9262         "mouseover" : true,
9263         /**
9264          * @event mouseout
9265          * Fires when a mouseout occur
9266          * @param {Roo.bootstrap.Table} this
9267          * @param {Roo.Element} el
9268          * @param {Number} rowIndex
9269          * @param {Number} columnIndex
9270          * @param {Roo.EventObject} e
9271          */
9272         "mouseout" : true,
9273         /**
9274          * @event rowclass
9275          * Fires when a row is rendered, so you can change add a style to it.
9276          * @param {Roo.bootstrap.Table} this
9277          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
9278          */
9279         'rowclass' : true,
9280           /**
9281          * @event rowsrendered
9282          * Fires when all the  rows have been rendered
9283          * @param {Roo.bootstrap.Table} this
9284          */
9285         'rowsrendered' : true,
9286         /**
9287          * @event contextmenu
9288          * The raw contextmenu event for the entire grid.
9289          * @param {Roo.EventObject} e
9290          */
9291         "contextmenu" : true,
9292         /**
9293          * @event rowcontextmenu
9294          * Fires when a row is right clicked
9295          * @param {Roo.bootstrap.Table} this
9296          * @param {Number} rowIndex
9297          * @param {Roo.EventObject} e
9298          */
9299         "rowcontextmenu" : true,
9300         /**
9301          * @event cellcontextmenu
9302          * Fires when a cell is right clicked
9303          * @param {Roo.bootstrap.Table} this
9304          * @param {Number} rowIndex
9305          * @param {Number} cellIndex
9306          * @param {Roo.EventObject} e
9307          */
9308          "cellcontextmenu" : true,
9309          /**
9310          * @event headercontextmenu
9311          * Fires when a header is right clicked
9312          * @param {Roo.bootstrap.Table} this
9313          * @param {Number} columnIndex
9314          * @param {Roo.EventObject} e
9315          */
9316         "headercontextmenu" : true,
9317         /**
9318          * @event mousedown
9319          * The raw mousedown event for the entire grid.
9320          * @param {Roo.EventObject} e
9321          */
9322         "mousedown" : true
9323         
9324     });
9325 };
9326
9327 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
9328     
9329     cls: false,
9330     
9331     empty_results : '',
9332     striped : false,
9333     scrollBody : false,
9334     bordered: false,
9335     hover:  false,
9336     condensed : false,
9337     responsive : false,
9338     sm : false,
9339     cm : false,
9340     store : false,
9341     loadMask : false,
9342     footerShow : true,
9343     headerShow : true,
9344     enableColumnResize: true,
9345   
9346     rowSelection : false,
9347     cellSelection : false,
9348     layout : false,
9349
9350     minColumnWidth : 50,
9351     
9352     // Roo.Element - the tbody
9353     bodyEl: false,  // <tbody> Roo.Element - thead element    
9354     headEl: false,  // <thead> Roo.Element - thead element
9355     resizeProxy : false, // proxy element for dragging?
9356
9357
9358     
9359     container: false, // used by gridpanel...
9360     
9361     lazyLoad : false,
9362     
9363     CSS : Roo.util.CSS,
9364     
9365     auto_hide_footer : false,
9366     
9367     view: false, // actually points to this..
9368     
9369     getAutoCreate : function()
9370     {
9371         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
9372         
9373         cfg = {
9374             tag: 'table',
9375             cls : 'table', 
9376             cn : []
9377         };
9378         // this get's auto added by panel.Grid
9379         if (this.scrollBody) {
9380             cfg.cls += ' table-body-fixed';
9381         }    
9382         if (this.striped) {
9383             cfg.cls += ' table-striped';
9384         }
9385         
9386         if (this.hover) {
9387             cfg.cls += ' table-hover';
9388         }
9389         if (this.bordered) {
9390             cfg.cls += ' table-bordered';
9391         }
9392         if (this.condensed) {
9393             cfg.cls += ' table-condensed';
9394         }
9395         
9396         if (this.responsive) {
9397             cfg.cls += ' table-responsive';
9398         }
9399         
9400         if (this.cls) {
9401             cfg.cls+=  ' ' +this.cls;
9402         }
9403         
9404         
9405         
9406         if (this.layout) {
9407             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
9408         }
9409         
9410         if(this.store || this.cm){
9411             if(this.headerShow){
9412                 cfg.cn.push(this.renderHeader());
9413             }
9414             
9415             cfg.cn.push(this.renderBody());
9416             
9417             if(this.footerShow){
9418                 cfg.cn.push(this.renderFooter());
9419             }
9420             // where does this come from?
9421             //cfg.cls+=  ' TableGrid';
9422         }
9423         
9424         return { cn : [ cfg ] };
9425     },
9426     
9427     initEvents : function()
9428     {   
9429         if(!this.store || !this.cm){
9430             return;
9431         }
9432         if (this.selModel) {
9433             this.selModel.initEvents();
9434         }
9435         
9436         
9437         //Roo.log('initEvents with ds!!!!');
9438         
9439         this.bodyEl = this.el.select('tbody', true).first();
9440         this.headEl = this.el.select('thead', true).first();
9441         this.mainFoot = this.el.select('tfoot', true).first();
9442         
9443         
9444         
9445         
9446         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
9447             e.on('click', this.sort, this);
9448         }, this);
9449         
9450         
9451         // why is this done????? = it breaks dialogs??
9452         //this.parent().el.setStyle('position', 'relative');
9453         
9454         
9455         if (this.footer) {
9456             this.footer.parentId = this.id;
9457             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
9458             
9459             if(this.lazyLoad){
9460                 this.el.select('tfoot tr td').first().addClass('hide');
9461             }
9462         } 
9463         
9464         if(this.loadMask) {
9465             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
9466         }
9467         
9468         this.store.on('load', this.onLoad, this);
9469         this.store.on('beforeload', this.onBeforeLoad, this);
9470         this.store.on('update', this.onUpdate, this);
9471         this.store.on('add', this.onAdd, this);
9472         this.store.on("clear", this.clear, this);
9473         
9474         this.el.on("contextmenu", this.onContextMenu, this);
9475         
9476         
9477         this.cm.on("headerchange", this.onHeaderChange, this);
9478         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
9479
9480  //?? does bodyEl get replaced on render?
9481         this.bodyEl.on("click", this.onClick, this);
9482         this.bodyEl.on("dblclick", this.onDblClick, this);        
9483         this.bodyEl.on('scroll', this.onBodyScroll, this);
9484
9485         // guessing mainbody will work - this relays usually caught by selmodel at present.
9486         this.relayEvents(this.bodyEl, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
9487   
9488   
9489         this.resizeProxy = Roo.get(document.body).createChild({ cls:"x-grid-resize-proxy", html: '&#160;' });
9490         
9491   
9492         if(this.headEl && this.enableColumnResize !== false && Roo.grid.SplitDragZone){
9493             new Roo.grid.SplitDragZone(this, this.headEl.dom, false); // not sure what 'lockedHd is for this implementation..)
9494         }
9495         
9496         this.initCSS();
9497     },
9498     // Compatibility with grid - we implement all the view features at present.
9499     getView : function()
9500     {
9501         return this;
9502     },
9503     
9504     initCSS : function()
9505     {
9506         
9507         
9508         var cm = this.cm, styles = [];
9509         this.CSS.removeStyleSheet(this.id + '-cssrules');
9510         var headHeight = this.headEl ? this.headEl.dom.clientHeight : 0;
9511         // we can honour xs/sm/md/xl  as widths...
9512         // we first have to decide what widht we are currently at...
9513         var sz = Roo.getGridSize();
9514         
9515         var total = 0;
9516         var last = -1;
9517         var cols = []; // visable cols.
9518         var total_abs = 0;
9519         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
9520             var w = cm.getColumnWidth(i, false);
9521             if(cm.isHidden(i)){
9522                 cols.push( { rel : false, abs : 0 });
9523                 continue;
9524             }
9525             if (w !== false) {
9526                 cols.push( { rel : false, abs : w });
9527                 total_abs += w;
9528                 last = i; // not really..
9529                 continue;
9530             }
9531             var w = cm.getColumnWidth(i, sz);
9532             if (w > 0) {
9533                 last = i
9534             }
9535             total += w;
9536             cols.push( { rel : w, abs : false });
9537         }
9538         
9539         var avail = this.bodyEl.dom.clientWidth - total_abs;
9540         
9541         var unitWidth = Math.floor(avail / total);
9542         var rem = avail - (unitWidth * total);
9543         
9544         var hidden, width, pos = 0 , splithide , left;
9545         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
9546             
9547             hidden = 'display:none;';
9548             left = '';
9549             width  = 'width:0px;';
9550             splithide = '';
9551             if(!cm.isHidden(i)){
9552                 hidden = '';
9553                 
9554                 
9555                 // we can honour xs/sm/md/xl ?
9556                 var w = cols[i].rel == false ? cols[i].abs : (cols[i].rel * unitWidth);
9557                 if (w===0) {
9558                     hidden = 'display:none;';
9559                 }
9560                 // width should return a small number...
9561                 if (i == last) {
9562                     w+=rem; // add the remaining with..
9563                 }
9564                 pos += w;
9565                 left = "left:" + (pos -4) + "px;";
9566                 width = "width:" + w+ "px;";
9567                 
9568             }
9569             if (this.responsive) {
9570                 width = '';
9571                 left = '';
9572                 hidden = cm.isHidden(i) ? 'display:none;' : '';
9573                 splithide = 'display: none;';
9574             }
9575             
9576             styles.push( '#' , this.id , ' .x-col-' , i, " {", cm.config[i].css, width, hidden, "}\n" );
9577             if (this.headEl) {
9578                 if (i == last) {
9579                     splithide = 'display:none;';
9580                 }
9581                 
9582                 styles.push('#' , this.id , ' .x-hcol-' , i, " { ", width, hidden," }\n",
9583                             '#' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', (headHeight - 4), "px;}\n",
9584                             // this is the popover version..
9585                             '.popover-inner #' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', 100, "%;}\n"
9586                 );
9587             }
9588             
9589         }
9590         //Roo.log(styles.join(''));
9591         this.CSS.createStyleSheet( styles.join(''), this.id + '-cssrules');
9592         
9593     },
9594     
9595     
9596     
9597     onContextMenu : function(e, t)
9598     {
9599         this.processEvent("contextmenu", e);
9600     },
9601     
9602     processEvent : function(name, e)
9603     {
9604         if (name != 'touchstart' ) {
9605             this.fireEvent(name, e);    
9606         }
9607         
9608         var t = e.getTarget();
9609         
9610         var cell = Roo.get(t);
9611         
9612         if(!cell){
9613             return;
9614         }
9615         
9616         if(cell.findParent('tfoot', false, true)){
9617             return;
9618         }
9619         
9620         if(cell.findParent('thead', false, true)){
9621             
9622             if(e.getTarget().nodeName.toLowerCase() != 'th'){
9623                 cell = Roo.get(t).findParent('th', false, true);
9624                 if (!cell) {
9625                     Roo.log("failed to find th in thead?");
9626                     Roo.log(e.getTarget());
9627                     return;
9628                 }
9629             }
9630             
9631             var cellIndex = cell.dom.cellIndex;
9632             
9633             var ename = name == 'touchstart' ? 'click' : name;
9634             this.fireEvent("header" + ename, this, cellIndex, e);
9635             
9636             return;
9637         }
9638         
9639         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9640             cell = Roo.get(t).findParent('td', false, true);
9641             if (!cell) {
9642                 Roo.log("failed to find th in tbody?");
9643                 Roo.log(e.getTarget());
9644                 return;
9645             }
9646         }
9647         
9648         var row = cell.findParent('tr', false, true);
9649         var cellIndex = cell.dom.cellIndex;
9650         var rowIndex = row.dom.rowIndex - 1;
9651         
9652         if(row !== false){
9653             
9654             this.fireEvent("row" + name, this, rowIndex, e);
9655             
9656             if(cell !== false){
9657             
9658                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
9659             }
9660         }
9661         
9662     },
9663     
9664     onMouseover : function(e, el)
9665     {
9666         var cell = Roo.get(el);
9667         
9668         if(!cell){
9669             return;
9670         }
9671         
9672         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9673             cell = cell.findParent('td', false, true);
9674         }
9675         
9676         var row = cell.findParent('tr', false, true);
9677         var cellIndex = cell.dom.cellIndex;
9678         var rowIndex = row.dom.rowIndex - 1; // start from 0
9679         
9680         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
9681         
9682     },
9683     
9684     onMouseout : function(e, el)
9685     {
9686         var cell = Roo.get(el);
9687         
9688         if(!cell){
9689             return;
9690         }
9691         
9692         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9693             cell = cell.findParent('td', false, true);
9694         }
9695         
9696         var row = cell.findParent('tr', false, true);
9697         var cellIndex = cell.dom.cellIndex;
9698         var rowIndex = row.dom.rowIndex - 1; // start from 0
9699         
9700         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
9701         
9702     },
9703     
9704     onClick : function(e, el)
9705     {
9706         var cell = Roo.get(el);
9707         
9708         if(!cell || (!this.cellSelection && !this.rowSelection)){
9709             return;
9710         }
9711         
9712         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9713             cell = cell.findParent('td', false, true);
9714         }
9715         
9716         if(!cell || typeof(cell) == 'undefined'){
9717             return;
9718         }
9719         
9720         var row = cell.findParent('tr', false, true);
9721         
9722         if(!row || typeof(row) == 'undefined'){
9723             return;
9724         }
9725         
9726         var cellIndex = cell.dom.cellIndex;
9727         var rowIndex = this.getRowIndex(row);
9728         
9729         // why??? - should these not be based on SelectionModel?
9730         //if(this.cellSelection){
9731             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
9732         //}
9733         
9734         //if(this.rowSelection){
9735             this.fireEvent('rowclick', this, row, rowIndex, e);
9736         //}
9737          
9738     },
9739         
9740     onDblClick : function(e,el)
9741     {
9742         var cell = Roo.get(el);
9743         
9744         if(!cell || (!this.cellSelection && !this.rowSelection)){
9745             return;
9746         }
9747         
9748         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9749             cell = cell.findParent('td', false, true);
9750         }
9751         
9752         if(!cell || typeof(cell) == 'undefined'){
9753             return;
9754         }
9755         
9756         var row = cell.findParent('tr', false, true);
9757         
9758         if(!row || typeof(row) == 'undefined'){
9759             return;
9760         }
9761         
9762         var cellIndex = cell.dom.cellIndex;
9763         var rowIndex = this.getRowIndex(row);
9764         
9765         if(this.cellSelection){
9766             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
9767         }
9768         
9769         if(this.rowSelection){
9770             this.fireEvent('rowdblclick', this, row, rowIndex, e);
9771         }
9772     },
9773     findRowIndex : function(el)
9774     {
9775         var cell = Roo.get(el);
9776         if(!cell) {
9777             return false;
9778         }
9779         var row = cell.findParent('tr', false, true);
9780         
9781         if(!row || typeof(row) == 'undefined'){
9782             return false;
9783         }
9784         return this.getRowIndex(row);
9785     },
9786     sort : function(e,el)
9787     {
9788         var col = Roo.get(el);
9789         
9790         if(!col.hasClass('sortable')){
9791             return;
9792         }
9793         
9794         var sort = col.attr('sort');
9795         var dir = 'ASC';
9796         
9797         if(col.select('i', true).first().hasClass('fa-arrow-up')){
9798             dir = 'DESC';
9799         }
9800         
9801         this.store.sortInfo = {field : sort, direction : dir};
9802         
9803         if (this.footer) {
9804             Roo.log("calling footer first");
9805             this.footer.onClick('first');
9806         } else {
9807         
9808             this.store.load({ params : { start : 0 } });
9809         }
9810     },
9811     
9812     renderHeader : function()
9813     {
9814         var header = {
9815             tag: 'thead',
9816             cn : []
9817         };
9818         
9819         var cm = this.cm;
9820         this.totalWidth = 0;
9821         
9822         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
9823             
9824             var config = cm.config[i];
9825             
9826             var c = {
9827                 tag: 'th',
9828                 cls : 'x-hcol-' + i,
9829                 style : '',
9830                 
9831                 html: cm.getColumnHeader(i)
9832             };
9833             
9834             var tooltip = cm.getColumnTooltip(i);
9835             if (tooltip) {
9836                 c.tooltip = tooltip;
9837             }
9838             
9839             
9840             var hh = '';
9841             
9842             if(typeof(config.sortable) != 'undefined' && config.sortable){
9843                 c.cls += ' sortable';
9844                 c.html = '<i class="fa"></i>' + c.html;
9845             }
9846             
9847             // could use BS4 hidden-..-down 
9848             
9849             if(typeof(config.lgHeader) != 'undefined'){
9850                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
9851             }
9852             
9853             if(typeof(config.mdHeader) != 'undefined'){
9854                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
9855             }
9856             
9857             if(typeof(config.smHeader) != 'undefined'){
9858                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
9859             }
9860             
9861             if(typeof(config.xsHeader) != 'undefined'){
9862                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
9863             }
9864             
9865             if(hh.length){
9866                 c.html = hh;
9867             }
9868             
9869             if(typeof(config.tooltip) != 'undefined'){
9870                 c.tooltip = config.tooltip;
9871             }
9872             
9873             if(typeof(config.colspan) != 'undefined'){
9874                 c.colspan = config.colspan;
9875             }
9876             
9877             // hidden is handled by CSS now
9878             
9879             if(typeof(config.dataIndex) != 'undefined'){
9880                 c.sort = config.dataIndex;
9881             }
9882             
9883            
9884             
9885             if(typeof(config.align) != 'undefined' && config.align.length){
9886                 c.style += ' text-align:' + config.align + ';';
9887             }
9888             
9889             /* width is done in CSS
9890              *if(typeof(config.width) != 'undefined'){
9891                 c.style += ' width:' + config.width + 'px;';
9892                 this.totalWidth += config.width;
9893             } else {
9894                 this.totalWidth += 100; // assume minimum of 100 per column?
9895             }
9896             */
9897             
9898             if(typeof(config.cls) != 'undefined'){
9899                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
9900             }
9901             // this is the bit that doesnt reall work at all...
9902             
9903             if (this.responsive) {
9904                  
9905             
9906                 ['xs','sm','md','lg'].map(function(size){
9907                     
9908                     if(typeof(config[size]) == 'undefined'){
9909                         return;
9910                     }
9911                      
9912                     if (!config[size]) { // 0 = hidden
9913                         // BS 4 '0' is treated as hide that column and below.
9914                         c.cls += ' hidden-' + size + ' hidden' + size + '-down';
9915                         return;
9916                     }
9917                     
9918                     c.cls += ' col-' + size + '-' + config[size] + (
9919                         size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
9920                     );
9921                     
9922                     
9923                 });
9924             }
9925             // at the end?
9926             
9927             c.html +=' <span class="x-grid-split x-grid-split-' + i + '"></span>';
9928             
9929             
9930             
9931             
9932             header.cn.push(c)
9933         }
9934         
9935         return header;
9936     },
9937     
9938     renderBody : function()
9939     {
9940         var body = {
9941             tag: 'tbody',
9942             cn : [
9943                 {
9944                     tag: 'tr',
9945                     cn : [
9946                         {
9947                             tag : 'td',
9948                             colspan :  this.cm.getColumnCount()
9949                         }
9950                     ]
9951                 }
9952             ]
9953         };
9954         
9955         return body;
9956     },
9957     
9958     renderFooter : function()
9959     {
9960         var footer = {
9961             tag: 'tfoot',
9962             cn : [
9963                 {
9964                     tag: 'tr',
9965                     cn : [
9966                         {
9967                             tag : 'td',
9968                             colspan :  this.cm.getColumnCount()
9969                         }
9970                     ]
9971                 }
9972             ]
9973         };
9974         
9975         return footer;
9976     },
9977     
9978     
9979     
9980     onLoad : function()
9981     {
9982 //        Roo.log('ds onload');
9983         this.clear();
9984         
9985         var _this = this;
9986         var cm = this.cm;
9987         var ds = this.store;
9988         
9989         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
9990             e.select('i', true).removeClass(['fa-arrow-up', 'fa-arrow-down']);
9991             if (_this.store.sortInfo) {
9992                     
9993                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
9994                     e.select('i', true).addClass(['fa-arrow-up']);
9995                 }
9996                 
9997                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
9998                     e.select('i', true).addClass(['fa-arrow-down']);
9999                 }
10000             }
10001         });
10002         
10003         var tbody =  this.bodyEl;
10004               
10005         if(ds.getCount() > 0){
10006             ds.data.each(function(d,rowIndex){
10007                 var row =  this.renderRow(cm, ds, rowIndex);
10008                 
10009                 tbody.createChild(row);
10010                 
10011                 var _this = this;
10012                 
10013                 if(row.cellObjects.length){
10014                     Roo.each(row.cellObjects, function(r){
10015                         _this.renderCellObject(r);
10016                     })
10017                 }
10018                 
10019             }, this);
10020         } else if (this.empty_results.length) {
10021             this.el.mask(this.empty_results, 'no-spinner');
10022         }
10023         
10024         var tfoot = this.el.select('tfoot', true).first();
10025         
10026         if(this.footerShow && this.auto_hide_footer && this.mainFoot){
10027             
10028             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
10029             
10030             var total = this.ds.getTotalCount();
10031             
10032             if(this.footer.pageSize < total){
10033                 this.mainFoot.show();
10034             }
10035         }
10036         
10037         Roo.each(this.el.select('tbody td', true).elements, function(e){
10038             e.on('mouseover', _this.onMouseover, _this);
10039         });
10040         
10041         Roo.each(this.el.select('tbody td', true).elements, function(e){
10042             e.on('mouseout', _this.onMouseout, _this);
10043         });
10044         this.fireEvent('rowsrendered', this);
10045         
10046         this.autoSize();
10047         
10048         this.initCSS(); /// resize cols
10049
10050         
10051     },
10052     
10053     
10054     onUpdate : function(ds,record)
10055     {
10056         this.refreshRow(record);
10057         this.autoSize();
10058     },
10059     
10060     onRemove : function(ds, record, index, isUpdate){
10061         if(isUpdate !== true){
10062             this.fireEvent("beforerowremoved", this, index, record);
10063         }
10064         var bt = this.bodyEl.dom;
10065         
10066         var rows = this.el.select('tbody > tr', true).elements;
10067         
10068         if(typeof(rows[index]) != 'undefined'){
10069             bt.removeChild(rows[index].dom);
10070         }
10071         
10072 //        if(bt.rows[index]){
10073 //            bt.removeChild(bt.rows[index]);
10074 //        }
10075         
10076         if(isUpdate !== true){
10077             //this.stripeRows(index);
10078             //this.syncRowHeights(index, index);
10079             //this.layout();
10080             this.fireEvent("rowremoved", this, index, record);
10081         }
10082     },
10083     
10084     onAdd : function(ds, records, rowIndex)
10085     {
10086         //Roo.log('on Add called');
10087         // - note this does not handle multiple adding very well..
10088         var bt = this.bodyEl.dom;
10089         for (var i =0 ; i < records.length;i++) {
10090             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
10091             //Roo.log(records[i]);
10092             //Roo.log(this.store.getAt(rowIndex+i));
10093             this.insertRow(this.store, rowIndex + i, false);
10094             return;
10095         }
10096         
10097     },
10098     
10099     
10100     refreshRow : function(record){
10101         var ds = this.store, index;
10102         if(typeof record == 'number'){
10103             index = record;
10104             record = ds.getAt(index);
10105         }else{
10106             index = ds.indexOf(record);
10107             if (index < 0) {
10108                 return; // should not happen - but seems to 
10109             }
10110         }
10111         this.insertRow(ds, index, true);
10112         this.autoSize();
10113         this.onRemove(ds, record, index+1, true);
10114         this.autoSize();
10115         //this.syncRowHeights(index, index);
10116         //this.layout();
10117         this.fireEvent("rowupdated", this, index, record);
10118     },
10119     // private - called by RowSelection
10120     onRowSelect : function(rowIndex){
10121         var row = this.getRowDom(rowIndex);
10122         row.addClass(['bg-info','info']);
10123     },
10124     // private - called by RowSelection
10125     onRowDeselect : function(rowIndex)
10126     {
10127         if (rowIndex < 0) {
10128             return;
10129         }
10130         var row = this.getRowDom(rowIndex);
10131         row.removeClass(['bg-info','info']);
10132     },
10133       /**
10134      * Focuses the specified row.
10135      * @param {Number} row The row index
10136      */
10137     focusRow : function(row)
10138     {
10139         //Roo.log('GridView.focusRow');
10140         var x = this.bodyEl.dom.scrollLeft;
10141         this.focusCell(row, 0, false);
10142         this.bodyEl.dom.scrollLeft = x;
10143
10144     },
10145      /**
10146      * Focuses the specified cell.
10147      * @param {Number} row The row index
10148      * @param {Number} col The column index
10149      * @param {Boolean} hscroll false to disable horizontal scrolling
10150      */
10151     focusCell : function(row, col, hscroll)
10152     {
10153         //Roo.log('GridView.focusCell');
10154         var el = this.ensureVisible(row, col, hscroll);
10155         // not sure what focusEL achives = it's a <a> pos relative 
10156         //this.focusEl.alignTo(el, "tl-tl");
10157         //if(Roo.isGecko){
10158         //    this.focusEl.focus();
10159         //}else{
10160         //    this.focusEl.focus.defer(1, this.focusEl);
10161         //}
10162     },
10163     
10164      /**
10165      * Scrolls the specified cell into view
10166      * @param {Number} row The row index
10167      * @param {Number} col The column index
10168      * @param {Boolean} hscroll false to disable horizontal scrolling
10169      */
10170     ensureVisible : function(row, col, hscroll)
10171     {
10172         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
10173         //return null; //disable for testing.
10174         if(typeof row != "number"){
10175             row = row.rowIndex;
10176         }
10177         if(row < 0 && row >= this.ds.getCount()){
10178             return  null;
10179         }
10180         col = (col !== undefined ? col : 0);
10181         var cm = this.cm;
10182         while(cm.isHidden(col)){
10183             col++;
10184         }
10185
10186         var el = this.getCellDom(row, col);
10187         if(!el){
10188             return null;
10189         }
10190         var c = this.bodyEl.dom;
10191
10192         var ctop = parseInt(el.offsetTop, 10);
10193         var cleft = parseInt(el.offsetLeft, 10);
10194         var cbot = ctop + el.offsetHeight;
10195         var cright = cleft + el.offsetWidth;
10196
10197         //var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
10198         var ch = 0; //?? header is not withing the area?
10199         var stop = parseInt(c.scrollTop, 10);
10200         var sleft = parseInt(c.scrollLeft, 10);
10201         var sbot = stop + ch;
10202         var sright = sleft + c.clientWidth;
10203         /*
10204         Roo.log('GridView.ensureVisible:' +
10205                 ' ctop:' + ctop +
10206                 ' c.clientHeight:' + c.clientHeight +
10207                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
10208                 ' stop:' + stop +
10209                 ' cbot:' + cbot +
10210                 ' sbot:' + sbot +
10211                 ' ch:' + ch  
10212                 );
10213         */
10214         if(ctop < stop){
10215             c.scrollTop = ctop;
10216             //Roo.log("set scrolltop to ctop DISABLE?");
10217         }else if(cbot > sbot){
10218             //Roo.log("set scrolltop to cbot-ch");
10219             c.scrollTop = cbot-ch;
10220         }
10221
10222         if(hscroll !== false){
10223             if(cleft < sleft){
10224                 c.scrollLeft = cleft;
10225             }else if(cright > sright){
10226                 c.scrollLeft = cright-c.clientWidth;
10227             }
10228         }
10229
10230         return el;
10231     },
10232     
10233     
10234     insertRow : function(dm, rowIndex, isUpdate){
10235         
10236         if(!isUpdate){
10237             this.fireEvent("beforerowsinserted", this, rowIndex);
10238         }
10239             //var s = this.getScrollState();
10240         var row = this.renderRow(this.cm, this.store, rowIndex);
10241         // insert before rowIndex..
10242         var e = this.bodyEl.createChild(row,this.getRowDom(rowIndex));
10243         
10244         var _this = this;
10245                 
10246         if(row.cellObjects.length){
10247             Roo.each(row.cellObjects, function(r){
10248                 _this.renderCellObject(r);
10249             })
10250         }
10251             
10252         if(!isUpdate){
10253             this.fireEvent("rowsinserted", this, rowIndex);
10254             //this.syncRowHeights(firstRow, lastRow);
10255             //this.stripeRows(firstRow);
10256             //this.layout();
10257         }
10258         
10259     },
10260     
10261     
10262     getRowDom : function(rowIndex)
10263     {
10264         var rows = this.el.select('tbody > tr', true).elements;
10265         
10266         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
10267         
10268     },
10269     getCellDom : function(rowIndex, colIndex)
10270     {
10271         var row = this.getRowDom(rowIndex);
10272         if (row === false) {
10273             return false;
10274         }
10275         var cols = row.select('td', true).elements;
10276         return (typeof(cols[colIndex]) == 'undefined') ? false : cols[colIndex];
10277         
10278     },
10279     
10280     // returns the object tree for a tr..
10281   
10282     
10283     renderRow : function(cm, ds, rowIndex) 
10284     {
10285         var d = ds.getAt(rowIndex);
10286         
10287         var row = {
10288             tag : 'tr',
10289             cls : 'x-row-' + rowIndex,
10290             cn : []
10291         };
10292             
10293         var cellObjects = [];
10294         
10295         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
10296             var config = cm.config[i];
10297             
10298             var renderer = cm.getRenderer(i);
10299             var value = '';
10300             var id = false;
10301             
10302             if(typeof(renderer) !== 'undefined'){
10303                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
10304             }
10305             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
10306             // and are rendered into the cells after the row is rendered - using the id for the element.
10307             
10308             if(typeof(value) === 'object'){
10309                 id = Roo.id();
10310                 cellObjects.push({
10311                     container : id,
10312                     cfg : value 
10313                 })
10314             }
10315             
10316             var rowcfg = {
10317                 record: d,
10318                 rowIndex : rowIndex,
10319                 colIndex : i,
10320                 rowClass : ''
10321             };
10322
10323             this.fireEvent('rowclass', this, rowcfg);
10324             
10325             var td = {
10326                 tag: 'td',
10327                 // this might end up displaying HTML?
10328                 // this is too messy... - better to only do it on columsn you know are going to be too long
10329                 //tooltip : (typeof(value) === 'object') ? '' : value,
10330                 cls : rowcfg.rowClass + ' x-col-' + i,
10331                 style: '',
10332                 html: (typeof(value) === 'object') ? '' : value
10333             };
10334             
10335             if (id) {
10336                 td.id = id;
10337             }
10338             
10339             if(typeof(config.colspan) != 'undefined'){
10340                 td.colspan = config.colspan;
10341             }
10342             
10343             
10344             
10345             if(typeof(config.align) != 'undefined' && config.align.length){
10346                 td.style += ' text-align:' + config.align + ';';
10347             }
10348             if(typeof(config.valign) != 'undefined' && config.valign.length){
10349                 td.style += ' vertical-align:' + config.valign + ';';
10350             }
10351             /*
10352             if(typeof(config.width) != 'undefined'){
10353                 td.style += ' width:' +  config.width + 'px;';
10354             }
10355             */
10356             
10357             if(typeof(config.cursor) != 'undefined'){
10358                 td.style += ' cursor:' +  config.cursor + ';';
10359             }
10360             
10361             if(typeof(config.cls) != 'undefined'){
10362                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
10363             }
10364             if (this.responsive) {
10365                 ['xs','sm','md','lg'].map(function(size){
10366                     
10367                     if(typeof(config[size]) == 'undefined'){
10368                         return;
10369                     }
10370                     
10371                     
10372                       
10373                     if (!config[size]) { // 0 = hidden
10374                         // BS 4 '0' is treated as hide that column and below.
10375                         td.cls += ' hidden-' + size + ' hidden' + size + '-down';
10376                         return;
10377                     }
10378                     
10379                     td.cls += ' col-' + size + '-' + config[size] + (
10380                         size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
10381                     );
10382                      
10383     
10384                 });
10385             }
10386             row.cn.push(td);
10387            
10388         }
10389         
10390         row.cellObjects = cellObjects;
10391         
10392         return row;
10393           
10394     },
10395     
10396     
10397     
10398     onBeforeLoad : function()
10399     {
10400         this.el.unmask(); // if needed.
10401     },
10402      /**
10403      * Remove all rows
10404      */
10405     clear : function()
10406     {
10407         this.el.select('tbody', true).first().dom.innerHTML = '';
10408     },
10409     /**
10410      * Show or hide a row.
10411      * @param {Number} rowIndex to show or hide
10412      * @param {Boolean} state hide
10413      */
10414     setRowVisibility : function(rowIndex, state)
10415     {
10416         var bt = this.bodyEl.dom;
10417         
10418         var rows = this.el.select('tbody > tr', true).elements;
10419         
10420         if(typeof(rows[rowIndex]) == 'undefined'){
10421             return;
10422         }
10423         rows[rowIndex][ state ? 'removeClass' : 'addClass']('d-none');
10424         
10425     },
10426     
10427     
10428     getSelectionModel : function(){
10429         if(!this.selModel){
10430             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
10431         }
10432         return this.selModel;
10433     },
10434     /*
10435      * Render the Roo.bootstrap object from renderder
10436      */
10437     renderCellObject : function(r)
10438     {
10439         var _this = this;
10440         
10441         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
10442         
10443         var t = r.cfg.render(r.container);
10444         
10445         if(r.cfg.cn){
10446             Roo.each(r.cfg.cn, function(c){
10447                 var child = {
10448                     container: t.getChildContainer(),
10449                     cfg: c
10450                 };
10451                 _this.renderCellObject(child);
10452             })
10453         }
10454     },
10455     /**
10456      * get the Row Index from a dom element.
10457      * @param {Roo.Element} row The row to look for
10458      * @returns {Number} the row
10459      */
10460     getRowIndex : function(row)
10461     {
10462         var rowIndex = -1;
10463         
10464         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
10465             if(el != row){
10466                 return;
10467             }
10468             
10469             rowIndex = index;
10470         });
10471         
10472         return rowIndex;
10473     },
10474     /**
10475      * get the header TH element for columnIndex
10476      * @param {Number} columnIndex
10477      * @returns {Roo.Element}
10478      */
10479     getHeaderIndex: function(colIndex)
10480     {
10481         var cols = this.headEl.select('th', true).elements;
10482         return cols[colIndex]; 
10483     },
10484     /**
10485      * get the Column Index from a dom element. (using regex on x-hcol-{colid})
10486      * @param {domElement} cell to look for
10487      * @returns {Number} the column
10488      */
10489     getCellIndex : function(cell)
10490     {
10491         var id = String(cell.className).match(Roo.bootstrap.Table.cellRE);
10492         if(id){
10493             return parseInt(id[1], 10);
10494         }
10495         return 0;
10496     },
10497      /**
10498      * Returns the grid's underlying element = used by panel.Grid
10499      * @return {Element} The element
10500      */
10501     getGridEl : function(){
10502         return this.el;
10503     },
10504      /**
10505      * Forces a resize - used by panel.Grid
10506      * @return {Element} The element
10507      */
10508     autoSize : function()
10509     {
10510         //var ctr = Roo.get(this.container.dom.parentElement);
10511         var ctr = Roo.get(this.el.dom);
10512         
10513         var thd = this.getGridEl().select('thead',true).first();
10514         var tbd = this.getGridEl().select('tbody', true).first();
10515         var tfd = this.getGridEl().select('tfoot', true).first();
10516         
10517         var cw = ctr.getWidth();
10518         this.getGridEl().select('tfoot tr, tfoot  td',true).setWidth(cw);
10519         
10520         if (tbd) {
10521             
10522             tbd.setWidth(ctr.getWidth());
10523             // if the body has a max height - and then scrolls - we should perhaps set up the height here
10524             // this needs fixing for various usage - currently only hydra job advers I think..
10525             //tdb.setHeight(
10526             //        ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
10527             //); 
10528             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
10529             cw -= barsize;
10530         }
10531         cw = Math.max(cw, this.totalWidth);
10532         this.getGridEl().select('tbody tr',true).setWidth(cw);
10533         this.initCSS();
10534         
10535         // resize 'expandable coloumn?
10536         
10537         return; // we doe not have a view in this design..
10538         
10539     },
10540     onBodyScroll: function()
10541     {
10542         //Roo.log("body scrolled');" + this.bodyEl.dom.scrollLeft);
10543         if(this.headEl){
10544             this.headEl.setStyle({
10545                 'position' : 'relative',
10546                 'left': (-1* this.bodyEl.dom.scrollLeft) + 'px'
10547             });
10548         }
10549         
10550         if(this.lazyLoad){
10551             
10552             var scrollHeight = this.bodyEl.dom.scrollHeight;
10553             
10554             var scrollTop = Math.ceil(this.bodyEl.getScroll().top);
10555             
10556             var height = this.bodyEl.getHeight();
10557             
10558             if(scrollHeight - height == scrollTop) {
10559                 
10560                 var total = this.ds.getTotalCount();
10561                 
10562                 if(this.footer.cursor + this.footer.pageSize < total){
10563                     
10564                     this.footer.ds.load({
10565                         params : {
10566                             start : this.footer.cursor + this.footer.pageSize,
10567                             limit : this.footer.pageSize
10568                         },
10569                         add : true
10570                     });
10571                 }
10572             }
10573             
10574         }
10575     },
10576     onColumnSplitterMoved : function(i, diff)
10577     {
10578         this.userResized = true;
10579         
10580         var cm = this.colModel;
10581         
10582         var w = this.getHeaderIndex(i).getWidth() + diff;
10583         
10584         
10585         cm.setColumnWidth(i, w, true);
10586         this.initCSS();
10587         //var cid = cm.getColumnId(i); << not used in this version?
10588        /* Roo.log(['#' + this.id + ' .x-col-' + i, "width", w + "px"]);
10589         
10590         this.CSS.updateRule( '#' + this.id + ' .x-col-' + i, "width", w + "px");
10591         this.CSS.updateRule('#' + this.id + ' .x-hcol-' + i, "width", w + "px");
10592         this.CSS.updateRule('#' + this.id + ' .x-grid-split-' + i, "left", w + "px");
10593 */
10594         //this.updateSplitters();
10595         //this.layout(); << ??
10596         this.fireEvent("columnresize", i, w);
10597     },
10598     onHeaderChange : function()
10599     {
10600         var header = this.renderHeader();
10601         var table = this.el.select('table', true).first();
10602         
10603         this.headEl.remove();
10604         this.headEl = table.createChild(header, this.bodyEl, false);
10605         
10606         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
10607             e.on('click', this.sort, this);
10608         }, this);
10609         
10610         if(this.enableColumnResize !== false && Roo.grid.SplitDragZone){
10611             new Roo.grid.SplitDragZone(this, this.headEl.dom, false); // not sure what 'lockedHd is for this implementation..)
10612         }
10613         
10614     },
10615     
10616     onHiddenChange : function(colModel, colIndex, hidden)
10617     {
10618         /*
10619         this.cm.setHidden()
10620         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
10621         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
10622         
10623         this.CSS.updateRule(thSelector, "display", "");
10624         this.CSS.updateRule(tdSelector, "display", "");
10625         
10626         if(hidden){
10627             this.CSS.updateRule(thSelector, "display", "none");
10628             this.CSS.updateRule(tdSelector, "display", "none");
10629         }
10630         */
10631         // onload calls initCSS()
10632         this.onHeaderChange();
10633         this.onLoad();
10634     },
10635     
10636     setColumnWidth: function(col_index, width)
10637     {
10638         // width = "md-2 xs-2..."
10639         if(!this.colModel.config[col_index]) {
10640             return;
10641         }
10642         
10643         var w = width.split(" ");
10644         
10645         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
10646         
10647         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
10648         
10649         
10650         for(var j = 0; j < w.length; j++) {
10651             
10652             if(!w[j]) {
10653                 continue;
10654             }
10655             
10656             var size_cls = w[j].split("-");
10657             
10658             if(!Number.isInteger(size_cls[1] * 1)) {
10659                 continue;
10660             }
10661             
10662             if(!this.colModel.config[col_index][size_cls[0]]) {
10663                 continue;
10664             }
10665             
10666             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
10667                 continue;
10668             }
10669             
10670             h_row[0].classList.replace(
10671                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
10672                 "col-"+size_cls[0]+"-"+size_cls[1]
10673             );
10674             
10675             for(var i = 0; i < rows.length; i++) {
10676                 
10677                 var size_cls = w[j].split("-");
10678                 
10679                 if(!Number.isInteger(size_cls[1] * 1)) {
10680                     continue;
10681                 }
10682                 
10683                 if(!this.colModel.config[col_index][size_cls[0]]) {
10684                     continue;
10685                 }
10686                 
10687                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
10688                     continue;
10689                 }
10690                 
10691                 rows[i].classList.replace(
10692                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
10693                     "col-"+size_cls[0]+"-"+size_cls[1]
10694                 );
10695             }
10696             
10697             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
10698         }
10699     }
10700 });
10701
10702 // currently only used to find the split on drag.. 
10703 Roo.bootstrap.Table.cellRE = /(?:.*?)x-grid-(?:hd|cell|split)-([\d]+)(?:.*?)/;
10704
10705 /**
10706  * @depricated
10707 */
10708 Roo.bootstrap.Table.AbstractSelectionModel = Roo.grid.AbstractSelectionModel;
10709 Roo.bootstrap.Table.RowSelectionModel = Roo.grid.RowSelectionModel;
10710 /*
10711  * - LGPL
10712  *
10713  * table cell
10714  * 
10715  */
10716
10717 /**
10718  * @class Roo.bootstrap.TableCell
10719  * @extends Roo.bootstrap.Component
10720  * @children Roo.bootstrap.Component
10721  * @parent Roo.bootstrap.TableRow
10722  * Bootstrap TableCell class
10723  * 
10724  * @cfg {String} html cell contain text
10725  * @cfg {String} cls cell class
10726  * @cfg {String} tag cell tag (td|th) default td
10727  * @cfg {String} abbr Specifies an abbreviated version of the content in a cell
10728  * @cfg {String} align Aligns the content in a cell
10729  * @cfg {String} axis Categorizes cells
10730  * @cfg {String} bgcolor Specifies the background color of a cell
10731  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
10732  * @cfg {Number} colspan Specifies the number of columns a cell should span
10733  * @cfg {String} headers Specifies one or more header cells a cell is related to
10734  * @cfg {Number} height Sets the height of a cell
10735  * @cfg {String} nowrap Specifies that the content inside a cell should not wrap
10736  * @cfg {Number} rowspan Sets the number of rows a cell should span
10737  * @cfg {String} scope Defines a way to associate header cells and data cells in a table
10738  * @cfg {String} valign Vertical aligns the content in a cell
10739  * @cfg {Number} width Specifies the width of a cell
10740  * 
10741  * @constructor
10742  * Create a new TableCell
10743  * @param {Object} config The config object
10744  */
10745
10746 Roo.bootstrap.TableCell = function(config){
10747     Roo.bootstrap.TableCell.superclass.constructor.call(this, config);
10748 };
10749
10750 Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
10751     
10752     html: false,
10753     cls: false,
10754     tag: false,
10755     abbr: false,
10756     align: false,
10757     axis: false,
10758     bgcolor: false,
10759     charoff: false,
10760     colspan: false,
10761     headers: false,
10762     height: false,
10763     nowrap: false,
10764     rowspan: false,
10765     scope: false,
10766     valign: false,
10767     width: false,
10768     
10769     
10770     getAutoCreate : function(){
10771         var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this));
10772         
10773         cfg = {
10774             tag: 'td'
10775         };
10776         
10777         if(this.tag){
10778             cfg.tag = this.tag;
10779         }
10780         
10781         if (this.html) {
10782             cfg.html=this.html
10783         }
10784         if (this.cls) {
10785             cfg.cls=this.cls
10786         }
10787         if (this.abbr) {
10788             cfg.abbr=this.abbr
10789         }
10790         if (this.align) {
10791             cfg.align=this.align
10792         }
10793         if (this.axis) {
10794             cfg.axis=this.axis
10795         }
10796         if (this.bgcolor) {
10797             cfg.bgcolor=this.bgcolor
10798         }
10799         if (this.charoff) {
10800             cfg.charoff=this.charoff
10801         }
10802         if (this.colspan) {
10803             cfg.colspan=this.colspan
10804         }
10805         if (this.headers) {
10806             cfg.headers=this.headers
10807         }
10808         if (this.height) {
10809             cfg.height=this.height
10810         }
10811         if (this.nowrap) {
10812             cfg.nowrap=this.nowrap
10813         }
10814         if (this.rowspan) {
10815             cfg.rowspan=this.rowspan
10816         }
10817         if (this.scope) {
10818             cfg.scope=this.scope
10819         }
10820         if (this.valign) {
10821             cfg.valign=this.valign
10822         }
10823         if (this.width) {
10824             cfg.width=this.width
10825         }
10826         
10827         
10828         return cfg;
10829     }
10830    
10831 });
10832
10833  
10834
10835  /*
10836  * - LGPL
10837  *
10838  * table row
10839  * 
10840  */
10841
10842 /**
10843  * @class Roo.bootstrap.TableRow
10844  * @extends Roo.bootstrap.Component
10845  * @children Roo.bootstrap.TableCell
10846  * @parent Roo.bootstrap.TableBody
10847  * Bootstrap TableRow class
10848  * @cfg {String} cls row class
10849  * @cfg {String} align Aligns the content in a table row
10850  * @cfg {String} bgcolor Specifies a background color for a table row
10851  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
10852  * @cfg {String} valign Vertical aligns the content in a table row
10853  * 
10854  * @constructor
10855  * Create a new TableRow
10856  * @param {Object} config The config object
10857  */
10858
10859 Roo.bootstrap.TableRow = function(config){
10860     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
10861 };
10862
10863 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
10864     
10865     cls: false,
10866     align: false,
10867     bgcolor: false,
10868     charoff: false,
10869     valign: false,
10870     
10871     getAutoCreate : function(){
10872         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
10873         
10874         cfg = {
10875             tag: 'tr'
10876         };
10877             
10878         if(this.cls){
10879             cfg.cls = this.cls;
10880         }
10881         if(this.align){
10882             cfg.align = this.align;
10883         }
10884         if(this.bgcolor){
10885             cfg.bgcolor = this.bgcolor;
10886         }
10887         if(this.charoff){
10888             cfg.charoff = this.charoff;
10889         }
10890         if(this.valign){
10891             cfg.valign = this.valign;
10892         }
10893         
10894         return cfg;
10895     }
10896    
10897 });
10898
10899  
10900
10901  /*
10902  * - LGPL
10903  *
10904  * table body
10905  * 
10906  */
10907
10908 /**
10909  * @class Roo.bootstrap.TableBody
10910  * @extends Roo.bootstrap.Component
10911  * @children Roo.bootstrap.TableRow
10912  * @parent Roo.bootstrap.Table
10913  * Bootstrap TableBody class
10914  * @cfg {String} cls element class
10915  * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
10916  * @cfg {String} align Aligns the content inside the element
10917  * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
10918  * @cfg {String} valign Vertical aligns the content inside the <tbody> element
10919  * 
10920  * @constructor
10921  * Create a new TableBody
10922  * @param {Object} config The config object
10923  */
10924
10925 Roo.bootstrap.TableBody = function(config){
10926     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
10927 };
10928
10929 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
10930     
10931     cls: false,
10932     tag: false,
10933     align: false,
10934     charoff: false,
10935     valign: false,
10936     
10937     getAutoCreate : function(){
10938         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
10939         
10940         cfg = {
10941             tag: 'tbody'
10942         };
10943             
10944         if (this.cls) {
10945             cfg.cls=this.cls
10946         }
10947         if(this.tag){
10948             cfg.tag = this.tag;
10949         }
10950         
10951         if(this.align){
10952             cfg.align = this.align;
10953         }
10954         if(this.charoff){
10955             cfg.charoff = this.charoff;
10956         }
10957         if(this.valign){
10958             cfg.valign = this.valign;
10959         }
10960         
10961         return cfg;
10962     }
10963     
10964     
10965 //    initEvents : function()
10966 //    {
10967 //        
10968 //        if(!this.store){
10969 //            return;
10970 //        }
10971 //        
10972 //        this.store = Roo.factory(this.store, Roo.data);
10973 //        this.store.on('load', this.onLoad, this);
10974 //        
10975 //        this.store.load();
10976 //        
10977 //    },
10978 //    
10979 //    onLoad: function () 
10980 //    {   
10981 //        this.fireEvent('load', this);
10982 //    }
10983 //    
10984 //   
10985 });
10986
10987  
10988
10989  /*
10990  * Based on:
10991  * Ext JS Library 1.1.1
10992  * Copyright(c) 2006-2007, Ext JS, LLC.
10993  *
10994  * Originally Released Under LGPL - original licence link has changed is not relivant.
10995  *
10996  * Fork - LGPL
10997  * <script type="text/javascript">
10998  */
10999
11000 // as we use this in bootstrap.
11001 Roo.namespace('Roo.form');
11002  /**
11003  * @class Roo.form.Action
11004  * Internal Class used to handle form actions
11005  * @constructor
11006  * @param {Roo.form.BasicForm} el The form element or its id
11007  * @param {Object} config Configuration options
11008  */
11009
11010  
11011  
11012 // define the action interface
11013 Roo.form.Action = function(form, options){
11014     this.form = form;
11015     this.options = options || {};
11016 };
11017 /**
11018  * Client Validation Failed
11019  * @const 
11020  */
11021 Roo.form.Action.CLIENT_INVALID = 'client';
11022 /**
11023  * Server Validation Failed
11024  * @const 
11025  */
11026 Roo.form.Action.SERVER_INVALID = 'server';
11027  /**
11028  * Connect to Server Failed
11029  * @const 
11030  */
11031 Roo.form.Action.CONNECT_FAILURE = 'connect';
11032 /**
11033  * Reading Data from Server Failed
11034  * @const 
11035  */
11036 Roo.form.Action.LOAD_FAILURE = 'load';
11037
11038 Roo.form.Action.prototype = {
11039     type : 'default',
11040     failureType : undefined,
11041     response : undefined,
11042     result : undefined,
11043
11044     // interface method
11045     run : function(options){
11046
11047     },
11048
11049     // interface method
11050     success : function(response){
11051
11052     },
11053
11054     // interface method
11055     handleResponse : function(response){
11056
11057     },
11058
11059     // default connection failure
11060     failure : function(response){
11061         
11062         this.response = response;
11063         this.failureType = Roo.form.Action.CONNECT_FAILURE;
11064         this.form.afterAction(this, false);
11065     },
11066
11067     processResponse : function(response){
11068         this.response = response;
11069         if(!response.responseText){
11070             return true;
11071         }
11072         this.result = this.handleResponse(response);
11073         return this.result;
11074     },
11075
11076     // utility functions used internally
11077     getUrl : function(appendParams){
11078         var url = this.options.url || this.form.url || this.form.el.dom.action;
11079         if(appendParams){
11080             var p = this.getParams();
11081             if(p){
11082                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11083             }
11084         }
11085         return url;
11086     },
11087
11088     getMethod : function(){
11089         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
11090     },
11091
11092     getParams : function(){
11093         var bp = this.form.baseParams;
11094         var p = this.options.params;
11095         if(p){
11096             if(typeof p == "object"){
11097                 p = Roo.urlEncode(Roo.applyIf(p, bp));
11098             }else if(typeof p == 'string' && bp){
11099                 p += '&' + Roo.urlEncode(bp);
11100             }
11101         }else if(bp){
11102             p = Roo.urlEncode(bp);
11103         }
11104         return p;
11105     },
11106
11107     createCallback : function(){
11108         return {
11109             success: this.success,
11110             failure: this.failure,
11111             scope: this,
11112             timeout: (this.form.timeout*1000),
11113             upload: this.form.fileUpload ? this.success : undefined
11114         };
11115     }
11116 };
11117
11118 Roo.form.Action.Submit = function(form, options){
11119     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
11120 };
11121
11122 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
11123     type : 'submit',
11124
11125     haveProgress : false,
11126     uploadComplete : false,
11127     
11128     // uploadProgress indicator.
11129     uploadProgress : function()
11130     {
11131         if (!this.form.progressUrl) {
11132             return;
11133         }
11134         
11135         if (!this.haveProgress) {
11136             Roo.MessageBox.progress("Uploading", "Uploading");
11137         }
11138         if (this.uploadComplete) {
11139            Roo.MessageBox.hide();
11140            return;
11141         }
11142         
11143         this.haveProgress = true;
11144    
11145         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
11146         
11147         var c = new Roo.data.Connection();
11148         c.request({
11149             url : this.form.progressUrl,
11150             params: {
11151                 id : uid
11152             },
11153             method: 'GET',
11154             success : function(req){
11155                //console.log(data);
11156                 var rdata = false;
11157                 var edata;
11158                 try  {
11159                    rdata = Roo.decode(req.responseText)
11160                 } catch (e) {
11161                     Roo.log("Invalid data from server..");
11162                     Roo.log(edata);
11163                     return;
11164                 }
11165                 if (!rdata || !rdata.success) {
11166                     Roo.log(rdata);
11167                     Roo.MessageBox.alert(Roo.encode(rdata));
11168                     return;
11169                 }
11170                 var data = rdata.data;
11171                 
11172                 if (this.uploadComplete) {
11173                    Roo.MessageBox.hide();
11174                    return;
11175                 }
11176                    
11177                 if (data){
11178                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
11179                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
11180                     );
11181                 }
11182                 this.uploadProgress.defer(2000,this);
11183             },
11184        
11185             failure: function(data) {
11186                 Roo.log('progress url failed ');
11187                 Roo.log(data);
11188             },
11189             scope : this
11190         });
11191            
11192     },
11193     
11194     
11195     run : function()
11196     {
11197         // run get Values on the form, so it syncs any secondary forms.
11198         this.form.getValues();
11199         
11200         var o = this.options;
11201         var method = this.getMethod();
11202         var isPost = method == 'POST';
11203         if(o.clientValidation === false || this.form.isValid()){
11204             
11205             if (this.form.progressUrl) {
11206                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
11207                     (new Date() * 1) + '' + Math.random());
11208                     
11209             } 
11210             
11211             
11212             Roo.Ajax.request(Roo.apply(this.createCallback(), {
11213                 form:this.form.el.dom,
11214                 url:this.getUrl(!isPost),
11215                 method: method,
11216                 params:isPost ? this.getParams() : null,
11217                 isUpload: this.form.fileUpload,
11218                 formData : this.form.formData
11219             }));
11220             
11221             this.uploadProgress();
11222
11223         }else if (o.clientValidation !== false){ // client validation failed
11224             this.failureType = Roo.form.Action.CLIENT_INVALID;
11225             this.form.afterAction(this, false);
11226         }
11227     },
11228
11229     success : function(response)
11230     {
11231         this.uploadComplete= true;
11232         if (this.haveProgress) {
11233             Roo.MessageBox.hide();
11234         }
11235         
11236         
11237         var result = this.processResponse(response);
11238         if(result === true || result.success){
11239             this.form.afterAction(this, true);
11240             return;
11241         }
11242         if(result.errors){
11243             this.form.markInvalid(result.errors);
11244             this.failureType = Roo.form.Action.SERVER_INVALID;
11245         }
11246         this.form.afterAction(this, false);
11247     },
11248     failure : function(response)
11249     {
11250         this.uploadComplete= true;
11251         if (this.haveProgress) {
11252             Roo.MessageBox.hide();
11253         }
11254         
11255         this.response = response;
11256         this.failureType = Roo.form.Action.CONNECT_FAILURE;
11257         this.form.afterAction(this, false);
11258     },
11259     
11260     handleResponse : function(response){
11261         if(this.form.errorReader){
11262             var rs = this.form.errorReader.read(response);
11263             var errors = [];
11264             if(rs.records){
11265                 for(var i = 0, len = rs.records.length; i < len; i++) {
11266                     var r = rs.records[i];
11267                     errors[i] = r.data;
11268                 }
11269             }
11270             if(errors.length < 1){
11271                 errors = null;
11272             }
11273             return {
11274                 success : rs.success,
11275                 errors : errors
11276             };
11277         }
11278         var ret = false;
11279         try {
11280             ret = Roo.decode(response.responseText);
11281         } catch (e) {
11282             ret = {
11283                 success: false,
11284                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
11285                 errors : []
11286             };
11287         }
11288         return ret;
11289         
11290     }
11291 });
11292
11293
11294 Roo.form.Action.Load = function(form, options){
11295     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
11296     this.reader = this.form.reader;
11297 };
11298
11299 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
11300     type : 'load',
11301
11302     run : function(){
11303         
11304         Roo.Ajax.request(Roo.apply(
11305                 this.createCallback(), {
11306                     method:this.getMethod(),
11307                     url:this.getUrl(false),
11308                     params:this.getParams()
11309         }));
11310     },
11311
11312     success : function(response){
11313         
11314         var result = this.processResponse(response);
11315         if(result === true || !result.success || !result.data){
11316             this.failureType = Roo.form.Action.LOAD_FAILURE;
11317             this.form.afterAction(this, false);
11318             return;
11319         }
11320         this.form.clearInvalid();
11321         this.form.setValues(result.data);
11322         this.form.afterAction(this, true);
11323     },
11324
11325     handleResponse : function(response){
11326         if(this.form.reader){
11327             var rs = this.form.reader.read(response);
11328             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
11329             return {
11330                 success : rs.success,
11331                 data : data
11332             };
11333         }
11334         return Roo.decode(response.responseText);
11335     }
11336 });
11337
11338 Roo.form.Action.ACTION_TYPES = {
11339     'load' : Roo.form.Action.Load,
11340     'submit' : Roo.form.Action.Submit
11341 };/*
11342  * - LGPL
11343  *
11344  * form
11345  *
11346  */
11347
11348 /**
11349  * @class Roo.bootstrap.form.Form
11350  * @extends Roo.bootstrap.Component
11351  * @children Roo.bootstrap.Component
11352  * Bootstrap Form class
11353  * @cfg {String} method  GET | POST (default POST)
11354  * @cfg {String} labelAlign top | left (default top)
11355  * @cfg {String} align left  | right - for navbars
11356  * @cfg {Boolean} loadMask load mask when submit (default true)
11357
11358  *
11359  * @constructor
11360  * Create a new Form
11361  * @param {Object} config The config object
11362  */
11363
11364
11365 Roo.bootstrap.form.Form = function(config){
11366     
11367     Roo.bootstrap.form.Form.superclass.constructor.call(this, config);
11368     
11369     Roo.bootstrap.form.Form.popover.apply();
11370     
11371     this.addEvents({
11372         /**
11373          * @event clientvalidation
11374          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
11375          * @param {Form} this
11376          * @param {Boolean} valid true if the form has passed client-side validation
11377          */
11378         clientvalidation: true,
11379         /**
11380          * @event beforeaction
11381          * Fires before any action is performed. Return false to cancel the action.
11382          * @param {Form} this
11383          * @param {Action} action The action to be performed
11384          */
11385         beforeaction: true,
11386         /**
11387          * @event actionfailed
11388          * Fires when an action fails.
11389          * @param {Form} this
11390          * @param {Action} action The action that failed
11391          */
11392         actionfailed : true,
11393         /**
11394          * @event actioncomplete
11395          * Fires when an action is completed.
11396          * @param {Form} this
11397          * @param {Action} action The action that completed
11398          */
11399         actioncomplete : true
11400     });
11401 };
11402
11403 Roo.extend(Roo.bootstrap.form.Form, Roo.bootstrap.Component,  {
11404
11405      /**
11406      * @cfg {String} method
11407      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
11408      */
11409     method : 'POST',
11410     /**
11411      * @cfg {String} url
11412      * The URL to use for form actions if one isn't supplied in the action options.
11413      */
11414     /**
11415      * @cfg {Boolean} fileUpload
11416      * Set to true if this form is a file upload.
11417      */
11418
11419     /**
11420      * @cfg {Object} baseParams
11421      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
11422      */
11423
11424     /**
11425      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
11426      */
11427     timeout: 30,
11428     /**
11429      * @cfg {Sting} align (left|right) for navbar forms
11430      */
11431     align : 'left',
11432
11433     // private
11434     activeAction : null,
11435
11436     /**
11437      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
11438      * element by passing it or its id or mask the form itself by passing in true.
11439      * @type Mixed
11440      */
11441     waitMsgTarget : false,
11442
11443     loadMask : true,
11444     
11445     /**
11446      * @cfg {Boolean} errorMask (true|false) default false
11447      */
11448     errorMask : false,
11449     
11450     /**
11451      * @cfg {Number} maskOffset Default 100
11452      */
11453     maskOffset : 100,
11454     
11455     /**
11456      * @cfg {Boolean} maskBody
11457      */
11458     maskBody : false,
11459
11460     getAutoCreate : function(){
11461
11462         var cfg = {
11463             tag: 'form',
11464             method : this.method || 'POST',
11465             id : this.id || Roo.id(),
11466             cls : ''
11467         };
11468         if (this.parent().xtype.match(/^Nav/)) {
11469             cfg.cls = 'navbar-form form-inline navbar-' + this.align;
11470
11471         }
11472
11473         if (this.labelAlign == 'left' ) {
11474             cfg.cls += ' form-horizontal';
11475         }
11476
11477
11478         return cfg;
11479     },
11480     initEvents : function()
11481     {
11482         this.el.on('submit', this.onSubmit, this);
11483         // this was added as random key presses on the form where triggering form submit.
11484         this.el.on('keypress', function(e) {
11485             if (e.getCharCode() != 13) {
11486                 return true;
11487             }
11488             // we might need to allow it for textareas.. and some other items.
11489             // check e.getTarget().
11490
11491             if(e.getTarget().nodeName.toLowerCase() === 'textarea'){
11492                 return true;
11493             }
11494
11495             Roo.log("keypress blocked");
11496
11497             e.preventDefault();
11498             return false;
11499         });
11500         
11501     },
11502     // private
11503     onSubmit : function(e){
11504         e.stopEvent();
11505     },
11506
11507      /**
11508      * Returns true if client-side validation on the form is successful.
11509      * @return Boolean
11510      */
11511     isValid : function(){
11512         var items = this.getItems();
11513         var valid = true;
11514         var target = false;
11515         
11516         items.each(function(f){
11517             
11518             if(f.validate()){
11519                 return;
11520             }
11521             
11522             Roo.log('invalid field: ' + f.name);
11523             
11524             valid = false;
11525
11526             if(!target && f.el.isVisible(true)){
11527                 target = f;
11528             }
11529            
11530         });
11531         
11532         if(this.errorMask && !valid){
11533             Roo.bootstrap.form.Form.popover.mask(this, target);
11534         }
11535         
11536         return valid;
11537     },
11538     
11539     /**
11540      * Returns true if any fields in this form have changed since their original load.
11541      * @return Boolean
11542      */
11543     isDirty : function(){
11544         var dirty = false;
11545         var items = this.getItems();
11546         items.each(function(f){
11547            if(f.isDirty()){
11548                dirty = true;
11549                return false;
11550            }
11551            return true;
11552         });
11553         return dirty;
11554     },
11555      /**
11556      * Performs a predefined action (submit or load) or custom actions you define on this form.
11557      * @param {String} actionName The name of the action type
11558      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
11559      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
11560      * accept other config options):
11561      * <pre>
11562 Property          Type             Description
11563 ----------------  ---------------  ----------------------------------------------------------------------------------
11564 url               String           The url for the action (defaults to the form's url)
11565 method            String           The form method to use (defaults to the form's method, or POST if not defined)
11566 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
11567 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
11568                                    validate the form on the client (defaults to false)
11569      * </pre>
11570      * @return {BasicForm} this
11571      */
11572     doAction : function(action, options){
11573         if(typeof action == 'string'){
11574             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
11575         }
11576         if(this.fireEvent('beforeaction', this, action) !== false){
11577             this.beforeAction(action);
11578             action.run.defer(100, action);
11579         }
11580         return this;
11581     },
11582
11583     // private
11584     beforeAction : function(action){
11585         var o = action.options;
11586         
11587         if(this.loadMask){
11588             
11589             if(this.maskBody){
11590                 Roo.get(document.body).mask(o.waitMsg || "Sending", 'x-mask-loading')
11591             } else {
11592                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
11593             }
11594         }
11595         // not really supported yet.. ??
11596
11597         //if(this.waitMsgTarget === true){
11598         //  this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
11599         //}else if(this.waitMsgTarget){
11600         //    this.waitMsgTarget = Roo.get(this.waitMsgTarget);
11601         //    this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
11602         //}else {
11603         //    Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
11604        // }
11605
11606     },
11607
11608     // private
11609     afterAction : function(action, success){
11610         this.activeAction = null;
11611         var o = action.options;
11612
11613         if(this.loadMask){
11614             
11615             if(this.maskBody){
11616                 Roo.get(document.body).unmask();
11617             } else {
11618                 this.el.unmask();
11619             }
11620         }
11621         
11622         //if(this.waitMsgTarget === true){
11623 //            this.el.unmask();
11624         //}else if(this.waitMsgTarget){
11625         //    this.waitMsgTarget.unmask();
11626         //}else{
11627         //    Roo.MessageBox.updateProgress(1);
11628         //    Roo.MessageBox.hide();
11629        // }
11630         //
11631         if(success){
11632             if(o.reset){
11633                 this.reset();
11634             }
11635             Roo.callback(o.success, o.scope, [this, action]);
11636             this.fireEvent('actioncomplete', this, action);
11637
11638         }else{
11639
11640             // failure condition..
11641             // we have a scenario where updates need confirming.
11642             // eg. if a locking scenario exists..
11643             // we look for { errors : { needs_confirm : true }} in the response.
11644             if (
11645                 (typeof(action.result) != 'undefined')  &&
11646                 (typeof(action.result.errors) != 'undefined')  &&
11647                 (typeof(action.result.errors.needs_confirm) != 'undefined')
11648            ){
11649                 var _t = this;
11650                 Roo.log("not supported yet");
11651                  /*
11652
11653                 Roo.MessageBox.confirm(
11654                     "Change requires confirmation",
11655                     action.result.errorMsg,
11656                     function(r) {
11657                         if (r != 'yes') {
11658                             return;
11659                         }
11660                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
11661                     }
11662
11663                 );
11664                 */
11665
11666
11667                 return;
11668             }
11669
11670             Roo.callback(o.failure, o.scope, [this, action]);
11671             // show an error message if no failed handler is set..
11672             if (!this.hasListener('actionfailed')) {
11673                 Roo.log("need to add dialog support");
11674                 /*
11675                 Roo.MessageBox.alert("Error",
11676                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
11677                         action.result.errorMsg :
11678                         "Saving Failed, please check your entries or try again"
11679                 );
11680                 */
11681             }
11682
11683             this.fireEvent('actionfailed', this, action);
11684         }
11685
11686     },
11687     /**
11688      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
11689      * @param {String} id The value to search for
11690      * @return Field
11691      */
11692     findField : function(id){
11693         var items = this.getItems();
11694         var field = items.get(id);
11695         if(!field){
11696              items.each(function(f){
11697                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
11698                     field = f;
11699                     return false;
11700                 }
11701                 return true;
11702             });
11703         }
11704         return field || null;
11705     },
11706      /**
11707      * Mark fields in this form invalid in bulk.
11708      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
11709      * @return {BasicForm} this
11710      */
11711     markInvalid : function(errors){
11712         if(errors instanceof Array){
11713             for(var i = 0, len = errors.length; i < len; i++){
11714                 var fieldError = errors[i];
11715                 var f = this.findField(fieldError.id);
11716                 if(f){
11717                     f.markInvalid(fieldError.msg);
11718                 }
11719             }
11720         }else{
11721             var field, id;
11722             for(id in errors){
11723                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
11724                     field.markInvalid(errors[id]);
11725                 }
11726             }
11727         }
11728         //Roo.each(this.childForms || [], function (f) {
11729         //    f.markInvalid(errors);
11730         //});
11731
11732         return this;
11733     },
11734
11735     /**
11736      * Set values for fields in this form in bulk.
11737      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
11738      * @return {BasicForm} this
11739      */
11740     setValues : function(values){
11741         if(values instanceof Array){ // array of objects
11742             for(var i = 0, len = values.length; i < len; i++){
11743                 var v = values[i];
11744                 var f = this.findField(v.id);
11745                 if(f){
11746                     f.setValue(v.value);
11747                     if(this.trackResetOnLoad){
11748                         f.originalValue = f.getValue();
11749                     }
11750                 }
11751             }
11752         }else{ // object hash
11753             var field, id;
11754             for(id in values){
11755                 if(typeof values[id] != 'function' && (field = this.findField(id))){
11756
11757                     if (field.setFromData &&
11758                         field.valueField &&
11759                         field.displayField &&
11760                         // combos' with local stores can
11761                         // be queried via setValue()
11762                         // to set their value..
11763                         (field.store && !field.store.isLocal)
11764                         ) {
11765                         // it's a combo
11766                         var sd = { };
11767                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
11768                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
11769                         field.setFromData(sd);
11770
11771                     } else if(field.setFromData && (field.store && !field.store.isLocal)) {
11772                         
11773                         field.setFromData(values);
11774                         
11775                     } else {
11776                         field.setValue(values[id]);
11777                     }
11778
11779
11780                     if(this.trackResetOnLoad){
11781                         field.originalValue = field.getValue();
11782                     }
11783                 }
11784             }
11785         }
11786
11787         //Roo.each(this.childForms || [], function (f) {
11788         //    f.setValues(values);
11789         //});
11790
11791         return this;
11792     },
11793
11794     /**
11795      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
11796      * they are returned as an array.
11797      * @param {Boolean} asString
11798      * @return {Object}
11799      */
11800     getValues : function(asString){
11801         //if (this.childForms) {
11802             // copy values from the child forms
11803         //    Roo.each(this.childForms, function (f) {
11804         //        this.setValues(f.getValues());
11805         //    }, this);
11806         //}
11807
11808
11809
11810         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
11811         if(asString === true){
11812             return fs;
11813         }
11814         return Roo.urlDecode(fs);
11815     },
11816
11817     /**
11818      * Returns the fields in this form as an object with key/value pairs.
11819      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
11820      * @return {Object}
11821      */
11822     getFieldValues : function(with_hidden)
11823     {
11824         var items = this.getItems();
11825         var ret = {};
11826         items.each(function(f){
11827             
11828             if (!f.getName()) {
11829                 return;
11830             }
11831             
11832             var v = f.getValue();
11833             
11834             if (f.inputType =='radio') {
11835                 if (typeof(ret[f.getName()]) == 'undefined') {
11836                     ret[f.getName()] = ''; // empty..
11837                 }
11838
11839                 if (!f.el.dom.checked) {
11840                     return;
11841
11842                 }
11843                 v = f.el.dom.value;
11844
11845             }
11846             
11847             if(f.xtype == 'MoneyField'){
11848                 ret[f.currencyName] = f.getCurrency();
11849             }
11850
11851             // not sure if this supported any more..
11852             if ((typeof(v) == 'object') && f.getRawValue) {
11853                 v = f.getRawValue() ; // dates..
11854             }
11855             // combo boxes where name != hiddenName...
11856             if (f.name !== false && f.name != '' && f.name != f.getName()) {
11857                 ret[f.name] = f.getRawValue();
11858             }
11859             ret[f.getName()] = v;
11860         });
11861
11862         return ret;
11863     },
11864
11865     /**
11866      * Clears all invalid messages in this form.
11867      * @return {BasicForm} this
11868      */
11869     clearInvalid : function(){
11870         var items = this.getItems();
11871
11872         items.each(function(f){
11873            f.clearInvalid();
11874         });
11875
11876         return this;
11877     },
11878
11879     /**
11880      * Resets this form.
11881      * @return {BasicForm} this
11882      */
11883     reset : function(){
11884         var items = this.getItems();
11885         items.each(function(f){
11886             f.reset();
11887         });
11888
11889         Roo.each(this.childForms || [], function (f) {
11890             f.reset();
11891         });
11892
11893
11894         return this;
11895     },
11896     
11897     getItems : function()
11898     {
11899         var r=new Roo.util.MixedCollection(false, function(o){
11900             return o.id || (o.id = Roo.id());
11901         });
11902         var iter = function(el) {
11903             if (el.inputEl) {
11904                 r.add(el);
11905             }
11906             if (!el.items) {
11907                 return;
11908             }
11909             Roo.each(el.items,function(e) {
11910                 iter(e);
11911             });
11912         };
11913
11914         iter(this);
11915         return r;
11916     },
11917     
11918     hideFields : function(items)
11919     {
11920         Roo.each(items, function(i){
11921             
11922             var f = this.findField(i);
11923             
11924             if(!f){
11925                 return;
11926             }
11927             
11928             f.hide();
11929             
11930         }, this);
11931     },
11932     
11933     showFields : function(items)
11934     {
11935         Roo.each(items, function(i){
11936             
11937             var f = this.findField(i);
11938             
11939             if(!f){
11940                 return;
11941             }
11942             
11943             f.show();
11944             
11945         }, this);
11946     }
11947
11948 });
11949
11950 Roo.apply(Roo.bootstrap.form.Form, {
11951     
11952     popover : {
11953         
11954         padding : 5,
11955         
11956         isApplied : false,
11957         
11958         isMasked : false,
11959         
11960         form : false,
11961         
11962         target : false,
11963         
11964         toolTip : false,
11965         
11966         intervalID : false,
11967         
11968         maskEl : false,
11969         
11970         apply : function()
11971         {
11972             if(this.isApplied){
11973                 return;
11974             }
11975             
11976             this.maskEl = {
11977                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
11978                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
11979                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
11980                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
11981             };
11982             
11983             this.maskEl.top.enableDisplayMode("block");
11984             this.maskEl.left.enableDisplayMode("block");
11985             this.maskEl.bottom.enableDisplayMode("block");
11986             this.maskEl.right.enableDisplayMode("block");
11987             
11988             this.toolTip = new Roo.bootstrap.Tooltip({
11989                 cls : 'roo-form-error-popover',
11990                 alignment : {
11991                     'left' : ['r-l', [-2,0], 'right'],
11992                     'right' : ['l-r', [2,0], 'left'],
11993                     'bottom' : ['tl-bl', [0,2], 'top'],
11994                     'top' : [ 'bl-tl', [0,-2], 'bottom']
11995                 }
11996             });
11997             
11998             this.toolTip.render(Roo.get(document.body));
11999
12000             this.toolTip.el.enableDisplayMode("block");
12001             
12002             Roo.get(document.body).on('click', function(){
12003                 this.unmask();
12004             }, this);
12005             
12006             Roo.get(document.body).on('touchstart', function(){
12007                 this.unmask();
12008             }, this);
12009             
12010             this.isApplied = true
12011         },
12012         
12013         mask : function(form, target)
12014         {
12015             this.form = form;
12016             
12017             this.target = target;
12018             
12019             if(!this.form.errorMask || !target.el){
12020                 return;
12021             }
12022             
12023             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.modal', 100, true) || Roo.get(document.body);
12024             
12025             Roo.log(scrollable);
12026             
12027             var ot = this.target.el.calcOffsetsTo(scrollable);
12028             
12029             var scrollTo = ot[1] - this.form.maskOffset;
12030             
12031             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
12032             
12033             scrollable.scrollTo('top', scrollTo);
12034             
12035             var box = this.target.el.getBox();
12036             Roo.log(box);
12037             var zIndex = Roo.bootstrap.Modal.zIndex++;
12038
12039             
12040             this.maskEl.top.setStyle('position', 'absolute');
12041             this.maskEl.top.setStyle('z-index', zIndex);
12042             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
12043             this.maskEl.top.setLeft(0);
12044             this.maskEl.top.setTop(0);
12045             this.maskEl.top.show();
12046             
12047             this.maskEl.left.setStyle('position', 'absolute');
12048             this.maskEl.left.setStyle('z-index', zIndex);
12049             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
12050             this.maskEl.left.setLeft(0);
12051             this.maskEl.left.setTop(box.y - this.padding);
12052             this.maskEl.left.show();
12053
12054             this.maskEl.bottom.setStyle('position', 'absolute');
12055             this.maskEl.bottom.setStyle('z-index', zIndex);
12056             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
12057             this.maskEl.bottom.setLeft(0);
12058             this.maskEl.bottom.setTop(box.bottom + this.padding);
12059             this.maskEl.bottom.show();
12060
12061             this.maskEl.right.setStyle('position', 'absolute');
12062             this.maskEl.right.setStyle('z-index', zIndex);
12063             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
12064             this.maskEl.right.setLeft(box.right + this.padding);
12065             this.maskEl.right.setTop(box.y - this.padding);
12066             this.maskEl.right.show();
12067
12068             this.toolTip.bindEl = this.target.el;
12069
12070             this.toolTip.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
12071
12072             var tip = this.target.blankText;
12073
12074             if(this.target.getValue() !== '' ) {
12075                 
12076                 if (this.target.invalidText.length) {
12077                     tip = this.target.invalidText;
12078                 } else if (this.target.regexText.length){
12079                     tip = this.target.regexText;
12080                 }
12081             }
12082
12083             this.toolTip.show(tip);
12084
12085             this.intervalID = window.setInterval(function() {
12086                 Roo.bootstrap.form.Form.popover.unmask();
12087             }, 10000);
12088
12089             window.onwheel = function(){ return false;};
12090             
12091             (function(){ this.isMasked = true; }).defer(500, this);
12092             
12093         },
12094         
12095         unmask : function()
12096         {
12097             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
12098                 return;
12099             }
12100             
12101             this.maskEl.top.setStyle('position', 'absolute');
12102             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
12103             this.maskEl.top.hide();
12104
12105             this.maskEl.left.setStyle('position', 'absolute');
12106             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
12107             this.maskEl.left.hide();
12108
12109             this.maskEl.bottom.setStyle('position', 'absolute');
12110             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
12111             this.maskEl.bottom.hide();
12112
12113             this.maskEl.right.setStyle('position', 'absolute');
12114             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
12115             this.maskEl.right.hide();
12116             
12117             this.toolTip.hide();
12118             
12119             this.toolTip.el.hide();
12120             
12121             window.onwheel = function(){ return true;};
12122             
12123             if(this.intervalID){
12124                 window.clearInterval(this.intervalID);
12125                 this.intervalID = false;
12126             }
12127             
12128             this.isMasked = false;
12129             
12130         }
12131         
12132     }
12133     
12134 });
12135
12136 /*
12137  * Based on:
12138  * Ext JS Library 1.1.1
12139  * Copyright(c) 2006-2007, Ext JS, LLC.
12140  *
12141  * Originally Released Under LGPL - original licence link has changed is not relivant.
12142  *
12143  * Fork - LGPL
12144  * <script type="text/javascript">
12145  */
12146 /**
12147  * @class Roo.form.VTypes
12148  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
12149  * @static
12150  */
12151 Roo.form.VTypes = function(){
12152     // closure these in so they are only created once.
12153     var alpha = /^[a-zA-Z_]+$/;
12154     var alphanum = /^[a-zA-Z0-9_]+$/;
12155     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
12156     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
12157
12158     // All these messages and functions are configurable
12159     return {
12160         /**
12161          * The function used to validate email addresses
12162          * @param {String} value The email address
12163          */
12164         'email' : function(v){
12165             return email.test(v);
12166         },
12167         /**
12168          * The error text to display when the email validation function returns false
12169          * @type String
12170          */
12171         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
12172         /**
12173          * The keystroke filter mask to be applied on email input
12174          * @type RegExp
12175          */
12176         'emailMask' : /[a-z0-9_\.\-@]/i,
12177
12178         /**
12179          * The function used to validate URLs
12180          * @param {String} value The URL
12181          */
12182         'url' : function(v){
12183             return url.test(v);
12184         },
12185         /**
12186          * The error text to display when the url validation function returns false
12187          * @type String
12188          */
12189         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
12190         
12191         /**
12192          * The function used to validate alpha values
12193          * @param {String} value The value
12194          */
12195         'alpha' : function(v){
12196             return alpha.test(v);
12197         },
12198         /**
12199          * The error text to display when the alpha validation function returns false
12200          * @type String
12201          */
12202         'alphaText' : 'This field should only contain letters and _',
12203         /**
12204          * The keystroke filter mask to be applied on alpha input
12205          * @type RegExp
12206          */
12207         'alphaMask' : /[a-z_]/i,
12208
12209         /**
12210          * The function used to validate alphanumeric values
12211          * @param {String} value The value
12212          */
12213         'alphanum' : function(v){
12214             return alphanum.test(v);
12215         },
12216         /**
12217          * The error text to display when the alphanumeric validation function returns false
12218          * @type String
12219          */
12220         'alphanumText' : 'This field should only contain letters, numbers and _',
12221         /**
12222          * The keystroke filter mask to be applied on alphanumeric input
12223          * @type RegExp
12224          */
12225         'alphanumMask' : /[a-z0-9_]/i
12226     };
12227 }();/*
12228  * - LGPL
12229  *
12230  * Input
12231  * 
12232  */
12233
12234 /**
12235  * @class Roo.bootstrap.form.Input
12236  * @extends Roo.bootstrap.Component
12237  * Bootstrap Input class
12238  * @cfg {Boolean} disabled is it disabled
12239  * @cfg {String} inputType (button|checkbox|email|file|hidden|image|number|password|radio|range|reset|search|submit|text)  
12240  * @cfg {String} name name of the input
12241  * @cfg {string} fieldLabel - the label associated
12242  * @cfg {string} placeholder - placeholder to put in text.
12243  * @cfg {string} before - input group add on before
12244  * @cfg {string} after - input group add on after
12245  * @cfg {string} size - (lg|sm) or leave empty..
12246  * @cfg {Number} xs colspan out of 12 for mobile-sized screens
12247  * @cfg {Number} sm colspan out of 12 for tablet-sized screens
12248  * @cfg {Number} md colspan out of 12 for computer-sized screens
12249  * @cfg {Number} lg colspan out of 12 for large computer-sized screens
12250  * @cfg {string} value default value of the input
12251  * @cfg {Number} labelWidth set the width of label 
12252  * @cfg {Number} labellg set the width of label (1-12)
12253  * @cfg {Number} labelmd set the width of label (1-12)
12254  * @cfg {Number} labelsm set the width of label (1-12)
12255  * @cfg {Number} labelxs set the width of label (1-12)
12256  * @cfg {String} labelAlign (top|left)
12257  * @cfg {Boolean} readOnly Specifies that the field should be read-only
12258  * @cfg {String} autocomplete - default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en
12259  * @cfg {String} indicatorpos (left|right) default left
12260  * @cfg {String} capture (user|camera) use for file input only. (default empty)
12261  * @cfg {String} accept (image|video|audio) use for file input only. (default empty)
12262  * @cfg {Boolean} preventMark Do not show tick or cross if error/success
12263  * @cfg {Roo.bootstrap.Button} before Button to show before
12264  * @cfg {Roo.bootstrap.Button} afterButton to show before
12265  * @cfg {String} align (left|center|right) Default left
12266  * @cfg {Boolean} forceFeedback (true|false) Default false
12267  * 
12268  * @constructor
12269  * Create a new Input
12270  * @param {Object} config The config object
12271  */
12272
12273 Roo.bootstrap.form.Input = function(config){
12274     
12275     Roo.bootstrap.form.Input.superclass.constructor.call(this, config);
12276     
12277     this.addEvents({
12278         /**
12279          * @event focus
12280          * Fires when this field receives input focus.
12281          * @param {Roo.form.Field} this
12282          */
12283         focus : true,
12284         /**
12285          * @event blur
12286          * Fires when this field loses input focus.
12287          * @param {Roo.form.Field} this
12288          */
12289         blur : true,
12290         /**
12291          * @event specialkey
12292          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
12293          * {@link Roo.EventObject#getKey} to determine which key was pressed.
12294          * @param {Roo.form.Field} this
12295          * @param {Roo.EventObject} e The event object
12296          */
12297         specialkey : true,
12298         /**
12299          * @event change
12300          * Fires just before the field blurs if the field value has changed.
12301          * @param {Roo.form.Field} this
12302          * @param {Mixed} newValue The new value
12303          * @param {Mixed} oldValue The original value
12304          */
12305         change : true,
12306         /**
12307          * @event invalid
12308          * Fires after the field has been marked as invalid.
12309          * @param {Roo.form.Field} this
12310          * @param {String} msg The validation message
12311          */
12312         invalid : true,
12313         /**
12314          * @event valid
12315          * Fires after the field has been validated with no errors.
12316          * @param {Roo.form.Field} this
12317          */
12318         valid : true,
12319          /**
12320          * @event keyup
12321          * Fires after the key up
12322          * @param {Roo.form.Field} this
12323          * @param {Roo.EventObject}  e The event Object
12324          */
12325         keyup : true,
12326         /**
12327          * @event paste
12328          * Fires after the user pastes into input
12329          * @param {Roo.form.Field} this
12330          * @param {Roo.EventObject}  e The event Object
12331          */
12332         paste : true
12333     });
12334 };
12335
12336 Roo.extend(Roo.bootstrap.form.Input, Roo.bootstrap.Component,  {
12337      /**
12338      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
12339       automatic validation (defaults to "keyup").
12340      */
12341     validationEvent : "keyup",
12342      /**
12343      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
12344      */
12345     validateOnBlur : true,
12346     /**
12347      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
12348      */
12349     validationDelay : 250,
12350      /**
12351      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
12352      */
12353     focusClass : "x-form-focus",  // not needed???
12354     
12355        
12356     /**
12357      * @cfg {String} invalidClass DEPRICATED - code uses BS4 - is-valid / is-invalid
12358      */
12359     invalidClass : "has-warning",
12360     
12361     /**
12362      * @cfg {String} validClass DEPRICATED - code uses BS4 - is-valid / is-invalid
12363      */
12364     validClass : "has-success",
12365     
12366     /**
12367      * @cfg {Boolean} hasFeedback (true|false) default true
12368      */
12369     hasFeedback : true,
12370     
12371     /**
12372      * @cfg {String} invalidFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
12373      */
12374     invalidFeedbackClass : "glyphicon-warning-sign",
12375     
12376     /**
12377      * @cfg {String} validFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
12378      */
12379     validFeedbackClass : "glyphicon-ok",
12380     
12381     /**
12382      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
12383      */
12384     selectOnFocus : false,
12385     
12386      /**
12387      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
12388      */
12389     maskRe : null,
12390        /**
12391      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
12392      */
12393     vtype : null,
12394     
12395       /**
12396      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
12397      */
12398     disableKeyFilter : false,
12399     
12400        /**
12401      * @cfg {Boolean} disabled True to disable the field (defaults to false).
12402      */
12403     disabled : false,
12404      /**
12405      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
12406      */
12407     allowBlank : true,
12408     /**
12409      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
12410      */
12411     blankText : "Please complete this mandatory field",
12412     
12413      /**
12414      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
12415      */
12416     minLength : 0,
12417     /**
12418      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
12419      */
12420     maxLength : Number.MAX_VALUE,
12421     /**
12422      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
12423      */
12424     minLengthText : "The minimum length for this field is {0}",
12425     /**
12426      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
12427      */
12428     maxLengthText : "The maximum length for this field is {0}",
12429   
12430     
12431     /**
12432      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
12433      * If available, this function will be called only after the basic validators all return true, and will be passed the
12434      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
12435      */
12436     validator : null,
12437     /**
12438      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
12439      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
12440      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
12441      */
12442     regex : null,
12443     /**
12444      * @cfg {String} regexText -- Depricated - use Invalid Text
12445      */
12446     regexText : "",
12447     
12448     /**
12449      * @cfg {String} invalidText The error text to display if {@link #validator} test fails during validation (defaults to "")
12450      */
12451     invalidText : "",
12452     
12453     
12454     
12455     autocomplete: false,
12456     
12457     
12458     fieldLabel : '',
12459     inputType : 'text',
12460     
12461     name : false,
12462     placeholder: false,
12463     before : false,
12464     after : false,
12465     size : false,
12466     hasFocus : false,
12467     preventMark: false,
12468     isFormField : true,
12469     value : '',
12470     labelWidth : 2,
12471     labelAlign : false,
12472     readOnly : false,
12473     align : false,
12474     formatedValue : false,
12475     forceFeedback : false,
12476     
12477     indicatorpos : 'left',
12478     
12479     labellg : 0,
12480     labelmd : 0,
12481     labelsm : 0,
12482     labelxs : 0,
12483     
12484     capture : '',
12485     accept : '',
12486     
12487     parentLabelAlign : function()
12488     {
12489         var parent = this;
12490         while (parent.parent()) {
12491             parent = parent.parent();
12492             if (typeof(parent.labelAlign) !='undefined') {
12493                 return parent.labelAlign;
12494             }
12495         }
12496         return 'left';
12497         
12498     },
12499     
12500     getAutoCreate : function()
12501     {
12502         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
12503         
12504         var id = Roo.id();
12505         
12506         var cfg = {};
12507         
12508         if(this.inputType != 'hidden'){
12509             cfg.cls = 'form-group' //input-group
12510         }
12511         
12512         var input =  {
12513             tag: 'input',
12514             id : id,
12515             type : this.inputType,
12516             value : this.value,
12517             cls : 'form-control',
12518             placeholder : this.placeholder || '',
12519             autocomplete : this.autocomplete || 'new-password'
12520         };
12521         if (this.inputType == 'file') {
12522             input.style = 'overflow:hidden'; // why not in CSS?
12523         }
12524         
12525         if(this.capture.length){
12526             input.capture = this.capture;
12527         }
12528         
12529         if(this.accept.length){
12530             input.accept = this.accept + "/*";
12531         }
12532         
12533         if(this.align){
12534             input.style = (typeof(input.style) == 'undefined') ? ('text-align:' + this.align) : (input.style + 'text-align:' + this.align);
12535         }
12536         
12537         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
12538             input.maxLength = this.maxLength;
12539         }
12540         
12541         if (this.disabled) {
12542             input.disabled=true;
12543         }
12544         
12545         if (this.readOnly) {
12546             input.readonly=true;
12547         }
12548         
12549         if (this.name) {
12550             input.name = this.name;
12551         }
12552         
12553         if (this.size) {
12554             input.cls += ' input-' + this.size;
12555         }
12556         
12557         var settings=this;
12558         ['xs','sm','md','lg'].map(function(size){
12559             if (settings[size]) {
12560                 cfg.cls += ' col-' + size + '-' + settings[size];
12561             }
12562         });
12563         
12564         var inputblock = input;
12565         
12566         var feedback = {
12567             tag: 'span',
12568             cls: 'glyphicon form-control-feedback'
12569         };
12570             
12571         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
12572             
12573             inputblock = {
12574                 cls : 'has-feedback',
12575                 cn :  [
12576                     input,
12577                     feedback
12578                 ] 
12579             };  
12580         }
12581         
12582         if (this.before || this.after) {
12583             
12584             inputblock = {
12585                 cls : 'input-group',
12586                 cn :  [] 
12587             };
12588             
12589             if (this.before && typeof(this.before) == 'string') {
12590                 
12591                 inputblock.cn.push({
12592                     tag :'span',
12593                     cls : 'roo-input-before input-group-addon input-group-prepend input-group-text',
12594                     html : this.before
12595                 });
12596             }
12597             if (this.before && typeof(this.before) == 'object') {
12598                 this.before = Roo.factory(this.before);
12599                 
12600                 inputblock.cn.push({
12601                     tag :'span',
12602                     cls : 'roo-input-before input-group-prepend   input-group-' +
12603                         (this.before.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
12604                 });
12605             }
12606             
12607             inputblock.cn.push(input);
12608             
12609             if (this.after && typeof(this.after) == 'string') {
12610                 inputblock.cn.push({
12611                     tag :'span',
12612                     cls : 'roo-input-after input-group-append input-group-text input-group-addon',
12613                     html : this.after
12614                 });
12615             }
12616             if (this.after && typeof(this.after) == 'object') {
12617                 this.after = Roo.factory(this.after);
12618                 
12619                 inputblock.cn.push({
12620                     tag :'span',
12621                     cls : 'roo-input-after input-group-append  input-group-' +
12622                         (this.after.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
12623                 });
12624             }
12625             
12626             if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
12627                 inputblock.cls += ' has-feedback';
12628                 inputblock.cn.push(feedback);
12629             }
12630         };
12631         var indicator = {
12632             tag : 'i',
12633             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
12634             tooltip : 'This field is required'
12635         };
12636         if (this.allowBlank ) {
12637             indicator.style = this.allowBlank ? ' display:none' : '';
12638         }
12639         if (align ==='left' && this.fieldLabel.length) {
12640             
12641             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
12642             
12643             cfg.cn = [
12644                 indicator,
12645                 {
12646                     tag: 'label',
12647                     'for' :  id,
12648                     cls : 'control-label col-form-label',
12649                     html : this.fieldLabel
12650
12651                 },
12652                 {
12653                     cls : "", 
12654                     cn: [
12655                         inputblock
12656                     ]
12657                 }
12658             ];
12659             
12660             var labelCfg = cfg.cn[1];
12661             var contentCfg = cfg.cn[2];
12662             
12663             if(this.indicatorpos == 'right'){
12664                 cfg.cn = [
12665                     {
12666                         tag: 'label',
12667                         'for' :  id,
12668                         cls : 'control-label col-form-label',
12669                         cn : [
12670                             {
12671                                 tag : 'span',
12672                                 html : this.fieldLabel
12673                             },
12674                             indicator
12675                         ]
12676                     },
12677                     {
12678                         cls : "",
12679                         cn: [
12680                             inputblock
12681                         ]
12682                     }
12683
12684                 ];
12685                 
12686                 labelCfg = cfg.cn[0];
12687                 contentCfg = cfg.cn[1];
12688             
12689             }
12690             
12691             if(this.labelWidth > 12){
12692                 labelCfg.style = "width: " + this.labelWidth + 'px';
12693             }
12694             
12695             if(this.labelWidth < 13 && this.labelmd == 0){
12696                 this.labellg = this.labellg > 0 ? this.labellg : this.labelWidth;
12697             }
12698             
12699             if(this.labellg > 0){
12700                 labelCfg.cls += ' col-lg-' + this.labellg;
12701                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
12702             }
12703             
12704             if(this.labelmd > 0){
12705                 labelCfg.cls += ' col-md-' + this.labelmd;
12706                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
12707             }
12708             
12709             if(this.labelsm > 0){
12710                 labelCfg.cls += ' col-sm-' + this.labelsm;
12711                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
12712             }
12713             
12714             if(this.labelxs > 0){
12715                 labelCfg.cls += ' col-xs-' + this.labelxs;
12716                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
12717             }
12718             
12719             
12720         } else if ( this.fieldLabel.length) {
12721                 
12722             
12723             
12724             cfg.cn = [
12725                 {
12726                     tag : 'i',
12727                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
12728                     tooltip : 'This field is required',
12729                     style : this.allowBlank ? ' display:none' : '' 
12730                 },
12731                 {
12732                     tag: 'label',
12733                    //cls : 'input-group-addon',
12734                     html : this.fieldLabel
12735
12736                 },
12737
12738                inputblock
12739
12740            ];
12741            
12742            if(this.indicatorpos == 'right'){
12743        
12744                 cfg.cn = [
12745                     {
12746                         tag: 'label',
12747                        //cls : 'input-group-addon',
12748                         html : this.fieldLabel
12749
12750                     },
12751                     {
12752                         tag : 'i',
12753                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
12754                         tooltip : 'This field is required',
12755                         style : this.allowBlank ? ' display:none' : '' 
12756                     },
12757
12758                    inputblock
12759
12760                ];
12761
12762             }
12763
12764         } else {
12765             
12766             cfg.cn = [
12767
12768                     inputblock
12769
12770             ];
12771                 
12772                 
12773         };
12774         
12775         if (this.parentType === 'Navbar' &&  this.parent().bar) {
12776            cfg.cls += ' navbar-form';
12777         }
12778         
12779         if (this.parentType === 'NavGroup' && !(Roo.bootstrap.version == 4 && this.parent().form)) {
12780             // on BS4 we do this only if not form 
12781             cfg.cls += ' navbar-form';
12782             cfg.tag = 'li';
12783         }
12784         
12785         return cfg;
12786         
12787     },
12788     /**
12789      * return the real input element.
12790      */
12791     inputEl: function ()
12792     {
12793         return this.el.select('input.form-control',true).first();
12794     },
12795     
12796     tooltipEl : function()
12797     {
12798         return this.inputEl();
12799     },
12800     
12801     indicatorEl : function()
12802     {
12803         if (Roo.bootstrap.version == 4) {
12804             return false; // not enabled in v4 yet.
12805         }
12806         
12807         var indicator = this.el.select('i.roo-required-indicator',true).first();
12808         
12809         if(!indicator){
12810             return false;
12811         }
12812         
12813         return indicator;
12814         
12815     },
12816     
12817     setDisabled : function(v)
12818     {
12819         var i  = this.inputEl().dom;
12820         if (!v) {
12821             i.removeAttribute('disabled');
12822             return;
12823             
12824         }
12825         i.setAttribute('disabled','true');
12826     },
12827     initEvents : function()
12828     {
12829           
12830         this.inputEl().on("keydown" , this.fireKey,  this);
12831         this.inputEl().on("focus", this.onFocus,  this);
12832         this.inputEl().on("blur", this.onBlur,  this);
12833         
12834         this.inputEl().relayEvent('keyup', this);
12835         this.inputEl().relayEvent('paste', this);
12836         
12837         this.indicator = this.indicatorEl();
12838         
12839         if(this.indicator){
12840             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible'); // changed from invisible??? - 
12841         }
12842  
12843         // reference to original value for reset
12844         this.originalValue = this.getValue();
12845         //Roo.form.TextField.superclass.initEvents.call(this);
12846         if(this.validationEvent == 'keyup'){
12847             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
12848             this.inputEl().on('keyup', this.filterValidation, this);
12849         }
12850         else if(this.validationEvent !== false){
12851             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
12852         }
12853         
12854         if(this.selectOnFocus){
12855             this.on("focus", this.preFocus, this);
12856             
12857         }
12858         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
12859             this.inputEl().on("keypress", this.filterKeys, this);
12860         } else {
12861             this.inputEl().relayEvent('keypress', this);
12862         }
12863        /* if(this.grow){
12864             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
12865             this.el.on("click", this.autoSize,  this);
12866         }
12867         */
12868         if(this.inputEl().is('input[type=password]') && Roo.isSafari){
12869             this.inputEl().on('keydown', this.SafariOnKeyDown, this);
12870         }
12871         
12872         if (typeof(this.before) == 'object') {
12873             this.before.render(this.el.select('.roo-input-before',true).first());
12874         }
12875         if (typeof(this.after) == 'object') {
12876             this.after.render(this.el.select('.roo-input-after',true).first());
12877         }
12878         
12879         this.inputEl().on('change', this.onChange, this);
12880         
12881     },
12882     filterValidation : function(e){
12883         if(!e.isNavKeyPress()){
12884             this.validationTask.delay(this.validationDelay);
12885         }
12886     },
12887      /**
12888      * Validates the field value
12889      * @return {Boolean} True if the value is valid, else false
12890      */
12891     validate : function(){
12892         //if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
12893         if(this.disabled || this.validateValue(this.getRawValue())){
12894             this.markValid();
12895             return true;
12896         }
12897         
12898         this.markInvalid();
12899         return false;
12900     },
12901     
12902     
12903     /**
12904      * Validates a value according to the field's validation rules and marks the field as invalid
12905      * if the validation fails
12906      * @param {Mixed} value The value to validate
12907      * @return {Boolean} True if the value is valid, else false
12908      */
12909     validateValue : function(value)
12910     {
12911         if(this.getVisibilityEl().hasClass('hidden')){
12912             return true;
12913         }
12914         
12915         if(value.length < 1)  { // if it's blank
12916             if(this.allowBlank){
12917                 return true;
12918             }
12919             return false;
12920         }
12921         
12922         if(value.length < this.minLength){
12923             return false;
12924         }
12925         if(value.length > this.maxLength){
12926             return false;
12927         }
12928         if(this.vtype){
12929             var vt = Roo.form.VTypes;
12930             if(!vt[this.vtype](value, this)){
12931                 return false;
12932             }
12933         }
12934         if(typeof this.validator == "function"){
12935             var msg = this.validator(value);
12936             if(msg !== true){
12937                 return false;
12938             }
12939             if (typeof(msg) == 'string') {
12940                 this.invalidText = msg;
12941             }
12942         }
12943         
12944         if(this.regex && !this.regex.test(value)){
12945             return false;
12946         }
12947         
12948         return true;
12949     },
12950     
12951      // private
12952     fireKey : function(e){
12953         //Roo.log('field ' + e.getKey());
12954         if(e.isNavKeyPress()){
12955             this.fireEvent("specialkey", this, e);
12956         }
12957     },
12958     focus : function (selectText){
12959         if(this.rendered){
12960             this.inputEl().focus();
12961             if(selectText === true){
12962                 this.inputEl().dom.select();
12963             }
12964         }
12965         return this;
12966     } ,
12967     
12968     onFocus : function(){
12969         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
12970            // this.el.addClass(this.focusClass);
12971         }
12972         if(!this.hasFocus){
12973             this.hasFocus = true;
12974             this.startValue = this.getValue();
12975             this.fireEvent("focus", this);
12976         }
12977     },
12978     
12979     beforeBlur : Roo.emptyFn,
12980
12981     
12982     // private
12983     onBlur : function(){
12984         this.beforeBlur();
12985         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
12986             //this.el.removeClass(this.focusClass);
12987         }
12988         this.hasFocus = false;
12989         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
12990             this.validate();
12991         }
12992         var v = this.getValue();
12993         if(String(v) !== String(this.startValue)){
12994             this.fireEvent('change', this, v, this.startValue);
12995         }
12996         this.fireEvent("blur", this);
12997     },
12998     
12999     onChange : function(e)
13000     {
13001         var v = this.getValue();
13002         if(String(v) !== String(this.startValue)){
13003             this.fireEvent('change', this, v, this.startValue);
13004         }
13005         
13006     },
13007     
13008     /**
13009      * Resets the current field value to the originally loaded value and clears any validation messages
13010      */
13011     reset : function(){
13012         this.setValue(this.originalValue);
13013         this.validate();
13014     },
13015      /**
13016      * Returns the name of the field
13017      * @return {Mixed} name The name field
13018      */
13019     getName: function(){
13020         return this.name;
13021     },
13022      /**
13023      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
13024      * @return {Mixed} value The field value
13025      */
13026     getValue : function(){
13027         
13028         var v = this.inputEl().getValue();
13029         
13030         return v;
13031     },
13032     /**
13033      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
13034      * @return {Mixed} value The field value
13035      */
13036     getRawValue : function(){
13037         var v = this.inputEl().getValue();
13038         
13039         return v;
13040     },
13041     
13042     /**
13043      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
13044      * @param {Mixed} value The value to set
13045      */
13046     setRawValue : function(v){
13047         return this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
13048     },
13049     
13050     selectText : function(start, end){
13051         var v = this.getRawValue();
13052         if(v.length > 0){
13053             start = start === undefined ? 0 : start;
13054             end = end === undefined ? v.length : end;
13055             var d = this.inputEl().dom;
13056             if(d.setSelectionRange){
13057                 d.setSelectionRange(start, end);
13058             }else if(d.createTextRange){
13059                 var range = d.createTextRange();
13060                 range.moveStart("character", start);
13061                 range.moveEnd("character", v.length-end);
13062                 range.select();
13063             }
13064         }
13065     },
13066     
13067     /**
13068      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
13069      * @param {Mixed} value The value to set
13070      */
13071     setValue : function(v){
13072         this.value = v;
13073         if(this.rendered){
13074             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
13075             this.validate();
13076         }
13077     },
13078     
13079     /*
13080     processValue : function(value){
13081         if(this.stripCharsRe){
13082             var newValue = value.replace(this.stripCharsRe, '');
13083             if(newValue !== value){
13084                 this.setRawValue(newValue);
13085                 return newValue;
13086             }
13087         }
13088         return value;
13089     },
13090   */
13091     preFocus : function(){
13092         
13093         if(this.selectOnFocus){
13094             this.inputEl().dom.select();
13095         }
13096     },
13097     filterKeys : function(e){
13098         var k = e.getKey();
13099         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
13100             return;
13101         }
13102         var c = e.getCharCode(), cc = String.fromCharCode(c);
13103         if(Roo.isIE && (e.isSpecialKey() || !cc)){
13104             return;
13105         }
13106         if(!this.maskRe.test(cc)){
13107             e.stopEvent();
13108         }
13109     },
13110      /**
13111      * Clear any invalid styles/messages for this field
13112      */
13113     clearInvalid : function(){
13114         
13115         if(!this.el || this.preventMark){ // not rendered
13116             return;
13117         }
13118         
13119         
13120         this.el.removeClass([this.invalidClass, 'is-invalid']);
13121         
13122         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
13123             
13124             var feedback = this.el.select('.form-control-feedback', true).first();
13125             
13126             if(feedback){
13127                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
13128             }
13129             
13130         }
13131         
13132         if(this.indicator){
13133             this.indicator.removeClass('visible');
13134             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
13135         }
13136         
13137         this.fireEvent('valid', this);
13138     },
13139     
13140      /**
13141      * Mark this field as valid
13142      */
13143     markValid : function()
13144     {
13145         if(!this.el  || this.preventMark){ // not rendered...
13146             return;
13147         }
13148         
13149         this.el.removeClass([this.invalidClass, this.validClass]);
13150         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13151
13152         var feedback = this.el.select('.form-control-feedback', true).first();
13153             
13154         if(feedback){
13155             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13156         }
13157         
13158         if(this.indicator){
13159             this.indicator.removeClass('visible');
13160             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
13161         }
13162         
13163         if(this.disabled){
13164             return;
13165         }
13166         
13167            
13168         if(this.allowBlank && !this.getRawValue().length){
13169             return;
13170         }
13171         if (Roo.bootstrap.version == 3) {
13172             this.el.addClass(this.validClass);
13173         } else {
13174             this.inputEl().addClass('is-valid');
13175         }
13176
13177         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
13178             
13179             var feedback = this.el.select('.form-control-feedback', true).first();
13180             
13181             if(feedback){
13182                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13183                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
13184             }
13185             
13186         }
13187         
13188         this.fireEvent('valid', this);
13189     },
13190     
13191      /**
13192      * Mark this field as invalid
13193      * @param {String} msg The validation message
13194      */
13195     markInvalid : function(msg)
13196     {
13197         if(!this.el  || this.preventMark){ // not rendered
13198             return;
13199         }
13200         
13201         this.el.removeClass([this.invalidClass, this.validClass]);
13202         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13203         
13204         var feedback = this.el.select('.form-control-feedback', true).first();
13205             
13206         if(feedback){
13207             this.el.select('.form-control-feedback', true).first().removeClass(
13208                     [this.invalidFeedbackClass, this.validFeedbackClass]);
13209         }
13210
13211         if(this.disabled){
13212             return;
13213         }
13214         
13215         if(this.allowBlank && !this.getRawValue().length){
13216             return;
13217         }
13218         
13219         if(this.indicator){
13220             this.indicator.removeClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
13221             this.indicator.addClass('visible');
13222         }
13223         if (Roo.bootstrap.version == 3) {
13224             this.el.addClass(this.invalidClass);
13225         } else {
13226             this.inputEl().addClass('is-invalid');
13227         }
13228         
13229         
13230         
13231         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
13232             
13233             var feedback = this.el.select('.form-control-feedback', true).first();
13234             
13235             if(feedback){
13236                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13237                 
13238                 if(this.getValue().length || this.forceFeedback){
13239                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
13240                 }
13241                 
13242             }
13243             
13244         }
13245         
13246         this.fireEvent('invalid', this, msg);
13247     },
13248     // private
13249     SafariOnKeyDown : function(event)
13250     {
13251         // this is a workaround for a password hang bug on chrome/ webkit.
13252         if (this.inputEl().dom.type != 'password') {
13253             return;
13254         }
13255         
13256         var isSelectAll = false;
13257         
13258         if(this.inputEl().dom.selectionEnd > 0){
13259             isSelectAll = (this.inputEl().dom.selectionEnd - this.inputEl().dom.selectionStart - this.getValue().length == 0) ? true : false;
13260         }
13261         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
13262             event.preventDefault();
13263             this.setValue('');
13264             return;
13265         }
13266         
13267         if(isSelectAll  && event.getCharCode() > 31 && !event.ctrlKey) { // not backspace and delete key (or ctrl-v)
13268             
13269             event.preventDefault();
13270             // this is very hacky as keydown always get's upper case.
13271             //
13272             var cc = String.fromCharCode(event.getCharCode());
13273             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
13274             
13275         }
13276     },
13277     adjustWidth : function(tag, w){
13278         tag = tag.toLowerCase();
13279         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
13280             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
13281                 if(tag == 'input'){
13282                     return w + 2;
13283                 }
13284                 if(tag == 'textarea'){
13285                     return w-2;
13286                 }
13287             }else if(Roo.isOpera){
13288                 if(tag == 'input'){
13289                     return w + 2;
13290                 }
13291                 if(tag == 'textarea'){
13292                     return w-2;
13293                 }
13294             }
13295         }
13296         return w;
13297     },
13298     
13299     setFieldLabel : function(v)
13300     {
13301         if(!this.rendered){
13302             return;
13303         }
13304         
13305         if(this.indicatorEl()){
13306             var ar = this.el.select('label > span',true);
13307             
13308             if (ar.elements.length) {
13309                 this.el.select('label > span',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
13310                 this.fieldLabel = v;
13311                 return;
13312             }
13313             
13314             var br = this.el.select('label',true);
13315             
13316             if(br.elements.length) {
13317                 this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
13318                 this.fieldLabel = v;
13319                 return;
13320             }
13321             
13322             Roo.log('Cannot Found any of label > span || label in input');
13323             return;
13324         }
13325         
13326         this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
13327         this.fieldLabel = v;
13328         
13329         
13330     }
13331 });
13332
13333  
13334 /*
13335  * - LGPL
13336  *
13337  * Input
13338  * 
13339  */
13340
13341 /**
13342  * @class Roo.bootstrap.form.TextArea
13343  * @extends Roo.bootstrap.form.Input
13344  * Bootstrap TextArea class
13345  * @cfg {Number} cols Specifies the visible width of a text area
13346  * @cfg {Number} rows Specifies the visible number of lines in a text area
13347  * @cfg {string} wrap (soft|hard)Specifies how the text in a text area is to be wrapped when submitted in a form
13348  * @cfg {string} resize (none|both|horizontal|vertical|inherit|initial)
13349  * @cfg {string} html text
13350  * 
13351  * @constructor
13352  * Create a new TextArea
13353  * @param {Object} config The config object
13354  */
13355
13356 Roo.bootstrap.form.TextArea = function(config){
13357     Roo.bootstrap.form.TextArea.superclass.constructor.call(this, config);
13358    
13359 };
13360
13361 Roo.extend(Roo.bootstrap.form.TextArea, Roo.bootstrap.form.Input,  {
13362      
13363     cols : false,
13364     rows : 5,
13365     readOnly : false,
13366     warp : 'soft',
13367     resize : false,
13368     value: false,
13369     html: false,
13370     
13371     getAutoCreate : function(){
13372         
13373         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
13374         
13375         var id = Roo.id();
13376         
13377         var cfg = {};
13378         
13379         if(this.inputType != 'hidden'){
13380             cfg.cls = 'form-group' //input-group
13381         }
13382         
13383         var input =  {
13384             tag: 'textarea',
13385             id : id,
13386             warp : this.warp,
13387             rows : this.rows,
13388             value : this.value || '',
13389             html: this.html || '',
13390             cls : 'form-control',
13391             placeholder : this.placeholder || '' 
13392             
13393         };
13394         
13395         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
13396             input.maxLength = this.maxLength;
13397         }
13398         
13399         if(this.resize){
13400             input.style = (typeof(input.style) == 'undefined') ? 'resize:' + this.resize : input.style + 'resize:' + this.resize;
13401         }
13402         
13403         if(this.cols){
13404             input.cols = this.cols;
13405         }
13406         
13407         if (this.readOnly) {
13408             input.readonly = true;
13409         }
13410         
13411         if (this.name) {
13412             input.name = this.name;
13413         }
13414         
13415         if (this.size) {
13416             input.cls = (typeof(input.cls) == 'undefined') ? 'input-' + this.size : input.cls + ' input-' + this.size;
13417         }
13418         
13419         var settings=this;
13420         ['xs','sm','md','lg'].map(function(size){
13421             if (settings[size]) {
13422                 cfg.cls += ' col-' + size + '-' + settings[size];
13423             }
13424         });
13425         
13426         var inputblock = input;
13427         
13428         if(this.hasFeedback && !this.allowBlank){
13429             
13430             var feedback = {
13431                 tag: 'span',
13432                 cls: 'glyphicon form-control-feedback'
13433             };
13434
13435             inputblock = {
13436                 cls : 'has-feedback',
13437                 cn :  [
13438                     input,
13439                     feedback
13440                 ] 
13441             };  
13442         }
13443         
13444         
13445         if (this.before || this.after) {
13446             
13447             inputblock = {
13448                 cls : 'input-group',
13449                 cn :  [] 
13450             };
13451             if (this.before) {
13452                 inputblock.cn.push({
13453                     tag :'span',
13454                     cls : 'input-group-addon',
13455                     html : this.before
13456                 });
13457             }
13458             
13459             inputblock.cn.push(input);
13460             
13461             if(this.hasFeedback && !this.allowBlank){
13462                 inputblock.cls += ' has-feedback';
13463                 inputblock.cn.push(feedback);
13464             }
13465             
13466             if (this.after) {
13467                 inputblock.cn.push({
13468                     tag :'span',
13469                     cls : 'input-group-addon',
13470                     html : this.after
13471                 });
13472             }
13473             
13474         }
13475         
13476         if (align ==='left' && this.fieldLabel.length) {
13477             cfg.cn = [
13478                 {
13479                     tag: 'label',
13480                     'for' :  id,
13481                     cls : 'control-label',
13482                     html : this.fieldLabel
13483                 },
13484                 {
13485                     cls : "",
13486                     cn: [
13487                         inputblock
13488                     ]
13489                 }
13490
13491             ];
13492             
13493             if(this.labelWidth > 12){
13494                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
13495             }
13496
13497             if(this.labelWidth < 13 && this.labelmd == 0){
13498                 this.labelmd = this.labelWidth;
13499             }
13500
13501             if(this.labellg > 0){
13502                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
13503                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
13504             }
13505
13506             if(this.labelmd > 0){
13507                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
13508                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
13509             }
13510
13511             if(this.labelsm > 0){
13512                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
13513                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
13514             }
13515
13516             if(this.labelxs > 0){
13517                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
13518                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
13519             }
13520             
13521         } else if ( this.fieldLabel.length) {
13522             cfg.cn = [
13523
13524                {
13525                    tag: 'label',
13526                    //cls : 'input-group-addon',
13527                    html : this.fieldLabel
13528
13529                },
13530
13531                inputblock
13532
13533            ];
13534
13535         } else {
13536
13537             cfg.cn = [
13538
13539                 inputblock
13540
13541             ];
13542                 
13543         }
13544         
13545         if (this.disabled) {
13546             input.disabled=true;
13547         }
13548         
13549         return cfg;
13550         
13551     },
13552     /**
13553      * return the real textarea element.
13554      */
13555     inputEl: function ()
13556     {
13557         return this.el.select('textarea.form-control',true).first();
13558     },
13559     
13560     /**
13561      * Clear any invalid styles/messages for this field
13562      */
13563     clearInvalid : function()
13564     {
13565         
13566         if(!this.el || this.preventMark){ // not rendered
13567             return;
13568         }
13569         
13570         var label = this.el.select('label', true).first();
13571         var icon = this.el.select('i.fa-star', true).first();
13572         
13573         if(label && icon){
13574             icon.remove();
13575         }
13576         this.el.removeClass( this.validClass);
13577         this.inputEl().removeClass('is-invalid');
13578          
13579         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
13580             
13581             var feedback = this.el.select('.form-control-feedback', true).first();
13582             
13583             if(feedback){
13584                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
13585             }
13586             
13587         }
13588         
13589         this.fireEvent('valid', this);
13590     },
13591     
13592      /**
13593      * Mark this field as valid
13594      */
13595     markValid : function()
13596     {
13597         if(!this.el  || this.preventMark){ // not rendered
13598             return;
13599         }
13600         
13601         this.el.removeClass([this.invalidClass, this.validClass]);
13602         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13603         
13604         var feedback = this.el.select('.form-control-feedback', true).first();
13605             
13606         if(feedback){
13607             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13608         }
13609
13610         if(this.disabled || this.allowBlank){
13611             return;
13612         }
13613         
13614         var label = this.el.select('label', true).first();
13615         var icon = this.el.select('i.fa-star', true).first();
13616         
13617         if(label && icon){
13618             icon.remove();
13619         }
13620         if (Roo.bootstrap.version == 3) {
13621             this.el.addClass(this.validClass);
13622         } else {
13623             this.inputEl().addClass('is-valid');
13624         }
13625         
13626         
13627         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
13628             
13629             var feedback = this.el.select('.form-control-feedback', true).first();
13630             
13631             if(feedback){
13632                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13633                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
13634             }
13635             
13636         }
13637         
13638         this.fireEvent('valid', this);
13639     },
13640     
13641      /**
13642      * Mark this field as invalid
13643      * @param {String} msg The validation message
13644      */
13645     markInvalid : function(msg)
13646     {
13647         if(!this.el  || this.preventMark){ // not rendered
13648             return;
13649         }
13650         
13651         this.el.removeClass([this.invalidClass, this.validClass]);
13652         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13653         
13654         var feedback = this.el.select('.form-control-feedback', true).first();
13655             
13656         if(feedback){
13657             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13658         }
13659
13660         if(this.disabled || this.allowBlank){
13661             return;
13662         }
13663         
13664         var label = this.el.select('label', true).first();
13665         var icon = this.el.select('i.fa-star', true).first();
13666         
13667         if(!this.getValue().length && label && !icon){
13668             this.el.createChild({
13669                 tag : 'i',
13670                 cls : 'text-danger fa fa-lg fa-star',
13671                 tooltip : 'This field is required',
13672                 style : 'margin-right:5px;'
13673             }, label, true);
13674         }
13675         
13676         if (Roo.bootstrap.version == 3) {
13677             this.el.addClass(this.invalidClass);
13678         } else {
13679             this.inputEl().addClass('is-invalid');
13680         }
13681         
13682         // fixme ... this may be depricated need to test..
13683         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
13684             
13685             var feedback = this.el.select('.form-control-feedback', true).first();
13686             
13687             if(feedback){
13688                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13689                 
13690                 if(this.getValue().length || this.forceFeedback){
13691                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
13692                 }
13693                 
13694             }
13695             
13696         }
13697         
13698         this.fireEvent('invalid', this, msg);
13699     }
13700 });
13701
13702  
13703 /*
13704  * - LGPL
13705  *
13706  * trigger field - base class for combo..
13707  * 
13708  */
13709  
13710 /**
13711  * @class Roo.bootstrap.form.TriggerField
13712  * @extends Roo.bootstrap.form.Input
13713  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
13714  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
13715  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
13716  * for which you can provide a custom implementation.  For example:
13717  * <pre><code>
13718 var trigger = new Roo.bootstrap.form.TriggerField();
13719 trigger.onTriggerClick = myTriggerFn;
13720 trigger.applyTo('my-field');
13721 </code></pre>
13722  *
13723  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
13724  * {@link Roo.bootstrap.form.DateField} and {@link Roo.bootstrap.form.ComboBox} are perfect examples of this.
13725  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
13726  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
13727  * @cfg {String} caret (search|calendar) BS3 only - carat fa name
13728
13729  * @constructor
13730  * Create a new TriggerField.
13731  * @param {Object} config Configuration options (valid {@Roo.bootstrap.form.Input} config options will also be applied
13732  * to the base TextField)
13733  */
13734 Roo.bootstrap.form.TriggerField = function(config){
13735     this.mimicing = false;
13736     Roo.bootstrap.form.TriggerField.superclass.constructor.call(this, config);
13737 };
13738
13739 Roo.extend(Roo.bootstrap.form.TriggerField, Roo.bootstrap.form.Input,  {
13740     /**
13741      * @cfg {String} triggerClass A CSS class to apply to the trigger
13742      */
13743      /**
13744      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
13745      */
13746     hideTrigger:false,
13747
13748     /**
13749      * @cfg {Boolean} removable (true|false) special filter default false
13750      */
13751     removable : false,
13752     
13753     /** @cfg {Boolean} grow @hide */
13754     /** @cfg {Number} growMin @hide */
13755     /** @cfg {Number} growMax @hide */
13756
13757     /**
13758      * @hide 
13759      * @method
13760      */
13761     autoSize: Roo.emptyFn,
13762     // private
13763     monitorTab : true,
13764     // private
13765     deferHeight : true,
13766
13767     
13768     actionMode : 'wrap',
13769     
13770     caret : false,
13771     
13772     
13773     getAutoCreate : function(){
13774        
13775         var align = this.labelAlign || this.parentLabelAlign();
13776         
13777         var id = Roo.id();
13778         
13779         var cfg = {
13780             cls: 'form-group' //input-group
13781         };
13782         
13783         
13784         var input =  {
13785             tag: 'input',
13786             id : id,
13787             type : this.inputType,
13788             cls : 'form-control',
13789             autocomplete: 'new-password',
13790             placeholder : this.placeholder || '' 
13791             
13792         };
13793         if (this.name) {
13794             input.name = this.name;
13795         }
13796         if (this.size) {
13797             input.cls += ' input-' + this.size;
13798         }
13799         
13800         if (this.disabled) {
13801             input.disabled=true;
13802         }
13803         
13804         var inputblock = input;
13805         
13806         if(this.hasFeedback && !this.allowBlank){
13807             
13808             var feedback = {
13809                 tag: 'span',
13810                 cls: 'glyphicon form-control-feedback'
13811             };
13812             
13813             if(this.removable && !this.editable  ){
13814                 inputblock = {
13815                     cls : 'has-feedback',
13816                     cn :  [
13817                         inputblock,
13818                         {
13819                             tag: 'button',
13820                             html : 'x',
13821                             cls : 'roo-combo-removable-btn close'
13822                         },
13823                         feedback
13824                     ] 
13825                 };
13826             } else {
13827                 inputblock = {
13828                     cls : 'has-feedback',
13829                     cn :  [
13830                         inputblock,
13831                         feedback
13832                     ] 
13833                 };
13834             }
13835
13836         } else {
13837             if(this.removable && !this.editable ){
13838                 inputblock = {
13839                     cls : 'roo-removable',
13840                     cn :  [
13841                         inputblock,
13842                         {
13843                             tag: 'button',
13844                             html : 'x',
13845                             cls : 'roo-combo-removable-btn close'
13846                         }
13847                     ] 
13848                 };
13849             }
13850         }
13851         
13852         if (this.before || this.after) {
13853             
13854             inputblock = {
13855                 cls : 'input-group',
13856                 cn :  [] 
13857             };
13858             if (this.before) {
13859                 inputblock.cn.push({
13860                     tag :'span',
13861                     cls : 'input-group-addon input-group-prepend input-group-text',
13862                     html : this.before
13863                 });
13864             }
13865             
13866             inputblock.cn.push(input);
13867             
13868             if(this.hasFeedback && !this.allowBlank){
13869                 inputblock.cls += ' has-feedback';
13870                 inputblock.cn.push(feedback);
13871             }
13872             
13873             if (this.after) {
13874                 inputblock.cn.push({
13875                     tag :'span',
13876                     cls : 'input-group-addon input-group-append input-group-text',
13877                     html : this.after
13878                 });
13879             }
13880             
13881         };
13882         
13883       
13884         
13885         var ibwrap = inputblock;
13886         
13887         if(this.multiple){
13888             ibwrap = {
13889                 tag: 'ul',
13890                 cls: 'roo-select2-choices',
13891                 cn:[
13892                     {
13893                         tag: 'li',
13894                         cls: 'roo-select2-search-field',
13895                         cn: [
13896
13897                             inputblock
13898                         ]
13899                     }
13900                 ]
13901             };
13902                 
13903         }
13904         
13905         var combobox = {
13906             cls: 'roo-select2-container input-group',
13907             cn: [
13908                  {
13909                     tag: 'input',
13910                     type : 'hidden',
13911                     cls: 'form-hidden-field'
13912                 },
13913                 ibwrap
13914             ]
13915         };
13916         
13917         if(!this.multiple && this.showToggleBtn){
13918             
13919             var caret = {
13920                         tag: 'span',
13921                         cls: 'caret'
13922              };
13923             if (this.caret != false) {
13924                 caret = {
13925                      tag: 'i',
13926                      cls: 'fa fa-' + this.caret
13927                 };
13928                 
13929             }
13930             
13931             combobox.cn.push({
13932                 tag :'span',
13933                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
13934                 cn : [
13935                     Roo.bootstrap.version == 3 ? caret : '',
13936                     {
13937                         tag: 'span',
13938                         cls: 'combobox-clear',
13939                         cn  : [
13940                             {
13941                                 tag : 'i',
13942                                 cls: 'icon-remove'
13943                             }
13944                         ]
13945                     }
13946                 ]
13947
13948             })
13949         }
13950         
13951         if(this.multiple){
13952             combobox.cls += ' roo-select2-container-multi';
13953         }
13954          var indicator = {
13955             tag : 'i',
13956             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13957             tooltip : 'This field is required'
13958         };
13959         if (Roo.bootstrap.version == 4) {
13960             indicator = {
13961                 tag : 'i',
13962                 style : 'display:none'
13963             };
13964         }
13965         
13966         
13967         if (align ==='left' && this.fieldLabel.length) {
13968             
13969             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13970
13971             cfg.cn = [
13972                 indicator,
13973                 {
13974                     tag: 'label',
13975                     'for' :  id,
13976                     cls : 'control-label',
13977                     html : this.fieldLabel
13978
13979                 },
13980                 {
13981                     cls : "", 
13982                     cn: [
13983                         combobox
13984                     ]
13985                 }
13986
13987             ];
13988             
13989             var labelCfg = cfg.cn[1];
13990             var contentCfg = cfg.cn[2];
13991             
13992             if(this.indicatorpos == 'right'){
13993                 cfg.cn = [
13994                     {
13995                         tag: 'label',
13996                         'for' :  id,
13997                         cls : 'control-label',
13998                         cn : [
13999                             {
14000                                 tag : 'span',
14001                                 html : this.fieldLabel
14002                             },
14003                             indicator
14004                         ]
14005                     },
14006                     {
14007                         cls : "", 
14008                         cn: [
14009                             combobox
14010                         ]
14011                     }
14012
14013                 ];
14014                 
14015                 labelCfg = cfg.cn[0];
14016                 contentCfg = cfg.cn[1];
14017             }
14018             
14019             if(this.labelWidth > 12){
14020                 labelCfg.style = "width: " + this.labelWidth + 'px';
14021             }
14022             
14023             if(this.labelWidth < 13 && this.labelmd == 0){
14024                 this.labelmd = this.labelWidth;
14025             }
14026             
14027             if(this.labellg > 0){
14028                 labelCfg.cls += ' col-lg-' + this.labellg;
14029                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
14030             }
14031             
14032             if(this.labelmd > 0){
14033                 labelCfg.cls += ' col-md-' + this.labelmd;
14034                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
14035             }
14036             
14037             if(this.labelsm > 0){
14038                 labelCfg.cls += ' col-sm-' + this.labelsm;
14039                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
14040             }
14041             
14042             if(this.labelxs > 0){
14043                 labelCfg.cls += ' col-xs-' + this.labelxs;
14044                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
14045             }
14046             
14047         } else if ( this.fieldLabel.length) {
14048 //                Roo.log(" label");
14049             cfg.cn = [
14050                 indicator,
14051                {
14052                    tag: 'label',
14053                    //cls : 'input-group-addon',
14054                    html : this.fieldLabel
14055
14056                },
14057
14058                combobox
14059
14060             ];
14061             
14062             if(this.indicatorpos == 'right'){
14063                 
14064                 cfg.cn = [
14065                     {
14066                        tag: 'label',
14067                        cn : [
14068                            {
14069                                tag : 'span',
14070                                html : this.fieldLabel
14071                            },
14072                            indicator
14073                        ]
14074
14075                     },
14076                     combobox
14077
14078                 ];
14079
14080             }
14081
14082         } else {
14083             
14084 //                Roo.log(" no label && no align");
14085                 cfg = combobox
14086                      
14087                 
14088         }
14089         
14090         var settings=this;
14091         ['xs','sm','md','lg'].map(function(size){
14092             if (settings[size]) {
14093                 cfg.cls += ' col-' + size + '-' + settings[size];
14094             }
14095         });
14096         
14097         return cfg;
14098         
14099     },
14100     
14101     
14102     
14103     // private
14104     onResize : function(w, h){
14105 //        Roo.bootstrap.form.TriggerField.superclass.onResize.apply(this, arguments);
14106 //        if(typeof w == 'number'){
14107 //            var x = w - this.trigger.getWidth();
14108 //            this.inputEl().setWidth(this.adjustWidth('input', x));
14109 //            this.trigger.setStyle('left', x+'px');
14110 //        }
14111     },
14112
14113     // private
14114     adjustSize : Roo.BoxComponent.prototype.adjustSize,
14115
14116     // private
14117     getResizeEl : function(){
14118         return this.inputEl();
14119     },
14120
14121     // private
14122     getPositionEl : function(){
14123         return this.inputEl();
14124     },
14125
14126     // private
14127     alignErrorIcon : function(){
14128         this.errorIcon.alignTo(this.inputEl(), 'tl-tr', [2, 0]);
14129     },
14130
14131     // private
14132     initEvents : function(){
14133         
14134         this.createList();
14135         
14136         Roo.bootstrap.form.TriggerField.superclass.initEvents.call(this);
14137         //this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
14138         if(!this.multiple && this.showToggleBtn){
14139             this.trigger = this.el.select('span.dropdown-toggle',true).first();
14140             if(this.hideTrigger){
14141                 this.trigger.setDisplayed(false);
14142             }
14143             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
14144         }
14145         
14146         if(this.multiple){
14147             this.inputEl().on("click", this.onTriggerClick, this, {preventDefault:true});
14148         }
14149         
14150         if(this.removable && !this.editable && !this.tickable){
14151             var close = this.closeTriggerEl();
14152             
14153             if(close){
14154                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
14155                 close.on('click', this.removeBtnClick, this, close);
14156             }
14157         }
14158         
14159         //this.trigger.addClassOnOver('x-form-trigger-over');
14160         //this.trigger.addClassOnClick('x-form-trigger-click');
14161         
14162         //if(!this.width){
14163         //    this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
14164         //}
14165     },
14166     
14167     closeTriggerEl : function()
14168     {
14169         var close = this.el.select('.roo-combo-removable-btn', true).first();
14170         return close ? close : false;
14171     },
14172     
14173     removeBtnClick : function(e, h, el)
14174     {
14175         e.preventDefault();
14176         
14177         if(this.fireEvent("remove", this) !== false){
14178             this.reset();
14179             this.fireEvent("afterremove", this)
14180         }
14181     },
14182     
14183     createList : function()
14184     {
14185         this.list = Roo.get(document.body).createChild({
14186             tag: Roo.bootstrap.version == 4 ? 'div' : 'ul',
14187             cls: 'typeahead typeahead-long dropdown-menu shadow',
14188             style: 'display:none'
14189         });
14190         
14191         this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';;
14192         
14193     },
14194
14195     // private
14196     initTrigger : function(){
14197        
14198     },
14199
14200     // private
14201     onDestroy : function(){
14202         if(this.trigger){
14203             this.trigger.removeAllListeners();
14204           //  this.trigger.remove();
14205         }
14206         //if(this.wrap){
14207         //    this.wrap.remove();
14208         //}
14209         Roo.bootstrap.form.TriggerField.superclass.onDestroy.call(this);
14210     },
14211
14212     // private
14213     onFocus : function(){
14214         Roo.bootstrap.form.TriggerField.superclass.onFocus.call(this);
14215         /*
14216         if(!this.mimicing){
14217             this.wrap.addClass('x-trigger-wrap-focus');
14218             this.mimicing = true;
14219             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
14220             if(this.monitorTab){
14221                 this.el.on("keydown", this.checkTab, this);
14222             }
14223         }
14224         */
14225     },
14226
14227     // private
14228     checkTab : function(e){
14229         if(e.getKey() == e.TAB){
14230             this.triggerBlur();
14231         }
14232     },
14233
14234     // private
14235     onBlur : function(){
14236         // do nothing
14237     },
14238
14239     // private
14240     mimicBlur : function(e, t){
14241         /*
14242         if(!this.wrap.contains(t) && this.validateBlur()){
14243             this.triggerBlur();
14244         }
14245         */
14246     },
14247
14248     // private
14249     triggerBlur : function(){
14250         this.mimicing = false;
14251         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
14252         if(this.monitorTab){
14253             this.el.un("keydown", this.checkTab, this);
14254         }
14255         //this.wrap.removeClass('x-trigger-wrap-focus');
14256         Roo.bootstrap.form.TriggerField.superclass.onBlur.call(this);
14257     },
14258
14259     // private
14260     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
14261     validateBlur : function(e, t){
14262         return true;
14263     },
14264
14265     // private
14266     onDisable : function(){
14267         this.inputEl().dom.disabled = true;
14268         //Roo.bootstrap.form.TriggerField.superclass.onDisable.call(this);
14269         //if(this.wrap){
14270         //    this.wrap.addClass('x-item-disabled');
14271         //}
14272     },
14273
14274     // private
14275     onEnable : function(){
14276         this.inputEl().dom.disabled = false;
14277         //Roo.bootstrap.form.TriggerField.superclass.onEnable.call(this);
14278         //if(this.wrap){
14279         //    this.el.removeClass('x-item-disabled');
14280         //}
14281     },
14282
14283     // private
14284     onShow : function(){
14285         var ae = this.getActionEl();
14286         
14287         if(ae){
14288             ae.dom.style.display = '';
14289             ae.dom.style.visibility = 'visible';
14290         }
14291     },
14292
14293     // private
14294     
14295     onHide : function(){
14296         var ae = this.getActionEl();
14297         ae.dom.style.display = 'none';
14298     },
14299
14300     /**
14301      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
14302      * by an implementing function.
14303      * @method
14304      * @param {EventObject} e
14305      */
14306     onTriggerClick : Roo.emptyFn
14307 });
14308  
14309 /*
14310 * Licence: LGPL
14311 */
14312
14313 /**
14314  * @class Roo.bootstrap.form.CardUploader
14315  * @extends Roo.bootstrap.Button
14316  * Bootstrap Card Uploader class - it's a button which when you add files to it, adds cards below with preview and the name...
14317  * @cfg {Number} errorTimeout default 3000
14318  * @cfg {Array}  images  an array of ?? Img objects ??? when loading existing files..
14319  * @cfg {Array}  html The button text.
14320
14321  *
14322  * @constructor
14323  * Create a new CardUploader
14324  * @param {Object} config The config object
14325  */
14326
14327 Roo.bootstrap.form.CardUploader = function(config){
14328     
14329  
14330     
14331     Roo.bootstrap.form.CardUploader.superclass.constructor.call(this, config);
14332     
14333     
14334     this.fileCollection   = new Roo.util.MixedCollection(false,function(r) {
14335         return r.data.id
14336      });
14337     
14338      this.addEvents({
14339          // raw events
14340         /**
14341          * @event preview
14342          * When a image is clicked on - and needs to display a slideshow or similar..
14343          * @param {Roo.bootstrap.Card} this
14344          * @param {Object} The image information data 
14345          *
14346          */
14347         'preview' : true,
14348          /**
14349          * @event download
14350          * When a the download link is clicked
14351          * @param {Roo.bootstrap.Card} this
14352          * @param {Object} The image information data  contains 
14353          */
14354         'download' : true
14355         
14356     });
14357 };
14358  
14359 Roo.extend(Roo.bootstrap.form.CardUploader, Roo.bootstrap.form.Input,  {
14360     
14361      
14362     errorTimeout : 3000,
14363      
14364     images : false,
14365    
14366     fileCollection : false,
14367     allowBlank : true,
14368     
14369     getAutoCreate : function()
14370     {
14371         
14372         var cfg =  {
14373             cls :'form-group' ,
14374             cn : [
14375                
14376                 {
14377                     tag: 'label',
14378                    //cls : 'input-group-addon',
14379                     html : this.fieldLabel
14380
14381                 },
14382
14383                 {
14384                     tag: 'input',
14385                     type : 'hidden',
14386                     name : this.name,
14387                     value : this.value,
14388                     cls : 'd-none  form-control'
14389                 },
14390                 
14391                 {
14392                     tag: 'input',
14393                     multiple : 'multiple',
14394                     type : 'file',
14395                     cls : 'd-none  roo-card-upload-selector'
14396                 },
14397                 
14398                 {
14399                     cls : 'roo-card-uploader-button-container w-100 mb-2'
14400                 },
14401                 {
14402                     cls : 'card-columns roo-card-uploader-container'
14403                 }
14404
14405             ]
14406         };
14407            
14408          
14409         return cfg;
14410     },
14411     
14412     getChildContainer : function() /// what children are added to.
14413     {
14414         return this.containerEl;
14415     },
14416    
14417     getButtonContainer : function() /// what children are added to.
14418     {
14419         return this.el.select(".roo-card-uploader-button-container").first();
14420     },
14421    
14422     initEvents : function()
14423     {
14424         
14425         Roo.bootstrap.form.Input.prototype.initEvents.call(this);
14426         
14427         var t = this;
14428         this.addxtype({
14429             xns: Roo.bootstrap,
14430
14431             xtype : 'Button',
14432             container_method : 'getButtonContainer' ,            
14433             html :  this.html, // fix changable?
14434             cls : 'w-100 ',
14435             listeners : {
14436                 'click' : function(btn, e) {
14437                     t.onClick(e);
14438                 }
14439             }
14440         });
14441         
14442         
14443         
14444         
14445         this.urlAPI = (window.createObjectURL && window) || 
14446                                 (window.URL && URL.revokeObjectURL && URL) || 
14447                                 (window.webkitURL && webkitURL);
14448                         
14449          
14450          
14451          
14452         this.selectorEl = this.el.select('.roo-card-upload-selector', true).first();
14453         
14454         this.selectorEl.on('change', this.onFileSelected, this);
14455         if (this.images) {
14456             var t = this;
14457             this.images.forEach(function(img) {
14458                 t.addCard(img)
14459             });
14460             this.images = false;
14461         }
14462         this.containerEl = this.el.select('.roo-card-uploader-container', true).first();
14463          
14464        
14465     },
14466     
14467    
14468     onClick : function(e)
14469     {
14470         e.preventDefault();
14471          
14472         this.selectorEl.dom.click();
14473          
14474     },
14475     
14476     onFileSelected : function(e)
14477     {
14478         e.preventDefault();
14479         
14480         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
14481             return;
14482         }
14483         
14484         Roo.each(this.selectorEl.dom.files, function(file){    
14485             this.addFile(file);
14486         }, this);
14487          
14488     },
14489     
14490       
14491     
14492       
14493     
14494     addFile : function(file)
14495     {
14496            
14497         if(typeof(file) === 'string'){
14498             throw "Add file by name?"; // should not happen
14499             return;
14500         }
14501         
14502         if(!file || !this.urlAPI){
14503             return;
14504         }
14505         
14506         // file;
14507         // file.type;
14508         
14509         var _this = this;
14510         
14511         
14512         var url = _this.urlAPI.createObjectURL( file);
14513            
14514         this.addCard({
14515             id : Roo.bootstrap.form.CardUploader.ID--,
14516             is_uploaded : false,
14517             src : url,
14518             srcfile : file,
14519             title : file.name,
14520             mimetype : file.type,
14521             preview : false,
14522             is_deleted : 0
14523         });
14524         
14525     },
14526     
14527     /**
14528      * addCard - add an Attachment to the uploader
14529      * @param data - the data about the image to upload
14530      *
14531      * {
14532           id : 123
14533           title : "Title of file",
14534           is_uploaded : false,
14535           src : "http://.....",
14536           srcfile : { the File upload object },
14537           mimetype : file.type,
14538           preview : false,
14539           is_deleted : 0
14540           .. any other data...
14541         }
14542      *
14543      * 
14544     */
14545     
14546     addCard : function (data)
14547     {
14548         // hidden input element?
14549         // if the file is not an image...
14550         //then we need to use something other that and header_image
14551         var t = this;
14552         //   remove.....
14553         var footer = [
14554             {
14555                 xns : Roo.bootstrap,
14556                 xtype : 'CardFooter',
14557                  items: [
14558                     {
14559                         xns : Roo.bootstrap,
14560                         xtype : 'Element',
14561                         cls : 'd-flex',
14562                         items : [
14563                             
14564                             {
14565                                 xns : Roo.bootstrap,
14566                                 xtype : 'Button',
14567                                 html : String.format("<small>{0}</small>", data.title),
14568                                 cls : 'col-10 text-left',
14569                                 size: 'sm',
14570                                 weight: 'link',
14571                                 fa : 'download',
14572                                 listeners : {
14573                                     click : function() {
14574                                      
14575                                         t.fireEvent( "download", t, data );
14576                                     }
14577                                 }
14578                             },
14579                           
14580                             {
14581                                 xns : Roo.bootstrap,
14582                                 xtype : 'Button',
14583                                 style: 'max-height: 28px; ',
14584                                 size : 'sm',
14585                                 weight: 'danger',
14586                                 cls : 'col-2',
14587                                 fa : 'times',
14588                                 listeners : {
14589                                     click : function() {
14590                                         t.removeCard(data.id)
14591                                     }
14592                                 }
14593                             }
14594                         ]
14595                     }
14596                     
14597                 ] 
14598             }
14599             
14600         ];
14601         
14602         var cn = this.addxtype(
14603             {
14604                  
14605                 xns : Roo.bootstrap,
14606                 xtype : 'Card',
14607                 closeable : true,
14608                 header : !data.mimetype.match(/image/) && !data.preview ? "Document": false,
14609                 header_image : data.mimetype.match(/image/) ? data.src  : data.preview,
14610                 header_image_fit_square: true, // fixme  - we probably need to use the 'Img' element to do stuff like this.
14611                 data : data,
14612                 html : false,
14613                  
14614                 items : footer,
14615                 initEvents : function() {
14616                     Roo.bootstrap.Card.prototype.initEvents.call(this);
14617                     var card = this;
14618                     this.imgEl = this.el.select('.card-img-top').first();
14619                     if (this.imgEl) {
14620                         this.imgEl.on('click', function() { t.fireEvent( "preview", t, data ); }, this);
14621                         this.imgEl.set({ 'pointer' : 'cursor' });
14622                                   
14623                     }
14624                     this.getCardFooter().addClass('p-1');
14625                     
14626                   
14627                 }
14628                 
14629             }
14630         );
14631         // dont' really need ot update items.
14632         // this.items.push(cn);
14633         this.fileCollection.add(cn);
14634         
14635         if (!data.srcfile) {
14636             this.updateInput();
14637             return;
14638         }
14639             
14640         var _t = this;
14641         var reader = new FileReader();
14642         reader.addEventListener("load", function() {  
14643             data.srcdata =  reader.result;
14644             _t.updateInput();
14645         });
14646         reader.readAsDataURL(data.srcfile);
14647         
14648         
14649         
14650     },
14651     removeCard : function(id)
14652     {
14653         
14654         var card  = this.fileCollection.get(id);
14655         card.data.is_deleted = 1;
14656         card.data.src = ''; /// delete the source - so it reduces size of not uploaded images etc.
14657         //this.fileCollection.remove(card);
14658         //this.items = this.items.filter(function(e) { return e != card });
14659         // dont' really need ot update items.
14660         card.el.dom.parentNode.removeChild(card.el.dom);
14661         this.updateInput();
14662
14663         
14664     },
14665     reset: function()
14666     {
14667         this.fileCollection.each(function(card) {
14668             if (card.el.dom && card.el.dom.parentNode) {
14669                 card.el.dom.parentNode.removeChild(card.el.dom);
14670             }
14671         });
14672         this.fileCollection.clear();
14673         this.updateInput();
14674     },
14675     
14676     updateInput : function()
14677     {
14678          var data = [];
14679         this.fileCollection.each(function(e) {
14680             data.push(e.data);
14681             
14682         });
14683         this.inputEl().dom.value = JSON.stringify(data);
14684         
14685         
14686         
14687     }
14688     
14689     
14690 });
14691
14692
14693 Roo.bootstrap.form.CardUploader.ID = -1;/*
14694  * Based on:
14695  * Ext JS Library 1.1.1
14696  * Copyright(c) 2006-2007, Ext JS, LLC.
14697  *
14698  * Originally Released Under LGPL - original licence link has changed is not relivant.
14699  *
14700  * Fork - LGPL
14701  * <script type="text/javascript">
14702  */
14703
14704
14705 /**
14706  * @class Roo.data.SortTypes
14707  * @static
14708  * Defines the default sorting (casting?) comparison functions used when sorting data.
14709  */
14710 Roo.data.SortTypes = {
14711     /**
14712      * Default sort that does nothing
14713      * @param {Mixed} s The value being converted
14714      * @return {Mixed} The comparison value
14715      */
14716     none : function(s){
14717         return s;
14718     },
14719     
14720     /**
14721      * The regular expression used to strip tags
14722      * @type {RegExp}
14723      * @property
14724      */
14725     stripTagsRE : /<\/?[^>]+>/gi,
14726     
14727     /**
14728      * Strips all HTML tags to sort on text only
14729      * @param {Mixed} s The value being converted
14730      * @return {String} The comparison value
14731      */
14732     asText : function(s){
14733         return String(s).replace(this.stripTagsRE, "");
14734     },
14735     
14736     /**
14737      * Strips all HTML tags to sort on text only - Case insensitive
14738      * @param {Mixed} s The value being converted
14739      * @return {String} The comparison value
14740      */
14741     asUCText : function(s){
14742         return String(s).toUpperCase().replace(this.stripTagsRE, "");
14743     },
14744     
14745     /**
14746      * Case insensitive string
14747      * @param {Mixed} s The value being converted
14748      * @return {String} The comparison value
14749      */
14750     asUCString : function(s) {
14751         return String(s).toUpperCase();
14752     },
14753     
14754     /**
14755      * Date sorting
14756      * @param {Mixed} s The value being converted
14757      * @return {Number} The comparison value
14758      */
14759     asDate : function(s) {
14760         if(!s){
14761             return 0;
14762         }
14763         if(s instanceof Date){
14764             return s.getTime();
14765         }
14766         return Date.parse(String(s));
14767     },
14768     
14769     /**
14770      * Float sorting
14771      * @param {Mixed} s The value being converted
14772      * @return {Float} The comparison value
14773      */
14774     asFloat : function(s) {
14775         var val = parseFloat(String(s).replace(/,/g, ""));
14776         if(isNaN(val)) {
14777             val = 0;
14778         }
14779         return val;
14780     },
14781     
14782     /**
14783      * Integer sorting
14784      * @param {Mixed} s The value being converted
14785      * @return {Number} The comparison value
14786      */
14787     asInt : function(s) {
14788         var val = parseInt(String(s).replace(/,/g, ""));
14789         if(isNaN(val)) {
14790             val = 0;
14791         }
14792         return val;
14793     }
14794 };/*
14795  * Based on:
14796  * Ext JS Library 1.1.1
14797  * Copyright(c) 2006-2007, Ext JS, LLC.
14798  *
14799  * Originally Released Under LGPL - original licence link has changed is not relivant.
14800  *
14801  * Fork - LGPL
14802  * <script type="text/javascript">
14803  */
14804
14805 /**
14806 * @class Roo.data.Record
14807  * Instances of this class encapsulate both record <em>definition</em> information, and record
14808  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
14809  * to access Records cached in an {@link Roo.data.Store} object.<br>
14810  * <p>
14811  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
14812  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
14813  * objects.<br>
14814  * <p>
14815  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
14816  * @constructor
14817  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
14818  * {@link #create}. The parameters are the same.
14819  * @param {Array} data An associative Array of data values keyed by the field name.
14820  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
14821  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
14822  * not specified an integer id is generated.
14823  */
14824 Roo.data.Record = function(data, id){
14825     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
14826     this.data = data;
14827 };
14828
14829 /**
14830  * Generate a constructor for a specific record layout.
14831  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
14832  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
14833  * Each field definition object may contain the following properties: <ul>
14834  * <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,
14835  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
14836  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
14837  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
14838  * is being used, then this is a string containing the javascript expression to reference the data relative to 
14839  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
14840  * to the data item relative to the record element. If the mapping expression is the same as the field name,
14841  * this may be omitted.</p></li>
14842  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
14843  * <ul><li>auto (Default, implies no conversion)</li>
14844  * <li>string</li>
14845  * <li>int</li>
14846  * <li>float</li>
14847  * <li>boolean</li>
14848  * <li>date</li></ul></p></li>
14849  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
14850  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
14851  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
14852  * by the Reader into an object that will be stored in the Record. It is passed the
14853  * following parameters:<ul>
14854  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
14855  * </ul></p></li>
14856  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
14857  * </ul>
14858  * <br>usage:<br><pre><code>
14859 var TopicRecord = Roo.data.Record.create(
14860     {name: 'title', mapping: 'topic_title'},
14861     {name: 'author', mapping: 'username'},
14862     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
14863     {name: 'lastPost', mapping: 'post_time', type: 'date'},
14864     {name: 'lastPoster', mapping: 'user2'},
14865     {name: 'excerpt', mapping: 'post_text'}
14866 );
14867
14868 var myNewRecord = new TopicRecord({
14869     title: 'Do my job please',
14870     author: 'noobie',
14871     totalPosts: 1,
14872     lastPost: new Date(),
14873     lastPoster: 'Animal',
14874     excerpt: 'No way dude!'
14875 });
14876 myStore.add(myNewRecord);
14877 </code></pre>
14878  * @method create
14879  * @static
14880  */
14881 Roo.data.Record.create = function(o){
14882     var f = function(){
14883         f.superclass.constructor.apply(this, arguments);
14884     };
14885     Roo.extend(f, Roo.data.Record);
14886     var p = f.prototype;
14887     p.fields = new Roo.util.MixedCollection(false, function(field){
14888         return field.name;
14889     });
14890     for(var i = 0, len = o.length; i < len; i++){
14891         p.fields.add(new Roo.data.Field(o[i]));
14892     }
14893     f.getField = function(name){
14894         return p.fields.get(name);  
14895     };
14896     return f;
14897 };
14898
14899 Roo.data.Record.AUTO_ID = 1000;
14900 Roo.data.Record.EDIT = 'edit';
14901 Roo.data.Record.REJECT = 'reject';
14902 Roo.data.Record.COMMIT = 'commit';
14903
14904 Roo.data.Record.prototype = {
14905     /**
14906      * Readonly flag - true if this record has been modified.
14907      * @type Boolean
14908      */
14909     dirty : false,
14910     editing : false,
14911     error: null,
14912     modified: null,
14913
14914     // private
14915     join : function(store){
14916         this.store = store;
14917     },
14918
14919     /**
14920      * Set the named field to the specified value.
14921      * @param {String} name The name of the field to set.
14922      * @param {Object} value The value to set the field to.
14923      */
14924     set : function(name, value){
14925         if(this.data[name] == value){
14926             return;
14927         }
14928         this.dirty = true;
14929         if(!this.modified){
14930             this.modified = {};
14931         }
14932         if(typeof this.modified[name] == 'undefined'){
14933             this.modified[name] = this.data[name];
14934         }
14935         this.data[name] = value;
14936         if(!this.editing && this.store){
14937             this.store.afterEdit(this);
14938         }       
14939     },
14940
14941     /**
14942      * Get the value of the named field.
14943      * @param {String} name The name of the field to get the value of.
14944      * @return {Object} The value of the field.
14945      */
14946     get : function(name){
14947         return this.data[name]; 
14948     },
14949
14950     // private
14951     beginEdit : function(){
14952         this.editing = true;
14953         this.modified = {}; 
14954     },
14955
14956     // private
14957     cancelEdit : function(){
14958         this.editing = false;
14959         delete this.modified;
14960     },
14961
14962     // private
14963     endEdit : function(){
14964         this.editing = false;
14965         if(this.dirty && this.store){
14966             this.store.afterEdit(this);
14967         }
14968     },
14969
14970     /**
14971      * Usually called by the {@link Roo.data.Store} which owns the Record.
14972      * Rejects all changes made to the Record since either creation, or the last commit operation.
14973      * Modified fields are reverted to their original values.
14974      * <p>
14975      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
14976      * of reject operations.
14977      */
14978     reject : function(){
14979         var m = this.modified;
14980         for(var n in m){
14981             if(typeof m[n] != "function"){
14982                 this.data[n] = m[n];
14983             }
14984         }
14985         this.dirty = false;
14986         delete this.modified;
14987         this.editing = false;
14988         if(this.store){
14989             this.store.afterReject(this);
14990         }
14991     },
14992
14993     /**
14994      * Usually called by the {@link Roo.data.Store} which owns the Record.
14995      * Commits all changes made to the Record since either creation, or the last commit operation.
14996      * <p>
14997      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
14998      * of commit operations.
14999      */
15000     commit : function(){
15001         this.dirty = false;
15002         delete this.modified;
15003         this.editing = false;
15004         if(this.store){
15005             this.store.afterCommit(this);
15006         }
15007     },
15008
15009     // private
15010     hasError : function(){
15011         return this.error != null;
15012     },
15013
15014     // private
15015     clearError : function(){
15016         this.error = null;
15017     },
15018
15019     /**
15020      * Creates a copy of this record.
15021      * @param {String} id (optional) A new record id if you don't want to use this record's id
15022      * @return {Record}
15023      */
15024     copy : function(newId) {
15025         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
15026     }
15027 };/*
15028  * Based on:
15029  * Ext JS Library 1.1.1
15030  * Copyright(c) 2006-2007, Ext JS, LLC.
15031  *
15032  * Originally Released Under LGPL - original licence link has changed is not relivant.
15033  *
15034  * Fork - LGPL
15035  * <script type="text/javascript">
15036  */
15037
15038
15039
15040 /**
15041  * @class Roo.data.Store
15042  * @extends Roo.util.Observable
15043  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
15044  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
15045  * <p>
15046  * 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
15047  * has no knowledge of the format of the data returned by the Proxy.<br>
15048  * <p>
15049  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
15050  * instances from the data object. These records are cached and made available through accessor functions.
15051  * @constructor
15052  * Creates a new Store.
15053  * @param {Object} config A config object containing the objects needed for the Store to access data,
15054  * and read the data into Records.
15055  */
15056 Roo.data.Store = function(config){
15057     this.data = new Roo.util.MixedCollection(false);
15058     this.data.getKey = function(o){
15059         return o.id;
15060     };
15061     this.baseParams = {};
15062     // private
15063     this.paramNames = {
15064         "start" : "start",
15065         "limit" : "limit",
15066         "sort" : "sort",
15067         "dir" : "dir",
15068         "multisort" : "_multisort"
15069     };
15070
15071     if(config && config.data){
15072         this.inlineData = config.data;
15073         delete config.data;
15074     }
15075
15076     Roo.apply(this, config);
15077     
15078     if(this.reader){ // reader passed
15079         this.reader = Roo.factory(this.reader, Roo.data);
15080         this.reader.xmodule = this.xmodule || false;
15081         if(!this.recordType){
15082             this.recordType = this.reader.recordType;
15083         }
15084         if(this.reader.onMetaChange){
15085             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
15086         }
15087     }
15088
15089     if(this.recordType){
15090         this.fields = this.recordType.prototype.fields;
15091     }
15092     this.modified = [];
15093
15094     this.addEvents({
15095         /**
15096          * @event datachanged
15097          * Fires when the data cache has changed, and a widget which is using this Store
15098          * as a Record cache should refresh its view.
15099          * @param {Store} this
15100          */
15101         datachanged : true,
15102         /**
15103          * @event metachange
15104          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
15105          * @param {Store} this
15106          * @param {Object} meta The JSON metadata
15107          */
15108         metachange : true,
15109         /**
15110          * @event add
15111          * Fires when Records have been added to the Store
15112          * @param {Store} this
15113          * @param {Roo.data.Record[]} records The array of Records added
15114          * @param {Number} index The index at which the record(s) were added
15115          */
15116         add : true,
15117         /**
15118          * @event remove
15119          * Fires when a Record has been removed from the Store
15120          * @param {Store} this
15121          * @param {Roo.data.Record} record The Record that was removed
15122          * @param {Number} index The index at which the record was removed
15123          */
15124         remove : true,
15125         /**
15126          * @event update
15127          * Fires when a Record has been updated
15128          * @param {Store} this
15129          * @param {Roo.data.Record} record The Record that was updated
15130          * @param {String} operation The update operation being performed.  Value may be one of:
15131          * <pre><code>
15132  Roo.data.Record.EDIT
15133  Roo.data.Record.REJECT
15134  Roo.data.Record.COMMIT
15135          * </code></pre>
15136          */
15137         update : true,
15138         /**
15139          * @event clear
15140          * Fires when the data cache has been cleared.
15141          * @param {Store} this
15142          */
15143         clear : true,
15144         /**
15145          * @event beforeload
15146          * Fires before a request is made for a new data object.  If the beforeload handler returns false
15147          * the load action will be canceled.
15148          * @param {Store} this
15149          * @param {Object} options The loading options that were specified (see {@link #load} for details)
15150          */
15151         beforeload : true,
15152         /**
15153          * @event beforeloadadd
15154          * Fires after a new set of Records has been loaded.
15155          * @param {Store} this
15156          * @param {Roo.data.Record[]} records The Records that were loaded
15157          * @param {Object} options The loading options that were specified (see {@link #load} for details)
15158          */
15159         beforeloadadd : true,
15160         /**
15161          * @event load
15162          * Fires after a new set of Records has been loaded, before they are added to the store.
15163          * @param {Store} this
15164          * @param {Roo.data.Record[]} records The Records that were loaded
15165          * @param {Object} options The loading options that were specified (see {@link #load} for details)
15166          * @params {Object} return from reader
15167          */
15168         load : true,
15169         /**
15170          * @event loadexception
15171          * Fires if an exception occurs in the Proxy during loading.
15172          * Called with the signature of the Proxy's "loadexception" event.
15173          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
15174          * 
15175          * @param {Proxy} 
15176          * @param {Object} return from JsonData.reader() - success, totalRecords, records
15177          * @param {Object} load options 
15178          * @param {Object} jsonData from your request (normally this contains the Exception)
15179          */
15180         loadexception : true
15181     });
15182     
15183     if(this.proxy){
15184         this.proxy = Roo.factory(this.proxy, Roo.data);
15185         this.proxy.xmodule = this.xmodule || false;
15186         this.relayEvents(this.proxy,  ["loadexception"]);
15187     }
15188     this.sortToggle = {};
15189     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
15190
15191     Roo.data.Store.superclass.constructor.call(this);
15192
15193     if(this.inlineData){
15194         this.loadData(this.inlineData);
15195         delete this.inlineData;
15196     }
15197 };
15198
15199 Roo.extend(Roo.data.Store, Roo.util.Observable, {
15200      /**
15201     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
15202     * without a remote query - used by combo/forms at present.
15203     */
15204     
15205     /**
15206     * @cfg {Roo.data.DataProxy} proxy [required] The Proxy object which provides access to a data object.
15207     */
15208     /**
15209     * @cfg {Array} data Inline data to be loaded when the store is initialized.
15210     */
15211     /**
15212     * @cfg {Roo.data.DataReader} reader [required]  The Reader object which processes the data object and returns
15213     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
15214     */
15215     /**
15216     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
15217     * on any HTTP request
15218     */
15219     /**
15220     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
15221     */
15222     /**
15223     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
15224     */
15225     multiSort: false,
15226     /**
15227     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
15228     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
15229     */
15230     remoteSort : false,
15231
15232     /**
15233     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
15234      * loaded or when a record is removed. (defaults to false).
15235     */
15236     pruneModifiedRecords : false,
15237
15238     // private
15239     lastOptions : null,
15240
15241     /**
15242      * Add Records to the Store and fires the add event.
15243      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
15244      */
15245     add : function(records){
15246         records = [].concat(records);
15247         for(var i = 0, len = records.length; i < len; i++){
15248             records[i].join(this);
15249         }
15250         var index = this.data.length;
15251         this.data.addAll(records);
15252         this.fireEvent("add", this, records, index);
15253     },
15254
15255     /**
15256      * Remove a Record from the Store and fires the remove event.
15257      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
15258      */
15259     remove : function(record){
15260         var index = this.data.indexOf(record);
15261         this.data.removeAt(index);
15262  
15263         if(this.pruneModifiedRecords){
15264             this.modified.remove(record);
15265         }
15266         this.fireEvent("remove", this, record, index);
15267     },
15268
15269     /**
15270      * Remove all Records from the Store and fires the clear event.
15271      */
15272     removeAll : function(){
15273         this.data.clear();
15274         if(this.pruneModifiedRecords){
15275             this.modified = [];
15276         }
15277         this.fireEvent("clear", this);
15278     },
15279
15280     /**
15281      * Inserts Records to the Store at the given index and fires the add event.
15282      * @param {Number} index The start index at which to insert the passed Records.
15283      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
15284      */
15285     insert : function(index, records){
15286         records = [].concat(records);
15287         for(var i = 0, len = records.length; i < len; i++){
15288             this.data.insert(index, records[i]);
15289             records[i].join(this);
15290         }
15291         this.fireEvent("add", this, records, index);
15292     },
15293
15294     /**
15295      * Get the index within the cache of the passed Record.
15296      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
15297      * @return {Number} The index of the passed Record. Returns -1 if not found.
15298      */
15299     indexOf : function(record){
15300         return this.data.indexOf(record);
15301     },
15302
15303     /**
15304      * Get the index within the cache of the Record with the passed id.
15305      * @param {String} id The id of the Record to find.
15306      * @return {Number} The index of the Record. Returns -1 if not found.
15307      */
15308     indexOfId : function(id){
15309         return this.data.indexOfKey(id);
15310     },
15311
15312     /**
15313      * Get the Record with the specified id.
15314      * @param {String} id The id of the Record to find.
15315      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
15316      */
15317     getById : function(id){
15318         return this.data.key(id);
15319     },
15320
15321     /**
15322      * Get the Record at the specified index.
15323      * @param {Number} index The index of the Record to find.
15324      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
15325      */
15326     getAt : function(index){
15327         return this.data.itemAt(index);
15328     },
15329
15330     /**
15331      * Returns a range of Records between specified indices.
15332      * @param {Number} startIndex (optional) The starting index (defaults to 0)
15333      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
15334      * @return {Roo.data.Record[]} An array of Records
15335      */
15336     getRange : function(start, end){
15337         return this.data.getRange(start, end);
15338     },
15339
15340     // private
15341     storeOptions : function(o){
15342         o = Roo.apply({}, o);
15343         delete o.callback;
15344         delete o.scope;
15345         this.lastOptions = o;
15346     },
15347
15348     /**
15349      * Loads the Record cache from the configured Proxy using the configured Reader.
15350      * <p>
15351      * If using remote paging, then the first load call must specify the <em>start</em>
15352      * and <em>limit</em> properties in the options.params property to establish the initial
15353      * position within the dataset, and the number of Records to cache on each read from the Proxy.
15354      * <p>
15355      * <strong>It is important to note that for remote data sources, loading is asynchronous,
15356      * and this call will return before the new data has been loaded. Perform any post-processing
15357      * in a callback function, or in a "load" event handler.</strong>
15358      * <p>
15359      * @param {Object} options An object containing properties which control loading options:<ul>
15360      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
15361      * <li>params.data {Object} if you are using a MemoryProxy / JsonReader, use this as the data to load stuff..
15362      * <pre>
15363                 {
15364                     data : data,  // array of key=>value data like JsonReader
15365                     total : data.length,
15366                     success : true
15367                     
15368                 }
15369         </pre>
15370             }.</li>
15371      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
15372      * passed the following arguments:<ul>
15373      * <li>r : Roo.data.Record[]</li>
15374      * <li>options: Options object from the load call</li>
15375      * <li>success: Boolean success indicator</li></ul></li>
15376      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
15377      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
15378      * </ul>
15379      */
15380     load : function(options){
15381         options = options || {};
15382         if(this.fireEvent("beforeload", this, options) !== false){
15383             this.storeOptions(options);
15384             var p = Roo.apply(options.params || {}, this.baseParams);
15385             // if meta was not loaded from remote source.. try requesting it.
15386             if (!this.reader.metaFromRemote) {
15387                 p._requestMeta = 1;
15388             }
15389             if(this.sortInfo && this.remoteSort){
15390                 var pn = this.paramNames;
15391                 p[pn["sort"]] = this.sortInfo.field;
15392                 p[pn["dir"]] = this.sortInfo.direction;
15393             }
15394             if (this.multiSort) {
15395                 var pn = this.paramNames;
15396                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
15397             }
15398             
15399             this.proxy.load(p, this.reader, this.loadRecords, this, options);
15400         }
15401     },
15402
15403     /**
15404      * Reloads the Record cache from the configured Proxy using the configured Reader and
15405      * the options from the last load operation performed.
15406      * @param {Object} options (optional) An object containing properties which may override the options
15407      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
15408      * the most recently used options are reused).
15409      */
15410     reload : function(options){
15411         this.load(Roo.applyIf(options||{}, this.lastOptions));
15412     },
15413
15414     // private
15415     // Called as a callback by the Reader during a load operation.
15416     loadRecords : function(o, options, success){
15417          
15418         if(!o){
15419             if(success !== false){
15420                 this.fireEvent("load", this, [], options, o);
15421             }
15422             if(options.callback){
15423                 options.callback.call(options.scope || this, [], options, false);
15424             }
15425             return;
15426         }
15427         // if data returned failure - throw an exception.
15428         if (o.success === false) {
15429             // show a message if no listener is registered.
15430             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
15431                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
15432             }
15433             // loadmask wil be hooked into this..
15434             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
15435             return;
15436         }
15437         var r = o.records, t = o.totalRecords || r.length;
15438         
15439         this.fireEvent("beforeloadadd", this, r, options, o);
15440         
15441         if(!options || options.add !== true){
15442             if(this.pruneModifiedRecords){
15443                 this.modified = [];
15444             }
15445             for(var i = 0, len = r.length; i < len; i++){
15446                 r[i].join(this);
15447             }
15448             if(this.snapshot){
15449                 this.data = this.snapshot;
15450                 delete this.snapshot;
15451             }
15452             this.data.clear();
15453             this.data.addAll(r);
15454             this.totalLength = t;
15455             this.applySort();
15456             this.fireEvent("datachanged", this);
15457         }else{
15458             this.totalLength = Math.max(t, this.data.length+r.length);
15459             this.add(r);
15460         }
15461         
15462         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
15463                 
15464             var e = new Roo.data.Record({});
15465
15466             e.set(this.parent.displayField, this.parent.emptyTitle);
15467             e.set(this.parent.valueField, '');
15468
15469             this.insert(0, e);
15470         }
15471             
15472         this.fireEvent("load", this, r, options, o);
15473         if(options.callback){
15474             options.callback.call(options.scope || this, r, options, true);
15475         }
15476     },
15477
15478
15479     /**
15480      * Loads data from a passed data block. A Reader which understands the format of the data
15481      * must have been configured in the constructor.
15482      * @param {Object} data The data block from which to read the Records.  The format of the data expected
15483      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
15484      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
15485      */
15486     loadData : function(o, append){
15487         var r = this.reader.readRecords(o);
15488         this.loadRecords(r, {add: append}, true);
15489     },
15490     
15491      /**
15492      * using 'cn' the nested child reader read the child array into it's child stores.
15493      * @param {Object} rec The record with a 'children array
15494      */
15495     loadDataFromChildren : function(rec)
15496     {
15497         this.loadData(this.reader.toLoadData(rec));
15498     },
15499     
15500
15501     /**
15502      * Gets the number of cached records.
15503      * <p>
15504      * <em>If using paging, this may not be the total size of the dataset. If the data object
15505      * used by the Reader contains the dataset size, then the getTotalCount() function returns
15506      * the data set size</em>
15507      */
15508     getCount : function(){
15509         return this.data.length || 0;
15510     },
15511
15512     /**
15513      * Gets the total number of records in the dataset as returned by the server.
15514      * <p>
15515      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
15516      * the dataset size</em>
15517      */
15518     getTotalCount : function(){
15519         return this.totalLength || 0;
15520     },
15521
15522     /**
15523      * Returns the sort state of the Store as an object with two properties:
15524      * <pre><code>
15525  field {String} The name of the field by which the Records are sorted
15526  direction {String} The sort order, "ASC" or "DESC"
15527      * </code></pre>
15528      */
15529     getSortState : function(){
15530         return this.sortInfo;
15531     },
15532
15533     // private
15534     applySort : function(){
15535         if(this.sortInfo && !this.remoteSort){
15536             var s = this.sortInfo, f = s.field;
15537             var st = this.fields.get(f).sortType;
15538             var fn = function(r1, r2){
15539                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
15540                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
15541             };
15542             this.data.sort(s.direction, fn);
15543             if(this.snapshot && this.snapshot != this.data){
15544                 this.snapshot.sort(s.direction, fn);
15545             }
15546         }
15547     },
15548
15549     /**
15550      * Sets the default sort column and order to be used by the next load operation.
15551      * @param {String} fieldName The name of the field to sort by.
15552      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
15553      */
15554     setDefaultSort : function(field, dir){
15555         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
15556     },
15557
15558     /**
15559      * Sort the Records.
15560      * If remote sorting is used, the sort is performed on the server, and the cache is
15561      * reloaded. If local sorting is used, the cache is sorted internally.
15562      * @param {String} fieldName The name of the field to sort by.
15563      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
15564      */
15565     sort : function(fieldName, dir){
15566         var f = this.fields.get(fieldName);
15567         if(!dir){
15568             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
15569             
15570             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
15571                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
15572             }else{
15573                 dir = f.sortDir;
15574             }
15575         }
15576         this.sortToggle[f.name] = dir;
15577         this.sortInfo = {field: f.name, direction: dir};
15578         if(!this.remoteSort){
15579             this.applySort();
15580             this.fireEvent("datachanged", this);
15581         }else{
15582             this.load(this.lastOptions);
15583         }
15584     },
15585
15586     /**
15587      * Calls the specified function for each of the Records in the cache.
15588      * @param {Function} fn The function to call. The Record is passed as the first parameter.
15589      * Returning <em>false</em> aborts and exits the iteration.
15590      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
15591      */
15592     each : function(fn, scope){
15593         this.data.each(fn, scope);
15594     },
15595
15596     /**
15597      * Gets all records modified since the last commit.  Modified records are persisted across load operations
15598      * (e.g., during paging).
15599      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
15600      */
15601     getModifiedRecords : function(){
15602         return this.modified;
15603     },
15604
15605     // private
15606     createFilterFn : function(property, value, anyMatch){
15607         if(!value.exec){ // not a regex
15608             value = String(value);
15609             if(value.length == 0){
15610                 return false;
15611             }
15612             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
15613         }
15614         return function(r){
15615             return value.test(r.data[property]);
15616         };
15617     },
15618
15619     /**
15620      * Sums the value of <i>property</i> for each record between start and end and returns the result.
15621      * @param {String} property A field on your records
15622      * @param {Number} start The record index to start at (defaults to 0)
15623      * @param {Number} end The last record index to include (defaults to length - 1)
15624      * @return {Number} The sum
15625      */
15626     sum : function(property, start, end){
15627         var rs = this.data.items, v = 0;
15628         start = start || 0;
15629         end = (end || end === 0) ? end : rs.length-1;
15630
15631         for(var i = start; i <= end; i++){
15632             v += (rs[i].data[property] || 0);
15633         }
15634         return v;
15635     },
15636
15637     /**
15638      * Filter the records by a specified property.
15639      * @param {String} field A field on your records
15640      * @param {String/RegExp} value Either a string that the field
15641      * should start with or a RegExp to test against the field
15642      * @param {Boolean} anyMatch True to match any part not just the beginning
15643      */
15644     filter : function(property, value, anyMatch){
15645         var fn = this.createFilterFn(property, value, anyMatch);
15646         return fn ? this.filterBy(fn) : this.clearFilter();
15647     },
15648
15649     /**
15650      * Filter by a function. The specified function will be called with each
15651      * record in this data source. If the function returns true the record is included,
15652      * otherwise it is filtered.
15653      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
15654      * @param {Object} scope (optional) The scope of the function (defaults to this)
15655      */
15656     filterBy : function(fn, scope){
15657         this.snapshot = this.snapshot || this.data;
15658         this.data = this.queryBy(fn, scope||this);
15659         this.fireEvent("datachanged", this);
15660     },
15661
15662     /**
15663      * Query the records by a specified property.
15664      * @param {String} field A field on your records
15665      * @param {String/RegExp} value Either a string that the field
15666      * should start with or a RegExp to test against the field
15667      * @param {Boolean} anyMatch True to match any part not just the beginning
15668      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
15669      */
15670     query : function(property, value, anyMatch){
15671         var fn = this.createFilterFn(property, value, anyMatch);
15672         return fn ? this.queryBy(fn) : this.data.clone();
15673     },
15674
15675     /**
15676      * Query by a function. The specified function will be called with each
15677      * record in this data source. If the function returns true the record is included
15678      * in the results.
15679      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
15680      * @param {Object} scope (optional) The scope of the function (defaults to this)
15681       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
15682      **/
15683     queryBy : function(fn, scope){
15684         var data = this.snapshot || this.data;
15685         return data.filterBy(fn, scope||this);
15686     },
15687
15688     /**
15689      * Collects unique values for a particular dataIndex from this store.
15690      * @param {String} dataIndex The property to collect
15691      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
15692      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
15693      * @return {Array} An array of the unique values
15694      **/
15695     collect : function(dataIndex, allowNull, bypassFilter){
15696         var d = (bypassFilter === true && this.snapshot) ?
15697                 this.snapshot.items : this.data.items;
15698         var v, sv, r = [], l = {};
15699         for(var i = 0, len = d.length; i < len; i++){
15700             v = d[i].data[dataIndex];
15701             sv = String(v);
15702             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
15703                 l[sv] = true;
15704                 r[r.length] = v;
15705             }
15706         }
15707         return r;
15708     },
15709
15710     /**
15711      * Revert to a view of the Record cache with no filtering applied.
15712      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
15713      */
15714     clearFilter : function(suppressEvent){
15715         if(this.snapshot && this.snapshot != this.data){
15716             this.data = this.snapshot;
15717             delete this.snapshot;
15718             if(suppressEvent !== true){
15719                 this.fireEvent("datachanged", this);
15720             }
15721         }
15722     },
15723
15724     // private
15725     afterEdit : function(record){
15726         if(this.modified.indexOf(record) == -1){
15727             this.modified.push(record);
15728         }
15729         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
15730     },
15731     
15732     // private
15733     afterReject : function(record){
15734         this.modified.remove(record);
15735         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
15736     },
15737
15738     // private
15739     afterCommit : function(record){
15740         this.modified.remove(record);
15741         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
15742     },
15743
15744     /**
15745      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
15746      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
15747      */
15748     commitChanges : function(){
15749         var m = this.modified.slice(0);
15750         this.modified = [];
15751         for(var i = 0, len = m.length; i < len; i++){
15752             m[i].commit();
15753         }
15754     },
15755
15756     /**
15757      * Cancel outstanding changes on all changed records.
15758      */
15759     rejectChanges : function(){
15760         var m = this.modified.slice(0);
15761         this.modified = [];
15762         for(var i = 0, len = m.length; i < len; i++){
15763             m[i].reject();
15764         }
15765     },
15766
15767     onMetaChange : function(meta, rtype, o){
15768         this.recordType = rtype;
15769         this.fields = rtype.prototype.fields;
15770         delete this.snapshot;
15771         this.sortInfo = meta.sortInfo || this.sortInfo;
15772         this.modified = [];
15773         this.fireEvent('metachange', this, this.reader.meta);
15774     },
15775     
15776     moveIndex : function(data, type)
15777     {
15778         var index = this.indexOf(data);
15779         
15780         var newIndex = index + type;
15781         
15782         this.remove(data);
15783         
15784         this.insert(newIndex, data);
15785         
15786     }
15787 });/*
15788  * Based on:
15789  * Ext JS Library 1.1.1
15790  * Copyright(c) 2006-2007, Ext JS, LLC.
15791  *
15792  * Originally Released Under LGPL - original licence link has changed is not relivant.
15793  *
15794  * Fork - LGPL
15795  * <script type="text/javascript">
15796  */
15797
15798 /**
15799  * @class Roo.data.SimpleStore
15800  * @extends Roo.data.Store
15801  * Small helper class to make creating Stores from Array data easier.
15802  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
15803  * @cfg {Array} fields An array of field definition objects, or field name strings.
15804  * @cfg {Object} an existing reader (eg. copied from another store)
15805  * @cfg {Array} data The multi-dimensional array of data
15806  * @cfg {Roo.data.DataProxy} proxy [not-required]  
15807  * @cfg {Roo.data.Reader} reader  [not-required] 
15808  * @constructor
15809  * @param {Object} config
15810  */
15811 Roo.data.SimpleStore = function(config)
15812 {
15813     Roo.data.SimpleStore.superclass.constructor.call(this, {
15814         isLocal : true,
15815         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
15816                 id: config.id
15817             },
15818             Roo.data.Record.create(config.fields)
15819         ),
15820         proxy : new Roo.data.MemoryProxy(config.data)
15821     });
15822     this.load();
15823 };
15824 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
15825  * Based on:
15826  * Ext JS Library 1.1.1
15827  * Copyright(c) 2006-2007, Ext JS, LLC.
15828  *
15829  * Originally Released Under LGPL - original licence link has changed is not relivant.
15830  *
15831  * Fork - LGPL
15832  * <script type="text/javascript">
15833  */
15834
15835 /**
15836 /**
15837  * @extends Roo.data.Store
15838  * @class Roo.data.JsonStore
15839  * Small helper class to make creating Stores for JSON data easier. <br/>
15840 <pre><code>
15841 var store = new Roo.data.JsonStore({
15842     url: 'get-images.php',
15843     root: 'images',
15844     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
15845 });
15846 </code></pre>
15847  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
15848  * JsonReader and HttpProxy (unless inline data is provided).</b>
15849  * @cfg {Array} fields An array of field definition objects, or field name strings.
15850  * @constructor
15851  * @param {Object} config
15852  */
15853 Roo.data.JsonStore = function(c){
15854     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
15855         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
15856         reader: new Roo.data.JsonReader(c, c.fields)
15857     }));
15858 };
15859 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
15860  * Based on:
15861  * Ext JS Library 1.1.1
15862  * Copyright(c) 2006-2007, Ext JS, LLC.
15863  *
15864  * Originally Released Under LGPL - original licence link has changed is not relivant.
15865  *
15866  * Fork - LGPL
15867  * <script type="text/javascript">
15868  */
15869
15870  
15871 Roo.data.Field = function(config){
15872     if(typeof config == "string"){
15873         config = {name: config};
15874     }
15875     Roo.apply(this, config);
15876     
15877     if(!this.type){
15878         this.type = "auto";
15879     }
15880     
15881     var st = Roo.data.SortTypes;
15882     // named sortTypes are supported, here we look them up
15883     if(typeof this.sortType == "string"){
15884         this.sortType = st[this.sortType];
15885     }
15886     
15887     // set default sortType for strings and dates
15888     if(!this.sortType){
15889         switch(this.type){
15890             case "string":
15891                 this.sortType = st.asUCString;
15892                 break;
15893             case "date":
15894                 this.sortType = st.asDate;
15895                 break;
15896             default:
15897                 this.sortType = st.none;
15898         }
15899     }
15900
15901     // define once
15902     var stripRe = /[\$,%]/g;
15903
15904     // prebuilt conversion function for this field, instead of
15905     // switching every time we're reading a value
15906     if(!this.convert){
15907         var cv, dateFormat = this.dateFormat;
15908         switch(this.type){
15909             case "":
15910             case "auto":
15911             case undefined:
15912                 cv = function(v){ return v; };
15913                 break;
15914             case "string":
15915                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
15916                 break;
15917             case "int":
15918                 cv = function(v){
15919                     return v !== undefined && v !== null && v !== '' ?
15920                            parseInt(String(v).replace(stripRe, ""), 10) : '';
15921                     };
15922                 break;
15923             case "float":
15924                 cv = function(v){
15925                     return v !== undefined && v !== null && v !== '' ?
15926                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
15927                     };
15928                 break;
15929             case "bool":
15930             case "boolean":
15931                 cv = function(v){ return v === true || v === "true" || v == 1; };
15932                 break;
15933             case "date":
15934                 cv = function(v){
15935                     if(!v){
15936                         return '';
15937                     }
15938                     if(v instanceof Date){
15939                         return v;
15940                     }
15941                     if(dateFormat){
15942                         if(dateFormat == "timestamp"){
15943                             return new Date(v*1000);
15944                         }
15945                         return Date.parseDate(v, dateFormat);
15946                     }
15947                     var parsed = Date.parse(v);
15948                     return parsed ? new Date(parsed) : null;
15949                 };
15950              break;
15951             
15952         }
15953         this.convert = cv;
15954     }
15955 };
15956
15957 Roo.data.Field.prototype = {
15958     dateFormat: null,
15959     defaultValue: "",
15960     mapping: null,
15961     sortType : null,
15962     sortDir : "ASC"
15963 };/*
15964  * Based on:
15965  * Ext JS Library 1.1.1
15966  * Copyright(c) 2006-2007, Ext JS, LLC.
15967  *
15968  * Originally Released Under LGPL - original licence link has changed is not relivant.
15969  *
15970  * Fork - LGPL
15971  * <script type="text/javascript">
15972  */
15973  
15974 // Base class for reading structured data from a data source.  This class is intended to be
15975 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
15976
15977 /**
15978  * @class Roo.data.DataReader
15979  * @abstract
15980  * Base class for reading structured data from a data source.  This class is intended to be
15981  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
15982  */
15983
15984 Roo.data.DataReader = function(meta, recordType){
15985     
15986     this.meta = meta;
15987     
15988     this.recordType = recordType instanceof Array ? 
15989         Roo.data.Record.create(recordType) : recordType;
15990 };
15991
15992 Roo.data.DataReader.prototype = {
15993     
15994     
15995     readerType : 'Data',
15996      /**
15997      * Create an empty record
15998      * @param {Object} data (optional) - overlay some values
15999      * @return {Roo.data.Record} record created.
16000      */
16001     newRow :  function(d) {
16002         var da =  {};
16003         this.recordType.prototype.fields.each(function(c) {
16004             switch( c.type) {
16005                 case 'int' : da[c.name] = 0; break;
16006                 case 'date' : da[c.name] = new Date(); break;
16007                 case 'float' : da[c.name] = 0.0; break;
16008                 case 'boolean' : da[c.name] = false; break;
16009                 default : da[c.name] = ""; break;
16010             }
16011             
16012         });
16013         return new this.recordType(Roo.apply(da, d));
16014     }
16015     
16016     
16017 };/*
16018  * Based on:
16019  * Ext JS Library 1.1.1
16020  * Copyright(c) 2006-2007, Ext JS, LLC.
16021  *
16022  * Originally Released Under LGPL - original licence link has changed is not relivant.
16023  *
16024  * Fork - LGPL
16025  * <script type="text/javascript">
16026  */
16027
16028 /**
16029  * @class Roo.data.DataProxy
16030  * @extends Roo.util.Observable
16031  * @abstract
16032  * This class is an abstract base class for implementations which provide retrieval of
16033  * unformatted data objects.<br>
16034  * <p>
16035  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
16036  * (of the appropriate type which knows how to parse the data object) to provide a block of
16037  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
16038  * <p>
16039  * Custom implementations must implement the load method as described in
16040  * {@link Roo.data.HttpProxy#load}.
16041  */
16042 Roo.data.DataProxy = function(){
16043     this.addEvents({
16044         /**
16045          * @event beforeload
16046          * Fires before a network request is made to retrieve a data object.
16047          * @param {Object} This DataProxy object.
16048          * @param {Object} params The params parameter to the load function.
16049          */
16050         beforeload : true,
16051         /**
16052          * @event load
16053          * Fires before the load method's callback is called.
16054          * @param {Object} This DataProxy object.
16055          * @param {Object} o The data object.
16056          * @param {Object} arg The callback argument object passed to the load function.
16057          */
16058         load : true,
16059         /**
16060          * @event loadexception
16061          * Fires if an Exception occurs during data retrieval.
16062          * @param {Object} This DataProxy object.
16063          * @param {Object} o The data object.
16064          * @param {Object} arg The callback argument object passed to the load function.
16065          * @param {Object} e The Exception.
16066          */
16067         loadexception : true
16068     });
16069     Roo.data.DataProxy.superclass.constructor.call(this);
16070 };
16071
16072 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
16073
16074     /**
16075      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
16076      */
16077 /*
16078  * Based on:
16079  * Ext JS Library 1.1.1
16080  * Copyright(c) 2006-2007, Ext JS, LLC.
16081  *
16082  * Originally Released Under LGPL - original licence link has changed is not relivant.
16083  *
16084  * Fork - LGPL
16085  * <script type="text/javascript">
16086  */
16087 /**
16088  * @class Roo.data.MemoryProxy
16089  * @extends Roo.data.DataProxy
16090  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
16091  * to the Reader when its load method is called.
16092  * @constructor
16093  * @param {Object} config  A config object containing the objects needed for the Store to access data,
16094  */
16095 Roo.data.MemoryProxy = function(config){
16096     var data = config;
16097     if (typeof(config) != 'undefined' && typeof(config.data) != 'undefined') {
16098         data = config.data;
16099     }
16100     Roo.data.MemoryProxy.superclass.constructor.call(this);
16101     this.data = data;
16102 };
16103
16104 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
16105     
16106     /**
16107      *  @cfg {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
16108      */
16109     /**
16110      * Load data from the requested source (in this case an in-memory
16111      * data object passed to the constructor), read the data object into
16112      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
16113      * process that block using the passed callback.
16114      * @param {Object} params This parameter is not used by the MemoryProxy class.
16115      * @param {Roo.data.DataReader} reader The Reader object which converts the data
16116      * object into a block of Roo.data.Records.
16117      * @param {Function} callback The function into which to pass the block of Roo.data.records.
16118      * The function must be passed <ul>
16119      * <li>The Record block object</li>
16120      * <li>The "arg" argument from the load function</li>
16121      * <li>A boolean success indicator</li>
16122      * </ul>
16123      * @param {Object} scope The scope in which to call the callback
16124      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
16125      */
16126     load : function(params, reader, callback, scope, arg){
16127         params = params || {};
16128         var result;
16129         try {
16130             result = reader.readRecords(params.data ? params.data :this.data);
16131         }catch(e){
16132             this.fireEvent("loadexception", this, arg, null, e);
16133             callback.call(scope, null, arg, false);
16134             return;
16135         }
16136         callback.call(scope, result, arg, true);
16137     },
16138     
16139     // private
16140     update : function(params, records){
16141         
16142     }
16143 });/*
16144  * Based on:
16145  * Ext JS Library 1.1.1
16146  * Copyright(c) 2006-2007, Ext JS, LLC.
16147  *
16148  * Originally Released Under LGPL - original licence link has changed is not relivant.
16149  *
16150  * Fork - LGPL
16151  * <script type="text/javascript">
16152  */
16153 /**
16154  * @class Roo.data.HttpProxy
16155  * @extends Roo.data.DataProxy
16156  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
16157  * configured to reference a certain URL.<br><br>
16158  * <p>
16159  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
16160  * from which the running page was served.<br><br>
16161  * <p>
16162  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
16163  * <p>
16164  * Be aware that to enable the browser to parse an XML document, the server must set
16165  * the Content-Type header in the HTTP response to "text/xml".
16166  * @constructor
16167  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
16168  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
16169  * will be used to make the request.
16170  */
16171 Roo.data.HttpProxy = function(conn){
16172     Roo.data.HttpProxy.superclass.constructor.call(this);
16173     // is conn a conn config or a real conn?
16174     this.conn = conn;
16175     this.useAjax = !conn || !conn.events;
16176   
16177 };
16178
16179 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
16180     // thse are take from connection...
16181     
16182     /**
16183      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
16184      */
16185     /**
16186      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
16187      * extra parameters to each request made by this object. (defaults to undefined)
16188      */
16189     /**
16190      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
16191      *  to each request made by this object. (defaults to undefined)
16192      */
16193     /**
16194      * @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)
16195      */
16196     /**
16197      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
16198      */
16199      /**
16200      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
16201      * @type Boolean
16202      */
16203   
16204
16205     /**
16206      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
16207      * @type Boolean
16208      */
16209     /**
16210      * Return the {@link Roo.data.Connection} object being used by this Proxy.
16211      * @return {Connection} The Connection object. This object may be used to subscribe to events on
16212      * a finer-grained basis than the DataProxy events.
16213      */
16214     getConnection : function(){
16215         return this.useAjax ? Roo.Ajax : this.conn;
16216     },
16217
16218     /**
16219      * Load data from the configured {@link Roo.data.Connection}, read the data object into
16220      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
16221      * process that block using the passed callback.
16222      * @param {Object} params An object containing properties which are to be used as HTTP parameters
16223      * for the request to the remote server.
16224      * @param {Roo.data.DataReader} reader The Reader object which converts the data
16225      * object into a block of Roo.data.Records.
16226      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
16227      * The function must be passed <ul>
16228      * <li>The Record block object</li>
16229      * <li>The "arg" argument from the load function</li>
16230      * <li>A boolean success indicator</li>
16231      * </ul>
16232      * @param {Object} scope The scope in which to call the callback
16233      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
16234      */
16235     load : function(params, reader, callback, scope, arg){
16236         if(this.fireEvent("beforeload", this, params) !== false){
16237             var  o = {
16238                 params : params || {},
16239                 request: {
16240                     callback : callback,
16241                     scope : scope,
16242                     arg : arg
16243                 },
16244                 reader: reader,
16245                 callback : this.loadResponse,
16246                 scope: this
16247             };
16248             if(this.useAjax){
16249                 Roo.applyIf(o, this.conn);
16250                 if(this.activeRequest){
16251                     Roo.Ajax.abort(this.activeRequest);
16252                 }
16253                 this.activeRequest = Roo.Ajax.request(o);
16254             }else{
16255                 this.conn.request(o);
16256             }
16257         }else{
16258             callback.call(scope||this, null, arg, false);
16259         }
16260     },
16261
16262     // private
16263     loadResponse : function(o, success, response){
16264         delete this.activeRequest;
16265         if(!success){
16266             this.fireEvent("loadexception", this, o, response);
16267             o.request.callback.call(o.request.scope, null, o.request.arg, false);
16268             return;
16269         }
16270         var result;
16271         try {
16272             result = o.reader.read(response);
16273         }catch(e){
16274             o.success = false;
16275             o.raw = { errorMsg : response.responseText };
16276             this.fireEvent("loadexception", this, o, response, e);
16277             o.request.callback.call(o.request.scope, o, o.request.arg, false);
16278             return;
16279         }
16280         
16281         this.fireEvent("load", this, o, o.request.arg);
16282         o.request.callback.call(o.request.scope, result, o.request.arg, true);
16283     },
16284
16285     // private
16286     update : function(dataSet){
16287
16288     },
16289
16290     // private
16291     updateResponse : function(dataSet){
16292
16293     }
16294 });/*
16295  * Based on:
16296  * Ext JS Library 1.1.1
16297  * Copyright(c) 2006-2007, Ext JS, LLC.
16298  *
16299  * Originally Released Under LGPL - original licence link has changed is not relivant.
16300  *
16301  * Fork - LGPL
16302  * <script type="text/javascript">
16303  */
16304
16305 /**
16306  * @class Roo.data.ScriptTagProxy
16307  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
16308  * other than the originating domain of the running page.<br><br>
16309  * <p>
16310  * <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
16311  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
16312  * <p>
16313  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
16314  * source code that is used as the source inside a &lt;script> tag.<br><br>
16315  * <p>
16316  * In order for the browser to process the returned data, the server must wrap the data object
16317  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
16318  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
16319  * depending on whether the callback name was passed:
16320  * <p>
16321  * <pre><code>
16322 boolean scriptTag = false;
16323 String cb = request.getParameter("callback");
16324 if (cb != null) {
16325     scriptTag = true;
16326     response.setContentType("text/javascript");
16327 } else {
16328     response.setContentType("application/x-json");
16329 }
16330 Writer out = response.getWriter();
16331 if (scriptTag) {
16332     out.write(cb + "(");
16333 }
16334 out.print(dataBlock.toJsonString());
16335 if (scriptTag) {
16336     out.write(");");
16337 }
16338 </pre></code>
16339  *
16340  * @constructor
16341  * @param {Object} config A configuration object.
16342  */
16343 Roo.data.ScriptTagProxy = function(config){
16344     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
16345     Roo.apply(this, config);
16346     this.head = document.getElementsByTagName("head")[0];
16347 };
16348
16349 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
16350
16351 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
16352     /**
16353      * @cfg {String} url The URL from which to request the data object.
16354      */
16355     /**
16356      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
16357      */
16358     timeout : 30000,
16359     /**
16360      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
16361      * the server the name of the callback function set up by the load call to process the returned data object.
16362      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
16363      * javascript output which calls this named function passing the data object as its only parameter.
16364      */
16365     callbackParam : "callback",
16366     /**
16367      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
16368      * name to the request.
16369      */
16370     nocache : true,
16371
16372     /**
16373      * Load data from the configured URL, read the data object into
16374      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
16375      * process that block using the passed callback.
16376      * @param {Object} params An object containing properties which are to be used as HTTP parameters
16377      * for the request to the remote server.
16378      * @param {Roo.data.DataReader} reader The Reader object which converts the data
16379      * object into a block of Roo.data.Records.
16380      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
16381      * The function must be passed <ul>
16382      * <li>The Record block object</li>
16383      * <li>The "arg" argument from the load function</li>
16384      * <li>A boolean success indicator</li>
16385      * </ul>
16386      * @param {Object} scope The scope in which to call the callback
16387      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
16388      */
16389     load : function(params, reader, callback, scope, arg){
16390         if(this.fireEvent("beforeload", this, params) !== false){
16391
16392             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
16393
16394             var url = this.url;
16395             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
16396             if(this.nocache){
16397                 url += "&_dc=" + (new Date().getTime());
16398             }
16399             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
16400             var trans = {
16401                 id : transId,
16402                 cb : "stcCallback"+transId,
16403                 scriptId : "stcScript"+transId,
16404                 params : params,
16405                 arg : arg,
16406                 url : url,
16407                 callback : callback,
16408                 scope : scope,
16409                 reader : reader
16410             };
16411             var conn = this;
16412
16413             window[trans.cb] = function(o){
16414                 conn.handleResponse(o, trans);
16415             };
16416
16417             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
16418
16419             if(this.autoAbort !== false){
16420                 this.abort();
16421             }
16422
16423             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
16424
16425             var script = document.createElement("script");
16426             script.setAttribute("src", url);
16427             script.setAttribute("type", "text/javascript");
16428             script.setAttribute("id", trans.scriptId);
16429             this.head.appendChild(script);
16430
16431             this.trans = trans;
16432         }else{
16433             callback.call(scope||this, null, arg, false);
16434         }
16435     },
16436
16437     // private
16438     isLoading : function(){
16439         return this.trans ? true : false;
16440     },
16441
16442     /**
16443      * Abort the current server request.
16444      */
16445     abort : function(){
16446         if(this.isLoading()){
16447             this.destroyTrans(this.trans);
16448         }
16449     },
16450
16451     // private
16452     destroyTrans : function(trans, isLoaded){
16453         this.head.removeChild(document.getElementById(trans.scriptId));
16454         clearTimeout(trans.timeoutId);
16455         if(isLoaded){
16456             window[trans.cb] = undefined;
16457             try{
16458                 delete window[trans.cb];
16459             }catch(e){}
16460         }else{
16461             // if hasn't been loaded, wait for load to remove it to prevent script error
16462             window[trans.cb] = function(){
16463                 window[trans.cb] = undefined;
16464                 try{
16465                     delete window[trans.cb];
16466                 }catch(e){}
16467             };
16468         }
16469     },
16470
16471     // private
16472     handleResponse : function(o, trans){
16473         this.trans = false;
16474         this.destroyTrans(trans, true);
16475         var result;
16476         try {
16477             result = trans.reader.readRecords(o);
16478         }catch(e){
16479             this.fireEvent("loadexception", this, o, trans.arg, e);
16480             trans.callback.call(trans.scope||window, null, trans.arg, false);
16481             return;
16482         }
16483         this.fireEvent("load", this, o, trans.arg);
16484         trans.callback.call(trans.scope||window, result, trans.arg, true);
16485     },
16486
16487     // private
16488     handleFailure : function(trans){
16489         this.trans = false;
16490         this.destroyTrans(trans, false);
16491         this.fireEvent("loadexception", this, null, trans.arg);
16492         trans.callback.call(trans.scope||window, null, trans.arg, false);
16493     }
16494 });/*
16495  * Based on:
16496  * Ext JS Library 1.1.1
16497  * Copyright(c) 2006-2007, Ext JS, LLC.
16498  *
16499  * Originally Released Under LGPL - original licence link has changed is not relivant.
16500  *
16501  * Fork - LGPL
16502  * <script type="text/javascript">
16503  */
16504
16505 /**
16506  * @class Roo.data.JsonReader
16507  * @extends Roo.data.DataReader
16508  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
16509  * based on mappings in a provided Roo.data.Record constructor.
16510  * 
16511  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
16512  * in the reply previously. 
16513  * 
16514  * <p>
16515  * Example code:
16516  * <pre><code>
16517 var RecordDef = Roo.data.Record.create([
16518     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
16519     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
16520 ]);
16521 var myReader = new Roo.data.JsonReader({
16522     totalProperty: "results",    // The property which contains the total dataset size (optional)
16523     root: "rows",                // The property which contains an Array of row objects
16524     id: "id"                     // The property within each row object that provides an ID for the record (optional)
16525 }, RecordDef);
16526 </code></pre>
16527  * <p>
16528  * This would consume a JSON file like this:
16529  * <pre><code>
16530 { 'results': 2, 'rows': [
16531     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
16532     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
16533 }
16534 </code></pre>
16535  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
16536  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
16537  * paged from the remote server.
16538  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
16539  * @cfg {String} root name of the property which contains the Array of row objects.
16540  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
16541  * @cfg {Array} fields Array of field definition objects
16542  * @constructor
16543  * Create a new JsonReader
16544  * @param {Object} meta Metadata configuration options
16545  * @param {Object} recordType Either an Array of field definition objects,
16546  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
16547  */
16548 Roo.data.JsonReader = function(meta, recordType){
16549     
16550     meta = meta || {};
16551     // set some defaults:
16552     Roo.applyIf(meta, {
16553         totalProperty: 'total',
16554         successProperty : 'success',
16555         root : 'data',
16556         id : 'id'
16557     });
16558     
16559     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
16560 };
16561 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
16562     
16563     readerType : 'Json',
16564     
16565     /**
16566      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
16567      * Used by Store query builder to append _requestMeta to params.
16568      * 
16569      */
16570     metaFromRemote : false,
16571     /**
16572      * This method is only used by a DataProxy which has retrieved data from a remote server.
16573      * @param {Object} response The XHR object which contains the JSON data in its responseText.
16574      * @return {Object} data A data block which is used by an Roo.data.Store object as
16575      * a cache of Roo.data.Records.
16576      */
16577     read : function(response){
16578         var json = response.responseText;
16579        
16580         var o = /* eval:var:o */ eval("("+json+")");
16581         if(!o) {
16582             throw {message: "JsonReader.read: Json object not found"};
16583         }
16584         
16585         if(o.metaData){
16586             
16587             delete this.ef;
16588             this.metaFromRemote = true;
16589             this.meta = o.metaData;
16590             this.recordType = Roo.data.Record.create(o.metaData.fields);
16591             this.onMetaChange(this.meta, this.recordType, o);
16592         }
16593         return this.readRecords(o);
16594     },
16595
16596     // private function a store will implement
16597     onMetaChange : function(meta, recordType, o){
16598
16599     },
16600
16601     /**
16602          * @ignore
16603          */
16604     simpleAccess: function(obj, subsc) {
16605         return obj[subsc];
16606     },
16607
16608         /**
16609          * @ignore
16610          */
16611     getJsonAccessor: function(){
16612         var re = /[\[\.]/;
16613         return function(expr) {
16614             try {
16615                 return(re.test(expr))
16616                     ? new Function("obj", "return obj." + expr)
16617                     : function(obj){
16618                         return obj[expr];
16619                     };
16620             } catch(e){}
16621             return Roo.emptyFn;
16622         };
16623     }(),
16624
16625     /**
16626      * Create a data block containing Roo.data.Records from an XML document.
16627      * @param {Object} o An object which contains an Array of row objects in the property specified
16628      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
16629      * which contains the total size of the dataset.
16630      * @return {Object} data A data block which is used by an Roo.data.Store object as
16631      * a cache of Roo.data.Records.
16632      */
16633     readRecords : function(o){
16634         /**
16635          * After any data loads, the raw JSON data is available for further custom processing.
16636          * @type Object
16637          */
16638         this.o = o;
16639         var s = this.meta, Record = this.recordType,
16640             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
16641
16642 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
16643         if (!this.ef) {
16644             if(s.totalProperty) {
16645                     this.getTotal = this.getJsonAccessor(s.totalProperty);
16646                 }
16647                 if(s.successProperty) {
16648                     this.getSuccess = this.getJsonAccessor(s.successProperty);
16649                 }
16650                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
16651                 if (s.id) {
16652                         var g = this.getJsonAccessor(s.id);
16653                         this.getId = function(rec) {
16654                                 var r = g(rec);  
16655                                 return (r === undefined || r === "") ? null : r;
16656                         };
16657                 } else {
16658                         this.getId = function(){return null;};
16659                 }
16660             this.ef = [];
16661             for(var jj = 0; jj < fl; jj++){
16662                 f = fi[jj];
16663                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
16664                 this.ef[jj] = this.getJsonAccessor(map);
16665             }
16666         }
16667
16668         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
16669         if(s.totalProperty){
16670             var vt = parseInt(this.getTotal(o), 10);
16671             if(!isNaN(vt)){
16672                 totalRecords = vt;
16673             }
16674         }
16675         if(s.successProperty){
16676             var vs = this.getSuccess(o);
16677             if(vs === false || vs === 'false'){
16678                 success = false;
16679             }
16680         }
16681         var records = [];
16682         for(var i = 0; i < c; i++){
16683             var n = root[i];
16684             var values = {};
16685             var id = this.getId(n);
16686             for(var j = 0; j < fl; j++){
16687                 f = fi[j];
16688                                 var v = this.ef[j](n);
16689                                 if (!f.convert) {
16690                                         Roo.log('missing convert for ' + f.name);
16691                                         Roo.log(f);
16692                                         continue;
16693                                 }
16694                                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
16695             }
16696                         if (!Record) {
16697                                 return {
16698                                         raw : { errorMsg : "JSON Reader Error: fields or metadata not available to create Record" },
16699                                         success : false,
16700                                         records : [],
16701                                         totalRecords : 0
16702                                 };
16703                         }
16704             var record = new Record(values, id);
16705             record.json = n;
16706             records[i] = record;
16707         }
16708         return {
16709             raw : o,
16710             success : success,
16711             records : records,
16712             totalRecords : totalRecords
16713         };
16714     },
16715     // used when loading children.. @see loadDataFromChildren
16716     toLoadData: function(rec)
16717     {
16718         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
16719         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
16720         return { data : data, total : data.length };
16721         
16722     }
16723 });/*
16724  * Based on:
16725  * Ext JS Library 1.1.1
16726  * Copyright(c) 2006-2007, Ext JS, LLC.
16727  *
16728  * Originally Released Under LGPL - original licence link has changed is not relivant.
16729  *
16730  * Fork - LGPL
16731  * <script type="text/javascript">
16732  */
16733
16734 /**
16735  * @class Roo.data.ArrayReader
16736  * @extends Roo.data.DataReader
16737  * Data reader class to create an Array of Roo.data.Record objects from an Array.
16738  * Each element of that Array represents a row of data fields. The
16739  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
16740  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
16741  * <p>
16742  * Example code:.
16743  * <pre><code>
16744 var RecordDef = Roo.data.Record.create([
16745     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
16746     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
16747 ]);
16748 var myReader = new Roo.data.ArrayReader({
16749     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
16750 }, RecordDef);
16751 </code></pre>
16752  * <p>
16753  * This would consume an Array like this:
16754  * <pre><code>
16755 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
16756   </code></pre>
16757  
16758  * @constructor
16759  * Create a new JsonReader
16760  * @param {Object} meta Metadata configuration options.
16761  * @param {Object|Array} recordType Either an Array of field definition objects
16762  * 
16763  * @cfg {Array} fields Array of field definition objects
16764  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
16765  * as specified to {@link Roo.data.Record#create},
16766  * or an {@link Roo.data.Record} object
16767  *
16768  * 
16769  * created using {@link Roo.data.Record#create}.
16770  */
16771 Roo.data.ArrayReader = function(meta, recordType)
16772 {    
16773     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
16774 };
16775
16776 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
16777     
16778       /**
16779      * Create a data block containing Roo.data.Records from an XML document.
16780      * @param {Object} o An Array of row objects which represents the dataset.
16781      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
16782      * a cache of Roo.data.Records.
16783      */
16784     readRecords : function(o)
16785     {
16786         var sid = this.meta ? this.meta.id : null;
16787         var recordType = this.recordType, fields = recordType.prototype.fields;
16788         var records = [];
16789         var root = o;
16790         for(var i = 0; i < root.length; i++){
16791             var n = root[i];
16792             var values = {};
16793             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
16794             for(var j = 0, jlen = fields.length; j < jlen; j++){
16795                 var f = fields.items[j];
16796                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
16797                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
16798                 v = f.convert(v);
16799                 values[f.name] = v;
16800             }
16801             var record = new recordType(values, id);
16802             record.json = n;
16803             records[records.length] = record;
16804         }
16805         return {
16806             records : records,
16807             totalRecords : records.length
16808         };
16809     },
16810     // used when loading children.. @see loadDataFromChildren
16811     toLoadData: function(rec)
16812     {
16813         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
16814         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
16815         
16816     }
16817     
16818     
16819 });/*
16820  * - LGPL
16821  * * 
16822  */
16823
16824 /**
16825  * @class Roo.bootstrap.form.ComboBox
16826  * @extends Roo.bootstrap.form.TriggerField
16827  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
16828  * @cfg {Boolean} append (true|false) default false
16829  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
16830  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
16831  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
16832  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
16833  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
16834  * @cfg {Boolean} animate default true
16835  * @cfg {Boolean} emptyResultText only for touch device
16836  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
16837  * @cfg {String} emptyTitle default ''
16838  * @cfg {Number} width fixed with? experimental
16839  * @constructor
16840  * Create a new ComboBox.
16841  * @param {Object} config Configuration options
16842  */
16843 Roo.bootstrap.form.ComboBox = function(config){
16844     Roo.bootstrap.form.ComboBox.superclass.constructor.call(this, config);
16845     this.addEvents({
16846         /**
16847          * @event expand
16848          * Fires when the dropdown list is expanded
16849         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16850         */
16851         'expand' : true,
16852         /**
16853          * @event collapse
16854          * Fires when the dropdown list is collapsed
16855         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16856         */
16857         'collapse' : true,
16858         /**
16859          * @event beforeselect
16860          * Fires before a list item is selected. Return false to cancel the selection.
16861         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16862         * @param {Roo.data.Record} record The data record returned from the underlying store
16863         * @param {Number} index The index of the selected item in the dropdown list
16864         */
16865         'beforeselect' : true,
16866         /**
16867          * @event select
16868          * Fires when a list item is selected
16869         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16870         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
16871         * @param {Number} index The index of the selected item in the dropdown list
16872         */
16873         'select' : true,
16874         /**
16875          * @event beforequery
16876          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
16877          * The event object passed has these properties:
16878         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16879         * @param {String} query The query
16880         * @param {Boolean} forceAll true to force "all" query
16881         * @param {Boolean} cancel true to cancel the query
16882         * @param {Object} e The query event object
16883         */
16884         'beforequery': true,
16885          /**
16886          * @event add
16887          * Fires when the 'add' icon is pressed (add a listener to enable add button)
16888         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16889         */
16890         'add' : true,
16891         /**
16892          * @event edit
16893          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
16894         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16895         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
16896         */
16897         'edit' : true,
16898         /**
16899          * @event remove
16900          * Fires when the remove value from the combobox array
16901         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16902         */
16903         'remove' : true,
16904         /**
16905          * @event afterremove
16906          * Fires when the remove value from the combobox array
16907         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16908         */
16909         'afterremove' : true,
16910         /**
16911          * @event specialfilter
16912          * Fires when specialfilter
16913             * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16914             */
16915         'specialfilter' : true,
16916         /**
16917          * @event tick
16918          * Fires when tick the element
16919             * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16920             */
16921         'tick' : true,
16922         /**
16923          * @event touchviewdisplay
16924          * Fires when touch view require special display (default is using displayField)
16925             * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16926             * @param {Object} cfg set html .
16927             */
16928         'touchviewdisplay' : true
16929         
16930     });
16931     
16932     this.item = [];
16933     this.tickItems = [];
16934     
16935     this.selectedIndex = -1;
16936     if(this.mode == 'local'){
16937         if(config.queryDelay === undefined){
16938             this.queryDelay = 10;
16939         }
16940         if(config.minChars === undefined){
16941             this.minChars = 0;
16942         }
16943     }
16944 };
16945
16946 Roo.extend(Roo.bootstrap.form.ComboBox, Roo.bootstrap.form.TriggerField, {
16947      
16948     /**
16949      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
16950      * rendering into an Roo.Editor, defaults to false)
16951      */
16952     /**
16953      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
16954      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
16955      */
16956     /**
16957      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
16958      */
16959     /**
16960      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
16961      * the dropdown list (defaults to undefined, with no header element)
16962      */
16963
16964      /**
16965      * @cfg {String/Roo.Template} tpl The template to use to render the output default is  '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' 
16966      */
16967      
16968      /**
16969      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
16970      */
16971     listWidth: undefined,
16972     /**
16973      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
16974      * mode = 'remote' or 'text' if mode = 'local')
16975      */
16976     displayField: undefined,
16977     
16978     /**
16979      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
16980      * mode = 'remote' or 'value' if mode = 'local'). 
16981      * Note: use of a valueField requires the user make a selection
16982      * in order for a value to be mapped.
16983      */
16984     valueField: undefined,
16985     /**
16986      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
16987      */
16988     modalTitle : '',
16989     
16990     /**
16991      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
16992      * field's data value (defaults to the underlying DOM element's name)
16993      */
16994     hiddenName: undefined,
16995     /**
16996      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
16997      */
16998     listClass: '',
16999     /**
17000      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
17001      */
17002     selectedClass: 'active',
17003     
17004     /**
17005      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
17006      */
17007     shadow:'sides',
17008     /**
17009      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
17010      * anchor positions (defaults to 'tl-bl')
17011      */
17012     listAlign: 'tl-bl?',
17013     /**
17014      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
17015      */
17016     maxHeight: 300,
17017     /**
17018      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
17019      * query specified by the allQuery config option (defaults to 'query')
17020      */
17021     triggerAction: 'query',
17022     /**
17023      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
17024      * (defaults to 4, does not apply if editable = false)
17025      */
17026     minChars : 4,
17027     /**
17028      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
17029      * delay (typeAheadDelay) if it matches a known value (defaults to false)
17030      */
17031     typeAhead: false,
17032     /**
17033      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
17034      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
17035      */
17036     queryDelay: 500,
17037     /**
17038      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
17039      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
17040      */
17041     pageSize: 0,
17042     /**
17043      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
17044      * when editable = true (defaults to false)
17045      */
17046     selectOnFocus:false,
17047     /**
17048      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
17049      */
17050     queryParam: 'query',
17051     /**
17052      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
17053      * when mode = 'remote' (defaults to 'Loading...')
17054      */
17055     loadingText: 'Loading...',
17056     /**
17057      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
17058      */
17059     resizable: false,
17060     /**
17061      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
17062      */
17063     handleHeight : 8,
17064     /**
17065      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
17066      * traditional select (defaults to true)
17067      */
17068     editable: true,
17069     /**
17070      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
17071      */
17072     allQuery: '',
17073     /**
17074      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
17075      */
17076     mode: 'remote',
17077     /**
17078      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
17079      * listWidth has a higher value)
17080      */
17081     minListWidth : 70,
17082     /**
17083      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
17084      * allow the user to set arbitrary text into the field (defaults to false)
17085      */
17086     forceSelection:false,
17087     /**
17088      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
17089      * if typeAhead = true (defaults to 250)
17090      */
17091     typeAheadDelay : 250,
17092     /**
17093      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
17094      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
17095      */
17096     valueNotFoundText : undefined,
17097     /**
17098      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
17099      */
17100     blockFocus : false,
17101     
17102     /**
17103      * @cfg {Boolean} disableClear Disable showing of clear button.
17104      */
17105     disableClear : false,
17106     /**
17107      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
17108      */
17109     alwaysQuery : false,
17110     
17111     /**
17112      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
17113      */
17114     multiple : false,
17115     
17116     /**
17117      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
17118      */
17119     invalidClass : "has-warning",
17120     
17121     /**
17122      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
17123      */
17124     validClass : "has-success",
17125     
17126     /**
17127      * @cfg {Boolean} specialFilter (true|false) special filter default false
17128      */
17129     specialFilter : false,
17130     
17131     /**
17132      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
17133      */
17134     mobileTouchView : true,
17135     
17136     /**
17137      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
17138      */
17139     useNativeIOS : false,
17140     
17141     /**
17142      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
17143      */
17144     mobile_restrict_height : false,
17145     
17146     ios_options : false,
17147     
17148     //private
17149     addicon : false,
17150     editicon: false,
17151     
17152     page: 0,
17153     hasQuery: false,
17154     append: false,
17155     loadNext: false,
17156     autoFocus : true,
17157     tickable : false,
17158     btnPosition : 'right',
17159     triggerList : true,
17160     showToggleBtn : true,
17161     animate : true,
17162     emptyResultText: 'Empty',
17163     triggerText : 'Select',
17164     emptyTitle : '',
17165     width : false,
17166     
17167     // element that contains real text value.. (when hidden is used..)
17168     
17169     getAutoCreate : function()
17170     {   
17171         var cfg = false;
17172         //render
17173         /*
17174          * Render classic select for iso
17175          */
17176         
17177         if(Roo.isIOS && this.useNativeIOS){
17178             cfg = this.getAutoCreateNativeIOS();
17179             return cfg;
17180         }
17181         
17182         /*
17183          * Touch Devices
17184          */
17185         
17186         if(Roo.isTouch && this.mobileTouchView){
17187             cfg = this.getAutoCreateTouchView();
17188             return cfg;;
17189         }
17190         
17191         /*
17192          *  Normal ComboBox
17193          */
17194         if(!this.tickable){
17195             cfg = Roo.bootstrap.form.ComboBox.superclass.getAutoCreate.call(this);
17196             return cfg;
17197         }
17198         
17199         /*
17200          *  ComboBox with tickable selections
17201          */
17202              
17203         var align = this.labelAlign || this.parentLabelAlign();
17204         
17205         cfg = {
17206             cls : 'form-group roo-combobox-tickable' //input-group
17207         };
17208         
17209         var btn_text_select = '';
17210         var btn_text_done = '';
17211         var btn_text_cancel = '';
17212         
17213         if (this.btn_text_show) {
17214             btn_text_select = 'Select';
17215             btn_text_done = 'Done';
17216             btn_text_cancel = 'Cancel'; 
17217         }
17218         
17219         var buttons = {
17220             tag : 'div',
17221             cls : 'tickable-buttons',
17222             cn : [
17223                 {
17224                     tag : 'button',
17225                     type : 'button',
17226                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
17227                     //html : this.triggerText
17228                     html: btn_text_select
17229                 },
17230                 {
17231                     tag : 'button',
17232                     type : 'button',
17233                     name : 'ok',
17234                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
17235                     //html : 'Done'
17236                     html: btn_text_done
17237                 },
17238                 {
17239                     tag : 'button',
17240                     type : 'button',
17241                     name : 'cancel',
17242                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
17243                     //html : 'Cancel'
17244                     html: btn_text_cancel
17245                 }
17246             ]
17247         };
17248         
17249         if(this.editable){
17250             buttons.cn.unshift({
17251                 tag: 'input',
17252                 cls: 'roo-select2-search-field-input'
17253             });
17254         }
17255         
17256         var _this = this;
17257         
17258         Roo.each(buttons.cn, function(c){
17259             if (_this.size) {
17260                 c.cls += ' btn-' + _this.size;
17261             }
17262
17263             if (_this.disabled) {
17264                 c.disabled = true;
17265             }
17266         });
17267         
17268         var box = {
17269             tag: 'div',
17270             style : 'display: contents',
17271             cn: [
17272                 {
17273                     tag: 'input',
17274                     type : 'hidden',
17275                     cls: 'form-hidden-field'
17276                 },
17277                 {
17278                     tag: 'ul',
17279                     cls: 'roo-select2-choices',
17280                     cn:[
17281                         {
17282                             tag: 'li',
17283                             cls: 'roo-select2-search-field',
17284                             cn: [
17285                                 buttons
17286                             ]
17287                         }
17288                     ]
17289                 }
17290             ]
17291         };
17292         
17293         var combobox = {
17294             cls: 'roo-select2-container input-group roo-select2-container-multi',
17295             cn: [
17296                 
17297                 box
17298 //                {
17299 //                    tag: 'ul',
17300 //                    cls: 'typeahead typeahead-long dropdown-menu',
17301 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
17302 //                }
17303             ]
17304         };
17305         
17306         if(this.hasFeedback && !this.allowBlank){
17307             
17308             var feedback = {
17309                 tag: 'span',
17310                 cls: 'glyphicon form-control-feedback'
17311             };
17312
17313             combobox.cn.push(feedback);
17314         }
17315         
17316         
17317         
17318         var indicator = {
17319             tag : 'i',
17320             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
17321             tooltip : 'This field is required'
17322         };
17323         if (Roo.bootstrap.version == 4) {
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  * 
23939  * 
23940  * @constructor
23941  * Create a new TimeField
23942  * @param {Object} config The config object
23943  */
23944
23945 Roo.bootstrap.form.TimeField = function(config){
23946     Roo.bootstrap.form.TimeField.superclass.constructor.call(this, config);
23947     this.addEvents({
23948             /**
23949              * @event show
23950              * Fires when this field show.
23951              * @param {Roo.bootstrap.form.DateField} thisthis
23952              * @param {Mixed} date The date value
23953              */
23954             show : true,
23955             /**
23956              * @event show
23957              * Fires when this field hide.
23958              * @param {Roo.bootstrap.form.DateField} this
23959              * @param {Mixed} date The date value
23960              */
23961             hide : true,
23962             /**
23963              * @event select
23964              * Fires when select a date.
23965              * @param {Roo.bootstrap.form.DateField} this
23966              * @param {Mixed} date The date value
23967              */
23968             select : true
23969         });
23970 };
23971
23972 Roo.extend(Roo.bootstrap.form.TimeField, Roo.bootstrap.form.Input,  {
23973     
23974     /**
23975      * @cfg {String} format
23976      * The default time format string which can be overriden for localization support.  The format must be
23977      * valid according to {@link Date#parseDate} (defaults to 'H:i').
23978      */
23979     format : "H:i",
23980
23981     getAutoCreate : function()
23982     {
23983         this.after = '<i class="fa far fa-clock"></i>';
23984         return Roo.bootstrap.form.TimeField.superclass.getAutoCreate.call(this);
23985         
23986          
23987     },
23988     onRender: function(ct, position)
23989     {
23990         
23991         Roo.bootstrap.form.TimeField.superclass.onRender.call(this, ct, position);
23992                 
23993         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.form.TimeField.template);
23994         
23995         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
23996         
23997         this.pop = this.picker().select('>.datepicker-time',true).first();
23998         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
23999         
24000         this.picker().on('mousedown', this.onMousedown, this);
24001         this.picker().on('click', this.onClick, this);
24002         
24003         this.picker().addClass('datepicker-dropdown');
24004     
24005         this.fillTime();
24006         this.update();
24007             
24008         this.pop.select('.hours-up', true).first().on('click', this.onIncrementHours, this);
24009         this.pop.select('.hours-down', true).first().on('click', this.onDecrementHours, this);
24010         this.pop.select('.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
24011         this.pop.select('.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
24012         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
24013         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
24014
24015     },
24016     
24017     fireKey: function(e){
24018         if (!this.picker().isVisible()){
24019             if (e.keyCode == 27) { // allow escape to hide and re-show picker
24020                 this.show();
24021             }
24022             return;
24023         }
24024
24025         e.preventDefault();
24026         
24027         switch(e.keyCode){
24028             case 27: // escape
24029                 this.hide();
24030                 break;
24031             case 37: // left
24032             case 39: // right
24033                 this.onTogglePeriod();
24034                 break;
24035             case 38: // up
24036                 this.onIncrementMinutes();
24037                 break;
24038             case 40: // down
24039                 this.onDecrementMinutes();
24040                 break;
24041             case 13: // enter
24042             case 9: // tab
24043                 this.setTime();
24044                 break;
24045         }
24046     },
24047     
24048     onClick: function(e) {
24049         e.stopPropagation();
24050         e.preventDefault();
24051     },
24052     
24053     picker : function()
24054     {
24055         return this.pickerEl;
24056     },
24057     
24058     fillTime: function()
24059     {    
24060         var time = this.pop.select('tbody', true).first();
24061         
24062         time.dom.innerHTML = '';
24063         
24064         time.createChild({
24065             tag: 'tr',
24066             cn: [
24067                 {
24068                     tag: 'td',
24069                     cn: [
24070                         {
24071                             tag: 'a',
24072                             href: '#',
24073                             cls: 'btn',
24074                             cn: [
24075                                 {
24076                                     tag: 'i',
24077                                     cls: 'hours-up fa fas fa-chevron-up'
24078                                 }
24079                             ]
24080                         } 
24081                     ]
24082                 },
24083                 {
24084                     tag: 'td',
24085                     cls: 'separator'
24086                 },
24087                 {
24088                     tag: 'td',
24089                     cn: [
24090                         {
24091                             tag: 'a',
24092                             href: '#',
24093                             cls: 'btn',
24094                             cn: [
24095                                 {
24096                                     tag: 'i',
24097                                     cls: 'minutes-up fa fas fa-chevron-up'
24098                                 }
24099                             ]
24100                         }
24101                     ]
24102                 },
24103                 {
24104                     tag: 'td',
24105                     cls: 'separator'
24106                 }
24107             ]
24108         });
24109         
24110         time.createChild({
24111             tag: 'tr',
24112             cn: [
24113                 {
24114                     tag: 'td',
24115                     cn: [
24116                         {
24117                             tag: 'span',
24118                             cls: 'timepicker-hour',
24119                             html: '00'
24120                         }  
24121                     ]
24122                 },
24123                 {
24124                     tag: 'td',
24125                     cls: 'separator',
24126                     html: ':'
24127                 },
24128                 {
24129                     tag: 'td',
24130                     cn: [
24131                         {
24132                             tag: 'span',
24133                             cls: 'timepicker-minute',
24134                             html: '00'
24135                         }  
24136                     ]
24137                 },
24138                 {
24139                     tag: 'td',
24140                     cls: 'separator'
24141                 },
24142                 {
24143                     tag: 'td',
24144                     cn: [
24145                         {
24146                             tag: 'button',
24147                             type: 'button',
24148                             cls: 'btn btn-primary period',
24149                             html: 'AM'
24150                             
24151                         }
24152                     ]
24153                 }
24154             ]
24155         });
24156         
24157         time.createChild({
24158             tag: 'tr',
24159             cn: [
24160                 {
24161                     tag: 'td',
24162                     cn: [
24163                         {
24164                             tag: 'a',
24165                             href: '#',
24166                             cls: 'btn',
24167                             cn: [
24168                                 {
24169                                     tag: 'span',
24170                                     cls: 'hours-down fa fas fa-chevron-down'
24171                                 }
24172                             ]
24173                         }
24174                     ]
24175                 },
24176                 {
24177                     tag: 'td',
24178                     cls: 'separator'
24179                 },
24180                 {
24181                     tag: 'td',
24182                     cn: [
24183                         {
24184                             tag: 'a',
24185                             href: '#',
24186                             cls: 'btn',
24187                             cn: [
24188                                 {
24189                                     tag: 'span',
24190                                     cls: 'minutes-down fa fas fa-chevron-down'
24191                                 }
24192                             ]
24193                         }
24194                     ]
24195                 },
24196                 {
24197                     tag: 'td',
24198                     cls: 'separator'
24199                 }
24200             ]
24201         });
24202         
24203     },
24204     
24205     update: function()
24206     {
24207         
24208         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
24209         
24210         this.fill();
24211     },
24212     
24213     fill: function() 
24214     {
24215         var hours = this.time.getHours();
24216         var minutes = this.time.getMinutes();
24217         var period = 'AM';
24218         
24219         if(hours > 11){
24220             period = 'PM';
24221         }
24222         
24223         if(hours == 0){
24224             hours = 12;
24225         }
24226         
24227         
24228         if(hours > 12){
24229             hours = hours - 12;
24230         }
24231         
24232         if(hours < 10){
24233             hours = '0' + hours;
24234         }
24235         
24236         if(minutes < 10){
24237             minutes = '0' + minutes;
24238         }
24239         
24240         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
24241         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
24242         this.pop.select('button', true).first().dom.innerHTML = period;
24243         
24244     },
24245     
24246     place: function()
24247     {   
24248         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
24249         
24250         var cls = ['bottom'];
24251         
24252         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
24253             cls.pop();
24254             cls.push('top');
24255         }
24256         
24257         cls.push('right');
24258         
24259         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
24260             cls.pop();
24261             cls.push('left');
24262         }
24263         //this.picker().setXY(20000,20000);
24264         this.picker().addClass(cls.join('-'));
24265         
24266         var _this = this;
24267         
24268         Roo.each(cls, function(c){
24269             if(c == 'bottom'){
24270                 (function() {
24271                  //  
24272                 }).defer(200);
24273                  _this.picker().alignTo(_this.inputEl(),   "tr-br", [0, 10], false);
24274                 //_this.picker().setTop(_this.inputEl().getHeight());
24275                 return;
24276             }
24277             if(c == 'top'){
24278                  _this.picker().alignTo(_this.inputEl(),   "br-tr", [0, 10], false);
24279                 
24280                 //_this.picker().setTop(0 - _this.picker().getHeight());
24281                 return;
24282             }
24283             /*
24284             if(c == 'left'){
24285                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
24286                 return;
24287             }
24288             if(c == 'right'){
24289                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
24290                 return;
24291             }
24292             */
24293         });
24294         
24295     },
24296   
24297     onFocus : function()
24298     {
24299         Roo.bootstrap.form.TimeField.superclass.onFocus.call(this);
24300         this.show();
24301     },
24302     
24303     onBlur : function()
24304     {
24305         Roo.bootstrap.form.TimeField.superclass.onBlur.call(this);
24306         this.hide();
24307     },
24308     
24309     show : function()
24310     {
24311         this.picker().show();
24312         this.pop.show();
24313         this.update();
24314         this.place();
24315         
24316         this.fireEvent('show', this, this.date);
24317     },
24318     
24319     hide : function()
24320     {
24321         this.picker().hide();
24322         this.pop.hide();
24323         
24324         this.fireEvent('hide', this, this.date);
24325     },
24326     
24327     setTime : function()
24328     {
24329         this.hide();
24330         this.setValue(this.time.format(this.format));
24331         
24332         this.fireEvent('select', this, this.date);
24333         
24334         
24335     },
24336     
24337     onMousedown: function(e){
24338         e.stopPropagation();
24339         e.preventDefault();
24340     },
24341     
24342     onIncrementHours: function()
24343     {
24344         Roo.log('onIncrementHours');
24345         this.time = this.time.add(Date.HOUR, 1);
24346         this.update();
24347         
24348     },
24349     
24350     onDecrementHours: function()
24351     {
24352         Roo.log('onDecrementHours');
24353         this.time = this.time.add(Date.HOUR, -1);
24354         this.update();
24355     },
24356     
24357     onIncrementMinutes: function()
24358     {
24359         Roo.log('onIncrementMinutes');
24360         this.time = this.time.add(Date.MINUTE, 1);
24361         this.update();
24362     },
24363     
24364     onDecrementMinutes: function()
24365     {
24366         Roo.log('onDecrementMinutes');
24367         this.time = this.time.add(Date.MINUTE, -1);
24368         this.update();
24369     },
24370     
24371     onTogglePeriod: function()
24372     {
24373         Roo.log('onTogglePeriod');
24374         this.time = this.time.add(Date.HOUR, 12);
24375         this.update();
24376     }
24377     
24378    
24379 });
24380  
24381
24382 Roo.apply(Roo.bootstrap.form.TimeField,  {
24383   
24384     template : {
24385         tag: 'div',
24386         cls: 'datepicker dropdown-menu',
24387         cn: [
24388             {
24389                 tag: 'div',
24390                 cls: 'datepicker-time',
24391                 cn: [
24392                 {
24393                     tag: 'table',
24394                     cls: 'table-condensed',
24395                     cn:[
24396                         {
24397                             tag: 'tbody',
24398                             cn: [
24399                                 {
24400                                     tag: 'tr',
24401                                     cn: [
24402                                     {
24403                                         tag: 'td',
24404                                         colspan: '7'
24405                                     }
24406                                     ]
24407                                 }
24408                             ]
24409                         },
24410                         {
24411                             tag: 'tfoot',
24412                             cn: [
24413                                 {
24414                                     tag: 'tr',
24415                                     cn: [
24416                                     {
24417                                         tag: 'th',
24418                                         colspan: '7',
24419                                         cls: '',
24420                                         cn: [
24421                                             {
24422                                                 tag: 'button',
24423                                                 cls: 'btn btn-info ok',
24424                                                 html: 'OK'
24425                                             }
24426                                         ]
24427                                     }
24428                     
24429                                     ]
24430                                 }
24431                             ]
24432                         }
24433                     ]
24434                 }
24435                 ]
24436             }
24437         ]
24438     }
24439 });
24440
24441  
24442
24443  /*
24444  * - LGPL
24445  *
24446  * MonthField
24447  * 
24448  */
24449
24450 /**
24451  * @class Roo.bootstrap.form.MonthField
24452  * @extends Roo.bootstrap.form.Input
24453  * Bootstrap MonthField class
24454  * 
24455  * @cfg {String} language default en
24456  * 
24457  * @constructor
24458  * Create a new MonthField
24459  * @param {Object} config The config object
24460  */
24461
24462 Roo.bootstrap.form.MonthField = function(config){
24463     Roo.bootstrap.form.MonthField.superclass.constructor.call(this, config);
24464     
24465     this.addEvents({
24466         /**
24467          * @event show
24468          * Fires when this field show.
24469          * @param {Roo.bootstrap.form.MonthField} this
24470          * @param {Mixed} date The date value
24471          */
24472         show : true,
24473         /**
24474          * @event show
24475          * Fires when this field hide.
24476          * @param {Roo.bootstrap.form.MonthField} this
24477          * @param {Mixed} date The date value
24478          */
24479         hide : true,
24480         /**
24481          * @event select
24482          * Fires when select a date.
24483          * @param {Roo.bootstrap.form.MonthField} this
24484          * @param {String} oldvalue The old value
24485          * @param {String} newvalue The new value
24486          */
24487         select : true
24488     });
24489 };
24490
24491 Roo.extend(Roo.bootstrap.form.MonthField, Roo.bootstrap.form.Input,  {
24492     
24493     onRender: function(ct, position)
24494     {
24495         
24496         Roo.bootstrap.form.MonthField.superclass.onRender.call(this, ct, position);
24497         
24498         this.language = this.language || 'en';
24499         this.language = this.language in Roo.bootstrap.form.MonthField.dates ? this.language : this.language.split('-')[0];
24500         this.language = this.language in Roo.bootstrap.form.MonthField.dates ? this.language : "en";
24501         
24502         this.isRTL = Roo.bootstrap.form.MonthField.dates[this.language].rtl || false;
24503         this.isInline = false;
24504         this.isInput = true;
24505         this.component = this.el.select('.add-on', true).first() || false;
24506         this.component = (this.component && this.component.length === 0) ? false : this.component;
24507         this.hasInput = this.component && this.inputEL().length;
24508         
24509         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.form.MonthField.template);
24510         
24511         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
24512         
24513         this.picker().on('mousedown', this.onMousedown, this);
24514         this.picker().on('click', this.onClick, this);
24515         
24516         this.picker().addClass('datepicker-dropdown');
24517         
24518         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
24519             v.setStyle('width', '189px');
24520         });
24521         
24522         this.fillMonths();
24523         
24524         this.update();
24525         
24526         if(this.isInline) {
24527             this.show();
24528         }
24529         
24530     },
24531     
24532     setValue: function(v, suppressEvent)
24533     {   
24534         var o = this.getValue();
24535         
24536         Roo.bootstrap.form.MonthField.superclass.setValue.call(this, v);
24537         
24538         this.update();
24539
24540         if(suppressEvent !== true){
24541             this.fireEvent('select', this, o, v);
24542         }
24543         
24544     },
24545     
24546     getValue: function()
24547     {
24548         return this.value;
24549     },
24550     
24551     onClick: function(e) 
24552     {
24553         e.stopPropagation();
24554         e.preventDefault();
24555         
24556         var target = e.getTarget();
24557         
24558         if(target.nodeName.toLowerCase() === 'i'){
24559             target = Roo.get(target).dom.parentNode;
24560         }
24561         
24562         var nodeName = target.nodeName;
24563         var className = target.className;
24564         var html = target.innerHTML;
24565         
24566         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
24567             return;
24568         }
24569         
24570         this.vIndex = Roo.bootstrap.form.MonthField.dates[this.language].monthsShort.indexOf(html);
24571         
24572         this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24573         
24574         this.hide();
24575                         
24576     },
24577     
24578     picker : function()
24579     {
24580         return this.pickerEl;
24581     },
24582     
24583     fillMonths: function()
24584     {    
24585         var i = 0;
24586         var months = this.picker().select('>.datepicker-months td', true).first();
24587         
24588         months.dom.innerHTML = '';
24589         
24590         while (i < 12) {
24591             var month = {
24592                 tag: 'span',
24593                 cls: 'month',
24594                 html: Roo.bootstrap.form.MonthField.dates[this.language].monthsShort[i++]
24595             };
24596             
24597             months.createChild(month);
24598         }
24599         
24600     },
24601     
24602     update: function()
24603     {
24604         var _this = this;
24605         
24606         if(typeof(this.vIndex) == 'undefined' && this.value.length){
24607             this.vIndex = Roo.bootstrap.form.MonthField.dates[this.language].months.indexOf(this.value);
24608         }
24609         
24610         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
24611             e.removeClass('active');
24612             
24613             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
24614                 e.addClass('active');
24615             }
24616         })
24617     },
24618     
24619     place: function()
24620     {
24621         if(this.isInline) {
24622             return;
24623         }
24624         
24625         this.picker().removeClass(['bottom', 'top']);
24626         
24627         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
24628             /*
24629              * place to the top of element!
24630              *
24631              */
24632             
24633             this.picker().addClass('top');
24634             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
24635             
24636             return;
24637         }
24638         
24639         this.picker().addClass('bottom');
24640         
24641         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
24642     },
24643     
24644     onFocus : function()
24645     {
24646         Roo.bootstrap.form.MonthField.superclass.onFocus.call(this);
24647         this.show();
24648     },
24649     
24650     onBlur : function()
24651     {
24652         Roo.bootstrap.form.MonthField.superclass.onBlur.call(this);
24653         
24654         var d = this.inputEl().getValue();
24655         
24656         this.setValue(d);
24657                 
24658         this.hide();
24659     },
24660     
24661     show : function()
24662     {
24663         this.picker().show();
24664         this.picker().select('>.datepicker-months', true).first().show();
24665         this.update();
24666         this.place();
24667         
24668         this.fireEvent('show', this, this.date);
24669     },
24670     
24671     hide : function()
24672     {
24673         if(this.isInline) {
24674             return;
24675         }
24676         this.picker().hide();
24677         this.fireEvent('hide', this, this.date);
24678         
24679     },
24680     
24681     onMousedown: function(e)
24682     {
24683         e.stopPropagation();
24684         e.preventDefault();
24685     },
24686     
24687     keyup: function(e)
24688     {
24689         Roo.bootstrap.form.MonthField.superclass.keyup.call(this);
24690         this.update();
24691     },
24692
24693     fireKey: function(e)
24694     {
24695         if (!this.picker().isVisible()){
24696             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
24697                 this.show();
24698             }
24699             return;
24700         }
24701         
24702         var dir;
24703         
24704         switch(e.keyCode){
24705             case 27: // escape
24706                 this.hide();
24707                 e.preventDefault();
24708                 break;
24709             case 37: // left
24710             case 39: // right
24711                 dir = e.keyCode == 37 ? -1 : 1;
24712                 
24713                 this.vIndex = this.vIndex + dir;
24714                 
24715                 if(this.vIndex < 0){
24716                     this.vIndex = 0;
24717                 }
24718                 
24719                 if(this.vIndex > 11){
24720                     this.vIndex = 11;
24721                 }
24722                 
24723                 if(isNaN(this.vIndex)){
24724                     this.vIndex = 0;
24725                 }
24726                 
24727                 this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24728                 
24729                 break;
24730             case 38: // up
24731             case 40: // down
24732                 
24733                 dir = e.keyCode == 38 ? -1 : 1;
24734                 
24735                 this.vIndex = this.vIndex + dir * 4;
24736                 
24737                 if(this.vIndex < 0){
24738                     this.vIndex = 0;
24739                 }
24740                 
24741                 if(this.vIndex > 11){
24742                     this.vIndex = 11;
24743                 }
24744                 
24745                 if(isNaN(this.vIndex)){
24746                     this.vIndex = 0;
24747                 }
24748                 
24749                 this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24750                 break;
24751                 
24752             case 13: // enter
24753                 
24754                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
24755                     this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24756                 }
24757                 
24758                 this.hide();
24759                 e.preventDefault();
24760                 break;
24761             case 9: // tab
24762                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
24763                     this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24764                 }
24765                 this.hide();
24766                 break;
24767             case 16: // shift
24768             case 17: // ctrl
24769             case 18: // alt
24770                 break;
24771             default :
24772                 this.hide();
24773                 
24774         }
24775     },
24776     
24777     remove: function() 
24778     {
24779         this.picker().remove();
24780     }
24781    
24782 });
24783
24784 Roo.apply(Roo.bootstrap.form.MonthField,  {
24785     
24786     content : {
24787         tag: 'tbody',
24788         cn: [
24789         {
24790             tag: 'tr',
24791             cn: [
24792             {
24793                 tag: 'td',
24794                 colspan: '7'
24795             }
24796             ]
24797         }
24798         ]
24799     },
24800     
24801     dates:{
24802         en: {
24803             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
24804             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
24805         }
24806     }
24807 });
24808
24809 Roo.apply(Roo.bootstrap.form.MonthField,  {
24810   
24811     template : {
24812         tag: 'div',
24813         cls: 'datepicker dropdown-menu roo-dynamic',
24814         cn: [
24815             {
24816                 tag: 'div',
24817                 cls: 'datepicker-months',
24818                 cn: [
24819                 {
24820                     tag: 'table',
24821                     cls: 'table-condensed',
24822                     cn:[
24823                         Roo.bootstrap.form.DateField.content
24824                     ]
24825                 }
24826                 ]
24827             }
24828         ]
24829     }
24830 });
24831
24832  
24833
24834  
24835  /*
24836  * - LGPL
24837  *
24838  * CheckBox
24839  * 
24840  */
24841
24842 /**
24843  * @class Roo.bootstrap.form.CheckBox
24844  * @extends Roo.bootstrap.form.Input
24845  * Bootstrap CheckBox class
24846  * 
24847  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
24848  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
24849  * @cfg {String} boxLabel The text that appears beside the checkbox
24850  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
24851  * @cfg {Boolean} checked initnal the element
24852  * @cfg {Boolean} inline inline the element (default false)
24853  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
24854  * @cfg {String} tooltip label tooltip
24855  * 
24856  * @constructor
24857  * Create a new CheckBox
24858  * @param {Object} config The config object
24859  */
24860
24861 Roo.bootstrap.form.CheckBox = function(config){
24862     Roo.bootstrap.form.CheckBox.superclass.constructor.call(this, config);
24863    
24864     this.addEvents({
24865         /**
24866         * @event check
24867         * Fires when the element is checked or unchecked.
24868         * @param {Roo.bootstrap.form.CheckBox} this This input
24869         * @param {Boolean} checked The new checked value
24870         */
24871        check : true,
24872        /**
24873         * @event click
24874         * Fires when the element is click.
24875         * @param {Roo.bootstrap.form.CheckBox} this This input
24876         */
24877        click : true
24878     });
24879     
24880 };
24881
24882 Roo.extend(Roo.bootstrap.form.CheckBox, Roo.bootstrap.form.Input,  {
24883   
24884     inputType: 'checkbox',
24885     inputValue: 1,
24886     valueOff: 0,
24887     boxLabel: false,
24888     checked: false,
24889     weight : false,
24890     inline: false,
24891     tooltip : '',
24892     
24893     // checkbox success does not make any sense really.. 
24894     invalidClass : "",
24895     validClass : "",
24896     
24897     
24898     getAutoCreate : function()
24899     {
24900         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
24901         
24902         var id = Roo.id();
24903         
24904         var cfg = {};
24905         
24906         cfg.cls = 'form-group form-check ' + this.inputType; //input-group
24907         
24908         if(this.inline){
24909             cfg.cls += ' ' + this.inputType + '-inline  form-check-inline';
24910         }
24911         
24912         var input =  {
24913             tag: 'input',
24914             id : id,
24915             type : this.inputType,
24916             value : this.inputValue,
24917             cls : 'roo-' + this.inputType, //'form-box',
24918             placeholder : this.placeholder || ''
24919             
24920         };
24921         
24922         if(this.inputType != 'radio'){
24923             var hidden =  {
24924                 tag: 'input',
24925                 type : 'hidden',
24926                 cls : 'roo-hidden-value',
24927                 value : this.checked ? this.inputValue : this.valueOff
24928             };
24929         }
24930         
24931             
24932         if (this.weight) { // Validity check?
24933             cfg.cls += " " + this.inputType + "-" + this.weight;
24934         }
24935         
24936         if (this.disabled) {
24937             input.disabled=true;
24938         }
24939         
24940         if(this.checked){
24941             input.checked = this.checked;
24942         }
24943         
24944         if (this.name) {
24945             
24946             input.name = this.name;
24947             
24948             if(this.inputType != 'radio'){
24949                 hidden.name = this.name;
24950                 input.name = '_hidden_' + this.name;
24951             }
24952         }
24953         
24954         if (this.size) {
24955             input.cls += ' input-' + this.size;
24956         }
24957         
24958         var settings=this;
24959         
24960         ['xs','sm','md','lg'].map(function(size){
24961             if (settings[size]) {
24962                 cfg.cls += ' col-' + size + '-' + settings[size];
24963             }
24964         });
24965         
24966         var inputblock = input;
24967          
24968         if (this.before || this.after) {
24969             
24970             inputblock = {
24971                 cls : 'input-group',
24972                 cn :  [] 
24973             };
24974             
24975             if (this.before) {
24976                 inputblock.cn.push({
24977                     tag :'span',
24978                     cls : 'input-group-addon',
24979                     html : this.before
24980                 });
24981             }
24982             
24983             inputblock.cn.push(input);
24984             
24985             if(this.inputType != 'radio'){
24986                 inputblock.cn.push(hidden);
24987             }
24988             
24989             if (this.after) {
24990                 inputblock.cn.push({
24991                     tag :'span',
24992                     cls : 'input-group-addon',
24993                     html : this.after
24994                 });
24995             }
24996             
24997         }
24998         var boxLabelCfg = false;
24999         
25000         if(this.boxLabel){
25001            
25002             boxLabelCfg = {
25003                 tag: 'label',
25004                 //'for': id, // box label is handled by onclick - so no for...
25005                 cls: 'box-label',
25006                 html: this.boxLabel
25007             };
25008             if(this.tooltip){
25009                 boxLabelCfg.tooltip = this.tooltip;
25010             }
25011              
25012         }
25013         
25014         
25015         if (align ==='left' && this.fieldLabel.length) {
25016 //                Roo.log("left and has label");
25017             cfg.cn = [
25018                 {
25019                     tag: 'label',
25020                     'for' :  id,
25021                     cls : 'control-label',
25022                     html : this.fieldLabel
25023                 },
25024                 {
25025                     cls : "", 
25026                     cn: [
25027                         inputblock
25028                     ]
25029                 }
25030             ];
25031             
25032             if (boxLabelCfg) {
25033                 cfg.cn[1].cn.push(boxLabelCfg);
25034             }
25035             
25036             if(this.labelWidth > 12){
25037                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
25038             }
25039             
25040             if(this.labelWidth < 13 && this.labelmd == 0){
25041                 this.labelmd = this.labelWidth;
25042             }
25043             
25044             if(this.labellg > 0){
25045                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
25046                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
25047             }
25048             
25049             if(this.labelmd > 0){
25050                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
25051                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
25052             }
25053             
25054             if(this.labelsm > 0){
25055                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
25056                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
25057             }
25058             
25059             if(this.labelxs > 0){
25060                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
25061                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
25062             }
25063             
25064         } else if ( this.fieldLabel.length) {
25065 //                Roo.log(" label");
25066                 cfg.cn = [
25067                    
25068                     {
25069                         tag: this.boxLabel ? 'span' : 'label',
25070                         'for': id,
25071                         cls: 'control-label box-input-label',
25072                         //cls : 'input-group-addon',
25073                         html : this.fieldLabel
25074                     },
25075                     
25076                     inputblock
25077                     
25078                 ];
25079                 if (boxLabelCfg) {
25080                     cfg.cn.push(boxLabelCfg);
25081                 }
25082
25083         } else {
25084             
25085 //                Roo.log(" no label && no align");
25086                 cfg.cn = [  inputblock ] ;
25087                 if (boxLabelCfg) {
25088                     cfg.cn.push(boxLabelCfg);
25089                 }
25090
25091                 
25092         }
25093         
25094        
25095         
25096         if(this.inputType != 'radio'){
25097             cfg.cn.push(hidden);
25098         }
25099         
25100         return cfg;
25101         
25102     },
25103     
25104     /**
25105      * return the real input element.
25106      */
25107     inputEl: function ()
25108     {
25109         return this.el.select('input.roo-' + this.inputType,true).first();
25110     },
25111     hiddenEl: function ()
25112     {
25113         return this.el.select('input.roo-hidden-value',true).first();
25114     },
25115     
25116     labelEl: function()
25117     {
25118         return this.el.select('label.control-label',true).first();
25119     },
25120     /* depricated... */
25121     
25122     label: function()
25123     {
25124         return this.labelEl();
25125     },
25126     
25127     boxLabelEl: function()
25128     {
25129         return this.el.select('label.box-label',true).first();
25130     },
25131     
25132     initEvents : function()
25133     {
25134 //        Roo.bootstrap.form.CheckBox.superclass.initEvents.call(this);
25135         
25136         this.inputEl().on('click', this.onClick,  this);
25137         
25138         if (this.boxLabel) { 
25139             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
25140         }
25141         
25142         this.startValue = this.getValue();
25143         
25144         if(this.groupId){
25145             Roo.bootstrap.form.CheckBox.register(this);
25146         }
25147     },
25148     
25149     onClick : function(e)
25150     {   
25151         if(this.fireEvent('click', this, e) !== false){
25152             this.setChecked(!this.checked);
25153         }
25154         
25155     },
25156     
25157     setChecked : function(state,suppressEvent)
25158     {
25159         this.startValue = this.getValue();
25160
25161         if(this.inputType == 'radio'){
25162             
25163             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25164                 e.dom.checked = false;
25165             });
25166             
25167             this.inputEl().dom.checked = true;
25168             
25169             this.inputEl().dom.value = this.inputValue;
25170             
25171             if(suppressEvent !== true){
25172                 this.fireEvent('check', this, true);
25173             }
25174             
25175             this.validate();
25176             
25177             return;
25178         }
25179         
25180         this.checked = state;
25181         
25182         this.inputEl().dom.checked = state;
25183         
25184         
25185         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
25186         
25187         if(suppressEvent !== true){
25188             this.fireEvent('check', this, state);
25189         }
25190         
25191         this.validate();
25192     },
25193     
25194     getValue : function()
25195     {
25196         if(this.inputType == 'radio'){
25197             return this.getGroupValue();
25198         }
25199         
25200         return this.hiddenEl().dom.value;
25201         
25202     },
25203     
25204     getGroupValue : function()
25205     {
25206         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
25207             return '';
25208         }
25209         
25210         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
25211     },
25212     
25213     setValue : function(v,suppressEvent)
25214     {
25215         if(this.inputType == 'radio'){
25216             this.setGroupValue(v, suppressEvent);
25217             return;
25218         }
25219         
25220         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
25221         
25222         this.validate();
25223     },
25224     
25225     setGroupValue : function(v, suppressEvent)
25226     {
25227         this.startValue = this.getValue();
25228         
25229         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25230             e.dom.checked = false;
25231             
25232             if(e.dom.value == v){
25233                 e.dom.checked = true;
25234             }
25235         });
25236         
25237         if(suppressEvent !== true){
25238             this.fireEvent('check', this, true);
25239         }
25240
25241         this.validate();
25242         
25243         return;
25244     },
25245     
25246     validate : function()
25247     {
25248         if(this.getVisibilityEl().hasClass('hidden')){
25249             return true;
25250         }
25251         
25252         if(
25253                 this.disabled || 
25254                 (this.inputType == 'radio' && this.validateRadio()) ||
25255                 (this.inputType == 'checkbox' && this.validateCheckbox())
25256         ){
25257             this.markValid();
25258             return true;
25259         }
25260         
25261         this.markInvalid();
25262         return false;
25263     },
25264     
25265     validateRadio : function()
25266     {
25267         if(this.getVisibilityEl().hasClass('hidden')){
25268             return true;
25269         }
25270         
25271         if(this.allowBlank){
25272             return true;
25273         }
25274         
25275         var valid = false;
25276         
25277         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25278             if(!e.dom.checked){
25279                 return;
25280             }
25281             
25282             valid = true;
25283             
25284             return false;
25285         });
25286         
25287         return valid;
25288     },
25289     
25290     validateCheckbox : function()
25291     {
25292         if(!this.groupId){
25293             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
25294             //return (this.getValue() == this.inputValue) ? true : false;
25295         }
25296         
25297         var group = Roo.bootstrap.form.CheckBox.get(this.groupId);
25298         
25299         if(!group){
25300             return false;
25301         }
25302         
25303         var r = false;
25304         
25305         for(var i in group){
25306             if(group[i].el.isVisible(true)){
25307                 r = false;
25308                 break;
25309             }
25310             
25311             r = true;
25312         }
25313         
25314         for(var i in group){
25315             if(r){
25316                 break;
25317             }
25318             
25319             r = (group[i].getValue() == group[i].inputValue) ? true : false;
25320         }
25321         
25322         return r;
25323     },
25324     
25325     /**
25326      * Mark this field as valid
25327      */
25328     markValid : function()
25329     {
25330         var _this = this;
25331         
25332         this.fireEvent('valid', this);
25333         
25334         var label = Roo.bootstrap.form.FieldLabel.get(this.name + '-group');
25335         
25336         if(this.groupId){
25337             label = Roo.bootstrap.form.FieldLabel.get(this.groupId + '-group');
25338         }
25339         
25340         if(label){
25341             label.markValid();
25342         }
25343
25344         if(this.inputType == 'radio'){
25345             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25346                 var fg = e.findParent('.form-group', false, true);
25347                 if (Roo.bootstrap.version == 3) {
25348                     fg.removeClass([_this.invalidClass, _this.validClass]);
25349                     fg.addClass(_this.validClass);
25350                 } else {
25351                     fg.removeClass(['is-valid', 'is-invalid']);
25352                     fg.addClass('is-valid');
25353                 }
25354             });
25355             
25356             return;
25357         }
25358
25359         if(!this.groupId){
25360             var fg = this.el.findParent('.form-group', false, true);
25361             if (Roo.bootstrap.version == 3) {
25362                 fg.removeClass([this.invalidClass, this.validClass]);
25363                 fg.addClass(this.validClass);
25364             } else {
25365                 fg.removeClass(['is-valid', 'is-invalid']);
25366                 fg.addClass('is-valid');
25367             }
25368             return;
25369         }
25370         
25371         var group = Roo.bootstrap.form.CheckBox.get(this.groupId);
25372         
25373         if(!group){
25374             return;
25375         }
25376         
25377         for(var i in group){
25378             var fg = group[i].el.findParent('.form-group', false, true);
25379             if (Roo.bootstrap.version == 3) {
25380                 fg.removeClass([this.invalidClass, this.validClass]);
25381                 fg.addClass(this.validClass);
25382             } else {
25383                 fg.removeClass(['is-valid', 'is-invalid']);
25384                 fg.addClass('is-valid');
25385             }
25386         }
25387     },
25388     
25389      /**
25390      * Mark this field as invalid
25391      * @param {String} msg The validation message
25392      */
25393     markInvalid : function(msg)
25394     {
25395         if(this.allowBlank){
25396             return;
25397         }
25398         
25399         var _this = this;
25400         
25401         this.fireEvent('invalid', this, msg);
25402         
25403         var label = Roo.bootstrap.form.FieldLabel.get(this.name + '-group');
25404         
25405         if(this.groupId){
25406             label = Roo.bootstrap.form.FieldLabel.get(this.groupId + '-group');
25407         }
25408         
25409         if(label){
25410             label.markInvalid();
25411         }
25412             
25413         if(this.inputType == 'radio'){
25414             
25415             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25416                 var fg = e.findParent('.form-group', false, true);
25417                 if (Roo.bootstrap.version == 3) {
25418                     fg.removeClass([_this.invalidClass, _this.validClass]);
25419                     fg.addClass(_this.invalidClass);
25420                 } else {
25421                     fg.removeClass(['is-invalid', 'is-valid']);
25422                     fg.addClass('is-invalid');
25423                 }
25424             });
25425             
25426             return;
25427         }
25428         
25429         if(!this.groupId){
25430             var fg = this.el.findParent('.form-group', false, true);
25431             if (Roo.bootstrap.version == 3) {
25432                 fg.removeClass([_this.invalidClass, _this.validClass]);
25433                 fg.addClass(_this.invalidClass);
25434             } else {
25435                 fg.removeClass(['is-invalid', 'is-valid']);
25436                 fg.addClass('is-invalid');
25437             }
25438             return;
25439         }
25440         
25441         var group = Roo.bootstrap.form.CheckBox.get(this.groupId);
25442         
25443         if(!group){
25444             return;
25445         }
25446         
25447         for(var i in group){
25448             var fg = group[i].el.findParent('.form-group', false, true);
25449             if (Roo.bootstrap.version == 3) {
25450                 fg.removeClass([_this.invalidClass, _this.validClass]);
25451                 fg.addClass(_this.invalidClass);
25452             } else {
25453                 fg.removeClass(['is-invalid', 'is-valid']);
25454                 fg.addClass('is-invalid');
25455             }
25456         }
25457         
25458     },
25459     
25460     clearInvalid : function()
25461     {
25462         Roo.bootstrap.form.Input.prototype.clearInvalid.call(this);
25463         
25464         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
25465         
25466         var label = Roo.bootstrap.form.FieldLabel.get(this.name + '-group');
25467         
25468         if (label && label.iconEl) {
25469             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
25470             label.iconEl.removeClass(['is-invalid', 'is-valid']);
25471         }
25472     },
25473     
25474     disable : function()
25475     {
25476         if(this.inputType != 'radio'){
25477             Roo.bootstrap.form.CheckBox.superclass.disable.call(this);
25478             return;
25479         }
25480         
25481         var _this = this;
25482         
25483         if(this.rendered){
25484             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25485                 _this.getActionEl().addClass(this.disabledClass);
25486                 e.dom.disabled = true;
25487             });
25488         }
25489         
25490         this.disabled = true;
25491         this.fireEvent("disable", this);
25492         return this;
25493     },
25494
25495     enable : function()
25496     {
25497         if(this.inputType != 'radio'){
25498             Roo.bootstrap.form.CheckBox.superclass.enable.call(this);
25499             return;
25500         }
25501         
25502         var _this = this;
25503         
25504         if(this.rendered){
25505             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25506                 _this.getActionEl().removeClass(this.disabledClass);
25507                 e.dom.disabled = false;
25508             });
25509         }
25510         
25511         this.disabled = false;
25512         this.fireEvent("enable", this);
25513         return this;
25514     },
25515     
25516     setBoxLabel : function(v)
25517     {
25518         this.boxLabel = v;
25519         
25520         if(this.rendered){
25521             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
25522         }
25523     }
25524
25525 });
25526
25527 Roo.apply(Roo.bootstrap.form.CheckBox, {
25528     
25529     groups: {},
25530     
25531      /**
25532     * register a CheckBox Group
25533     * @param {Roo.bootstrap.form.CheckBox} the CheckBox to add
25534     */
25535     register : function(checkbox)
25536     {
25537         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
25538             this.groups[checkbox.groupId] = {};
25539         }
25540         
25541         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
25542             return;
25543         }
25544         
25545         this.groups[checkbox.groupId][checkbox.name] = checkbox;
25546         
25547     },
25548     /**
25549     * fetch a CheckBox Group based on the group ID
25550     * @param {string} the group ID
25551     * @returns {Roo.bootstrap.form.CheckBox} the CheckBox group
25552     */
25553     get: function(groupId) {
25554         if (typeof(this.groups[groupId]) == 'undefined') {
25555             return false;
25556         }
25557         
25558         return this.groups[groupId] ;
25559     }
25560     
25561     
25562 });
25563 /*
25564  * - LGPL
25565  *
25566  * RadioItem
25567  * 
25568  */
25569
25570 /**
25571  * @class Roo.bootstrap.form.Radio
25572  * @extends Roo.bootstrap.Component
25573  * Bootstrap Radio class
25574  * @cfg {String} boxLabel - the label associated
25575  * @cfg {String} value - the value of radio
25576  * 
25577  * @constructor
25578  * Create a new Radio
25579  * @param {Object} config The config object
25580  */
25581 Roo.bootstrap.form.Radio = function(config){
25582     Roo.bootstrap.form.Radio.superclass.constructor.call(this, config);
25583     
25584 };
25585
25586 Roo.extend(Roo.bootstrap.form.Radio, Roo.bootstrap.Component, {
25587     
25588     boxLabel : '',
25589     
25590     value : '',
25591     
25592     getAutoCreate : function()
25593     {
25594         var cfg = {
25595             tag : 'div',
25596             cls : 'form-group radio',
25597             cn : [
25598                 {
25599                     tag : 'label',
25600                     cls : 'box-label',
25601                     html : this.boxLabel
25602                 }
25603             ]
25604         };
25605         
25606         return cfg;
25607     },
25608     
25609     initEvents : function() 
25610     {
25611         this.parent().register(this);
25612         
25613         this.el.on('click', this.onClick, this);
25614         
25615     },
25616     
25617     onClick : function(e)
25618     {
25619         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
25620             this.setChecked(true);
25621         }
25622     },
25623     
25624     setChecked : function(state, suppressEvent)
25625     {
25626         this.parent().setValue(this.value, suppressEvent);
25627         
25628     },
25629     
25630     setBoxLabel : function(v)
25631     {
25632         this.boxLabel = v;
25633         
25634         if(this.rendered){
25635             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
25636         }
25637     }
25638     
25639 });
25640  
25641
25642  /*
25643  * - LGPL
25644  *
25645  * Input
25646  * 
25647  */
25648
25649 /**
25650  * @class Roo.bootstrap.form.SecurePass
25651  * @extends Roo.bootstrap.form.Input
25652  * Bootstrap SecurePass class
25653  *
25654  * 
25655  * @constructor
25656  * Create a new SecurePass
25657  * @param {Object} config The config object
25658  */
25659  
25660 Roo.bootstrap.form.SecurePass = function (config) {
25661     // these go here, so the translation tool can replace them..
25662     this.errors = {
25663         PwdEmpty: "Please type a password, and then retype it to confirm.",
25664         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
25665         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
25666         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
25667         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
25668         FNInPwd: "Your password can't contain your first name. Please type a different password.",
25669         LNInPwd: "Your password can't contain your last name. Please type a different password.",
25670         TooWeak: "Your password is Too Weak."
25671     },
25672     this.meterLabel = "Password strength:";
25673     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
25674     this.meterClass = [
25675         "roo-password-meter-tooweak", 
25676         "roo-password-meter-weak", 
25677         "roo-password-meter-medium", 
25678         "roo-password-meter-strong", 
25679         "roo-password-meter-grey"
25680     ];
25681     
25682     this.errors = {};
25683     
25684     Roo.bootstrap.form.SecurePass.superclass.constructor.call(this, config);
25685 }
25686
25687 Roo.extend(Roo.bootstrap.form.SecurePass, Roo.bootstrap.form.Input, {
25688     /**
25689      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
25690      * {
25691      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
25692      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
25693      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
25694      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
25695      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
25696      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
25697      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
25698      * })
25699      */
25700     // private
25701     
25702     meterWidth: 300,
25703     errorMsg :'',    
25704     errors: false,
25705     imageRoot: '/',
25706     /**
25707      * @cfg {String/Object} Label for the strength meter (defaults to
25708      * 'Password strength:')
25709      */
25710     // private
25711     meterLabel: '',
25712     /**
25713      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
25714      * ['Weak', 'Medium', 'Strong'])
25715      */
25716     // private    
25717     pwdStrengths: false,    
25718     // private
25719     strength: 0,
25720     // private
25721     _lastPwd: null,
25722     // private
25723     kCapitalLetter: 0,
25724     kSmallLetter: 1,
25725     kDigit: 2,
25726     kPunctuation: 3,
25727     
25728     insecure: false,
25729     // private
25730     initEvents: function ()
25731     {
25732         Roo.bootstrap.form.SecurePass.superclass.initEvents.call(this);
25733
25734         if (this.el.is('input[type=password]') && Roo.isSafari) {
25735             this.el.on('keydown', this.SafariOnKeyDown, this);
25736         }
25737
25738         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
25739     },
25740     // private
25741     onRender: function (ct, position)
25742     {
25743         Roo.bootstrap.form.SecurePass.superclass.onRender.call(this, ct, position);
25744         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
25745         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
25746
25747         this.trigger.createChild({
25748                    cn: [
25749                     {
25750                     //id: 'PwdMeter',
25751                     tag: 'div',
25752                     cls: 'roo-password-meter-grey col-xs-12',
25753                     style: {
25754                         //width: 0,
25755                         //width: this.meterWidth + 'px'                                                
25756                         }
25757                     },
25758                     {                            
25759                          cls: 'roo-password-meter-text'                          
25760                     }
25761                 ]            
25762         });
25763
25764          
25765         if (this.hideTrigger) {
25766             this.trigger.setDisplayed(false);
25767         }
25768         this.setSize(this.width || '', this.height || '');
25769     },
25770     // private
25771     onDestroy: function ()
25772     {
25773         if (this.trigger) {
25774             this.trigger.removeAllListeners();
25775             this.trigger.remove();
25776         }
25777         if (this.wrap) {
25778             this.wrap.remove();
25779         }
25780         Roo.bootstrap.form.TriggerField.superclass.onDestroy.call(this);
25781     },
25782     // private
25783     checkStrength: function ()
25784     {
25785         var pwd = this.inputEl().getValue();
25786         if (pwd == this._lastPwd) {
25787             return;
25788         }
25789
25790         var strength;
25791         if (this.ClientSideStrongPassword(pwd)) {
25792             strength = 3;
25793         } else if (this.ClientSideMediumPassword(pwd)) {
25794             strength = 2;
25795         } else if (this.ClientSideWeakPassword(pwd)) {
25796             strength = 1;
25797         } else {
25798             strength = 0;
25799         }
25800         
25801         Roo.log('strength1: ' + strength);
25802         
25803         //var pm = this.trigger.child('div/div/div').dom;
25804         var pm = this.trigger.child('div/div');
25805         pm.removeClass(this.meterClass);
25806         pm.addClass(this.meterClass[strength]);
25807                 
25808         
25809         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
25810                 
25811         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
25812         
25813         this._lastPwd = pwd;
25814     },
25815     reset: function ()
25816     {
25817         Roo.bootstrap.form.SecurePass.superclass.reset.call(this);
25818         
25819         this._lastPwd = '';
25820         
25821         var pm = this.trigger.child('div/div');
25822         pm.removeClass(this.meterClass);
25823         pm.addClass('roo-password-meter-grey');        
25824         
25825         
25826         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
25827         
25828         pt.innerHTML = '';
25829         this.inputEl().dom.type='password';
25830     },
25831     // private
25832     validateValue: function (value)
25833     {
25834         if (!Roo.bootstrap.form.SecurePass.superclass.validateValue.call(this, value)) {
25835             return false;
25836         }
25837         if (value.length == 0) {
25838             if (this.allowBlank) {
25839                 this.clearInvalid();
25840                 return true;
25841             }
25842
25843             this.markInvalid(this.errors.PwdEmpty);
25844             this.errorMsg = this.errors.PwdEmpty;
25845             return false;
25846         }
25847         
25848         if(this.insecure){
25849             return true;
25850         }
25851         
25852         if (!value.match(/[\x21-\x7e]+/)) {
25853             this.markInvalid(this.errors.PwdBadChar);
25854             this.errorMsg = this.errors.PwdBadChar;
25855             return false;
25856         }
25857         if (value.length < 6) {
25858             this.markInvalid(this.errors.PwdShort);
25859             this.errorMsg = this.errors.PwdShort;
25860             return false;
25861         }
25862         if (value.length > 16) {
25863             this.markInvalid(this.errors.PwdLong);
25864             this.errorMsg = this.errors.PwdLong;
25865             return false;
25866         }
25867         var strength;
25868         if (this.ClientSideStrongPassword(value)) {
25869             strength = 3;
25870         } else if (this.ClientSideMediumPassword(value)) {
25871             strength = 2;
25872         } else if (this.ClientSideWeakPassword(value)) {
25873             strength = 1;
25874         } else {
25875             strength = 0;
25876         }
25877
25878         
25879         if (strength < 2) {
25880             //this.markInvalid(this.errors.TooWeak);
25881             this.errorMsg = this.errors.TooWeak;
25882             //return false;
25883         }
25884         
25885         
25886         console.log('strength2: ' + strength);
25887         
25888         //var pm = this.trigger.child('div/div/div').dom;
25889         
25890         var pm = this.trigger.child('div/div');
25891         pm.removeClass(this.meterClass);
25892         pm.addClass(this.meterClass[strength]);
25893                 
25894         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
25895                 
25896         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
25897         
25898         this.errorMsg = ''; 
25899         return true;
25900     },
25901     // private
25902     CharacterSetChecks: function (type)
25903     {
25904         this.type = type;
25905         this.fResult = false;
25906     },
25907     // private
25908     isctype: function (character, type)
25909     {
25910         switch (type) {  
25911             case this.kCapitalLetter:
25912                 if (character >= 'A' && character <= 'Z') {
25913                     return true;
25914                 }
25915                 break;
25916             
25917             case this.kSmallLetter:
25918                 if (character >= 'a' && character <= 'z') {
25919                     return true;
25920                 }
25921                 break;
25922             
25923             case this.kDigit:
25924                 if (character >= '0' && character <= '9') {
25925                     return true;
25926                 }
25927                 break;
25928             
25929             case this.kPunctuation:
25930                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
25931                     return true;
25932                 }
25933                 break;
25934             
25935             default:
25936                 return false;
25937         }
25938
25939     },
25940     // private
25941     IsLongEnough: function (pwd, size)
25942     {
25943         return !(pwd == null || isNaN(size) || pwd.length < size);
25944     },
25945     // private
25946     SpansEnoughCharacterSets: function (word, nb)
25947     {
25948         if (!this.IsLongEnough(word, nb))
25949         {
25950             return false;
25951         }
25952
25953         var characterSetChecks = new Array(
25954             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
25955             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
25956         );
25957         
25958         for (var index = 0; index < word.length; ++index) {
25959             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
25960                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
25961                     characterSetChecks[nCharSet].fResult = true;
25962                     break;
25963                 }
25964             }
25965         }
25966
25967         var nCharSets = 0;
25968         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
25969             if (characterSetChecks[nCharSet].fResult) {
25970                 ++nCharSets;
25971             }
25972         }
25973
25974         if (nCharSets < nb) {
25975             return false;
25976         }
25977         return true;
25978     },
25979     // private
25980     ClientSideStrongPassword: function (pwd)
25981     {
25982         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
25983     },
25984     // private
25985     ClientSideMediumPassword: function (pwd)
25986     {
25987         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
25988     },
25989     // private
25990     ClientSideWeakPassword: function (pwd)
25991     {
25992         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
25993     }
25994           
25995 });
25996 Roo.htmleditor = {};
25997  
25998 /**
25999  * @class Roo.htmleditor.Filter
26000  * Base Class for filtering htmleditor stuff. - do not use this directly - extend it.
26001  * @cfg {DomElement} node The node to iterate and filter
26002  * @cfg {boolean|String|Array} tag Tags to replace 
26003  * @constructor
26004  * Create a new Filter.
26005  * @param {Object} config Configuration options
26006  */
26007
26008
26009
26010 Roo.htmleditor.Filter = function(cfg) {
26011     Roo.apply(this.cfg);
26012     // this does not actually call walk as it's really just a abstract class
26013 }
26014
26015
26016 Roo.htmleditor.Filter.prototype = {
26017     
26018     node: false,
26019     
26020     tag: false,
26021
26022     // overrride to do replace comments.
26023     replaceComment : false,
26024     
26025     // overrride to do replace or do stuff with tags..
26026     replaceTag : false,
26027     
26028     walk : function(dom)
26029     {
26030         Roo.each( Array.from(dom.childNodes), function( e ) {
26031             switch(true) {
26032                 
26033                 case e.nodeType == 8 &&  this.replaceComment  !== false: // comment
26034                     this.replaceComment(e);
26035                     return;
26036                 
26037                 case e.nodeType != 1: //not a node.
26038                     return;
26039                 
26040                 case this.tag === true: // everything
26041                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1:
26042                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":":
26043                 case typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1: // array and it matches.
26044                 case typeof(this.tag) == 'string' && this.tag == e.tagName: // array and it matches.
26045                     if (this.replaceTag && false === this.replaceTag(e)) {
26046                         return;
26047                     }
26048                     if (e.hasChildNodes()) {
26049                         this.walk(e);
26050                     }
26051                     return;
26052                 
26053                 default:    // tags .. that do not match.
26054                     if (e.hasChildNodes()) {
26055                         this.walk(e);
26056                     }
26057             }
26058             
26059         }, this);
26060         
26061     },
26062     
26063     
26064     removeNodeKeepChildren : function( node)
26065     {
26066     
26067         ar = Array.from(node.childNodes);
26068         for (var i = 0; i < ar.length; i++) {
26069          
26070             node.removeChild(ar[i]);
26071             // what if we need to walk these???
26072             node.parentNode.insertBefore(ar[i], node);
26073            
26074         }
26075         node.parentNode.removeChild(node);
26076     }
26077 }; 
26078
26079 /**
26080  * @class Roo.htmleditor.FilterAttributes
26081  * clean attributes and  styles including http:// etc.. in attribute
26082  * @constructor
26083 * Run a new Attribute Filter
26084 * @param {Object} config Configuration options
26085  */
26086 Roo.htmleditor.FilterAttributes = function(cfg)
26087 {
26088     Roo.apply(this, cfg);
26089     this.attrib_black = this.attrib_black || [];
26090     this.attrib_white = this.attrib_white || [];
26091
26092     this.attrib_clean = this.attrib_clean || [];
26093     this.style_white = this.style_white || [];
26094     this.style_black = this.style_black || [];
26095     this.walk(cfg.node);
26096 }
26097
26098 Roo.extend(Roo.htmleditor.FilterAttributes, Roo.htmleditor.Filter,
26099 {
26100     tag: true, // all tags
26101     
26102     attrib_black : false, // array
26103     attrib_clean : false,
26104     attrib_white : false,
26105
26106     style_white : false,
26107     style_black : false,
26108      
26109      
26110     replaceTag : function(node)
26111     {
26112         if (!node.attributes || !node.attributes.length) {
26113             return true;
26114         }
26115         
26116         for (var i = node.attributes.length-1; i > -1 ; i--) {
26117             var a = node.attributes[i];
26118             //console.log(a);
26119             if (this.attrib_white.length && this.attrib_white.indexOf(a.name.toLowerCase()) < 0) {
26120                 node.removeAttribute(a.name);
26121                 continue;
26122             }
26123             
26124             
26125             
26126             if (a.name.toLowerCase().substr(0,2)=='on')  {
26127                 node.removeAttribute(a.name);
26128                 continue;
26129             }
26130             
26131             
26132             if (this.attrib_black.indexOf(a.name.toLowerCase()) > -1) {
26133                 node.removeAttribute(a.name);
26134                 continue;
26135             }
26136             if (this.attrib_clean.indexOf(a.name.toLowerCase()) > -1) {
26137                 this.cleanAttr(node,a.name,a.value); // fixme..
26138                 continue;
26139             }
26140             if (a.name == 'style') {
26141                 this.cleanStyle(node,a.name,a.value);
26142                 continue;
26143             }
26144             /// clean up MS crap..
26145             // tecnically this should be a list of valid class'es..
26146             
26147             
26148             if (a.name == 'class') {
26149                 if (a.value.match(/^Mso/)) {
26150                     node.removeAttribute('class');
26151                 }
26152                 
26153                 if (a.value.match(/^body$/)) {
26154                     node.removeAttribute('class');
26155                 }
26156                 continue;
26157             }
26158             
26159             
26160             // style cleanup!?
26161             // class cleanup?
26162             
26163         }
26164         return true; // clean children
26165     },
26166         
26167     cleanAttr: function(node, n,v)
26168     {
26169         
26170         if (v.match(/^\./) || v.match(/^\//)) {
26171             return;
26172         }
26173         if (v.match(/^(http|https):\/\//)
26174             || v.match(/^mailto:/) 
26175             || v.match(/^ftp:/)
26176             || v.match(/^data:/)
26177             ) {
26178             return;
26179         }
26180         if (v.match(/^#/)) {
26181             return;
26182         }
26183         if (v.match(/^\{/)) { // allow template editing.
26184             return;
26185         }
26186 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
26187         node.removeAttribute(n);
26188         
26189     },
26190     cleanStyle : function(node,  n,v)
26191     {
26192         if (v.match(/expression/)) { //XSS?? should we even bother..
26193             node.removeAttribute(n);
26194             return;
26195         }
26196         
26197         var parts = v.split(/;/);
26198         var clean = [];
26199         
26200         Roo.each(parts, function(p) {
26201             p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
26202             if (!p.length) {
26203                 return true;
26204             }
26205             var l = p.split(':').shift().replace(/\s+/g,'');
26206             l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
26207             
26208             if ( this.style_black.length && (this.style_black.indexOf(l) > -1 || this.style_black.indexOf(l.toLowerCase()) > -1)) {
26209                 return true;
26210             }
26211             //Roo.log()
26212             // only allow 'c whitelisted system attributes'
26213             if ( this.style_white.length &&  style_white.indexOf(l) < 0 && style_white.indexOf(l.toLowerCase()) < 0 ) {
26214                 return true;
26215             }
26216             
26217             
26218             clean.push(p);
26219             return true;
26220         },this);
26221         if (clean.length) { 
26222             node.setAttribute(n, clean.join(';'));
26223         } else {
26224             node.removeAttribute(n);
26225         }
26226         
26227     }
26228         
26229         
26230         
26231     
26232 });/**
26233  * @class Roo.htmleditor.FilterBlack
26234  * remove blacklisted elements.
26235  * @constructor
26236  * Run a new Blacklisted Filter
26237  * @param {Object} config Configuration options
26238  */
26239
26240 Roo.htmleditor.FilterBlack = function(cfg)
26241 {
26242     Roo.apply(this, cfg);
26243     this.walk(cfg.node);
26244 }
26245
26246 Roo.extend(Roo.htmleditor.FilterBlack, Roo.htmleditor.Filter,
26247 {
26248     tag : true, // all elements.
26249    
26250     replaceTag : function(n)
26251     {
26252         n.parentNode.removeChild(n);
26253     }
26254 });
26255 /**
26256  * @class Roo.htmleditor.FilterComment
26257  * remove comments.
26258  * @constructor
26259 * Run a new Comments Filter
26260 * @param {Object} config Configuration options
26261  */
26262 Roo.htmleditor.FilterComment = function(cfg)
26263 {
26264     this.walk(cfg.node);
26265 }
26266
26267 Roo.extend(Roo.htmleditor.FilterComment, Roo.htmleditor.Filter,
26268 {
26269   
26270     replaceComment : function(n)
26271     {
26272         n.parentNode.removeChild(n);
26273     }
26274 });/**
26275  * @class Roo.htmleditor.FilterKeepChildren
26276  * remove tags but keep children
26277  * @constructor
26278  * Run a new Keep Children Filter
26279  * @param {Object} config Configuration options
26280  */
26281
26282 Roo.htmleditor.FilterKeepChildren = function(cfg)
26283 {
26284     Roo.apply(this, cfg);
26285     if (this.tag === false) {
26286         return; // dont walk.. (you can use this to use this just to do a child removal on a single tag )
26287     }
26288     // hacky?
26289     if ((typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)) {
26290         this.cleanNamespace = true;
26291     }
26292         
26293     this.walk(cfg.node);
26294 }
26295
26296 Roo.extend(Roo.htmleditor.FilterKeepChildren, Roo.htmleditor.FilterBlack,
26297 {
26298     cleanNamespace : false, // should really be an option, rather than using ':' inside of this tag.
26299   
26300     replaceTag : function(node)
26301     {
26302         // walk children...
26303         //Roo.log(node.tagName);
26304         var ar = Array.from(node.childNodes);
26305         //remove first..
26306         
26307         for (var i = 0; i < ar.length; i++) {
26308             var e = ar[i];
26309             if (e.nodeType == 1) {
26310                 if (
26311                     (typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1)
26312                     || // array and it matches
26313                     (typeof(this.tag) == 'string' && this.tag == e.tagName)
26314                     ||
26315                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)
26316                     ||
26317                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":")
26318                 ) {
26319                     this.replaceTag(ar[i]); // child is blacklisted as well...
26320                     continue;
26321                 }
26322             }
26323         }  
26324         ar = Array.from(node.childNodes);
26325         for (var i = 0; i < ar.length; i++) {
26326          
26327             node.removeChild(ar[i]);
26328             // what if we need to walk these???
26329             node.parentNode.insertBefore(ar[i], node);
26330             if (this.tag !== false) {
26331                 this.walk(ar[i]);
26332                 
26333             }
26334         }
26335         //Roo.log("REMOVE:" + node.tagName);
26336         node.parentNode.removeChild(node);
26337         return false; // don't walk children
26338         
26339         
26340     }
26341 });/**
26342  * @class Roo.htmleditor.FilterParagraph
26343  * paragraphs cause a nightmare for shared content - this filter is designed to be called ? at various points when editing
26344  * like on 'push' to remove the <p> tags and replace them with line breaks.
26345  * @constructor
26346  * Run a new Paragraph Filter
26347  * @param {Object} config Configuration options
26348  */
26349
26350 Roo.htmleditor.FilterParagraph = function(cfg)
26351 {
26352     // no need to apply config.
26353     this.walk(cfg.node);
26354 }
26355
26356 Roo.extend(Roo.htmleditor.FilterParagraph, Roo.htmleditor.Filter,
26357 {
26358     
26359      
26360     tag : 'P',
26361     
26362      
26363     replaceTag : function(node)
26364     {
26365         
26366         if (node.childNodes.length == 1 &&
26367             node.childNodes[0].nodeType == 3 &&
26368             node.childNodes[0].textContent.trim().length < 1
26369             ) {
26370             // remove and replace with '<BR>';
26371             node.parentNode.replaceChild(node.ownerDocument.createElement('BR'),node);
26372             return false; // no need to walk..
26373         }
26374         var ar = Array.from(node.childNodes);
26375         for (var i = 0; i < ar.length; i++) {
26376             node.removeChild(ar[i]);
26377             // what if we need to walk these???
26378             node.parentNode.insertBefore(ar[i], node);
26379         }
26380         // now what about this?
26381         // <p> &nbsp; </p>
26382         
26383         // double BR.
26384         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
26385         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
26386         node.parentNode.removeChild(node);
26387         
26388         return false;
26389
26390     }
26391     
26392 });/**
26393  * @class Roo.htmleditor.FilterSpan
26394  * filter span's with no attributes out..
26395  * @constructor
26396  * Run a new Span Filter
26397  * @param {Object} config Configuration options
26398  */
26399
26400 Roo.htmleditor.FilterSpan = function(cfg)
26401 {
26402     // no need to apply config.
26403     this.walk(cfg.node);
26404 }
26405
26406 Roo.extend(Roo.htmleditor.FilterSpan, Roo.htmleditor.FilterKeepChildren,
26407 {
26408      
26409     tag : 'SPAN',
26410      
26411  
26412     replaceTag : function(node)
26413     {
26414         if (node.attributes && node.attributes.length > 0) {
26415             return true; // walk if there are any.
26416         }
26417         Roo.htmleditor.FilterKeepChildren.prototype.replaceTag.call(this, node);
26418         return false;
26419      
26420     }
26421     
26422 });/**
26423  * @class Roo.htmleditor.FilterTableWidth
26424   try and remove table width data - as that frequently messes up other stuff.
26425  * 
26426  *      was cleanTableWidths.
26427  *
26428  * Quite often pasting from word etc.. results in tables with column and widths.
26429  * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
26430  *
26431  * @constructor
26432  * Run a new Table Filter
26433  * @param {Object} config Configuration options
26434  */
26435
26436 Roo.htmleditor.FilterTableWidth = function(cfg)
26437 {
26438     // no need to apply config.
26439     this.tag = ['TABLE', 'TD', 'TR', 'TH', 'THEAD', 'TBODY' ];
26440     this.walk(cfg.node);
26441 }
26442
26443 Roo.extend(Roo.htmleditor.FilterTableWidth, Roo.htmleditor.Filter,
26444 {
26445      
26446      
26447     
26448     replaceTag: function(node) {
26449         
26450         
26451       
26452         if (node.hasAttribute('width')) {
26453             node.removeAttribute('width');
26454         }
26455         
26456          
26457         if (node.hasAttribute("style")) {
26458             // pretty basic...
26459             
26460             var styles = node.getAttribute("style").split(";");
26461             var nstyle = [];
26462             Roo.each(styles, function(s) {
26463                 if (!s.match(/:/)) {
26464                     return;
26465                 }
26466                 var kv = s.split(":");
26467                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
26468                     return;
26469                 }
26470                 // what ever is left... we allow.
26471                 nstyle.push(s);
26472             });
26473             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
26474             if (!nstyle.length) {
26475                 node.removeAttribute('style');
26476             }
26477         }
26478         
26479         return true; // continue doing children..
26480     }
26481 });/**
26482  * @class Roo.htmleditor.FilterWord
26483  * try and clean up all the mess that Word generates.
26484  * 
26485  * This is the 'nice version' - see 'Heavy' that white lists a very short list of elements, and multi-filters 
26486  
26487  * @constructor
26488  * Run a new Span Filter
26489  * @param {Object} config Configuration options
26490  */
26491
26492 Roo.htmleditor.FilterWord = function(cfg)
26493 {
26494     // no need to apply config.
26495     this.replaceDocBullets(cfg.node);
26496     
26497     this.replaceAname(cfg.node);
26498     // this is disabled as the removal is done by other filters;
26499    // this.walk(cfg.node);
26500     
26501     
26502 }
26503
26504 Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
26505 {
26506     tag: true,
26507      
26508     
26509     /**
26510      * Clean up MS wordisms...
26511      */
26512     replaceTag : function(node)
26513     {
26514          
26515         // no idea what this does - span with text, replaceds with just text.
26516         if(
26517                 node.nodeName == 'SPAN' &&
26518                 !node.hasAttributes() &&
26519                 node.childNodes.length == 1 &&
26520                 node.firstChild.nodeName == "#text"  
26521         ) {
26522             var textNode = node.firstChild;
26523             node.removeChild(textNode);
26524             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
26525                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
26526             }
26527             node.parentNode.insertBefore(textNode, node);
26528             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
26529                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
26530             }
26531             
26532             node.parentNode.removeChild(node);
26533             return false; // dont do chidren - we have remove our node - so no need to do chdhilren?
26534         }
26535         
26536    
26537         
26538         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
26539             node.parentNode.removeChild(node);
26540             return false; // dont do chidlren
26541         }
26542         //Roo.log(node.tagName);
26543         // remove - but keep children..
26544         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
26545             //Roo.log('-- removed');
26546             while (node.childNodes.length) {
26547                 var cn = node.childNodes[0];
26548                 node.removeChild(cn);
26549                 node.parentNode.insertBefore(cn, node);
26550                 // move node to parent - and clean it..
26551                 if (cn.nodeType == 1) {
26552                     this.replaceTag(cn);
26553                 }
26554                 
26555             }
26556             node.parentNode.removeChild(node);
26557             /// no need to iterate chidlren = it's got none..
26558             //this.iterateChildren(node, this.cleanWord);
26559             return false; // no need to iterate children.
26560         }
26561         // clean styles
26562         if (node.className.length) {
26563             
26564             var cn = node.className.split(/\W+/);
26565             var cna = [];
26566             Roo.each(cn, function(cls) {
26567                 if (cls.match(/Mso[a-zA-Z]+/)) {
26568                     return;
26569                 }
26570                 cna.push(cls);
26571             });
26572             node.className = cna.length ? cna.join(' ') : '';
26573             if (!cna.length) {
26574                 node.removeAttribute("class");
26575             }
26576         }
26577         
26578         if (node.hasAttribute("lang")) {
26579             node.removeAttribute("lang");
26580         }
26581         
26582         if (node.hasAttribute("style")) {
26583             
26584             var styles = node.getAttribute("style").split(";");
26585             var nstyle = [];
26586             Roo.each(styles, function(s) {
26587                 if (!s.match(/:/)) {
26588                     return;
26589                 }
26590                 var kv = s.split(":");
26591                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
26592                     return;
26593                 }
26594                 // what ever is left... we allow.
26595                 nstyle.push(s);
26596             });
26597             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
26598             if (!nstyle.length) {
26599                 node.removeAttribute('style');
26600             }
26601         }
26602         return true; // do children
26603         
26604         
26605         
26606     },
26607     
26608     styleToObject: function(node)
26609     {
26610         var styles = (node.getAttribute("style") || '').split(";");
26611         var ret = {};
26612         Roo.each(styles, function(s) {
26613             if (!s.match(/:/)) {
26614                 return;
26615             }
26616             var kv = s.split(":");
26617              
26618             // what ever is left... we allow.
26619             ret[kv[0].trim()] = kv[1];
26620         });
26621         return ret;
26622     },
26623     
26624     
26625     replaceAname : function (doc)
26626     {
26627         // replace all the a/name without..
26628         var aa = Array.from(doc.getElementsByTagName('a'));
26629         for (var i = 0; i  < aa.length; i++) {
26630             var a = aa[i];
26631             if (a.hasAttribute("name")) {
26632                 a.removeAttribute("name");
26633             }
26634             if (a.hasAttribute("href")) {
26635                 continue;
26636             }
26637             // reparent children.
26638             this.removeNodeKeepChildren(a);
26639             
26640         }
26641         
26642         
26643         
26644     },
26645
26646     
26647     
26648     replaceDocBullets : function(doc)
26649     {
26650         // this is a bit odd - but it appears some indents use ql-indent-1
26651          //Roo.log(doc.innerHTML);
26652         
26653         var listpara = Array.from(doc.getElementsByClassName('MsoListParagraphCxSpFirst'));
26654         for( var i = 0; i < listpara.length; i ++) {
26655             listpara[i].className = "MsoListParagraph";
26656         }
26657         
26658         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpMiddle'));
26659         for( var i = 0; i < listpara.length; i ++) {
26660             listpara[i].className = "MsoListParagraph";
26661         }
26662         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpLast'));
26663         for( var i = 0; i < listpara.length; i ++) {
26664             listpara[i].className = "MsoListParagraph";
26665         }
26666         listpara =  Array.from(doc.getElementsByClassName('ql-indent-1'));
26667         for( var i = 0; i < listpara.length; i ++) {
26668             listpara[i].className = "MsoListParagraph";
26669         }
26670         
26671         // this is a bit hacky - we had one word document where h2 had a miso-list attribute.
26672         var htwo =  Array.from(doc.getElementsByTagName('h2'));
26673         for( var i = 0; i < htwo.length; i ++) {
26674             if (htwo[i].hasAttribute('style') && htwo[i].getAttribute('style').match(/mso-list:/)) {
26675                 htwo[i].className = "MsoListParagraph";
26676             }
26677         }
26678         listpara =  Array.from(doc.getElementsByClassName('MsoNormal'));
26679         for( var i = 0; i < listpara.length; i ++) {
26680             if (listpara[i].hasAttribute('style') && listpara[i].getAttribute('style').match(/mso-list:/)) {
26681                 listpara[i].className = "MsoListParagraph";
26682             } else {
26683                 listpara[i].className = "MsoNormalx";
26684             }
26685         }
26686        
26687         listpara = doc.getElementsByClassName('MsoListParagraph');
26688         // Roo.log(doc.innerHTML);
26689         
26690         
26691         
26692         while(listpara.length) {
26693             
26694             this.replaceDocBullet(listpara.item(0));
26695         }
26696       
26697     },
26698     
26699      
26700     
26701     replaceDocBullet : function(p)
26702     {
26703         // gather all the siblings.
26704         var ns = p,
26705             parent = p.parentNode,
26706             doc = parent.ownerDocument,
26707             items = [];
26708             
26709         var listtype = 'ul';   
26710         while (ns) {
26711             if (ns.nodeType != 1) {
26712                 ns = ns.nextSibling;
26713                 continue;
26714             }
26715             if (!ns.className.match(/(MsoListParagraph|ql-indent-1)/i)) {
26716                 break;
26717             }
26718             var spans = ns.getElementsByTagName('span');
26719             if (ns.hasAttribute('style') && ns.getAttribute('style').match(/mso-list/)) {
26720                 items.push(ns);
26721                 ns = ns.nextSibling;
26722                 has_list = true;
26723                 if (spans.length && spans[0].hasAttribute('style')) {
26724                     var  style = this.styleToObject(spans[0]);
26725                     if (typeof(style['font-family']) != 'undefined' && !style['font-family'].match(/Symbol/)) {
26726                         listtype = 'ol';
26727                     }
26728                 }
26729                 
26730                 continue;
26731             }
26732             var spans = ns.getElementsByTagName('span');
26733             if (!spans.length) {
26734                 break;
26735             }
26736             var has_list  = false;
26737             for(var i = 0; i < spans.length; i++) {
26738                 if (spans[i].hasAttribute('style') && spans[i].getAttribute('style').match(/mso-list/)) {
26739                     has_list = true;
26740                     break;
26741                 }
26742             }
26743             if (!has_list) {
26744                 break;
26745             }
26746             items.push(ns);
26747             ns = ns.nextSibling;
26748             
26749             
26750         }
26751         if (!items.length) {
26752             ns.className = "";
26753             return;
26754         }
26755         
26756         var ul = parent.ownerDocument.createElement(listtype); // what about number lists...
26757         parent.insertBefore(ul, p);
26758         var lvl = 0;
26759         var stack = [ ul ];
26760         var last_li = false;
26761         
26762         var margin_to_depth = {};
26763         max_margins = -1;
26764         
26765         items.forEach(function(n, ipos) {
26766             //Roo.log("got innertHMLT=" + n.innerHTML);
26767             
26768             var spans = n.getElementsByTagName('span');
26769             if (!spans.length) {
26770                 //Roo.log("No spans found");
26771                  
26772                 parent.removeChild(n);
26773                 
26774                 
26775                 return; // skip it...
26776             }
26777            
26778                 
26779             var num = 1;
26780             var style = {};
26781             for(var i = 0; i < spans.length; i++) {
26782             
26783                 style = this.styleToObject(spans[i]);
26784                 if (typeof(style['mso-list']) == 'undefined') {
26785                     continue;
26786                 }
26787                 if (listtype == 'ol') {
26788                    num = spans[i].innerText.replace(/[^0-9]+]/g,'')  * 1;
26789                 }
26790                 spans[i].parentNode.removeChild(spans[i]); // remove the fake bullet.
26791                 break;
26792             }
26793             //Roo.log("NOW GOT innertHMLT=" + n.innerHTML);
26794             style = this.styleToObject(n); // mo-list is from the parent node.
26795             if (typeof(style['mso-list']) == 'undefined') {
26796                 //Roo.log("parent is missing level");
26797                   
26798                 parent.removeChild(n);
26799                  
26800                 return;
26801             }
26802             
26803             var margin = style['margin-left'];
26804             if (typeof(margin_to_depth[margin]) == 'undefined') {
26805                 max_margins++;
26806                 margin_to_depth[margin] = max_margins;
26807             }
26808             nlvl = margin_to_depth[margin] ;
26809              
26810             if (nlvl > lvl) {
26811                 //new indent
26812                 var nul = doc.createElement(listtype); // what about number lists...
26813                 if (!last_li) {
26814                     last_li = doc.createElement('li');
26815                     stack[lvl].appendChild(last_li);
26816                 }
26817                 last_li.appendChild(nul);
26818                 stack[nlvl] = nul;
26819                 
26820             }
26821             lvl = nlvl;
26822             
26823             // not starting at 1..
26824             if (!stack[nlvl].hasAttribute("start") && listtype == "ol") {
26825                 stack[nlvl].setAttribute("start", num);
26826             }
26827             
26828             var nli = stack[nlvl].appendChild(doc.createElement('li'));
26829             last_li = nli;
26830             nli.innerHTML = n.innerHTML;
26831             //Roo.log("innerHTML = " + n.innerHTML);
26832             parent.removeChild(n);
26833             
26834              
26835              
26836             
26837         },this);
26838         
26839         
26840         
26841         
26842     }
26843     
26844     
26845     
26846 });
26847 /**
26848  * @class Roo.htmleditor.FilterStyleToTag
26849  * part of the word stuff... - certain 'styles' should be converted to tags.
26850  * eg.
26851  *   font-weight: bold -> bold
26852  *   ?? super / subscrit etc..
26853  * 
26854  * @constructor
26855 * Run a new style to tag filter.
26856 * @param {Object} config Configuration options
26857  */
26858 Roo.htmleditor.FilterStyleToTag = function(cfg)
26859 {
26860     
26861     this.tags = {
26862         B  : [ 'fontWeight' , 'bold'],
26863         I :  [ 'fontStyle' , 'italic'],
26864         //pre :  [ 'font-style' , 'italic'],
26865         // h1.. h6 ?? font-size?
26866         SUP : [ 'verticalAlign' , 'super' ],
26867         SUB : [ 'verticalAlign' , 'sub' ]
26868         
26869         
26870     };
26871     
26872     Roo.apply(this, cfg);
26873      
26874     
26875     this.walk(cfg.node);
26876     
26877     
26878     
26879 }
26880
26881
26882 Roo.extend(Roo.htmleditor.FilterStyleToTag, Roo.htmleditor.Filter,
26883 {
26884     tag: true, // all tags
26885     
26886     tags : false,
26887     
26888     
26889     replaceTag : function(node)
26890     {
26891         
26892         
26893         if (node.getAttribute("style") === null) {
26894             return true;
26895         }
26896         var inject = [];
26897         for (var k in this.tags) {
26898             if (node.style[this.tags[k][0]] == this.tags[k][1]) {
26899                 inject.push(k);
26900                 node.style.removeProperty(this.tags[k][0]);
26901             }
26902         }
26903         if (!inject.length) {
26904             return true; 
26905         }
26906         var cn = Array.from(node.childNodes);
26907         var nn = node;
26908         Roo.each(inject, function(t) {
26909             var nc = node.ownerDocument.createElement(t);
26910             nn.appendChild(nc);
26911             nn = nc;
26912         });
26913         for(var i = 0;i < cn.length;cn++) {
26914             node.removeChild(cn[i]);
26915             nn.appendChild(cn[i]);
26916         }
26917         return true /// iterate thru
26918     }
26919     
26920 })/**
26921  * @class Roo.htmleditor.FilterLongBr
26922  * BR/BR/BR - keep a maximum of 2...
26923  * @constructor
26924  * Run a new Long BR Filter
26925  * @param {Object} config Configuration options
26926  */
26927
26928 Roo.htmleditor.FilterLongBr = function(cfg)
26929 {
26930     // no need to apply config.
26931     this.walk(cfg.node);
26932 }
26933
26934 Roo.extend(Roo.htmleditor.FilterLongBr, Roo.htmleditor.Filter,
26935 {
26936     
26937      
26938     tag : 'BR',
26939     
26940      
26941     replaceTag : function(node)
26942     {
26943         
26944         var ps = node.nextSibling;
26945         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
26946             ps = ps.nextSibling;
26947         }
26948         
26949         if (!ps &&  [ 'TD', 'TH', 'LI', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(node.parentNode.tagName) > -1) { 
26950             node.parentNode.removeChild(node); // remove last BR inside one fo these tags
26951             return false;
26952         }
26953         
26954         if (!ps || ps.nodeType != 1) {
26955             return false;
26956         }
26957         
26958         if (!ps || ps.tagName != 'BR') {
26959            
26960             return false;
26961         }
26962         
26963         
26964         
26965         
26966         
26967         if (!node.previousSibling) {
26968             return false;
26969         }
26970         var ps = node.previousSibling;
26971         
26972         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
26973             ps = ps.previousSibling;
26974         }
26975         if (!ps || ps.nodeType != 1) {
26976             return false;
26977         }
26978         // if header or BR before.. then it's a candidate for removal.. - as we only want '2' of these..
26979         if (!ps || [ 'BR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(ps.tagName) < 0) {
26980             return false;
26981         }
26982         
26983         node.parentNode.removeChild(node); // remove me...
26984         
26985         return false; // no need to do children
26986
26987     }
26988     
26989 }); 
26990
26991 /**
26992  * @class Roo.htmleditor.FilterBlock
26993  * removes id / data-block and contenteditable that are associated with blocks
26994  * usage should be done on a cloned copy of the dom
26995  * @constructor
26996 * Run a new Attribute Filter { node : xxxx }}
26997 * @param {Object} config Configuration options
26998  */
26999 Roo.htmleditor.FilterBlock = function(cfg)
27000 {
27001     Roo.apply(this, cfg);
27002     var qa = cfg.node.querySelectorAll;
27003     this.removeAttributes('data-block');
27004     this.removeAttributes('contenteditable');
27005     this.removeAttributes('id');
27006     
27007 }
27008
27009 Roo.apply(Roo.htmleditor.FilterBlock.prototype,
27010 {
27011     node: true, // all tags
27012      
27013      
27014     removeAttributes : function(attr)
27015     {
27016         var ar = this.node.querySelectorAll('*[' + attr + ']');
27017         for (var i =0;i<ar.length;i++) {
27018             ar[i].removeAttribute(attr);
27019         }
27020     }
27021         
27022         
27023         
27024     
27025 });
27026 /**
27027  * @class Roo.htmleditor.KeyEnter
27028  * Handle Enter press..
27029  * @cfg {Roo.HtmlEditorCore} core the editor.
27030  * @constructor
27031  * Create a new Filter.
27032  * @param {Object} config Configuration options
27033  */
27034
27035
27036
27037
27038
27039 Roo.htmleditor.KeyEnter = function(cfg) {
27040     Roo.apply(this, cfg);
27041     // this does not actually call walk as it's really just a abstract class
27042  
27043     Roo.get(this.core.doc.body).on('keypress', this.keypress, this);
27044 }
27045
27046 //Roo.htmleditor.KeyEnter.i = 0;
27047
27048
27049 Roo.htmleditor.KeyEnter.prototype = {
27050     
27051     core : false,
27052     
27053     keypress : function(e)
27054     {
27055         if (e.charCode != 13 && e.charCode != 10) {
27056             Roo.log([e.charCode,e]);
27057             return true;
27058         }
27059         e.preventDefault();
27060         // https://stackoverflow.com/questions/18552336/prevent-contenteditable-adding-div-on-enter-chrome
27061         var doc = this.core.doc;
27062           //add a new line
27063        
27064     
27065         var sel = this.core.getSelection();
27066         var range = sel.getRangeAt(0);
27067         var n = range.commonAncestorContainer;
27068         var pc = range.closest([ 'ol', 'ul']);
27069         var pli = range.closest('li');
27070         if (!pc || e.ctrlKey) {
27071             // on it list, or ctrl pressed.
27072             if (!e.ctrlKey) {
27073                 sel.insertNode('br', 'after'); 
27074             } else {
27075                 // only do this if we have ctrl key..
27076                 var br = doc.createElement('br');
27077                 br.className = 'clear';
27078                 br.setAttribute('style', 'clear: both');
27079                 sel.insertNode(br, 'after'); 
27080             }
27081             
27082          
27083             this.core.undoManager.addEvent();
27084             this.core.fireEditorEvent(e);
27085             return false;
27086         }
27087         
27088         // deal with <li> insetion
27089         if (pli.innerText.trim() == '' &&
27090             pli.previousSibling &&
27091             pli.previousSibling.nodeName == 'LI' &&
27092             pli.previousSibling.innerText.trim() ==  '') {
27093             pli.parentNode.removeChild(pli.previousSibling);
27094             sel.cursorAfter(pc);
27095             this.core.undoManager.addEvent();
27096             this.core.fireEditorEvent(e);
27097             return false;
27098         }
27099     
27100         var li = doc.createElement('LI');
27101         li.innerHTML = '&nbsp;';
27102         if (!pli || !pli.firstSibling) {
27103             pc.appendChild(li);
27104         } else {
27105             pli.parentNode.insertBefore(li, pli.firstSibling);
27106         }
27107         sel.cursorText (li.firstChild);
27108       
27109         this.core.undoManager.addEvent();
27110         this.core.fireEditorEvent(e);
27111
27112         return false;
27113         
27114     
27115         
27116         
27117          
27118     }
27119 };
27120      
27121 /**
27122  * @class Roo.htmleditor.Block
27123  * Base class for html editor blocks - do not use it directly .. extend it..
27124  * @cfg {DomElement} node The node to apply stuff to.
27125  * @cfg {String} friendly_name the name that appears in the context bar about this block
27126  * @cfg {Object} Context menu - see Roo.form.HtmlEditor.ToolbarContext
27127  
27128  * @constructor
27129  * Create a new Filter.
27130  * @param {Object} config Configuration options
27131  */
27132
27133 Roo.htmleditor.Block  = function(cfg)
27134 {
27135     // do nothing .. should not be called really.
27136 }
27137 /**
27138  * factory method to get the block from an element (using cache if necessary)
27139  * @static
27140  * @param {HtmlElement} the dom element
27141  */
27142 Roo.htmleditor.Block.factory = function(node)
27143 {
27144     var cc = Roo.htmleditor.Block.cache;
27145     var id = Roo.get(node).id;
27146     if (typeof(cc[id]) != 'undefined' && (!cc[id].node || cc[id].node.closest('body'))) {
27147         Roo.htmleditor.Block.cache[id].readElement(node);
27148         return Roo.htmleditor.Block.cache[id];
27149     }
27150     var db  = node.getAttribute('data-block');
27151     if (!db) {
27152         db = node.nodeName.toLowerCase().toUpperCaseFirst();
27153     }
27154     var cls = Roo.htmleditor['Block' + db];
27155     if (typeof(cls) == 'undefined') {
27156         //Roo.log(node.getAttribute('data-block'));
27157         Roo.log("OOps missing block : " + 'Block' + db);
27158         return false;
27159     }
27160     Roo.htmleditor.Block.cache[id] = new cls({ node: node });
27161     return Roo.htmleditor.Block.cache[id];  /// should trigger update element
27162 };
27163
27164 /**
27165  * initalize all Elements from content that are 'blockable'
27166  * @static
27167  * @param the body element
27168  */
27169 Roo.htmleditor.Block.initAll = function(body, type)
27170 {
27171     if (typeof(type) == 'undefined') {
27172         var ia = Roo.htmleditor.Block.initAll;
27173         ia(body,'table');
27174         ia(body,'td');
27175         ia(body,'figure');
27176         return;
27177     }
27178     Roo.each(Roo.get(body).query(type), function(e) {
27179         Roo.htmleditor.Block.factory(e);    
27180     },this);
27181 };
27182 // question goes here... do we need to clear out this cache sometimes?
27183 // or show we make it relivant to the htmleditor.
27184 Roo.htmleditor.Block.cache = {};
27185
27186 Roo.htmleditor.Block.prototype = {
27187     
27188     node : false,
27189     
27190      // used by context menu
27191     friendly_name : 'Based Block',
27192     
27193     // text for button to delete this element
27194     deleteTitle : false,
27195     
27196     context : false,
27197     /**
27198      * Update a node with values from this object
27199      * @param {DomElement} node
27200      */
27201     updateElement : function(node)
27202     {
27203         Roo.DomHelper.update(node === undefined ? this.node : node, this.toObject());
27204     },
27205      /**
27206      * convert to plain HTML for calling insertAtCursor..
27207      */
27208     toHTML : function()
27209     {
27210         return Roo.DomHelper.markup(this.toObject());
27211     },
27212     /**
27213      * used by readEleemnt to extract data from a node
27214      * may need improving as it's pretty basic
27215      
27216      * @param {DomElement} node
27217      * @param {String} tag - tag to find, eg. IMG ?? might be better to use DomQuery ?
27218      * @param {String} attribute (use html - for contents, style for using next param as style, or false to return the node)
27219      * @param {String} style the style property - eg. text-align
27220      */
27221     getVal : function(node, tag, attr, style)
27222     {
27223         var n = node;
27224         if (tag !== true && n.tagName != tag.toUpperCase()) {
27225             // in theory we could do figure[3] << 3rd figure? or some more complex search..?
27226             // but kiss for now.
27227             n = node.getElementsByTagName(tag).item(0);
27228         }
27229         if (!n) {
27230             return '';
27231         }
27232         if (attr === false) {
27233             return n;
27234         }
27235         if (attr == 'html') {
27236             return n.innerHTML;
27237         }
27238         if (attr == 'style') {
27239             return n.style[style]; 
27240         }
27241         
27242         return n.hasAttribute(attr) ? n.getAttribute(attr) : '';
27243             
27244     },
27245     /**
27246      * create a DomHelper friendly object - for use with 
27247      * Roo.DomHelper.markup / overwrite / etc..
27248      * (override this)
27249      */
27250     toObject : function()
27251     {
27252         return {};
27253     },
27254       /**
27255      * Read a node that has a 'data-block' property - and extract the values from it.
27256      * @param {DomElement} node - the node
27257      */
27258     readElement : function(node)
27259     {
27260         
27261     } 
27262     
27263     
27264 };
27265
27266  
27267
27268 /**
27269  * @class Roo.htmleditor.BlockFigure
27270  * Block that has an image and a figcaption
27271  * @cfg {String} image_src the url for the image
27272  * @cfg {String} align (left|right) alignment for the block default left
27273  * @cfg {String} caption the text to appear below  (and in the alt tag)
27274  * @cfg {String} caption_display (block|none) display or not the caption
27275  * @cfg {String|number} image_width the width of the image number or %?
27276  * @cfg {String|number} image_height the height of the image number or %?
27277  * 
27278  * @constructor
27279  * Create a new Filter.
27280  * @param {Object} config Configuration options
27281  */
27282
27283 Roo.htmleditor.BlockFigure = function(cfg)
27284 {
27285     if (cfg.node) {
27286         this.readElement(cfg.node);
27287         this.updateElement(cfg.node);
27288     }
27289     Roo.apply(this, cfg);
27290 }
27291 Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, {
27292  
27293     
27294     // setable values.
27295     image_src: '',
27296     align: 'center',
27297     caption : '',
27298     caption_display : 'block',
27299     width : '100%',
27300     cls : '',
27301     href: '',
27302     video_url : '',
27303     
27304     // margin: '2%', not used
27305     
27306     text_align: 'left', //   (left|right) alignment for the text caption default left. - not used at present
27307
27308     
27309     // used by context menu
27310     friendly_name : 'Image with caption',
27311     deleteTitle : "Delete Image and Caption",
27312     
27313     contextMenu : function(toolbar)
27314     {
27315         
27316         var block = function() {
27317             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
27318         };
27319         
27320         
27321         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
27322         
27323         var syncValue = toolbar.editorcore.syncValue;
27324         
27325         var fields = {};
27326         
27327         return [
27328              {
27329                 xtype : 'TextItem',
27330                 text : "Source: ",
27331                 xns : rooui.Toolbar  //Boostrap?
27332             },
27333             {
27334                 xtype : 'Button',
27335                 text: 'Change Image URL',
27336                  
27337                 listeners : {
27338                     click: function (btn, state)
27339                     {
27340                         var b = block();
27341                         
27342                         Roo.MessageBox.show({
27343                             title : "Image Source URL",
27344                             msg : "Enter the url for the image",
27345                             buttons: Roo.MessageBox.OKCANCEL,
27346                             fn: function(btn, val){
27347                                 if (btn != 'ok') {
27348                                     return;
27349                                 }
27350                                 b.image_src = val;
27351                                 b.updateElement();
27352                                 syncValue();
27353                                 toolbar.editorcore.onEditorEvent();
27354                             },
27355                             minWidth:250,
27356                             prompt:true,
27357                             //multiline: multiline,
27358                             modal : true,
27359                             value : b.image_src
27360                         });
27361                     }
27362                 },
27363                 xns : rooui.Toolbar
27364             },
27365          
27366             {
27367                 xtype : 'Button',
27368                 text: 'Change Link URL',
27369                  
27370                 listeners : {
27371                     click: function (btn, state)
27372                     {
27373                         var b = block();
27374                         
27375                         Roo.MessageBox.show({
27376                             title : "Link URL",
27377                             msg : "Enter the url for the link - leave blank to have no link",
27378                             buttons: Roo.MessageBox.OKCANCEL,
27379                             fn: function(btn, val){
27380                                 if (btn != 'ok') {
27381                                     return;
27382                                 }
27383                                 b.href = val;
27384                                 b.updateElement();
27385                                 syncValue();
27386                                 toolbar.editorcore.onEditorEvent();
27387                             },
27388                             minWidth:250,
27389                             prompt:true,
27390                             //multiline: multiline,
27391                             modal : true,
27392                             value : b.href
27393                         });
27394                     }
27395                 },
27396                 xns : rooui.Toolbar
27397             },
27398             {
27399                 xtype : 'Button',
27400                 text: 'Show Video URL',
27401                  
27402                 listeners : {
27403                     click: function (btn, state)
27404                     {
27405                         Roo.MessageBox.alert("Video URL",
27406                             block().video_url == '' ? 'This image is not linked ot a video' :
27407                                 'The image is linked to: <a target="_new" href="' + block().video_url + '">' + block().video_url + '</a>');
27408                     }
27409                 },
27410                 xns : rooui.Toolbar
27411             },
27412             
27413             
27414             {
27415                 xtype : 'TextItem',
27416                 text : "Width: ",
27417                 xns : rooui.Toolbar  //Boostrap?
27418             },
27419             {
27420                 xtype : 'ComboBox',
27421                 allowBlank : false,
27422                 displayField : 'val',
27423                 editable : true,
27424                 listWidth : 100,
27425                 triggerAction : 'all',
27426                 typeAhead : true,
27427                 valueField : 'val',
27428                 width : 70,
27429                 name : 'width',
27430                 listeners : {
27431                     select : function (combo, r, index)
27432                     {
27433                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
27434                         var b = block();
27435                         b.width = r.get('val');
27436                         b.updateElement();
27437                         syncValue();
27438                         toolbar.editorcore.onEditorEvent();
27439                     }
27440                 },
27441                 xns : rooui.form,
27442                 store : {
27443                     xtype : 'SimpleStore',
27444                     data : [
27445                         ['100%'],
27446                         ['80%'],
27447                         ['50%'],
27448                         ['20%'],
27449                         ['10%']
27450                     ],
27451                     fields : [ 'val'],
27452                     xns : Roo.data
27453                 }
27454             },
27455             {
27456                 xtype : 'TextItem',
27457                 text : "Align: ",
27458                 xns : rooui.Toolbar  //Boostrap?
27459             },
27460             {
27461                 xtype : 'ComboBox',
27462                 allowBlank : false,
27463                 displayField : 'val',
27464                 editable : true,
27465                 listWidth : 100,
27466                 triggerAction : 'all',
27467                 typeAhead : true,
27468                 valueField : 'val',
27469                 width : 70,
27470                 name : 'align',
27471                 listeners : {
27472                     select : function (combo, r, index)
27473                     {
27474                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
27475                         var b = block();
27476                         b.align = r.get('val');
27477                         b.updateElement();
27478                         syncValue();
27479                         toolbar.editorcore.onEditorEvent();
27480                     }
27481                 },
27482                 xns : rooui.form,
27483                 store : {
27484                     xtype : 'SimpleStore',
27485                     data : [
27486                         ['left'],
27487                         ['right'],
27488                         ['center']
27489                     ],
27490                     fields : [ 'val'],
27491                     xns : Roo.data
27492                 }
27493             },
27494             
27495             
27496             {
27497                 xtype : 'Button',
27498                 text: 'Hide Caption',
27499                 name : 'caption_display',
27500                 pressed : false,
27501                 enableToggle : true,
27502                 setValue : function(v) {
27503                     // this trigger toggle.
27504                      
27505                     this.setText(v ? "Hide Caption" : "Show Caption");
27506                     this.setPressed(v != 'block');
27507                 },
27508                 listeners : {
27509                     toggle: function (btn, state)
27510                     {
27511                         var b  = block();
27512                         b.caption_display = b.caption_display == 'block' ? 'none' : 'block';
27513                         this.setText(b.caption_display == 'block' ? "Hide Caption" : "Show Caption");
27514                         b.updateElement();
27515                         syncValue();
27516                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
27517                         toolbar.editorcore.onEditorEvent();
27518                     }
27519                 },
27520                 xns : rooui.Toolbar
27521             }
27522         ];
27523         
27524     },
27525     /**
27526      * create a DomHelper friendly object - for use with
27527      * Roo.DomHelper.markup / overwrite / etc..
27528      */
27529     toObject : function()
27530     {
27531         var d = document.createElement('div');
27532         d.innerHTML = this.caption;
27533         
27534         var m = this.width != '100%' && this.align == 'center' ? '0 auto' : 0; 
27535         
27536         var iw = this.align == 'center' ? this.width : '100%';
27537         var img =   {
27538             tag : 'img',
27539             contenteditable : 'false',
27540             src : this.image_src,
27541             alt : d.innerText.replace(/\n/g, " ").replace(/\s+/g, ' ').trim(), // removeHTML and reduce spaces..
27542             style: {
27543                 width : iw,
27544                 maxWidth : iw + ' !important', // this is not getting rendered?
27545                 margin : m  
27546                 
27547             }
27548         };
27549         /*
27550         '<div class="{0}" width="420" height="315" src="{1}" frameborder="0" allowfullscreen>' +
27551                     '<a href="{2}">' + 
27552                         '<img class="{0}-thumbnail" src="{3}/Images/{4}/{5}#image-{4}" />' + 
27553                     '</a>' + 
27554                 '</div>',
27555         */
27556                 
27557         if (this.href.length > 0) {
27558             img = {
27559                 tag : 'a',
27560                 href: this.href,
27561                 contenteditable : 'true',
27562                 cn : [
27563                     img
27564                 ]
27565             };
27566         }
27567         
27568         
27569         if (this.video_url.length > 0) {
27570             img = {
27571                 tag : 'div',
27572                 cls : this.cls,
27573                 frameborder : 0,
27574                 allowfullscreen : true,
27575                 width : 420,  // these are for video tricks - that we replace the outer
27576                 height : 315,
27577                 src : this.video_url,
27578                 cn : [
27579                     img
27580                 ]
27581             };
27582         }
27583         // we remove caption totally if its hidden... - will delete data.. but otherwise we end up with fake caption
27584         var captionhtml = this.caption_display == 'none' ? '' : (this.caption.length ? this.caption : "Caption");
27585         
27586   
27587         var ret =   {
27588             tag: 'figure',
27589             'data-block' : 'Figure',
27590             'data-width' : this.width, 
27591             contenteditable : 'false',
27592             
27593             style : {
27594                 display: 'block',
27595                 float :  this.align ,
27596                 maxWidth :  this.align == 'center' ? '100% !important' : (this.width + ' !important'),
27597                 width : this.align == 'center' ? '100%' : this.width,
27598                 margin:  '0px',
27599                 padding: this.align == 'center' ? '0' : '0 10px' ,
27600                 textAlign : this.align   // seems to work for email..
27601                 
27602             },
27603            
27604             
27605             align : this.align,
27606             cn : [
27607                 img,
27608               
27609                 {
27610                     tag: 'figcaption',
27611                     'data-display' : this.caption_display,
27612                     style : {
27613                         textAlign : 'left',
27614                         fontSize : '16px',
27615                         lineHeight : '24px',
27616                         display : this.caption_display,
27617                         maxWidth : (this.align == 'center' ?  this.width : '100%' ) + ' !important',
27618                         margin: m,
27619                         width: this.align == 'center' ?  this.width : '100%' 
27620                     
27621                          
27622                     },
27623                     cls : this.cls.length > 0 ? (this.cls  + '-thumbnail' ) : '',
27624                     cn : [
27625                         {
27626                             tag: 'div',
27627                             style  : {
27628                                 marginTop : '16px',
27629                                 textAlign : 'left'
27630                             },
27631                             align: 'left',
27632                             cn : [
27633                                 {
27634                                     // we can not rely on yahoo syndication to use CSS elements - so have to use  '<i>' to encase stuff.
27635                                     tag : 'i',
27636                                     contenteditable : true,
27637                                     html : captionhtml
27638                                 }
27639                                 
27640                             ]
27641                         }
27642                         
27643                     ]
27644                     
27645                 }
27646             ]
27647         };
27648         return ret;
27649          
27650     },
27651     
27652     readElement : function(node)
27653     {
27654         // this should not really come from the link...
27655         this.video_url = this.getVal(node, 'div', 'src');
27656         this.cls = this.getVal(node, 'div', 'class');
27657         this.href = this.getVal(node, 'a', 'href');
27658         
27659         
27660         this.image_src = this.getVal(node, 'img', 'src');
27661          
27662         this.align = this.getVal(node, 'figure', 'align');
27663         var figcaption = this.getVal(node, 'figcaption', false);
27664         if (figcaption !== '') {
27665             this.caption = this.getVal(figcaption, 'i', 'html');
27666         }
27667         
27668
27669         this.caption_display = this.getVal(node, 'figcaption', 'data-display');
27670         //this.text_align = this.getVal(node, 'figcaption', 'style','text-align');
27671         this.width = this.getVal(node, true, 'data-width');
27672         //this.margin = this.getVal(node, 'figure', 'style', 'margin');
27673         
27674     },
27675     removeNode : function()
27676     {
27677         return this.node;
27678     }
27679     
27680   
27681    
27682      
27683     
27684     
27685     
27686     
27687 })
27688
27689  
27690
27691 /**
27692  * @class Roo.htmleditor.BlockTable
27693  * Block that manages a table
27694  * 
27695  * @constructor
27696  * Create a new Filter.
27697  * @param {Object} config Configuration options
27698  */
27699
27700 Roo.htmleditor.BlockTable = function(cfg)
27701 {
27702     if (cfg.node) {
27703         this.readElement(cfg.node);
27704         this.updateElement(cfg.node);
27705     }
27706     Roo.apply(this, cfg);
27707     if (!cfg.node) {
27708         this.rows = [];
27709         for(var r = 0; r < this.no_row; r++) {
27710             this.rows[r] = [];
27711             for(var c = 0; c < this.no_col; c++) {
27712                 this.rows[r][c] = this.emptyCell();
27713             }
27714         }
27715     }
27716     
27717     
27718 }
27719 Roo.extend(Roo.htmleditor.BlockTable, Roo.htmleditor.Block, {
27720  
27721     rows : false,
27722     no_col : 1,
27723     no_row : 1,
27724     
27725     
27726     width: '100%',
27727     
27728     // used by context menu
27729     friendly_name : 'Table',
27730     deleteTitle : 'Delete Table',
27731     // context menu is drawn once..
27732     
27733     contextMenu : function(toolbar)
27734     {
27735         
27736         var block = function() {
27737             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
27738         };
27739         
27740         
27741         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
27742         
27743         var syncValue = toolbar.editorcore.syncValue;
27744         
27745         var fields = {};
27746         
27747         return [
27748             {
27749                 xtype : 'TextItem',
27750                 text : "Width: ",
27751                 xns : rooui.Toolbar  //Boostrap?
27752             },
27753             {
27754                 xtype : 'ComboBox',
27755                 allowBlank : false,
27756                 displayField : 'val',
27757                 editable : true,
27758                 listWidth : 100,
27759                 triggerAction : 'all',
27760                 typeAhead : true,
27761                 valueField : 'val',
27762                 width : 100,
27763                 name : 'width',
27764                 listeners : {
27765                     select : function (combo, r, index)
27766                     {
27767                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
27768                         var b = block();
27769                         b.width = r.get('val');
27770                         b.updateElement();
27771                         syncValue();
27772                         toolbar.editorcore.onEditorEvent();
27773                     }
27774                 },
27775                 xns : rooui.form,
27776                 store : {
27777                     xtype : 'SimpleStore',
27778                     data : [
27779                         ['100%'],
27780                         ['auto']
27781                     ],
27782                     fields : [ 'val'],
27783                     xns : Roo.data
27784                 }
27785             },
27786             // -------- Cols
27787             
27788             {
27789                 xtype : 'TextItem',
27790                 text : "Columns: ",
27791                 xns : rooui.Toolbar  //Boostrap?
27792             },
27793          
27794             {
27795                 xtype : 'Button',
27796                 text: '-',
27797                 listeners : {
27798                     click : function (_self, e)
27799                     {
27800                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
27801                         block().removeColumn();
27802                         syncValue();
27803                         toolbar.editorcore.onEditorEvent();
27804                     }
27805                 },
27806                 xns : rooui.Toolbar
27807             },
27808             {
27809                 xtype : 'Button',
27810                 text: '+',
27811                 listeners : {
27812                     click : function (_self, e)
27813                     {
27814                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
27815                         block().addColumn();
27816                         syncValue();
27817                         toolbar.editorcore.onEditorEvent();
27818                     }
27819                 },
27820                 xns : rooui.Toolbar
27821             },
27822             // -------- ROWS
27823             {
27824                 xtype : 'TextItem',
27825                 text : "Rows: ",
27826                 xns : rooui.Toolbar  //Boostrap?
27827             },
27828          
27829             {
27830                 xtype : 'Button',
27831                 text: '-',
27832                 listeners : {
27833                     click : function (_self, e)
27834                     {
27835                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
27836                         block().removeRow();
27837                         syncValue();
27838                         toolbar.editorcore.onEditorEvent();
27839                     }
27840                 },
27841                 xns : rooui.Toolbar
27842             },
27843             {
27844                 xtype : 'Button',
27845                 text: '+',
27846                 listeners : {
27847                     click : function (_self, e)
27848                     {
27849                         block().addRow();
27850                         syncValue();
27851                         toolbar.editorcore.onEditorEvent();
27852                     }
27853                 },
27854                 xns : rooui.Toolbar
27855             },
27856             // -------- ROWS
27857             {
27858                 xtype : 'Button',
27859                 text: 'Reset Column Widths',
27860                 listeners : {
27861                     
27862                     click : function (_self, e)
27863                     {
27864                         block().resetWidths();
27865                         syncValue();
27866                         toolbar.editorcore.onEditorEvent();
27867                     }
27868                 },
27869                 xns : rooui.Toolbar
27870             } 
27871             
27872             
27873             
27874         ];
27875         
27876     },
27877     
27878     
27879   /**
27880      * create a DomHelper friendly object - for use with
27881      * Roo.DomHelper.markup / overwrite / etc..
27882      * ?? should it be called with option to hide all editing features?
27883      */
27884     toObject : function()
27885     {
27886         
27887         var ret = {
27888             tag : 'table',
27889             contenteditable : 'false', // this stops cell selection from picking the table.
27890             'data-block' : 'Table',
27891             style : {
27892                 width:  this.width,
27893                 border : 'solid 1px #000', // ??? hard coded?
27894                 'border-collapse' : 'collapse' 
27895             },
27896             cn : [
27897                 { tag : 'tbody' , cn : [] }
27898             ]
27899         };
27900         
27901         // do we have a head = not really 
27902         var ncols = 0;
27903         Roo.each(this.rows, function( row ) {
27904             var tr = {
27905                 tag: 'tr',
27906                 style : {
27907                     margin: '6px',
27908                     border : 'solid 1px #000',
27909                     textAlign : 'left' 
27910                 },
27911                 cn : [ ]
27912             };
27913             
27914             ret.cn[0].cn.push(tr);
27915             // does the row have any properties? ?? height?
27916             var nc = 0;
27917             Roo.each(row, function( cell ) {
27918                 
27919                 var td = {
27920                     tag : 'td',
27921                     contenteditable :  'true',
27922                     'data-block' : 'Td',
27923                     html : cell.html,
27924                     style : cell.style
27925                 };
27926                 if (cell.colspan > 1) {
27927                     td.colspan = cell.colspan ;
27928                     nc += cell.colspan;
27929                 } else {
27930                     nc++;
27931                 }
27932                 if (cell.rowspan > 1) {
27933                     td.rowspan = cell.rowspan ;
27934                 }
27935                 
27936                 
27937                 // widths ?
27938                 tr.cn.push(td);
27939                     
27940                 
27941             }, this);
27942             ncols = Math.max(nc, ncols);
27943             
27944             
27945         }, this);
27946         // add the header row..
27947         
27948         ncols++;
27949          
27950         
27951         return ret;
27952          
27953     },
27954     
27955     readElement : function(node)
27956     {
27957         node  = node ? node : this.node ;
27958         this.width = this.getVal(node, true, 'style', 'width') || '100%';
27959         
27960         this.rows = [];
27961         this.no_row = 0;
27962         var trs = Array.from(node.rows);
27963         trs.forEach(function(tr) {
27964             var row =  [];
27965             this.rows.push(row);
27966             
27967             this.no_row++;
27968             var no_column = 0;
27969             Array.from(tr.cells).forEach(function(td) {
27970                 
27971                 var add = {
27972                     colspan : td.hasAttribute('colspan') ? td.getAttribute('colspan')*1 : 1,
27973                     rowspan : td.hasAttribute('rowspan') ? td.getAttribute('rowspan')*1 : 1,
27974                     style : td.hasAttribute('style') ? td.getAttribute('style') : '',
27975                     html : td.innerHTML
27976                 };
27977                 no_column += add.colspan;
27978                      
27979                 
27980                 row.push(add);
27981                 
27982                 
27983             },this);
27984             this.no_col = Math.max(this.no_col, no_column);
27985             
27986             
27987         },this);
27988         
27989         
27990     },
27991     normalizeRows: function()
27992     {
27993         var ret= [];
27994         var rid = -1;
27995         this.rows.forEach(function(row) {
27996             rid++;
27997             ret[rid] = [];
27998             row = this.normalizeRow(row);
27999             var cid = 0;
28000             row.forEach(function(c) {
28001                 while (typeof(ret[rid][cid]) != 'undefined') {
28002                     cid++;
28003                 }
28004                 if (typeof(ret[rid]) == 'undefined') {
28005                     ret[rid] = [];
28006                 }
28007                 ret[rid][cid] = c;
28008                 c.row = rid;
28009                 c.col = cid;
28010                 if (c.rowspan < 2) {
28011                     return;
28012                 }
28013                 
28014                 for(var i = 1 ;i < c.rowspan; i++) {
28015                     if (typeof(ret[rid+i]) == 'undefined') {
28016                         ret[rid+i] = [];
28017                     }
28018                     ret[rid+i][cid] = c;
28019                 }
28020             });
28021         }, this);
28022         return ret;
28023     
28024     },
28025     
28026     normalizeRow: function(row)
28027     {
28028         var ret= [];
28029         row.forEach(function(c) {
28030             if (c.colspan < 2) {
28031                 ret.push(c);
28032                 return;
28033             }
28034             for(var i =0 ;i < c.colspan; i++) {
28035                 ret.push(c);
28036             }
28037         });
28038         return ret;
28039     
28040     },
28041     
28042     deleteColumn : function(sel)
28043     {
28044         if (!sel || sel.type != 'col') {
28045             return;
28046         }
28047         if (this.no_col < 2) {
28048             return;
28049         }
28050         
28051         this.rows.forEach(function(row) {
28052             var cols = this.normalizeRow(row);
28053             var col = cols[sel.col];
28054             if (col.colspan > 1) {
28055                 col.colspan --;
28056             } else {
28057                 row.remove(col);
28058             }
28059             
28060         }, this);
28061         this.no_col--;
28062         
28063     },
28064     removeColumn : function()
28065     {
28066         this.deleteColumn({
28067             type: 'col',
28068             col : this.no_col-1
28069         });
28070         this.updateElement();
28071     },
28072     
28073      
28074     addColumn : function()
28075     {
28076         
28077         this.rows.forEach(function(row) {
28078             row.push(this.emptyCell());
28079            
28080         }, this);
28081         this.updateElement();
28082     },
28083     
28084     deleteRow : function(sel)
28085     {
28086         if (!sel || sel.type != 'row') {
28087             return;
28088         }
28089         
28090         if (this.no_row < 2) {
28091             return;
28092         }
28093         
28094         var rows = this.normalizeRows();
28095         
28096         
28097         rows[sel.row].forEach(function(col) {
28098             if (col.rowspan > 1) {
28099                 col.rowspan--;
28100             } else {
28101                 col.remove = 1; // flage it as removed.
28102             }
28103             
28104         }, this);
28105         var newrows = [];
28106         this.rows.forEach(function(row) {
28107             newrow = [];
28108             row.forEach(function(c) {
28109                 if (typeof(c.remove) == 'undefined') {
28110                     newrow.push(c);
28111                 }
28112                 
28113             });
28114             if (newrow.length > 0) {
28115                 newrows.push(row);
28116             }
28117         });
28118         this.rows =  newrows;
28119         
28120         
28121         
28122         this.no_row--;
28123         this.updateElement();
28124         
28125     },
28126     removeRow : function()
28127     {
28128         this.deleteRow({
28129             type: 'row',
28130             row : this.no_row-1
28131         });
28132         
28133     },
28134     
28135      
28136     addRow : function()
28137     {
28138         
28139         var row = [];
28140         for (var i = 0; i < this.no_col; i++ ) {
28141             
28142             row.push(this.emptyCell());
28143            
28144         }
28145         this.rows.push(row);
28146         this.updateElement();
28147         
28148     },
28149      
28150     // the default cell object... at present...
28151     emptyCell : function() {
28152         return (new Roo.htmleditor.BlockTd({})).toObject();
28153         
28154      
28155     },
28156     
28157     removeNode : function()
28158     {
28159         return this.node;
28160     },
28161     
28162     
28163     
28164     resetWidths : function()
28165     {
28166         Array.from(this.node.getElementsByTagName('td')).forEach(function(n) {
28167             var nn = Roo.htmleditor.Block.factory(n);
28168             nn.width = '';
28169             nn.updateElement(n);
28170         });
28171     }
28172     
28173     
28174     
28175     
28176 })
28177
28178 /**
28179  *
28180  * editing a TD?
28181  *
28182  * since selections really work on the table cell, then editing really should work from there
28183  *
28184  * The original plan was to support merging etc... - but that may not be needed yet..
28185  *
28186  * So this simple version will support:
28187  *   add/remove cols
28188  *   adjust the width +/-
28189  *   reset the width...
28190  *   
28191  *
28192  */
28193
28194
28195  
28196
28197 /**
28198  * @class Roo.htmleditor.BlockTable
28199  * Block that manages a table
28200  * 
28201  * @constructor
28202  * Create a new Filter.
28203  * @param {Object} config Configuration options
28204  */
28205
28206 Roo.htmleditor.BlockTd = function(cfg)
28207 {
28208     if (cfg.node) {
28209         this.readElement(cfg.node);
28210         this.updateElement(cfg.node);
28211     }
28212     Roo.apply(this, cfg);
28213      
28214     
28215     
28216 }
28217 Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, {
28218  
28219     node : false,
28220     
28221     width: '',
28222     textAlign : 'left',
28223     valign : 'top',
28224     
28225     colspan : 1,
28226     rowspan : 1,
28227     
28228     
28229     // used by context menu
28230     friendly_name : 'Table Cell',
28231     deleteTitle : false, // use our customer delete
28232     
28233     // context menu is drawn once..
28234     
28235     contextMenu : function(toolbar)
28236     {
28237         
28238         var cell = function() {
28239             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
28240         };
28241         
28242         var table = function() {
28243             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode.closest('table'));
28244         };
28245         
28246         var lr = false;
28247         var saveSel = function()
28248         {
28249             lr = toolbar.editorcore.getSelection().getRangeAt(0);
28250         }
28251         var restoreSel = function()
28252         {
28253             if (lr) {
28254                 (function() {
28255                     toolbar.editorcore.focus();
28256                     var cr = toolbar.editorcore.getSelection();
28257                     cr.removeAllRanges();
28258                     cr.addRange(lr);
28259                     toolbar.editorcore.onEditorEvent();
28260                 }).defer(10, this);
28261                 
28262                 
28263             }
28264         }
28265         
28266         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
28267         
28268         var syncValue = toolbar.editorcore.syncValue;
28269         
28270         var fields = {};
28271         
28272         return [
28273             {
28274                 xtype : 'Button',
28275                 text : 'Edit Table',
28276                 listeners : {
28277                     click : function() {
28278                         var t = toolbar.tb.selectedNode.closest('table');
28279                         toolbar.editorcore.selectNode(t);
28280                         toolbar.editorcore.onEditorEvent();                        
28281                     }
28282                 }
28283                 
28284             },
28285               
28286            
28287              
28288             {
28289                 xtype : 'TextItem',
28290                 text : "Column Width: ",
28291                  xns : rooui.Toolbar 
28292                
28293             },
28294             {
28295                 xtype : 'Button',
28296                 text: '-',
28297                 listeners : {
28298                     click : function (_self, e)
28299                     {
28300                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
28301                         cell().shrinkColumn();
28302                         syncValue();
28303                          toolbar.editorcore.onEditorEvent();
28304                     }
28305                 },
28306                 xns : rooui.Toolbar
28307             },
28308             {
28309                 xtype : 'Button',
28310                 text: '+',
28311                 listeners : {
28312                     click : function (_self, e)
28313                     {
28314                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
28315                         cell().growColumn();
28316                         syncValue();
28317                         toolbar.editorcore.onEditorEvent();
28318                     }
28319                 },
28320                 xns : rooui.Toolbar
28321             },
28322             
28323             {
28324                 xtype : 'TextItem',
28325                 text : "Vertical Align: ",
28326                 xns : rooui.Toolbar  //Boostrap?
28327             },
28328             {
28329                 xtype : 'ComboBox',
28330                 allowBlank : false,
28331                 displayField : 'val',
28332                 editable : true,
28333                 listWidth : 100,
28334                 triggerAction : 'all',
28335                 typeAhead : true,
28336                 valueField : 'val',
28337                 width : 100,
28338                 name : 'valign',
28339                 listeners : {
28340                     select : function (combo, r, index)
28341                     {
28342                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
28343                         var b = cell();
28344                         b.valign = r.get('val');
28345                         b.updateElement();
28346                         syncValue();
28347                         toolbar.editorcore.onEditorEvent();
28348                     }
28349                 },
28350                 xns : rooui.form,
28351                 store : {
28352                     xtype : 'SimpleStore',
28353                     data : [
28354                         ['top'],
28355                         ['middle'],
28356                         ['bottom'] // there are afew more... 
28357                     ],
28358                     fields : [ 'val'],
28359                     xns : Roo.data
28360                 }
28361             },
28362             
28363             {
28364                 xtype : 'TextItem',
28365                 text : "Merge Cells: ",
28366                  xns : rooui.Toolbar 
28367                
28368             },
28369             
28370             
28371             {
28372                 xtype : 'Button',
28373                 text: 'Right',
28374                 listeners : {
28375                     click : function (_self, e)
28376                     {
28377                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
28378                         cell().mergeRight();
28379                         //block().growColumn();
28380                         syncValue();
28381                         toolbar.editorcore.onEditorEvent();
28382                     }
28383                 },
28384                 xns : rooui.Toolbar
28385             },
28386              
28387             {
28388                 xtype : 'Button',
28389                 text: 'Below',
28390                 listeners : {
28391                     click : function (_self, e)
28392                     {
28393                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
28394                         cell().mergeBelow();
28395                         //block().growColumn();
28396                         syncValue();
28397                         toolbar.editorcore.onEditorEvent();
28398                     }
28399                 },
28400                 xns : rooui.Toolbar
28401             },
28402             {
28403                 xtype : 'TextItem',
28404                 text : "| ",
28405                  xns : rooui.Toolbar 
28406                
28407             },
28408             
28409             {
28410                 xtype : 'Button',
28411                 text: 'Split',
28412                 listeners : {
28413                     click : function (_self, e)
28414                     {
28415                         //toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
28416                         cell().split();
28417                         syncValue();
28418                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
28419                         toolbar.editorcore.onEditorEvent();
28420                                              
28421                     }
28422                 },
28423                 xns : rooui.Toolbar
28424             },
28425             {
28426                 xtype : 'Fill',
28427                 xns : rooui.Toolbar 
28428                
28429             },
28430         
28431           
28432             {
28433                 xtype : 'Button',
28434                 text: 'Delete',
28435                  
28436                 xns : rooui.Toolbar,
28437                 menu : {
28438                     xtype : 'Menu',
28439                     xns : rooui.menu,
28440                     items : [
28441                         {
28442                             xtype : 'Item',
28443                             html: 'Column',
28444                             listeners : {
28445                                 click : function (_self, e)
28446                                 {
28447                                     var t = table();
28448                                     
28449                                     cell().deleteColumn();
28450                                     syncValue();
28451                                     toolbar.editorcore.selectNode(t.node);
28452                                     toolbar.editorcore.onEditorEvent();   
28453                                 }
28454                             },
28455                             xns : rooui.menu
28456                         },
28457                         {
28458                             xtype : 'Item',
28459                             html: 'Row',
28460                             listeners : {
28461                                 click : function (_self, e)
28462                                 {
28463                                     var t = table();
28464                                     cell().deleteRow();
28465                                     syncValue();
28466                                     
28467                                     toolbar.editorcore.selectNode(t.node);
28468                                     toolbar.editorcore.onEditorEvent();   
28469                                                          
28470                                 }
28471                             },
28472                             xns : rooui.menu
28473                         },
28474                        {
28475                             xtype : 'Separator',
28476                             xns : rooui.menu
28477                         },
28478                         {
28479                             xtype : 'Item',
28480                             html: 'Table',
28481                             listeners : {
28482                                 click : function (_self, e)
28483                                 {
28484                                     var t = table();
28485                                     var nn = t.node.nextSibling || t.node.previousSibling;
28486                                     t.node.parentNode.removeChild(t.node);
28487                                     if (nn) { 
28488                                         toolbar.editorcore.selectNode(nn, true);
28489                                     }
28490                                     toolbar.editorcore.onEditorEvent();   
28491                                                          
28492                                 }
28493                             },
28494                             xns : rooui.menu
28495                         }
28496                     ]
28497                 }
28498             }
28499             
28500             // align... << fixme
28501             
28502         ];
28503         
28504     },
28505     
28506     
28507   /**
28508      * create a DomHelper friendly object - for use with
28509      * Roo.DomHelper.markup / overwrite / etc..
28510      * ?? should it be called with option to hide all editing features?
28511      */
28512  /**
28513      * create a DomHelper friendly object - for use with
28514      * Roo.DomHelper.markup / overwrite / etc..
28515      * ?? should it be called with option to hide all editing features?
28516      */
28517     toObject : function()
28518     {
28519         var ret = {
28520             tag : 'td',
28521             contenteditable : 'true', // this stops cell selection from picking the table.
28522             'data-block' : 'Td',
28523             valign : this.valign,
28524             style : {  
28525                 'text-align' :  this.textAlign,
28526                 border : 'solid 1px rgb(0, 0, 0)', // ??? hard coded?
28527                 'border-collapse' : 'collapse',
28528                 padding : '6px', // 8 for desktop / 4 for mobile
28529                 'vertical-align': this.valign
28530             },
28531             html : this.html
28532         };
28533         if (this.width != '') {
28534             ret.width = this.width;
28535             ret.style.width = this.width;
28536         }
28537         
28538         
28539         if (this.colspan > 1) {
28540             ret.colspan = this.colspan ;
28541         } 
28542         if (this.rowspan > 1) {
28543             ret.rowspan = this.rowspan ;
28544         }
28545         
28546            
28547         
28548         return ret;
28549          
28550     },
28551     
28552     readElement : function(node)
28553     {
28554         node  = node ? node : this.node ;
28555         this.width = node.style.width;
28556         this.colspan = Math.max(1,1*node.getAttribute('colspan'));
28557         this.rowspan = Math.max(1,1*node.getAttribute('rowspan'));
28558         this.html = node.innerHTML;
28559         if (node.style.textAlign != '') {
28560             this.textAlign = node.style.textAlign;
28561         }
28562         
28563         
28564     },
28565      
28566     // the default cell object... at present...
28567     emptyCell : function() {
28568         return {
28569             colspan :  1,
28570             rowspan :  1,
28571             textAlign : 'left',
28572             html : "&nbsp;" // is this going to be editable now?
28573         };
28574      
28575     },
28576     
28577     removeNode : function()
28578     {
28579         return this.node.closest('table');
28580          
28581     },
28582     
28583     cellData : false,
28584     
28585     colWidths : false,
28586     
28587     toTableArray  : function()
28588     {
28589         var ret = [];
28590         var tab = this.node.closest('tr').closest('table');
28591         Array.from(tab.rows).forEach(function(r, ri){
28592             ret[ri] = [];
28593         });
28594         var rn = 0;
28595         this.colWidths = [];
28596         var all_auto = true;
28597         Array.from(tab.rows).forEach(function(r, ri){
28598             
28599             var cn = 0;
28600             Array.from(r.cells).forEach(function(ce, ci){
28601                 var c =  {
28602                     cell : ce,
28603                     row : rn,
28604                     col: cn,
28605                     colspan : ce.colSpan,
28606                     rowspan : ce.rowSpan
28607                 };
28608                 if (ce.isEqualNode(this.node)) {
28609                     this.cellData = c;
28610                 }
28611                 // if we have been filled up by a row?
28612                 if (typeof(ret[rn][cn]) != 'undefined') {
28613                     while(typeof(ret[rn][cn]) != 'undefined') {
28614                         cn++;
28615                     }
28616                     c.col = cn;
28617                 }
28618                 
28619                 if (typeof(this.colWidths[cn]) == 'undefined' && c.colspan < 2) {
28620                     this.colWidths[cn] =   ce.style.width;
28621                     if (this.colWidths[cn] != '') {
28622                         all_auto = false;
28623                     }
28624                 }
28625                 
28626                 
28627                 if (c.colspan < 2 && c.rowspan < 2 ) {
28628                     ret[rn][cn] = c;
28629                     cn++;
28630                     return;
28631                 }
28632                 for(var j = 0; j < c.rowspan; j++) {
28633                     if (typeof(ret[rn+j]) == 'undefined') {
28634                         continue; // we have a problem..
28635                     }
28636                     ret[rn+j][cn] = c;
28637                     for(var i = 0; i < c.colspan; i++) {
28638                         ret[rn+j][cn+i] = c;
28639                     }
28640                 }
28641                 
28642                 cn += c.colspan;
28643             }, this);
28644             rn++;
28645         }, this);
28646         
28647         // initalize widths.?
28648         // either all widths or no widths..
28649         if (all_auto) {
28650             this.colWidths[0] = false; // no widths flag.
28651         }
28652         
28653         
28654         return ret;
28655         
28656     },
28657     
28658     
28659     
28660     
28661     mergeRight: function()
28662     {
28663          
28664         // get the contents of the next cell along..
28665         var tr = this.node.closest('tr');
28666         var i = Array.prototype.indexOf.call(tr.childNodes, this.node);
28667         if (i >= tr.childNodes.length - 1) {
28668             return; // no cells on right to merge with.
28669         }
28670         var table = this.toTableArray();
28671         
28672         if (typeof(table[this.cellData.row][this.cellData.col+this.cellData.colspan]) == 'undefined') {
28673             return; // nothing right?
28674         }
28675         var rc = table[this.cellData.row][this.cellData.col+this.cellData.colspan];
28676         // right cell - must be same rowspan and on the same row.
28677         if (rc.rowspan != this.cellData.rowspan || rc.row != this.cellData.row) {
28678             return; // right hand side is not same rowspan.
28679         }
28680         
28681         
28682         
28683         this.node.innerHTML += ' ' + rc.cell.innerHTML;
28684         tr.removeChild(rc.cell);
28685         this.colspan += rc.colspan;
28686         this.node.setAttribute('colspan', this.colspan);
28687
28688         var table = this.toTableArray();
28689         this.normalizeWidths(table);
28690         this.updateWidths(table);
28691     },
28692     
28693     
28694     mergeBelow : function()
28695     {
28696         var table = this.toTableArray();
28697         if (typeof(table[this.cellData.row+this.cellData.rowspan]) == 'undefined') {
28698             return; // no row below
28699         }
28700         if (typeof(table[this.cellData.row+this.cellData.rowspan][this.cellData.col]) == 'undefined') {
28701             return; // nothing right?
28702         }
28703         var rc = table[this.cellData.row+this.cellData.rowspan][this.cellData.col];
28704         
28705         if (rc.colspan != this.cellData.colspan || rc.col != this.cellData.col) {
28706             return; // right hand side is not same rowspan.
28707         }
28708         this.node.innerHTML =  this.node.innerHTML + rc.cell.innerHTML ;
28709         rc.cell.parentNode.removeChild(rc.cell);
28710         this.rowspan += rc.rowspan;
28711         this.node.setAttribute('rowspan', this.rowspan);
28712     },
28713     
28714     split: function()
28715     {
28716         if (this.node.rowSpan < 2 && this.node.colSpan < 2) {
28717             return;
28718         }
28719         var table = this.toTableArray();
28720         var cd = this.cellData;
28721         this.rowspan = 1;
28722         this.colspan = 1;
28723         
28724         for(var r = cd.row; r < cd.row + cd.rowspan; r++) {
28725              
28726             
28727             for(var c = cd.col; c < cd.col + cd.colspan; c++) {
28728                 if (r == cd.row && c == cd.col) {
28729                     this.node.removeAttribute('rowspan');
28730                     this.node.removeAttribute('colspan');
28731                 }
28732                  
28733                 var ntd = this.node.cloneNode(); // which col/row should be 0..
28734                 ntd.removeAttribute('id'); 
28735                 ntd.style.width  = this.colWidths[c];
28736                 ntd.innerHTML = '';
28737                 table[r][c] = { cell : ntd, col : c, row: r , colspan : 1 , rowspan : 1   };
28738             }
28739             
28740         }
28741         this.redrawAllCells(table);
28742         
28743     },
28744     
28745     
28746     
28747     redrawAllCells: function(table)
28748     {
28749         
28750          
28751         var tab = this.node.closest('tr').closest('table');
28752         var ctr = tab.rows[0].parentNode;
28753         Array.from(tab.rows).forEach(function(r, ri){
28754             
28755             Array.from(r.cells).forEach(function(ce, ci){
28756                 ce.parentNode.removeChild(ce);
28757             });
28758             r.parentNode.removeChild(r);
28759         });
28760         for(var r = 0 ; r < table.length; r++) {
28761             var re = tab.rows[r];
28762             
28763             var re = tab.ownerDocument.createElement('tr');
28764             ctr.appendChild(re);
28765             for(var c = 0 ; c < table[r].length; c++) {
28766                 if (table[r][c].cell === false) {
28767                     continue;
28768                 }
28769                 
28770                 re.appendChild(table[r][c].cell);
28771                  
28772                 table[r][c].cell = false;
28773             }
28774         }
28775         
28776     },
28777     updateWidths : function(table)
28778     {
28779         for(var r = 0 ; r < table.length; r++) {
28780            
28781             for(var c = 0 ; c < table[r].length; c++) {
28782                 if (table[r][c].cell === false) {
28783                     continue;
28784                 }
28785                 
28786                 if (this.colWidths[0] != false && table[r][c].colspan < 2) {
28787                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
28788                     el.width = Math.floor(this.colWidths[c])  +'%';
28789                     el.updateElement(el.node);
28790                 }
28791                 if (this.colWidths[0] != false && table[r][c].colspan > 1) {
28792                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
28793                     var width = 0;
28794                     for(var i = 0; i < table[r][c].colspan; i ++) {
28795                         width += Math.floor(this.colWidths[c + i]);
28796                     }
28797                     el.width = width  +'%';
28798                     el.updateElement(el.node);
28799                 }
28800                 table[r][c].cell = false; // done
28801             }
28802         }
28803     },
28804     normalizeWidths : function(table)
28805     {
28806         if (this.colWidths[0] === false) {
28807             var nw = 100.0 / this.colWidths.length;
28808             this.colWidths.forEach(function(w,i) {
28809                 this.colWidths[i] = nw;
28810             },this);
28811             return;
28812         }
28813     
28814         var t = 0, missing = [];
28815         
28816         this.colWidths.forEach(function(w,i) {
28817             //if you mix % and
28818             this.colWidths[i] = this.colWidths[i] == '' ? 0 : (this.colWidths[i]+'').replace(/[^0-9]+/g,'')*1;
28819             var add =  this.colWidths[i];
28820             if (add > 0) {
28821                 t+=add;
28822                 return;
28823             }
28824             missing.push(i);
28825             
28826             
28827         },this);
28828         var nc = this.colWidths.length;
28829         if (missing.length) {
28830             var mult = (nc - missing.length) / (1.0 * nc);
28831             var t = mult * t;
28832             var ew = (100 -t) / (1.0 * missing.length);
28833             this.colWidths.forEach(function(w,i) {
28834                 if (w > 0) {
28835                     this.colWidths[i] = w * mult;
28836                     return;
28837                 }
28838                 
28839                 this.colWidths[i] = ew;
28840             }, this);
28841             // have to make up numbers..
28842              
28843         }
28844         // now we should have all the widths..
28845         
28846     
28847     },
28848     
28849     shrinkColumn : function()
28850     {
28851         var table = this.toTableArray();
28852         this.normalizeWidths(table);
28853         var col = this.cellData.col;
28854         var nw = this.colWidths[col] * 0.8;
28855         if (nw < 5) {
28856             return;
28857         }
28858         var otherAdd = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
28859         this.colWidths.forEach(function(w,i) {
28860             if (i == col) {
28861                  this.colWidths[i] = nw;
28862                 return;
28863             }
28864             this.colWidths[i] += otherAdd
28865         }, this);
28866         this.updateWidths(table);
28867          
28868     },
28869     growColumn : function()
28870     {
28871         var table = this.toTableArray();
28872         this.normalizeWidths(table);
28873         var col = this.cellData.col;
28874         var nw = this.colWidths[col] * 1.2;
28875         if (nw > 90) {
28876             return;
28877         }
28878         var otherSub = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
28879         this.colWidths.forEach(function(w,i) {
28880             if (i == col) {
28881                 this.colWidths[i] = nw;
28882                 return;
28883             }
28884             this.colWidths[i] -= otherSub
28885         }, this);
28886         this.updateWidths(table);
28887          
28888     },
28889     deleteRow : function()
28890     {
28891         // delete this rows 'tr'
28892         // if any of the cells in this row have a rowspan > 1 && row!= this row..
28893         // then reduce the rowspan.
28894         var table = this.toTableArray();
28895         // this.cellData.row;
28896         for (var i =0;i< table[this.cellData.row].length ; i++) {
28897             var c = table[this.cellData.row][i];
28898             if (c.row != this.cellData.row) {
28899                 
28900                 c.rowspan--;
28901                 c.cell.setAttribute('rowspan', c.rowspan);
28902                 continue;
28903             }
28904             if (c.rowspan > 1) {
28905                 c.rowspan--;
28906                 c.cell.setAttribute('rowspan', c.rowspan);
28907             }
28908         }
28909         table.splice(this.cellData.row,1);
28910         this.redrawAllCells(table);
28911         
28912     },
28913     deleteColumn : function()
28914     {
28915         var table = this.toTableArray();
28916         
28917         for (var i =0;i< table.length ; i++) {
28918             var c = table[i][this.cellData.col];
28919             if (c.col != this.cellData.col) {
28920                 table[i][this.cellData.col].colspan--;
28921             } else if (c.colspan > 1) {
28922                 c.colspan--;
28923                 c.cell.setAttribute('colspan', c.colspan);
28924             }
28925             table[i].splice(this.cellData.col,1);
28926         }
28927         
28928         this.redrawAllCells(table);
28929     }
28930     
28931     
28932     
28933     
28934 })
28935
28936 //<script type="text/javascript">
28937
28938 /*
28939  * Based  Ext JS Library 1.1.1
28940  * Copyright(c) 2006-2007, Ext JS, LLC.
28941  * LGPL
28942  *
28943  */
28944  
28945 /**
28946  * @class Roo.HtmlEditorCore
28947  * @extends Roo.Component
28948  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
28949  *
28950  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
28951  */
28952
28953 Roo.HtmlEditorCore = function(config){
28954     
28955     
28956     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
28957     
28958     
28959     this.addEvents({
28960         /**
28961          * @event initialize
28962          * Fires when the editor is fully initialized (including the iframe)
28963          * @param {Roo.HtmlEditorCore} this
28964          */
28965         initialize: true,
28966         /**
28967          * @event activate
28968          * Fires when the editor is first receives the focus. Any insertion must wait
28969          * until after this event.
28970          * @param {Roo.HtmlEditorCore} this
28971          */
28972         activate: true,
28973          /**
28974          * @event beforesync
28975          * Fires before the textarea is updated with content from the editor iframe. Return false
28976          * to cancel the sync.
28977          * @param {Roo.HtmlEditorCore} this
28978          * @param {String} html
28979          */
28980         beforesync: true,
28981          /**
28982          * @event beforepush
28983          * Fires before the iframe editor is updated with content from the textarea. Return false
28984          * to cancel the push.
28985          * @param {Roo.HtmlEditorCore} this
28986          * @param {String} html
28987          */
28988         beforepush: true,
28989          /**
28990          * @event sync
28991          * Fires when the textarea is updated with content from the editor iframe.
28992          * @param {Roo.HtmlEditorCore} this
28993          * @param {String} html
28994          */
28995         sync: true,
28996          /**
28997          * @event push
28998          * Fires when the iframe editor is updated with content from the textarea.
28999          * @param {Roo.HtmlEditorCore} this
29000          * @param {String} html
29001          */
29002         push: true,
29003         
29004         /**
29005          * @event editorevent
29006          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
29007          * @param {Roo.HtmlEditorCore} this
29008          */
29009         editorevent: true 
29010          
29011         
29012     });
29013     
29014     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
29015     
29016     // defaults : white / black...
29017     this.applyBlacklists();
29018     
29019     
29020     
29021 };
29022
29023
29024 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
29025
29026
29027      /**
29028      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
29029      */
29030     
29031     owner : false,
29032     
29033      /**
29034      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
29035      *                        Roo.resizable.
29036      */
29037     resizable : false,
29038      /**
29039      * @cfg {Number} height (in pixels)
29040      */   
29041     height: 300,
29042    /**
29043      * @cfg {Number} width (in pixels)
29044      */   
29045     width: 500,
29046      /**
29047      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
29048      *         if you are doing an email editor, this probably needs disabling, it's designed
29049      */
29050     autoClean: true,
29051     
29052     /**
29053      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
29054      */
29055     enableBlocks : true,
29056     /**
29057      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
29058      * 
29059      */
29060     stylesheets: false,
29061      /**
29062      * @cfg {String} language default en - language of text (usefull for rtl languages)
29063      * 
29064      */
29065     language: 'en',
29066     
29067     /**
29068      * @cfg {boolean} allowComments - default false - allow comments in HTML source
29069      *          - by default they are stripped - if you are editing email you may need this.
29070      */
29071     allowComments: false,
29072     // id of frame..
29073     frameId: false,
29074     
29075     // private properties
29076     validationEvent : false,
29077     deferHeight: true,
29078     initialized : false,
29079     activated : false,
29080     sourceEditMode : false,
29081     onFocus : Roo.emptyFn,
29082     iframePad:3,
29083     hideMode:'offsets',
29084     
29085     clearUp: true,
29086     
29087     // blacklist + whitelisted elements..
29088     black: false,
29089     white: false,
29090      
29091     bodyCls : '',
29092
29093     
29094     undoManager : false,
29095     /**
29096      * Protected method that will not generally be called directly. It
29097      * is called when the editor initializes the iframe with HTML contents. Override this method if you
29098      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
29099      */
29100     getDocMarkup : function(){
29101         // body styles..
29102         var st = '';
29103         
29104         // inherit styels from page...?? 
29105         if (this.stylesheets === false) {
29106             
29107             Roo.get(document.head).select('style').each(function(node) {
29108                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
29109             });
29110             
29111             Roo.get(document.head).select('link').each(function(node) { 
29112                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
29113             });
29114             
29115         } else if (!this.stylesheets.length) {
29116                 // simple..
29117                 st = '<style type="text/css">' +
29118                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
29119                    '</style>';
29120         } else {
29121             for (var i in this.stylesheets) {
29122                 if (typeof(this.stylesheets[i]) != 'string') {
29123                     continue;
29124                 }
29125                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
29126             }
29127             
29128         }
29129         
29130         st +=  '<style type="text/css">' +
29131             'IMG { cursor: pointer } ' +
29132         '</style>';
29133         
29134         st += '<meta name="google" content="notranslate">';
29135         
29136         var cls = 'notranslate roo-htmleditor-body';
29137         
29138         if(this.bodyCls.length){
29139             cls += ' ' + this.bodyCls;
29140         }
29141         
29142         return '<html  class="notranslate" translate="no"><head>' + st  +
29143             //<style type="text/css">' +
29144             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
29145             //'</style>' +
29146             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
29147     },
29148
29149     // private
29150     onRender : function(ct, position)
29151     {
29152         var _t = this;
29153         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
29154         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
29155         
29156         
29157         this.el.dom.style.border = '0 none';
29158         this.el.dom.setAttribute('tabIndex', -1);
29159         this.el.addClass('x-hidden hide');
29160         
29161         
29162         
29163         if(Roo.isIE){ // fix IE 1px bogus margin
29164             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
29165         }
29166        
29167         
29168         this.frameId = Roo.id();
29169         
29170          
29171         
29172         var iframe = this.owner.wrap.createChild({
29173             tag: 'iframe',
29174             cls: 'form-control', // bootstrap..
29175             id: this.frameId,
29176             name: this.frameId,
29177             frameBorder : 'no',
29178             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
29179         }, this.el
29180         );
29181         
29182         
29183         this.iframe = iframe.dom;
29184
29185         this.assignDocWin();
29186         
29187         this.doc.designMode = 'on';
29188        
29189         this.doc.open();
29190         this.doc.write(this.getDocMarkup());
29191         this.doc.close();
29192
29193         
29194         var task = { // must defer to wait for browser to be ready
29195             run : function(){
29196                 //console.log("run task?" + this.doc.readyState);
29197                 this.assignDocWin();
29198                 if(this.doc.body || this.doc.readyState == 'complete'){
29199                     try {
29200                         this.doc.designMode="on";
29201                         
29202                     } catch (e) {
29203                         return;
29204                     }
29205                     Roo.TaskMgr.stop(task);
29206                     this.initEditor.defer(10, this);
29207                 }
29208             },
29209             interval : 10,
29210             duration: 10000,
29211             scope: this
29212         };
29213         Roo.TaskMgr.start(task);
29214
29215     },
29216
29217     // private
29218     onResize : function(w, h)
29219     {
29220          Roo.log('resize: ' +w + ',' + h );
29221         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
29222         if(!this.iframe){
29223             return;
29224         }
29225         if(typeof w == 'number'){
29226             
29227             this.iframe.style.width = w + 'px';
29228         }
29229         if(typeof h == 'number'){
29230             
29231             this.iframe.style.height = h + 'px';
29232             if(this.doc){
29233                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
29234             }
29235         }
29236         
29237     },
29238
29239     /**
29240      * Toggles the editor between standard and source edit mode.
29241      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
29242      */
29243     toggleSourceEdit : function(sourceEditMode){
29244         
29245         this.sourceEditMode = sourceEditMode === true;
29246         
29247         if(this.sourceEditMode){
29248  
29249             Roo.get(this.iframe).addClass(['x-hidden','hide', 'd-none']);     //FIXME - what's the BS styles for these
29250             
29251         }else{
29252             Roo.get(this.iframe).removeClass(['x-hidden','hide', 'd-none']);
29253             //this.iframe.className = '';
29254             this.deferFocus();
29255         }
29256         //this.setSize(this.owner.wrap.getSize());
29257         //this.fireEvent('editmodechange', this, this.sourceEditMode);
29258     },
29259
29260     
29261   
29262
29263     /**
29264      * Protected method that will not generally be called directly. If you need/want
29265      * custom HTML cleanup, this is the method you should override.
29266      * @param {String} html The HTML to be cleaned
29267      * return {String} The cleaned HTML
29268      */
29269     cleanHtml : function(html)
29270     {
29271         html = String(html);
29272         if(html.length > 5){
29273             if(Roo.isSafari){ // strip safari nonsense
29274                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
29275             }
29276         }
29277         if(html == '&nbsp;'){
29278             html = '';
29279         }
29280         return html;
29281     },
29282
29283     /**
29284      * HTML Editor -> Textarea
29285      * Protected method that will not generally be called directly. Syncs the contents
29286      * of the editor iframe with the textarea.
29287      */
29288     syncValue : function()
29289     {
29290         //Roo.log("HtmlEditorCore:syncValue (EDITOR->TEXT)");
29291         if(this.initialized){
29292             
29293             if (this.undoManager) {
29294                 this.undoManager.addEvent();
29295             }
29296
29297             
29298             var bd = (this.doc.body || this.doc.documentElement);
29299            
29300             
29301             var sel = this.win.getSelection();
29302             
29303             var div = document.createElement('div');
29304             div.innerHTML = bd.innerHTML;
29305             var gtx = div.getElementsByClassName('gtx-trans-icon'); // google translate - really annoying and difficult to get rid of.
29306             if (gtx.length > 0) {
29307                 var rm = gtx.item(0).parentNode;
29308                 rm.parentNode.removeChild(rm);
29309             }
29310             
29311            
29312             if (this.enableBlocks) {
29313                 new Roo.htmleditor.FilterBlock({ node : div });
29314             }
29315             //?? tidy?
29316             if (this.autoClean) {
29317                 var tidy = new Roo.htmleditor.TidySerializer({
29318                     inner:  true
29319                 });
29320                 var html  = tidy.serialize(div);
29321                 
29322             }
29323             
29324             
29325             if(Roo.isSafari){
29326                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
29327                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
29328                 if(m && m[1]){
29329                     html = '<div style="'+m[0]+'">' + html + '</div>';
29330                 }
29331             }
29332             html = this.cleanHtml(html);
29333             // fix up the special chars.. normaly like back quotes in word...
29334             // however we do not want to do this with chinese..
29335             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
29336                 
29337                 var cc = match.charCodeAt();
29338
29339                 // Get the character value, handling surrogate pairs
29340                 if (match.length == 2) {
29341                     // It's a surrogate pair, calculate the Unicode code point
29342                     var high = match.charCodeAt(0) - 0xD800;
29343                     var low  = match.charCodeAt(1) - 0xDC00;
29344                     cc = (high * 0x400) + low + 0x10000;
29345                 }  else if (
29346                     (cc >= 0x4E00 && cc < 0xA000 ) ||
29347                     (cc >= 0x3400 && cc < 0x4E00 ) ||
29348                     (cc >= 0xf900 && cc < 0xfb00 )
29349                 ) {
29350                         return match;
29351                 }  
29352          
29353                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
29354                 return "&#" + cc + ";";
29355                 
29356                 
29357             });
29358             
29359             
29360              
29361             if(this.owner.fireEvent('beforesync', this, html) !== false){
29362                 this.el.dom.value = html;
29363                 this.owner.fireEvent('sync', this, html);
29364             }
29365         }
29366     },
29367
29368     /**
29369      * TEXTAREA -> EDITABLE
29370      * Protected method that will not generally be called directly. Pushes the value of the textarea
29371      * into the iframe editor.
29372      */
29373     pushValue : function()
29374     {
29375         //Roo.log("HtmlEditorCore:pushValue (TEXT->EDITOR)");
29376         if(this.initialized){
29377             var v = this.el.dom.value.trim();
29378             
29379             
29380             if(this.owner.fireEvent('beforepush', this, v) !== false){
29381                 var d = (this.doc.body || this.doc.documentElement);
29382                 d.innerHTML = v;
29383                  
29384                 this.el.dom.value = d.innerHTML;
29385                 this.owner.fireEvent('push', this, v);
29386             }
29387             if (this.autoClean) {
29388                 new Roo.htmleditor.FilterParagraph({node : this.doc.body}); // paragraphs
29389                 new Roo.htmleditor.FilterSpan({node : this.doc.body}); // empty spans
29390             }
29391             if (this.enableBlocks) {
29392                 Roo.htmleditor.Block.initAll(this.doc.body);
29393             }
29394             
29395             this.updateLanguage();
29396             
29397             var lc = this.doc.body.lastChild;
29398             if (lc && lc.nodeType == 1 && lc.getAttribute("contenteditable") == "false") {
29399                 // add an extra line at the end.
29400                 this.doc.body.appendChild(this.doc.createElement('br'));
29401             }
29402             
29403             
29404         }
29405     },
29406
29407     // private
29408     deferFocus : function(){
29409         this.focus.defer(10, this);
29410     },
29411
29412     // doc'ed in Field
29413     focus : function(){
29414         if(this.win && !this.sourceEditMode){
29415             this.win.focus();
29416         }else{
29417             this.el.focus();
29418         }
29419     },
29420     
29421     assignDocWin: function()
29422     {
29423         var iframe = this.iframe;
29424         
29425          if(Roo.isIE){
29426             this.doc = iframe.contentWindow.document;
29427             this.win = iframe.contentWindow;
29428         } else {
29429 //            if (!Roo.get(this.frameId)) {
29430 //                return;
29431 //            }
29432 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
29433 //            this.win = Roo.get(this.frameId).dom.contentWindow;
29434             
29435             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
29436                 return;
29437             }
29438             
29439             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
29440             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
29441         }
29442     },
29443     
29444     // private
29445     initEditor : function(){
29446         //console.log("INIT EDITOR");
29447         this.assignDocWin();
29448         
29449         
29450         
29451         this.doc.designMode="on";
29452         this.doc.open();
29453         this.doc.write(this.getDocMarkup());
29454         this.doc.close();
29455         
29456         var dbody = (this.doc.body || this.doc.documentElement);
29457         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
29458         // this copies styles from the containing element into thsi one..
29459         // not sure why we need all of this..
29460         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
29461         
29462         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
29463         //ss['background-attachment'] = 'fixed'; // w3c
29464         dbody.bgProperties = 'fixed'; // ie
29465         dbody.setAttribute("translate", "no");
29466         
29467         //Roo.DomHelper.applyStyles(dbody, ss);
29468         Roo.EventManager.on(this.doc, {
29469              
29470             'mouseup': this.onEditorEvent,
29471             'dblclick': this.onEditorEvent,
29472             'click': this.onEditorEvent,
29473             'keyup': this.onEditorEvent,
29474             
29475             buffer:100,
29476             scope: this
29477         });
29478         Roo.EventManager.on(this.doc, {
29479             'paste': this.onPasteEvent,
29480             scope : this
29481         });
29482         if(Roo.isGecko){
29483             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
29484         }
29485         //??? needed???
29486         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
29487             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
29488         }
29489         this.initialized = true;
29490
29491         
29492         // initialize special key events - enter
29493         new Roo.htmleditor.KeyEnter({core : this});
29494         
29495          
29496         
29497         this.owner.fireEvent('initialize', this);
29498         this.pushValue();
29499     },
29500     // this is to prevent a href clicks resulting in a redirect?
29501    
29502     onPasteEvent : function(e,v)
29503     {
29504         // I think we better assume paste is going to be a dirty load of rubish from word..
29505         
29506         // even pasting into a 'email version' of this widget will have to clean up that mess.
29507         var cd = (e.browserEvent.clipboardData || window.clipboardData);
29508         
29509         // check what type of paste - if it's an image, then handle it differently.
29510         if (cd.files && cd.files.length > 0) {
29511             // pasting images?
29512             var urlAPI = (window.createObjectURL && window) || 
29513                 (window.URL && URL.revokeObjectURL && URL) || 
29514                 (window.webkitURL && webkitURL);
29515     
29516             var url = urlAPI.createObjectURL( cd.files[0]);
29517             this.insertAtCursor('<img src=" + url + ">');
29518             return false;
29519         }
29520         if (cd.types.indexOf('text/html') < 0 ) {
29521             return false;
29522         }
29523         var images = [];
29524         var html = cd.getData('text/html'); // clipboard event
29525         if (cd.types.indexOf('text/rtf') > -1) {
29526             var parser = new Roo.rtf.Parser(cd.getData('text/rtf'));
29527             images = parser.doc ? parser.doc.getElementsByType('pict') : [];
29528         }
29529         //Roo.log(images);
29530         //Roo.log(imgs);
29531         // fixme..
29532         images = images.filter(function(g) { return !g.path.match(/^rtf\/(head|pgdsctbl|listtable|footerf)/); }) // ignore headers/footers etc.
29533                        .map(function(g) { return g.toDataURL(); })
29534                        .filter(function(g) { return g != 'about:blank'; });
29535         
29536         //Roo.log(html);
29537         html = this.cleanWordChars(html);
29538         
29539         var d = (new DOMParser().parseFromString(html, 'text/html')).body;
29540         
29541         
29542         var sn = this.getParentElement();
29543         // check if d contains a table, and prevent nesting??
29544         //Roo.log(d.getElementsByTagName('table'));
29545         //Roo.log(sn);
29546         //Roo.log(sn.closest('table'));
29547         if (d.getElementsByTagName('table').length && sn && sn.closest('table')) {
29548             e.preventDefault();
29549             this.insertAtCursor("You can not nest tables");
29550             //Roo.log("prevent?"); // fixme - 
29551             return false;
29552         }
29553         
29554         
29555         
29556         if (images.length > 0) {
29557             // replace all v:imagedata - with img.
29558             var ar = Array.from(d.getElementsByTagName('v:imagedata'));
29559             Roo.each(ar, function(node) {
29560                 node.parentNode.insertBefore(d.ownerDocument.createElement('img'), node );
29561                 node.parentNode.removeChild(node);
29562             });
29563             
29564             
29565             Roo.each(d.getElementsByTagName('img'), function(img, i) {
29566                 img.setAttribute('src', images[i]);
29567             });
29568         }
29569         if (this.autoClean) {
29570             new Roo.htmleditor.FilterWord({ node : d });
29571             
29572             new Roo.htmleditor.FilterStyleToTag({ node : d });
29573             new Roo.htmleditor.FilterAttributes({
29574                 node : d,
29575                 attrib_white : ['href', 'src', 'name', 'align', 'colspan', 'rowspan', 'data-display', 'data-width', 'start'],
29576                 attrib_clean : ['href', 'src' ] 
29577             });
29578             new Roo.htmleditor.FilterBlack({ node : d, tag : this.black});
29579             // should be fonts..
29580             new Roo.htmleditor.FilterKeepChildren({node : d, tag : [ 'FONT', ':' ]} );
29581             new Roo.htmleditor.FilterParagraph({ node : d });
29582             new Roo.htmleditor.FilterSpan({ node : d });
29583             new Roo.htmleditor.FilterLongBr({ node : d });
29584             new Roo.htmleditor.FilterComment({ node : d });
29585             
29586             
29587         }
29588         if (this.enableBlocks) {
29589                 
29590             Array.from(d.getElementsByTagName('img')).forEach(function(img) {
29591                 if (img.closest('figure')) { // assume!! that it's aready
29592                     return;
29593                 }
29594                 var fig  = new Roo.htmleditor.BlockFigure({
29595                     image_src  : img.src
29596                 });
29597                 fig.updateElement(img); // replace it..
29598                 
29599             });
29600         }
29601         
29602         
29603         this.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
29604         if (this.enableBlocks) {
29605             Roo.htmleditor.Block.initAll(this.doc.body);
29606         }
29607          
29608         
29609         e.preventDefault();
29610         return false;
29611         // default behaveiour should be our local cleanup paste? (optional?)
29612         // for simple editor - we want to hammer the paste and get rid of everything... - so over-rideable..
29613         //this.owner.fireEvent('paste', e, v);
29614     },
29615     // private
29616     onDestroy : function(){
29617         
29618         
29619         
29620         if(this.rendered){
29621             
29622             //for (var i =0; i < this.toolbars.length;i++) {
29623             //    // fixme - ask toolbars for heights?
29624             //    this.toolbars[i].onDestroy();
29625            // }
29626             
29627             //this.wrap.dom.innerHTML = '';
29628             //this.wrap.remove();
29629         }
29630     },
29631
29632     // private
29633     onFirstFocus : function(){
29634         
29635         this.assignDocWin();
29636         this.undoManager = new Roo.lib.UndoManager(100,(this.doc.body || this.doc.documentElement));
29637         
29638         this.activated = true;
29639          
29640     
29641         if(Roo.isGecko){ // prevent silly gecko errors
29642             this.win.focus();
29643             var s = this.win.getSelection();
29644             if(!s.focusNode || s.focusNode.nodeType != 3){
29645                 var r = s.getRangeAt(0);
29646                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
29647                 r.collapse(true);
29648                 this.deferFocus();
29649             }
29650             try{
29651                 this.execCmd('useCSS', true);
29652                 this.execCmd('styleWithCSS', false);
29653             }catch(e){}
29654         }
29655         this.owner.fireEvent('activate', this);
29656     },
29657
29658     // private
29659     adjustFont: function(btn){
29660         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
29661         //if(Roo.isSafari){ // safari
29662         //    adjust *= 2;
29663        // }
29664         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
29665         if(Roo.isSafari){ // safari
29666             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
29667             v =  (v < 10) ? 10 : v;
29668             v =  (v > 48) ? 48 : v;
29669             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
29670             
29671         }
29672         
29673         
29674         v = Math.max(1, v+adjust);
29675         
29676         this.execCmd('FontSize', v  );
29677     },
29678
29679     onEditorEvent : function(e)
29680     {
29681          
29682         
29683         if (e && (e.ctrlKey || e.metaKey) && e.keyCode === 90) {
29684             return; // we do not handle this.. (undo manager does..)
29685         }
29686         // in theory this detects if the last element is not a br, then we try and do that.
29687         // its so clicking in space at bottom triggers adding a br and moving the cursor.
29688         if (e &&
29689             e.target.nodeName == 'BODY' &&
29690             e.type == "mouseup" &&
29691             this.doc.body.lastChild
29692            ) {
29693             var lc = this.doc.body.lastChild;
29694             // gtx-trans is google translate plugin adding crap.
29695             while ((lc.nodeType == 3 && lc.nodeValue == '') || lc.id == 'gtx-trans') {
29696                 lc = lc.previousSibling;
29697             }
29698             if (lc.nodeType == 1 && lc.nodeName != 'BR') {
29699             // if last element is <BR> - then dont do anything.
29700             
29701                 var ns = this.doc.createElement('br');
29702                 this.doc.body.appendChild(ns);
29703                 range = this.doc.createRange();
29704                 range.setStartAfter(ns);
29705                 range.collapse(true);
29706                 var sel = this.win.getSelection();
29707                 sel.removeAllRanges();
29708                 sel.addRange(range);
29709             }
29710         }
29711         
29712         
29713         
29714         this.fireEditorEvent(e);
29715       //  this.updateToolbar();
29716         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
29717     },
29718     
29719     fireEditorEvent: function(e)
29720     {
29721         this.owner.fireEvent('editorevent', this, e);
29722     },
29723
29724     insertTag : function(tg)
29725     {
29726         // could be a bit smarter... -> wrap the current selected tRoo..
29727         if (tg.toLowerCase() == 'span' ||
29728             tg.toLowerCase() == 'code' ||
29729             tg.toLowerCase() == 'sup' ||
29730             tg.toLowerCase() == 'sub' 
29731             ) {
29732             
29733             range = this.createRange(this.getSelection());
29734             var wrappingNode = this.doc.createElement(tg.toLowerCase());
29735             wrappingNode.appendChild(range.extractContents());
29736             range.insertNode(wrappingNode);
29737
29738             return;
29739             
29740             
29741             
29742         }
29743         this.execCmd("formatblock",   tg);
29744         this.undoManager.addEvent(); 
29745     },
29746     
29747     insertText : function(txt)
29748     {
29749         
29750         
29751         var range = this.createRange();
29752         range.deleteContents();
29753                //alert(Sender.getAttribute('label'));
29754                
29755         range.insertNode(this.doc.createTextNode(txt));
29756         this.undoManager.addEvent();
29757     } ,
29758     
29759      
29760
29761     /**
29762      * Executes a Midas editor command on the editor document and performs necessary focus and
29763      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
29764      * @param {String} cmd The Midas command
29765      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
29766      */
29767     relayCmd : function(cmd, value)
29768     {
29769         
29770         switch (cmd) {
29771             case 'justifyleft':
29772             case 'justifyright':
29773             case 'justifycenter':
29774                 // if we are in a cell, then we will adjust the
29775                 var n = this.getParentElement();
29776                 var td = n.closest('td');
29777                 if (td) {
29778                     var bl = Roo.htmleditor.Block.factory(td);
29779                     bl.textAlign = cmd.replace('justify','');
29780                     bl.updateElement();
29781                     this.owner.fireEvent('editorevent', this);
29782                     return;
29783                 }
29784                 this.execCmd('styleWithCSS', true); // 
29785                 break;
29786             case 'bold':
29787             case 'italic':
29788                 // if there is no selection, then we insert, and set the curson inside it..
29789                 this.execCmd('styleWithCSS', false); 
29790                 break;
29791                 
29792         
29793             default:
29794                 break;
29795         }
29796         
29797         
29798         this.win.focus();
29799         this.execCmd(cmd, value);
29800         this.owner.fireEvent('editorevent', this);
29801         //this.updateToolbar();
29802         this.owner.deferFocus();
29803     },
29804
29805     /**
29806      * Executes a Midas editor command directly on the editor document.
29807      * For visual commands, you should use {@link #relayCmd} instead.
29808      * <b>This should only be called after the editor is initialized.</b>
29809      * @param {String} cmd The Midas command
29810      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
29811      */
29812     execCmd : function(cmd, value){
29813         this.doc.execCommand(cmd, false, value === undefined ? null : value);
29814         this.syncValue();
29815     },
29816  
29817  
29818    
29819     /**
29820      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
29821      * to insert tRoo.
29822      * @param {String} text | dom node.. 
29823      */
29824     insertAtCursor : function(text)
29825     {
29826         
29827         if(!this.activated){
29828             return;
29829         }
29830          
29831         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
29832             this.win.focus();
29833             
29834             
29835             // from jquery ui (MIT licenced)
29836             var range, node;
29837             var win = this.win;
29838             
29839             if (win.getSelection && win.getSelection().getRangeAt) {
29840                 
29841                 // delete the existing?
29842                 
29843                 this.createRange(this.getSelection()).deleteContents();
29844                 range = win.getSelection().getRangeAt(0);
29845                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
29846                 range.insertNode(node);
29847                 range = range.cloneRange();
29848                 range.collapse(false);
29849                  
29850                 win.getSelection().removeAllRanges();
29851                 win.getSelection().addRange(range);
29852                 
29853                 
29854                 
29855             } else if (win.document.selection && win.document.selection.createRange) {
29856                 // no firefox support
29857                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
29858                 win.document.selection.createRange().pasteHTML(txt);
29859             
29860             } else {
29861                 // no firefox support
29862                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
29863                 this.execCmd('InsertHTML', txt);
29864             } 
29865             this.syncValue();
29866             
29867             this.deferFocus();
29868         }
29869     },
29870  // private
29871     mozKeyPress : function(e){
29872         if(e.ctrlKey){
29873             var c = e.getCharCode(), cmd;
29874           
29875             if(c > 0){
29876                 c = String.fromCharCode(c).toLowerCase();
29877                 switch(c){
29878                     case 'b':
29879                         cmd = 'bold';
29880                         break;
29881                     case 'i':
29882                         cmd = 'italic';
29883                         break;
29884                     
29885                     case 'u':
29886                         cmd = 'underline';
29887                         break;
29888                     
29889                     //case 'v':
29890                       //  this.cleanUpPaste.defer(100, this);
29891                       //  return;
29892                         
29893                 }
29894                 if(cmd){
29895                     
29896                     this.relayCmd(cmd);
29897                     //this.win.focus();
29898                     //this.execCmd(cmd);
29899                     //this.deferFocus();
29900                     e.preventDefault();
29901                 }
29902                 
29903             }
29904         }
29905     },
29906
29907     // private
29908     fixKeys : function(){ // load time branching for fastest keydown performance
29909         
29910         
29911         if(Roo.isIE){
29912             return function(e){
29913                 var k = e.getKey(), r;
29914                 if(k == e.TAB){
29915                     e.stopEvent();
29916                     r = this.doc.selection.createRange();
29917                     if(r){
29918                         r.collapse(true);
29919                         r.pasteHTML('&#160;&#160;&#160;&#160;');
29920                         this.deferFocus();
29921                     }
29922                     return;
29923                 }
29924                 /// this is handled by Roo.htmleditor.KeyEnter
29925                  /*
29926                 if(k == e.ENTER){
29927                     r = this.doc.selection.createRange();
29928                     if(r){
29929                         var target = r.parentElement();
29930                         if(!target || target.tagName.toLowerCase() != 'li'){
29931                             e.stopEvent();
29932                             r.pasteHTML('<br/>');
29933                             r.collapse(false);
29934                             r.select();
29935                         }
29936                     }
29937                 }
29938                 */
29939                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
29940                 //    this.cleanUpPaste.defer(100, this);
29941                 //    return;
29942                 //}
29943                 
29944                 
29945             };
29946         }else if(Roo.isOpera){
29947             return function(e){
29948                 var k = e.getKey();
29949                 if(k == e.TAB){
29950                     e.stopEvent();
29951                     this.win.focus();
29952                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
29953                     this.deferFocus();
29954                 }
29955                
29956                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
29957                 //    this.cleanUpPaste.defer(100, this);
29958                  //   return;
29959                 //}
29960                 
29961             };
29962         }else if(Roo.isSafari){
29963             return function(e){
29964                 var k = e.getKey();
29965                 
29966                 if(k == e.TAB){
29967                     e.stopEvent();
29968                     this.execCmd('InsertText','\t');
29969                     this.deferFocus();
29970                     return;
29971                 }
29972                  this.mozKeyPress(e);
29973                 
29974                //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
29975                  //   this.cleanUpPaste.defer(100, this);
29976                  //   return;
29977                // }
29978                 
29979              };
29980         }
29981     }(),
29982     
29983     getAllAncestors: function()
29984     {
29985         var p = this.getSelectedNode();
29986         var a = [];
29987         if (!p) {
29988             a.push(p); // push blank onto stack..
29989             p = this.getParentElement();
29990         }
29991         
29992         
29993         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
29994             a.push(p);
29995             p = p.parentNode;
29996         }
29997         a.push(this.doc.body);
29998         return a;
29999     },
30000     lastSel : false,
30001     lastSelNode : false,
30002     
30003     
30004     getSelection : function() 
30005     {
30006         this.assignDocWin();
30007         return Roo.lib.Selection.wrap(Roo.isIE ? this.doc.selection : this.win.getSelection(), this.doc);
30008     },
30009     /**
30010      * Select a dom node
30011      * @param {DomElement} node the node to select
30012      */
30013     selectNode : function(node, collapse)
30014     {
30015         var nodeRange = node.ownerDocument.createRange();
30016         try {
30017             nodeRange.selectNode(node);
30018         } catch (e) {
30019             nodeRange.selectNodeContents(node);
30020         }
30021         if (collapse === true) {
30022             nodeRange.collapse(true);
30023         }
30024         //
30025         var s = this.win.getSelection();
30026         s.removeAllRanges();
30027         s.addRange(nodeRange);
30028     },
30029     
30030     getSelectedNode: function() 
30031     {
30032         // this may only work on Gecko!!!
30033         
30034         // should we cache this!!!!
30035         
30036          
30037          
30038         var range = this.createRange(this.getSelection()).cloneRange();
30039         
30040         if (Roo.isIE) {
30041             var parent = range.parentElement();
30042             while (true) {
30043                 var testRange = range.duplicate();
30044                 testRange.moveToElementText(parent);
30045                 if (testRange.inRange(range)) {
30046                     break;
30047                 }
30048                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
30049                     break;
30050                 }
30051                 parent = parent.parentElement;
30052             }
30053             return parent;
30054         }
30055         
30056         // is ancestor a text element.
30057         var ac =  range.commonAncestorContainer;
30058         if (ac.nodeType == 3) {
30059             ac = ac.parentNode;
30060         }
30061         
30062         var ar = ac.childNodes;
30063          
30064         var nodes = [];
30065         var other_nodes = [];
30066         var has_other_nodes = false;
30067         for (var i=0;i<ar.length;i++) {
30068             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
30069                 continue;
30070             }
30071             // fullly contained node.
30072             
30073             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
30074                 nodes.push(ar[i]);
30075                 continue;
30076             }
30077             
30078             // probably selected..
30079             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
30080                 other_nodes.push(ar[i]);
30081                 continue;
30082             }
30083             // outer..
30084             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
30085                 continue;
30086             }
30087             
30088             
30089             has_other_nodes = true;
30090         }
30091         if (!nodes.length && other_nodes.length) {
30092             nodes= other_nodes;
30093         }
30094         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
30095             return false;
30096         }
30097         
30098         return nodes[0];
30099     },
30100     
30101     
30102     createRange: function(sel)
30103     {
30104         // this has strange effects when using with 
30105         // top toolbar - not sure if it's a great idea.
30106         //this.editor.contentWindow.focus();
30107         if (typeof sel != "undefined") {
30108             try {
30109                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
30110             } catch(e) {
30111                 return this.doc.createRange();
30112             }
30113         } else {
30114             return this.doc.createRange();
30115         }
30116     },
30117     getParentElement: function()
30118     {
30119         
30120         this.assignDocWin();
30121         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
30122         
30123         var range = this.createRange(sel);
30124          
30125         try {
30126             var p = range.commonAncestorContainer;
30127             while (p.nodeType == 3) { // text node
30128                 p = p.parentNode;
30129             }
30130             return p;
30131         } catch (e) {
30132             return null;
30133         }
30134     
30135     },
30136     /***
30137      *
30138      * Range intersection.. the hard stuff...
30139      *  '-1' = before
30140      *  '0' = hits..
30141      *  '1' = after.
30142      *         [ -- selected range --- ]
30143      *   [fail]                        [fail]
30144      *
30145      *    basically..
30146      *      if end is before start or  hits it. fail.
30147      *      if start is after end or hits it fail.
30148      *
30149      *   if either hits (but other is outside. - then it's not 
30150      *   
30151      *    
30152      **/
30153     
30154     
30155     // @see http://www.thismuchiknow.co.uk/?p=64.
30156     rangeIntersectsNode : function(range, node)
30157     {
30158         var nodeRange = node.ownerDocument.createRange();
30159         try {
30160             nodeRange.selectNode(node);
30161         } catch (e) {
30162             nodeRange.selectNodeContents(node);
30163         }
30164     
30165         var rangeStartRange = range.cloneRange();
30166         rangeStartRange.collapse(true);
30167     
30168         var rangeEndRange = range.cloneRange();
30169         rangeEndRange.collapse(false);
30170     
30171         var nodeStartRange = nodeRange.cloneRange();
30172         nodeStartRange.collapse(true);
30173     
30174         var nodeEndRange = nodeRange.cloneRange();
30175         nodeEndRange.collapse(false);
30176     
30177         return rangeStartRange.compareBoundaryPoints(
30178                  Range.START_TO_START, nodeEndRange) == -1 &&
30179                rangeEndRange.compareBoundaryPoints(
30180                  Range.START_TO_START, nodeStartRange) == 1;
30181         
30182          
30183     },
30184     rangeCompareNode : function(range, node)
30185     {
30186         var nodeRange = node.ownerDocument.createRange();
30187         try {
30188             nodeRange.selectNode(node);
30189         } catch (e) {
30190             nodeRange.selectNodeContents(node);
30191         }
30192         
30193         
30194         range.collapse(true);
30195     
30196         nodeRange.collapse(true);
30197      
30198         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
30199         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
30200          
30201         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
30202         
30203         var nodeIsBefore   =  ss == 1;
30204         var nodeIsAfter    = ee == -1;
30205         
30206         if (nodeIsBefore && nodeIsAfter) {
30207             return 0; // outer
30208         }
30209         if (!nodeIsBefore && nodeIsAfter) {
30210             return 1; //right trailed.
30211         }
30212         
30213         if (nodeIsBefore && !nodeIsAfter) {
30214             return 2;  // left trailed.
30215         }
30216         // fully contined.
30217         return 3;
30218     },
30219  
30220     cleanWordChars : function(input) {// change the chars to hex code
30221         
30222        var swapCodes  = [ 
30223             [    8211, "&#8211;" ], 
30224             [    8212, "&#8212;" ], 
30225             [    8216,  "'" ],  
30226             [    8217, "'" ],  
30227             [    8220, '"' ],  
30228             [    8221, '"' ],  
30229             [    8226, "*" ],  
30230             [    8230, "..." ]
30231         ]; 
30232         var output = input;
30233         Roo.each(swapCodes, function(sw) { 
30234             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
30235             
30236             output = output.replace(swapper, sw[1]);
30237         });
30238         
30239         return output;
30240     },
30241     
30242      
30243     
30244         
30245     
30246     cleanUpChild : function (node)
30247     {
30248         
30249         new Roo.htmleditor.FilterComment({node : node});
30250         new Roo.htmleditor.FilterAttributes({
30251                 node : node,
30252                 attrib_black : this.ablack,
30253                 attrib_clean : this.aclean,
30254                 style_white : this.cwhite,
30255                 style_black : this.cblack
30256         });
30257         new Roo.htmleditor.FilterBlack({ node : node, tag : this.black});
30258         new Roo.htmleditor.FilterKeepChildren({node : node, tag : this.tag_remove} );
30259          
30260         
30261     },
30262     
30263     /**
30264      * Clean up MS wordisms...
30265      * @deprecated - use filter directly
30266      */
30267     cleanWord : function(node)
30268     {
30269         new Roo.htmleditor.FilterWord({ node : node ? node : this.doc.body });
30270         new Roo.htmleditor.FilterKeepChildren({node : node ? node : this.doc.body, tag : [ 'FONT', ':' ]} );
30271         
30272     },
30273    
30274     
30275     /**
30276
30277      * @deprecated - use filters
30278      */
30279     cleanTableWidths : function(node)
30280     {
30281         new Roo.htmleditor.FilterTableWidth({ node : node ? node : this.doc.body});
30282         
30283  
30284     },
30285     
30286      
30287         
30288     applyBlacklists : function()
30289     {
30290         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
30291         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
30292         
30293         this.aclean = typeof(this.owner.aclean) != 'undefined' && this.owner.aclean ? this.owner.aclean :  Roo.HtmlEditorCore.aclean;
30294         this.ablack = typeof(this.owner.ablack) != 'undefined' && this.owner.ablack ? this.owner.ablack :  Roo.HtmlEditorCore.ablack;
30295         this.tag_remove = typeof(this.owner.tag_remove) != 'undefined' && this.owner.tag_remove ? this.owner.tag_remove :  Roo.HtmlEditorCore.tag_remove;
30296         
30297         this.white = [];
30298         this.black = [];
30299         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
30300             if (b.indexOf(tag) > -1) {
30301                 return;
30302             }
30303             this.white.push(tag);
30304             
30305         }, this);
30306         
30307         Roo.each(w, function(tag) {
30308             if (b.indexOf(tag) > -1) {
30309                 return;
30310             }
30311             if (this.white.indexOf(tag) > -1) {
30312                 return;
30313             }
30314             this.white.push(tag);
30315             
30316         }, this);
30317         
30318         
30319         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
30320             if (w.indexOf(tag) > -1) {
30321                 return;
30322             }
30323             this.black.push(tag);
30324             
30325         }, this);
30326         
30327         Roo.each(b, function(tag) {
30328             if (w.indexOf(tag) > -1) {
30329                 return;
30330             }
30331             if (this.black.indexOf(tag) > -1) {
30332                 return;
30333             }
30334             this.black.push(tag);
30335             
30336         }, this);
30337         
30338         
30339         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
30340         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
30341         
30342         this.cwhite = [];
30343         this.cblack = [];
30344         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
30345             if (b.indexOf(tag) > -1) {
30346                 return;
30347             }
30348             this.cwhite.push(tag);
30349             
30350         }, this);
30351         
30352         Roo.each(w, function(tag) {
30353             if (b.indexOf(tag) > -1) {
30354                 return;
30355             }
30356             if (this.cwhite.indexOf(tag) > -1) {
30357                 return;
30358             }
30359             this.cwhite.push(tag);
30360             
30361         }, this);
30362         
30363         
30364         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
30365             if (w.indexOf(tag) > -1) {
30366                 return;
30367             }
30368             this.cblack.push(tag);
30369             
30370         }, this);
30371         
30372         Roo.each(b, function(tag) {
30373             if (w.indexOf(tag) > -1) {
30374                 return;
30375             }
30376             if (this.cblack.indexOf(tag) > -1) {
30377                 return;
30378             }
30379             this.cblack.push(tag);
30380             
30381         }, this);
30382     },
30383     
30384     setStylesheets : function(stylesheets)
30385     {
30386         if(typeof(stylesheets) == 'string'){
30387             Roo.get(this.iframe.contentDocument.head).createChild({
30388                 tag : 'link',
30389                 rel : 'stylesheet',
30390                 type : 'text/css',
30391                 href : stylesheets
30392             });
30393             
30394             return;
30395         }
30396         var _this = this;
30397      
30398         Roo.each(stylesheets, function(s) {
30399             if(!s.length){
30400                 return;
30401             }
30402             
30403             Roo.get(_this.iframe.contentDocument.head).createChild({
30404                 tag : 'link',
30405                 rel : 'stylesheet',
30406                 type : 'text/css',
30407                 href : s
30408             });
30409         });
30410
30411         
30412     },
30413     
30414     
30415     updateLanguage : function()
30416     {
30417         if (!this.iframe || !this.iframe.contentDocument) {
30418             return;
30419         }
30420         Roo.get(this.iframe.contentDocument.body).attr("lang", this.language);
30421     },
30422     
30423     
30424     removeStylesheets : function()
30425     {
30426         var _this = this;
30427         
30428         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
30429             s.remove();
30430         });
30431     },
30432     
30433     setStyle : function(style)
30434     {
30435         Roo.get(this.iframe.contentDocument.head).createChild({
30436             tag : 'style',
30437             type : 'text/css',
30438             html : style
30439         });
30440
30441         return;
30442     }
30443     
30444     // hide stuff that is not compatible
30445     /**
30446      * @event blur
30447      * @hide
30448      */
30449     /**
30450      * @event change
30451      * @hide
30452      */
30453     /**
30454      * @event focus
30455      * @hide
30456      */
30457     /**
30458      * @event specialkey
30459      * @hide
30460      */
30461     /**
30462      * @cfg {String} fieldClass @hide
30463      */
30464     /**
30465      * @cfg {String} focusClass @hide
30466      */
30467     /**
30468      * @cfg {String} autoCreate @hide
30469      */
30470     /**
30471      * @cfg {String} inputType @hide
30472      */
30473     /**
30474      * @cfg {String} invalidClass @hide
30475      */
30476     /**
30477      * @cfg {String} invalidText @hide
30478      */
30479     /**
30480      * @cfg {String} msgFx @hide
30481      */
30482     /**
30483      * @cfg {String} validateOnBlur @hide
30484      */
30485 });
30486
30487 Roo.HtmlEditorCore.white = [
30488         'AREA', 'BR', 'IMG', 'INPUT', 'HR', 'WBR',
30489         
30490        'ADDRESS', 'BLOCKQUOTE', 'CENTER', 'DD',      'DIR',       'DIV', 
30491        'DL',      'DT',         'H1',     'H2',      'H3',        'H4', 
30492        'H5',      'H6',         'HR',     'ISINDEX', 'LISTING',   'MARQUEE', 
30493        'MENU',    'MULTICOL',   'OL',     'P',       'PLAINTEXT', 'PRE', 
30494        'TABLE',   'UL',         'XMP', 
30495        
30496        'CAPTION', 'COL', 'COLGROUP', 'TBODY', 'TD', 'TFOOT', 'TH', 
30497       'THEAD',   'TR', 
30498      
30499       'DIR', 'MENU', 'OL', 'UL', 'DL',
30500        
30501       'EMBED',  'OBJECT'
30502 ];
30503
30504
30505 Roo.HtmlEditorCore.black = [
30506     //    'embed',  'object', // enable - backend responsiblity to clean thiese
30507         'APPLET', // 
30508         'BASE',   'BASEFONT', 'BGSOUND', 'BLINK',  'BODY', 
30509         'FRAME',  'FRAMESET', 'HEAD',    'HTML',   'ILAYER', 
30510         'IFRAME', 'LAYER',  'LINK',     'META',    'OBJECT',   
30511         'SCRIPT', 'STYLE' ,'TITLE',  'XML',
30512         //'FONT' // CLEAN LATER..
30513         'COLGROUP', 'COL'   // messy tables.
30514         
30515         
30516 ];
30517 Roo.HtmlEditorCore.clean = [ // ?? needed???
30518      'SCRIPT', 'STYLE', 'TITLE', 'XML'
30519 ];
30520 Roo.HtmlEditorCore.tag_remove = [
30521     'FONT', 'TBODY'  
30522 ];
30523 // attributes..
30524
30525 Roo.HtmlEditorCore.ablack = [
30526     'on'
30527 ];
30528     
30529 Roo.HtmlEditorCore.aclean = [ 
30530     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
30531 ];
30532
30533 // protocols..
30534 Roo.HtmlEditorCore.pwhite= [
30535         'http',  'https',  'mailto'
30536 ];
30537
30538 // white listed style attributes.
30539 Roo.HtmlEditorCore.cwhite= [
30540       //  'text-align', /// default is to allow most things..
30541       
30542          
30543 //        'font-size'//??
30544 ];
30545
30546 // black listed style attributes.
30547 Roo.HtmlEditorCore.cblack= [
30548       //  'font-size' -- this can be set by the project 
30549 ];
30550
30551
30552
30553
30554     /*
30555  * - LGPL
30556  *
30557  * HtmlEditor
30558  * 
30559  */
30560
30561 /**
30562  * @class Roo.bootstrap.form.HtmlEditor
30563  * @extends Roo.bootstrap.form.TextArea
30564  * Bootstrap HtmlEditor class
30565
30566  * @constructor
30567  * Create a new HtmlEditor
30568  * @param {Object} config The config object
30569  */
30570
30571 Roo.bootstrap.form.HtmlEditor = function(config){
30572     Roo.bootstrap.form.HtmlEditor.superclass.constructor.call(this, config);
30573     if (!this.toolbars) {
30574         this.toolbars = [];
30575     }
30576     
30577     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
30578     this.addEvents({
30579             /**
30580              * @event initialize
30581              * Fires when the editor is fully initialized (including the iframe)
30582              * @param {HtmlEditor} this
30583              */
30584             initialize: true,
30585             /**
30586              * @event activate
30587              * Fires when the editor is first receives the focus. Any insertion must wait
30588              * until after this event.
30589              * @param {HtmlEditor} this
30590              */
30591             activate: true,
30592              /**
30593              * @event beforesync
30594              * Fires before the textarea is updated with content from the editor iframe. Return false
30595              * to cancel the sync.
30596              * @param {HtmlEditor} this
30597              * @param {String} html
30598              */
30599             beforesync: true,
30600              /**
30601              * @event beforepush
30602              * Fires before the iframe editor is updated with content from the textarea. Return false
30603              * to cancel the push.
30604              * @param {HtmlEditor} this
30605              * @param {String} html
30606              */
30607             beforepush: true,
30608              /**
30609              * @event sync
30610              * Fires when the textarea is updated with content from the editor iframe.
30611              * @param {HtmlEditor} this
30612              * @param {String} html
30613              */
30614             sync: true,
30615              /**
30616              * @event push
30617              * Fires when the iframe editor is updated with content from the textarea.
30618              * @param {HtmlEditor} this
30619              * @param {String} html
30620              */
30621             push: true,
30622              /**
30623              * @event editmodechange
30624              * Fires when the editor switches edit modes
30625              * @param {HtmlEditor} this
30626              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
30627              */
30628             editmodechange: true,
30629             /**
30630              * @event editorevent
30631              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
30632              * @param {HtmlEditor} this
30633              */
30634             editorevent: true,
30635             /**
30636              * @event firstfocus
30637              * Fires when on first focus - needed by toolbars..
30638              * @param {HtmlEditor} this
30639              */
30640             firstfocus: true,
30641             /**
30642              * @event autosave
30643              * Auto save the htmlEditor value as a file into Events
30644              * @param {HtmlEditor} this
30645              */
30646             autosave: true,
30647             /**
30648              * @event savedpreview
30649              * preview the saved version of htmlEditor
30650              * @param {HtmlEditor} this
30651              */
30652             savedpreview: true
30653         });
30654 };
30655
30656
30657 Roo.extend(Roo.bootstrap.form.HtmlEditor, Roo.bootstrap.form.TextArea,  {
30658     
30659     
30660       /**
30661      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
30662      */
30663     toolbars : false,
30664     
30665      /**
30666     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
30667     */
30668     btns : [],
30669    
30670      /**
30671      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
30672      *                        Roo.resizable.
30673      */
30674     resizable : false,
30675      /**
30676      * @cfg {Number} height (in pixels)
30677      */   
30678     height: 300,
30679    /**
30680      * @cfg {Number} width (in pixels)
30681      */   
30682     width: false,
30683     
30684     /**
30685      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
30686      * 
30687      */
30688     stylesheets: false,
30689     
30690     // id of frame..
30691     frameId: false,
30692     
30693     // private properties
30694     validationEvent : false,
30695     deferHeight: true,
30696     initialized : false,
30697     activated : false,
30698     
30699     onFocus : Roo.emptyFn,
30700     iframePad:3,
30701     hideMode:'offsets',
30702     
30703     tbContainer : false,
30704     
30705     bodyCls : '',
30706     
30707     toolbarContainer :function() {
30708         return this.wrap.select('.x-html-editor-tb',true).first();
30709     },
30710
30711     /**
30712      * Protected method that will not generally be called directly. It
30713      * is called when the editor creates its toolbar. Override this method if you need to
30714      * add custom toolbar buttons.
30715      * @param {HtmlEditor} editor
30716      */
30717     createToolbar : function(){
30718         Roo.log('renewing');
30719         Roo.log("create toolbars");
30720         
30721         this.toolbars = [ new Roo.bootstrap.form.HtmlEditorToolbarStandard({editor: this} ) ];
30722         this.toolbars[0].render(this.toolbarContainer());
30723         
30724         return;
30725         
30726 //        if (!editor.toolbars || !editor.toolbars.length) {
30727 //            editor.toolbars = [ new Roo.bootstrap.form.HtmlEditorToolbarStandard() ]; // can be empty?
30728 //        }
30729 //        
30730 //        for (var i =0 ; i < editor.toolbars.length;i++) {
30731 //            editor.toolbars[i] = Roo.factory(
30732 //                    typeof(editor.toolbars[i]) == 'string' ?
30733 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
30734 //                Roo.bootstrap.form.HtmlEditor);
30735 //            editor.toolbars[i].init(editor);
30736 //        }
30737     },
30738
30739      
30740     // private
30741     onRender : function(ct, position)
30742     {
30743        // Roo.log("Call onRender: " + this.xtype);
30744         var _t = this;
30745         Roo.bootstrap.form.HtmlEditor.superclass.onRender.call(this, ct, position);
30746       
30747         this.wrap = this.inputEl().wrap({
30748             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
30749         });
30750         
30751         this.editorcore.onRender(ct, position);
30752          
30753         if (this.resizable) {
30754             this.resizeEl = new Roo.Resizable(this.wrap, {
30755                 pinned : true,
30756                 wrap: true,
30757                 dynamic : true,
30758                 minHeight : this.height,
30759                 height: this.height,
30760                 handles : this.resizable,
30761                 width: this.width,
30762                 listeners : {
30763                     resize : function(r, w, h) {
30764                         _t.onResize(w,h); // -something
30765                     }
30766                 }
30767             });
30768             
30769         }
30770         this.createToolbar(this);
30771        
30772         
30773         if(!this.width && this.resizable){
30774             this.setSize(this.wrap.getSize());
30775         }
30776         if (this.resizeEl) {
30777             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
30778             // should trigger onReize..
30779         }
30780         
30781     },
30782
30783     // private
30784     onResize : function(w, h)
30785     {
30786         Roo.log('resize: ' +w + ',' + h );
30787         Roo.bootstrap.form.HtmlEditor.superclass.onResize.apply(this, arguments);
30788         var ew = false;
30789         var eh = false;
30790         
30791         if(this.inputEl() ){
30792             if(typeof w == 'number'){
30793                 var aw = w - this.wrap.getFrameWidth('lr');
30794                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
30795                 ew = aw;
30796             }
30797             if(typeof h == 'number'){
30798                  var tbh = -11;  // fixme it needs to tool bar size!
30799                 for (var i =0; i < this.toolbars.length;i++) {
30800                     // fixme - ask toolbars for heights?
30801                     tbh += this.toolbars[i].el.getHeight();
30802                     //if (this.toolbars[i].footer) {
30803                     //    tbh += this.toolbars[i].footer.el.getHeight();
30804                     //}
30805                 }
30806               
30807                 
30808                 
30809                 
30810                 
30811                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
30812                 ah -= 5; // knock a few pixes off for look..
30813                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
30814                 var eh = ah;
30815             }
30816         }
30817         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
30818         this.editorcore.onResize(ew,eh);
30819         
30820     },
30821
30822     /**
30823      * Toggles the editor between standard and source edit mode.
30824      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
30825      */
30826     toggleSourceEdit : function(sourceEditMode)
30827     {
30828         this.editorcore.toggleSourceEdit(sourceEditMode);
30829         
30830         if(this.editorcore.sourceEditMode){
30831             Roo.log('editor - showing textarea');
30832             
30833 //            Roo.log('in');
30834 //            Roo.log(this.syncValue());
30835             this.syncValue();
30836             this.inputEl().removeClass(['hide', 'x-hidden']);
30837             this.inputEl().dom.removeAttribute('tabIndex');
30838             this.inputEl().focus();
30839         }else{
30840             Roo.log('editor - hiding textarea');
30841 //            Roo.log('out')
30842 //            Roo.log(this.pushValue()); 
30843             this.pushValue();
30844             
30845             this.inputEl().addClass(['hide', 'x-hidden']);
30846             this.inputEl().dom.setAttribute('tabIndex', -1);
30847             //this.deferFocus();
30848         }
30849          
30850         if(this.resizable){
30851             this.setSize(this.wrap.getSize());
30852         }
30853         
30854         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
30855     },
30856  
30857     // private (for BoxComponent)
30858     adjustSize : Roo.BoxComponent.prototype.adjustSize,
30859
30860     // private (for BoxComponent)
30861     getResizeEl : function(){
30862         return this.wrap;
30863     },
30864
30865     // private (for BoxComponent)
30866     getPositionEl : function(){
30867         return this.wrap;
30868     },
30869
30870     // private
30871     initEvents : function(){
30872         this.originalValue = this.getValue();
30873     },
30874
30875 //    /**
30876 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
30877 //     * @method
30878 //     */
30879 //    markInvalid : Roo.emptyFn,
30880 //    /**
30881 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
30882 //     * @method
30883 //     */
30884 //    clearInvalid : Roo.emptyFn,
30885
30886     setValue : function(v){
30887         Roo.bootstrap.form.HtmlEditor.superclass.setValue.call(this, v);
30888         this.editorcore.pushValue();
30889     },
30890
30891      
30892     // private
30893     deferFocus : function(){
30894         this.focus.defer(10, this);
30895     },
30896
30897     // doc'ed in Field
30898     focus : function(){
30899         this.editorcore.focus();
30900         
30901     },
30902       
30903
30904     // private
30905     onDestroy : function(){
30906         
30907         
30908         
30909         if(this.rendered){
30910             
30911             for (var i =0; i < this.toolbars.length;i++) {
30912                 // fixme - ask toolbars for heights?
30913                 this.toolbars[i].onDestroy();
30914             }
30915             
30916             this.wrap.dom.innerHTML = '';
30917             this.wrap.remove();
30918         }
30919     },
30920
30921     // private
30922     onFirstFocus : function(){
30923         //Roo.log("onFirstFocus");
30924         this.editorcore.onFirstFocus();
30925          for (var i =0; i < this.toolbars.length;i++) {
30926             this.toolbars[i].onFirstFocus();
30927         }
30928         
30929     },
30930     
30931     // private
30932     syncValue : function()
30933     {   
30934         this.editorcore.syncValue();
30935     },
30936     
30937     pushValue : function()
30938     {   
30939         this.editorcore.pushValue();
30940     }
30941      
30942     
30943     // hide stuff that is not compatible
30944     /**
30945      * @event blur
30946      * @hide
30947      */
30948     /**
30949      * @event change
30950      * @hide
30951      */
30952     /**
30953      * @event focus
30954      * @hide
30955      */
30956     /**
30957      * @event specialkey
30958      * @hide
30959      */
30960     /**
30961      * @cfg {String} fieldClass @hide
30962      */
30963     /**
30964      * @cfg {String} focusClass @hide
30965      */
30966     /**
30967      * @cfg {String} autoCreate @hide
30968      */
30969     /**
30970      * @cfg {String} inputType @hide
30971      */
30972      
30973     /**
30974      * @cfg {String} invalidText @hide
30975      */
30976     /**
30977      * @cfg {String} msgFx @hide
30978      */
30979     /**
30980      * @cfg {String} validateOnBlur @hide
30981      */
30982 });
30983  
30984     
30985    
30986    
30987    
30988       
30989 Roo.namespace('Roo.bootstrap.form.HtmlEditor');
30990 /**
30991  * @class Roo.bootstrap.form.HtmlEditorToolbarStandard
30992  * @parent Roo.bootstrap.form.HtmlEditor
30993  * @extends Roo.bootstrap.nav.Simplebar
30994  * Basic Toolbar
30995  * 
30996  * @example
30997  * Usage:
30998  *
30999  new Roo.bootstrap.form.HtmlEditor({
31000     ....
31001     toolbars : [
31002         new Roo.bootstrap.form.HtmlEditorToolbarStandard({
31003             disable : { fonts: 1 , format: 1, ..., ... , ...],
31004             btns : [ .... ]
31005         })
31006     }
31007      
31008  * 
31009  * @cfg {Object} disable List of elements to disable..
31010  * @cfg {Array} btns List of additional buttons.
31011  * 
31012  * 
31013  * NEEDS Extra CSS? 
31014  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
31015  */
31016  
31017 Roo.bootstrap.form.HtmlEditorToolbarStandard = function(config)
31018 {
31019     
31020     Roo.apply(this, config);
31021     
31022     // default disabled, based on 'good practice'..
31023     this.disable = this.disable || {};
31024     Roo.applyIf(this.disable, {
31025         fontSize : true,
31026         colors : true,
31027         specialElements : true
31028     });
31029     Roo.bootstrap.form.HtmlEditorToolbarStandard.superclass.constructor.call(this, config);
31030     
31031     this.editor = config.editor;
31032     this.editorcore = config.editor.editorcore;
31033     
31034     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
31035     
31036     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
31037     // dont call parent... till later.
31038 }
31039 Roo.extend(Roo.bootstrap.form.HtmlEditorToolbarStandard, Roo.bootstrap.nav.Simplebar,  {
31040      
31041     bar : true,
31042     
31043     editor : false,
31044     editorcore : false,
31045     
31046     
31047     formats : [
31048         "p" ,  
31049         "h1","h2","h3","h4","h5","h6", 
31050         "pre", "code", 
31051         "abbr", "acronym", "address", "cite", "samp", "var",
31052         'div','span'
31053     ],
31054     
31055     onRender : function(ct, position)
31056     {
31057        // Roo.log("Call onRender: " + this.xtype);
31058         
31059        Roo.bootstrap.form.HtmlEditorToolbarStandard.superclass.onRender.call(this, ct, position);
31060        Roo.log(this.el);
31061        this.el.dom.style.marginBottom = '0';
31062        var _this = this;
31063        var editorcore = this.editorcore;
31064        var editor= this.editor;
31065        
31066        var children = [];
31067        var btn = function(id,cmd , toggle, handler, html){
31068        
31069             var  event = toggle ? 'toggle' : 'click';
31070        
31071             var a = {
31072                 size : 'sm',
31073                 xtype: 'Button',
31074                 xns: Roo.bootstrap,
31075                 //glyphicon : id,
31076                 fa: id,
31077                 cmd : id || cmd,
31078                 enableToggle:toggle !== false,
31079                 html : html || '',
31080                 pressed : toggle ? false : null,
31081                 listeners : {}
31082             };
31083             a.listeners[toggle ? 'toggle' : 'click'] = function() {
31084                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
31085             };
31086             children.push(a);
31087             return a;
31088        }
31089        
31090     //    var cb_box = function...
31091         
31092         var style = {
31093                 xtype: 'Button',
31094                 size : 'sm',
31095                 xns: Roo.bootstrap,
31096                 fa : 'font',
31097                 //html : 'submit'
31098                 menu : {
31099                     xtype: 'Menu',
31100                     xns: Roo.bootstrap,
31101                     items:  []
31102                 }
31103         };
31104         Roo.each(this.formats, function(f) {
31105             style.menu.items.push({
31106                 xtype :'MenuItem',
31107                 xns: Roo.bootstrap,
31108                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
31109                 tagname : f,
31110                 listeners : {
31111                     click : function()
31112                     {
31113                         editorcore.insertTag(this.tagname);
31114                         editor.focus();
31115                     }
31116                 }
31117                 
31118             });
31119         });
31120         children.push(style);   
31121         
31122         btn('bold',false,true);
31123         btn('italic',false,true);
31124         btn('align-left', 'justifyleft',true);
31125         btn('align-center', 'justifycenter',true);
31126         btn('align-right' , 'justifyright',true);
31127         btn('link', false, false, function(btn) {
31128             //Roo.log("create link?");
31129             var url = prompt(this.createLinkText, this.defaultLinkValue);
31130             if(url && url != 'http:/'+'/'){
31131                 this.editorcore.relayCmd('createlink', url);
31132             }
31133         }),
31134         btn('list','insertunorderedlist',true);
31135         btn('pencil', false,true, function(btn){
31136                 Roo.log(this);
31137                 this.toggleSourceEdit(btn.pressed);
31138         });
31139         
31140         if (this.editor.btns.length > 0) {
31141             for (var i = 0; i<this.editor.btns.length; i++) {
31142                 children.push(this.editor.btns[i]);
31143             }
31144         }
31145         
31146         /*
31147         var cog = {
31148                 xtype: 'Button',
31149                 size : 'sm',
31150                 xns: Roo.bootstrap,
31151                 glyphicon : 'cog',
31152                 //html : 'submit'
31153                 menu : {
31154                     xtype: 'Menu',
31155                     xns: Roo.bootstrap,
31156                     items:  []
31157                 }
31158         };
31159         
31160         cog.menu.items.push({
31161             xtype :'MenuItem',
31162             xns: Roo.bootstrap,
31163             html : Clean styles,
31164             tagname : f,
31165             listeners : {
31166                 click : function()
31167                 {
31168                     editorcore.insertTag(this.tagname);
31169                     editor.focus();
31170                 }
31171             }
31172             
31173         });
31174        */
31175         
31176          
31177        this.xtype = 'NavSimplebar';
31178         
31179         for(var i=0;i< children.length;i++) {
31180             
31181             this.buttons.add(this.addxtypeChild(children[i]));
31182             
31183         }
31184         
31185         editor.on('editorevent', this.updateToolbar, this);
31186     },
31187     onBtnClick : function(id)
31188     {
31189        this.editorcore.relayCmd(id);
31190        this.editorcore.focus();
31191     },
31192     
31193     /**
31194      * Protected method that will not generally be called directly. It triggers
31195      * a toolbar update by reading the markup state of the current selection in the editor.
31196      */
31197     updateToolbar: function(){
31198
31199         if(!this.editorcore.activated){
31200             this.editor.onFirstFocus(); // is this neeed?
31201             return;
31202         }
31203
31204         var btns = this.buttons; 
31205         var doc = this.editorcore.doc;
31206         btns.get('bold').setActive(doc.queryCommandState('bold'));
31207         btns.get('italic').setActive(doc.queryCommandState('italic'));
31208         //btns.get('underline').setActive(doc.queryCommandState('underline'));
31209         
31210         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
31211         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
31212         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
31213         
31214         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
31215         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
31216          /*
31217         
31218         var ans = this.editorcore.getAllAncestors();
31219         if (this.formatCombo) {
31220             
31221             
31222             var store = this.formatCombo.store;
31223             this.formatCombo.setValue("");
31224             for (var i =0; i < ans.length;i++) {
31225                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
31226                     // select it..
31227                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
31228                     break;
31229                 }
31230             }
31231         }
31232         
31233         
31234         
31235         // hides menus... - so this cant be on a menu...
31236         Roo.bootstrap.MenuMgr.hideAll();
31237         */
31238         Roo.bootstrap.menu.Manager.hideAll();
31239         //this.editorsyncValue();
31240     },
31241     onFirstFocus: function() {
31242         this.buttons.each(function(item){
31243            item.enable();
31244         });
31245     },
31246     toggleSourceEdit : function(sourceEditMode){
31247         
31248           
31249         if(sourceEditMode){
31250             Roo.log("disabling buttons");
31251            this.buttons.each( function(item){
31252                 if(item.cmd != 'pencil'){
31253                     item.disable();
31254                 }
31255             });
31256           
31257         }else{
31258             Roo.log("enabling buttons");
31259             if(this.editorcore.initialized){
31260                 this.buttons.each( function(item){
31261                     item.enable();
31262                 });
31263             }
31264             
31265         }
31266         Roo.log("calling toggole on editor");
31267         // tell the editor that it's been pressed..
31268         this.editor.toggleSourceEdit(sourceEditMode);
31269        
31270     }
31271 });
31272
31273
31274
31275
31276  
31277 /*
31278  * - LGPL
31279  */
31280
31281 /**
31282  * @class Roo.bootstrap.form.Markdown
31283  * @extends Roo.bootstrap.form.TextArea
31284  * Bootstrap Showdown editable area
31285  * @cfg {string} content
31286  * 
31287  * @constructor
31288  * Create a new Showdown
31289  */
31290
31291 Roo.bootstrap.form.Markdown = function(config){
31292     Roo.bootstrap.form.Markdown.superclass.constructor.call(this, config);
31293    
31294 };
31295
31296 Roo.extend(Roo.bootstrap.form.Markdown, Roo.bootstrap.form.TextArea,  {
31297     
31298     editing :false,
31299     
31300     initEvents : function()
31301     {
31302         
31303         Roo.bootstrap.form.TextArea.prototype.initEvents.call(this);
31304         this.markdownEl = this.el.createChild({
31305             cls : 'roo-markdown-area'
31306         });
31307         this.inputEl().addClass('d-none');
31308         if (this.getValue() == '') {
31309             this.markdownEl.dom.innerHTML = String.format('<span class="roo-placeholder">{0}</span>', this.placeholder || '');
31310             
31311         } else {
31312             this.markdownEl.dom.innerHTML = Roo.Markdown.toHtml(Roo.util.Format.htmlEncode(this.getValue()));
31313         }
31314         this.markdownEl.on('click', this.toggleTextEdit, this);
31315         this.on('blur', this.toggleTextEdit, this);
31316         this.on('specialkey', this.resizeTextArea, this);
31317     },
31318     
31319     toggleTextEdit : function()
31320     {
31321         var sh = this.markdownEl.getHeight();
31322         this.inputEl().addClass('d-none');
31323         this.markdownEl.addClass('d-none');
31324         if (!this.editing) {
31325             // show editor?
31326             this.inputEl().setHeight(Math.min(500, Math.max(sh,(this.getValue().split("\n").length+1) * 30)));
31327             this.inputEl().removeClass('d-none');
31328             this.inputEl().focus();
31329             this.editing = true;
31330             return;
31331         }
31332         // show showdown...
31333         this.updateMarkdown();
31334         this.markdownEl.removeClass('d-none');
31335         this.editing = false;
31336         return;
31337     },
31338     updateMarkdown : function()
31339     {
31340         if (this.getValue() == '') {
31341             this.markdownEl.dom.innerHTML = String.format('<span class="roo-placeholder">{0}</span>', this.placeholder || '');
31342             return;
31343         }
31344  
31345         this.markdownEl.dom.innerHTML = Roo.Markdown.toHtml(Roo.util.Format.htmlEncode(this.getValue()));
31346     },
31347     
31348     resizeTextArea: function () {
31349         
31350         var sh = 100;
31351         Roo.log([sh, this.getValue().split("\n").length * 30]);
31352         this.inputEl().setHeight(Math.min(500, Math.max(sh, (this.getValue().split("\n").length +1) * 30)));
31353     },
31354     setValue : function(val)
31355     {
31356         Roo.bootstrap.form.TextArea.prototype.setValue.call(this,val);
31357         if (!this.editing) {
31358             this.updateMarkdown();
31359         }
31360         
31361     },
31362     focus : function()
31363     {
31364         if (!this.editing) {
31365             this.toggleTextEdit();
31366         }
31367         
31368     }
31369
31370
31371 });/*
31372  * Based on:
31373  * Ext JS Library 1.1.1
31374  * Copyright(c) 2006-2007, Ext JS, LLC.
31375  *
31376  * Originally Released Under LGPL - original licence link has changed is not relivant.
31377  *
31378  * Fork - LGPL
31379  * <script type="text/javascript">
31380  */
31381  
31382 /**
31383  * @class Roo.bootstrap.PagingToolbar
31384  * @extends Roo.bootstrap.nav.Simplebar
31385  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
31386  * @constructor
31387  * Create a new PagingToolbar
31388  * @param {Object} config The config object
31389  * @param {Roo.data.Store} store
31390  */
31391 Roo.bootstrap.PagingToolbar = function(config)
31392 {
31393     // old args format still supported... - xtype is prefered..
31394         // created from xtype...
31395     
31396     this.ds = config.dataSource;
31397     
31398     if (config.store && !this.ds) {
31399         this.store= Roo.factory(config.store, Roo.data);
31400         this.ds = this.store;
31401         this.ds.xmodule = this.xmodule || false;
31402     }
31403     
31404     this.toolbarItems = [];
31405     if (config.items) {
31406         this.toolbarItems = config.items;
31407     }
31408     
31409     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
31410     
31411     this.cursor = 0;
31412     
31413     if (this.ds) { 
31414         this.bind(this.ds);
31415     }
31416     
31417     if (Roo.bootstrap.version == 4) {
31418         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
31419     } else {
31420         this.navgroup = new Roo.bootstrap.nav.Group({ cls: 'pagination' });
31421     }
31422     
31423 };
31424
31425 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.nav.Simplebar, {
31426     /**
31427      * @cfg {Roo.bootstrap.Button} buttons[]
31428      * Buttons for the toolbar
31429      */
31430      /**
31431      * @cfg {Roo.data.Store} store
31432      * The underlying data store providing the paged data
31433      */
31434     /**
31435      * @cfg {String/HTMLElement/Element} container
31436      * container The id or element that will contain the toolbar
31437      */
31438     /**
31439      * @cfg {Boolean} displayInfo
31440      * True to display the displayMsg (defaults to false)
31441      */
31442     /**
31443      * @cfg {Number} pageSize
31444      * The number of records to display per page (defaults to 20)
31445      */
31446     pageSize: 20,
31447     /**
31448      * @cfg {String} displayMsg
31449      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
31450      */
31451     displayMsg : 'Displaying {0} - {1} of {2}',
31452     /**
31453      * @cfg {String} emptyMsg
31454      * The message to display when no records are found (defaults to "No data to display")
31455      */
31456     emptyMsg : 'No data to display',
31457     /**
31458      * Customizable piece of the default paging text (defaults to "Page")
31459      * @type String
31460      */
31461     beforePageText : "Page",
31462     /**
31463      * Customizable piece of the default paging text (defaults to "of %0")
31464      * @type String
31465      */
31466     afterPageText : "of {0}",
31467     /**
31468      * Customizable piece of the default paging text (defaults to "First Page")
31469      * @type String
31470      */
31471     firstText : "First Page",
31472     /**
31473      * Customizable piece of the default paging text (defaults to "Previous Page")
31474      * @type String
31475      */
31476     prevText : "Previous Page",
31477     /**
31478      * Customizable piece of the default paging text (defaults to "Next Page")
31479      * @type String
31480      */
31481     nextText : "Next Page",
31482     /**
31483      * Customizable piece of the default paging text (defaults to "Last Page")
31484      * @type String
31485      */
31486     lastText : "Last Page",
31487     /**
31488      * Customizable piece of the default paging text (defaults to "Refresh")
31489      * @type String
31490      */
31491     refreshText : "Refresh",
31492
31493     buttons : false,
31494     // private
31495     onRender : function(ct, position) 
31496     {
31497         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
31498         this.navgroup.parentId = this.id;
31499         this.navgroup.onRender(this.el, null);
31500         // add the buttons to the navgroup
31501         
31502         if(this.displayInfo){
31503             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
31504             this.displayEl = this.el.select('.x-paging-info', true).first();
31505 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
31506 //            this.displayEl = navel.el.select('span',true).first();
31507         }
31508         
31509         var _this = this;
31510         
31511         if(this.buttons){
31512             Roo.each(_this.buttons, function(e){ // this might need to use render????
31513                Roo.factory(e).render(_this.el);
31514             });
31515         }
31516             
31517         Roo.each(_this.toolbarItems, function(e) {
31518             _this.navgroup.addItem(e);
31519         });
31520         
31521         
31522         this.first = this.navgroup.addItem({
31523             tooltip: this.firstText,
31524             cls: "prev btn-outline-secondary",
31525             html : ' <i class="fa fa-step-backward"></i>',
31526             disabled: true,
31527             preventDefault: true,
31528             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
31529         });
31530         
31531         this.prev =  this.navgroup.addItem({
31532             tooltip: this.prevText,
31533             cls: "prev btn-outline-secondary",
31534             html : ' <i class="fa fa-backward"></i>',
31535             disabled: true,
31536             preventDefault: true,
31537             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
31538         });
31539     //this.addSeparator();
31540         
31541         
31542         var field = this.navgroup.addItem( {
31543             tagtype : 'span',
31544             cls : 'x-paging-position  btn-outline-secondary',
31545              disabled: true,
31546             html : this.beforePageText  +
31547                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
31548                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
31549          } ); //?? escaped?
31550         
31551         this.field = field.el.select('input', true).first();
31552         this.field.on("keydown", this.onPagingKeydown, this);
31553         this.field.on("focus", function(){this.dom.select();});
31554     
31555     
31556         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
31557         //this.field.setHeight(18);
31558         //this.addSeparator();
31559         this.next = this.navgroup.addItem({
31560             tooltip: this.nextText,
31561             cls: "next btn-outline-secondary",
31562             html : ' <i class="fa fa-forward"></i>',
31563             disabled: true,
31564             preventDefault: true,
31565             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
31566         });
31567         this.last = this.navgroup.addItem({
31568             tooltip: this.lastText,
31569             html : ' <i class="fa fa-step-forward"></i>',
31570             cls: "next btn-outline-secondary",
31571             disabled: true,
31572             preventDefault: true,
31573             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
31574         });
31575     //this.addSeparator();
31576         this.loading = this.navgroup.addItem({
31577             tooltip: this.refreshText,
31578             cls: "btn-outline-secondary",
31579             html : ' <i class="fa fa-refresh"></i>',
31580             preventDefault: true,
31581             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
31582         });
31583         
31584     },
31585
31586     // private
31587     updateInfo : function(){
31588         if(this.displayEl){
31589             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
31590             var msg = count == 0 ?
31591                 this.emptyMsg :
31592                 String.format(
31593                     this.displayMsg,
31594                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
31595                 );
31596             this.displayEl.update(msg);
31597         }
31598     },
31599
31600     // private
31601     onLoad : function(ds, r, o)
31602     {
31603         this.cursor = o.params && o.params.start ? o.params.start : 0;
31604         
31605         var d = this.getPageData(),
31606             ap = d.activePage,
31607             ps = d.pages;
31608         
31609         
31610         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
31611         this.field.dom.value = ap;
31612         this.first.setDisabled(ap == 1);
31613         this.prev.setDisabled(ap == 1);
31614         this.next.setDisabled(ap == ps);
31615         this.last.setDisabled(ap == ps);
31616         this.loading.enable();
31617         this.updateInfo();
31618     },
31619
31620     // private
31621     getPageData : function(){
31622         var total = this.ds.getTotalCount();
31623         return {
31624             total : total,
31625             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
31626             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
31627         };
31628     },
31629
31630     // private
31631     onLoadError : function(proxy, o){
31632         this.loading.enable();
31633         if (this.ds.events.loadexception.listeners.length  < 2) {
31634             // nothing has been assigned to loadexception except this...
31635             // so 
31636             Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
31637
31638         }
31639     },
31640
31641     // private
31642     onPagingKeydown : function(e){
31643         var k = e.getKey();
31644         var d = this.getPageData();
31645         if(k == e.RETURN){
31646             var v = this.field.dom.value, pageNum;
31647             if(!v || isNaN(pageNum = parseInt(v, 10))){
31648                 this.field.dom.value = d.activePage;
31649                 return;
31650             }
31651             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
31652             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
31653             e.stopEvent();
31654         }
31655         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))
31656         {
31657           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
31658           this.field.dom.value = pageNum;
31659           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
31660           e.stopEvent();
31661         }
31662         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
31663         {
31664           var v = this.field.dom.value, pageNum; 
31665           var increment = (e.shiftKey) ? 10 : 1;
31666           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
31667                 increment *= -1;
31668           }
31669           if(!v || isNaN(pageNum = parseInt(v, 10))) {
31670             this.field.dom.value = d.activePage;
31671             return;
31672           }
31673           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
31674           {
31675             this.field.dom.value = parseInt(v, 10) + increment;
31676             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
31677             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
31678           }
31679           e.stopEvent();
31680         }
31681     },
31682
31683     // private
31684     beforeLoad : function(){
31685         if(this.loading){
31686             this.loading.disable();
31687         }
31688     },
31689
31690     // private
31691     onClick : function(which){
31692         
31693         var ds = this.ds;
31694         if (!ds) {
31695             return;
31696         }
31697         
31698         switch(which){
31699             case "first":
31700                 ds.load({params:{start: 0, limit: this.pageSize}});
31701             break;
31702             case "prev":
31703                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
31704             break;
31705             case "next":
31706                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
31707             break;
31708             case "last":
31709                 var total = ds.getTotalCount();
31710                 var extra = total % this.pageSize;
31711                 var lastStart = extra ? (total - extra) : total-this.pageSize;
31712                 ds.load({params:{start: lastStart, limit: this.pageSize}});
31713             break;
31714             case "refresh":
31715                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
31716             break;
31717         }
31718     },
31719
31720     /**
31721      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
31722      * @param {Roo.data.Store} store The data store to unbind
31723      */
31724     unbind : function(ds){
31725         ds.un("beforeload", this.beforeLoad, this);
31726         ds.un("load", this.onLoad, this);
31727         ds.un("loadexception", this.onLoadError, this);
31728         ds.un("remove", this.updateInfo, this);
31729         ds.un("add", this.updateInfo, this);
31730         this.ds = undefined;
31731     },
31732
31733     /**
31734      * Binds the paging toolbar to the specified {@link Roo.data.Store}
31735      * @param {Roo.data.Store} store The data store to bind
31736      */
31737     bind : function(ds){
31738         ds.on("beforeload", this.beforeLoad, this);
31739         ds.on("load", this.onLoad, this);
31740         ds.on("loadexception", this.onLoadError, this);
31741         ds.on("remove", this.updateInfo, this);
31742         ds.on("add", this.updateInfo, this);
31743         this.ds = ds;
31744     }
31745 });/*
31746  * - LGPL
31747  *
31748  * element
31749  * 
31750  */
31751
31752 /**
31753  * @class Roo.bootstrap.MessageBar
31754  * @extends Roo.bootstrap.Component
31755  * Bootstrap MessageBar class
31756  * @cfg {String} html contents of the MessageBar
31757  * @cfg {String} weight (info | success | warning | danger) default info
31758  * @cfg {String} beforeClass insert the bar before the given class
31759  * @cfg {Boolean} closable (true | false) default false
31760  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
31761  * 
31762  * @constructor
31763  * Create a new Element
31764  * @param {Object} config The config object
31765  */
31766
31767 Roo.bootstrap.MessageBar = function(config){
31768     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
31769 };
31770
31771 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
31772     
31773     html: '',
31774     weight: 'info',
31775     closable: false,
31776     fixed: false,
31777     beforeClass: 'bootstrap-sticky-wrap',
31778     
31779     getAutoCreate : function(){
31780         
31781         var cfg = {
31782             tag: 'div',
31783             cls: 'alert alert-dismissable alert-' + this.weight,
31784             cn: [
31785                 {
31786                     tag: 'span',
31787                     cls: 'message',
31788                     html: this.html || ''
31789                 }
31790             ]
31791         };
31792         
31793         if(this.fixed){
31794             cfg.cls += ' alert-messages-fixed';
31795         }
31796         
31797         if(this.closable){
31798             cfg.cn.push({
31799                 tag: 'button',
31800                 cls: 'close',
31801                 html: 'x'
31802             });
31803         }
31804         
31805         return cfg;
31806     },
31807     
31808     onRender : function(ct, position)
31809     {
31810         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
31811         
31812         if(!this.el){
31813             var cfg = Roo.apply({},  this.getAutoCreate());
31814             cfg.id = Roo.id();
31815             
31816             if (this.cls) {
31817                 cfg.cls += ' ' + this.cls;
31818             }
31819             if (this.style) {
31820                 cfg.style = this.style;
31821             }
31822             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
31823             
31824             this.el.setVisibilityMode(Roo.Element.DISPLAY);
31825         }
31826         
31827         this.el.select('>button.close').on('click', this.hide, this);
31828         
31829     },
31830     
31831     show : function()
31832     {
31833         if (!this.rendered) {
31834             this.render();
31835         }
31836         
31837         this.el.show();
31838         
31839         this.fireEvent('show', this);
31840         
31841     },
31842     
31843     hide : function()
31844     {
31845         if (!this.rendered) {
31846             this.render();
31847         }
31848         
31849         this.el.hide();
31850         
31851         this.fireEvent('hide', this);
31852     },
31853     
31854     update : function()
31855     {
31856 //        var e = this.el.dom.firstChild;
31857 //        
31858 //        if(this.closable){
31859 //            e = e.nextSibling;
31860 //        }
31861 //        
31862 //        e.data = this.html || '';
31863
31864         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
31865     }
31866    
31867 });
31868
31869  
31870
31871      /*
31872  * - LGPL
31873  *
31874  * Graph
31875  * 
31876  */
31877
31878
31879 /**
31880  * @class Roo.bootstrap.Graph
31881  * @extends Roo.bootstrap.Component
31882  * Bootstrap Graph class
31883 > Prameters
31884  -sm {number} sm 4
31885  -md {number} md 5
31886  @cfg {String} graphtype  bar | vbar | pie
31887  @cfg {number} g_x coodinator | centre x (pie)
31888  @cfg {number} g_y coodinator | centre y (pie)
31889  @cfg {number} g_r radius (pie)
31890  @cfg {number} g_height height of the chart (respected by all elements in the set)
31891  @cfg {number} g_width width of the chart (respected by all elements in the set)
31892  @cfg {Object} title The title of the chart
31893     
31894  -{Array}  values
31895  -opts (object) options for the chart 
31896      o {
31897      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
31898      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
31899      o vgutter (number)
31900      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.
31901      o stacked (boolean) whether or not to tread values as in a stacked bar chart
31902      o to
31903      o stretch (boolean)
31904      o }
31905  -opts (object) options for the pie
31906      o{
31907      o cut
31908      o startAngle (number)
31909      o endAngle (number)
31910      } 
31911  *
31912  * @constructor
31913  * Create a new Input
31914  * @param {Object} config The config object
31915  */
31916
31917 Roo.bootstrap.Graph = function(config){
31918     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
31919     
31920     this.addEvents({
31921         // img events
31922         /**
31923          * @event click
31924          * The img click event for the img.
31925          * @param {Roo.EventObject} e
31926          */
31927         "click" : true
31928     });
31929 };
31930
31931 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
31932     
31933     sm: 4,
31934     md: 5,
31935     graphtype: 'bar',
31936     g_height: 250,
31937     g_width: 400,
31938     g_x: 50,
31939     g_y: 50,
31940     g_r: 30,
31941     opts:{
31942         //g_colors: this.colors,
31943         g_type: 'soft',
31944         g_gutter: '20%'
31945
31946     },
31947     title : false,
31948
31949     getAutoCreate : function(){
31950         
31951         var cfg = {
31952             tag: 'div',
31953             html : null
31954         };
31955         
31956         
31957         return  cfg;
31958     },
31959
31960     onRender : function(ct,position){
31961         
31962         
31963         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
31964         
31965         if (typeof(Raphael) == 'undefined') {
31966             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
31967             return;
31968         }
31969         
31970         this.raphael = Raphael(this.el.dom);
31971         
31972                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
31973                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
31974                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
31975                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
31976                 /*
31977                 r.text(160, 10, "Single Series Chart").attr(txtattr);
31978                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
31979                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
31980                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
31981                 
31982                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
31983                 r.barchart(330, 10, 300, 220, data1);
31984                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
31985                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
31986                 */
31987                 
31988                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
31989                 // r.barchart(30, 30, 560, 250,  xdata, {
31990                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
31991                 //     axis : "0 0 1 1",
31992                 //     axisxlabels :  xdata
31993                 //     //yvalues : cols,
31994                    
31995                 // });
31996 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
31997 //        
31998 //        this.load(null,xdata,{
31999 //                axis : "0 0 1 1",
32000 //                axisxlabels :  xdata
32001 //                });
32002
32003     },
32004
32005     load : function(graphtype,xdata,opts)
32006     {
32007         this.raphael.clear();
32008         if(!graphtype) {
32009             graphtype = this.graphtype;
32010         }
32011         if(!opts){
32012             opts = this.opts;
32013         }
32014         var r = this.raphael,
32015             fin = function () {
32016                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
32017             },
32018             fout = function () {
32019                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
32020             },
32021             pfin = function() {
32022                 this.sector.stop();
32023                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
32024
32025                 if (this.label) {
32026                     this.label[0].stop();
32027                     this.label[0].attr({ r: 7.5 });
32028                     this.label[1].attr({ "font-weight": 800 });
32029                 }
32030             },
32031             pfout = function() {
32032                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
32033
32034                 if (this.label) {
32035                     this.label[0].animate({ r: 5 }, 500, "bounce");
32036                     this.label[1].attr({ "font-weight": 400 });
32037                 }
32038             };
32039
32040         switch(graphtype){
32041             case 'bar':
32042                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
32043                 break;
32044             case 'hbar':
32045                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
32046                 break;
32047             case 'pie':
32048 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
32049 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
32050 //            
32051                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
32052                 
32053                 break;
32054
32055         }
32056         
32057         if(this.title){
32058             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
32059         }
32060         
32061     },
32062     
32063     setTitle: function(o)
32064     {
32065         this.title = o;
32066     },
32067     
32068     initEvents: function() {
32069         
32070         if(!this.href){
32071             this.el.on('click', this.onClick, this);
32072         }
32073     },
32074     
32075     onClick : function(e)
32076     {
32077         Roo.log('img onclick');
32078         this.fireEvent('click', this, e);
32079     }
32080    
32081 });
32082
32083  
32084 Roo.bootstrap.dash = {};/*
32085  * - LGPL
32086  *
32087  * numberBox
32088  * 
32089  */
32090 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
32091
32092 /**
32093  * @class Roo.bootstrap.dash.NumberBox
32094  * @extends Roo.bootstrap.Component
32095  * Bootstrap NumberBox class
32096  * @cfg {String} headline Box headline
32097  * @cfg {String} content Box content
32098  * @cfg {String} icon Box icon
32099  * @cfg {String} footer Footer text
32100  * @cfg {String} fhref Footer href
32101  * 
32102  * @constructor
32103  * Create a new NumberBox
32104  * @param {Object} config The config object
32105  */
32106
32107
32108 Roo.bootstrap.dash.NumberBox = function(config){
32109     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
32110     
32111 };
32112
32113 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
32114     
32115     headline : '',
32116     content : '',
32117     icon : '',
32118     footer : '',
32119     fhref : '',
32120     ficon : '',
32121     
32122     getAutoCreate : function(){
32123         
32124         var cfg = {
32125             tag : 'div',
32126             cls : 'small-box ',
32127             cn : [
32128                 {
32129                     tag : 'div',
32130                     cls : 'inner',
32131                     cn :[
32132                         {
32133                             tag : 'h3',
32134                             cls : 'roo-headline',
32135                             html : this.headline
32136                         },
32137                         {
32138                             tag : 'p',
32139                             cls : 'roo-content',
32140                             html : this.content
32141                         }
32142                     ]
32143                 }
32144             ]
32145         };
32146         
32147         if(this.icon){
32148             cfg.cn.push({
32149                 tag : 'div',
32150                 cls : 'icon',
32151                 cn :[
32152                     {
32153                         tag : 'i',
32154                         cls : 'ion ' + this.icon
32155                     }
32156                 ]
32157             });
32158         }
32159         
32160         if(this.footer){
32161             var footer = {
32162                 tag : 'a',
32163                 cls : 'small-box-footer',
32164                 href : this.fhref || '#',
32165                 html : this.footer
32166             };
32167             
32168             cfg.cn.push(footer);
32169             
32170         }
32171         
32172         return  cfg;
32173     },
32174
32175     onRender : function(ct,position){
32176         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
32177
32178
32179        
32180                 
32181     },
32182
32183     setHeadline: function (value)
32184     {
32185         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
32186     },
32187     
32188     setFooter: function (value, href)
32189     {
32190         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
32191         
32192         if(href){
32193             this.el.select('a.small-box-footer',true).first().attr('href', href);
32194         }
32195         
32196     },
32197
32198     setContent: function (value)
32199     {
32200         this.el.select('.roo-content',true).first().dom.innerHTML = value;
32201     },
32202
32203     initEvents: function() 
32204     {   
32205         
32206     }
32207     
32208 });
32209
32210  
32211 /*
32212  * - LGPL
32213  *
32214  * TabBox
32215  * 
32216  */
32217 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
32218
32219 /**
32220  * @class Roo.bootstrap.dash.TabBox
32221  * @extends Roo.bootstrap.Component
32222  * @children Roo.bootstrap.dash.TabPane
32223  * Bootstrap TabBox class
32224  * @cfg {String} title Title of the TabBox
32225  * @cfg {String} icon Icon of the TabBox
32226  * @cfg {Boolean} showtabs (true|false) show the tabs default true
32227  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
32228  * 
32229  * @constructor
32230  * Create a new TabBox
32231  * @param {Object} config The config object
32232  */
32233
32234
32235 Roo.bootstrap.dash.TabBox = function(config){
32236     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
32237     this.addEvents({
32238         // raw events
32239         /**
32240          * @event addpane
32241          * When a pane is added
32242          * @param {Roo.bootstrap.dash.TabPane} pane
32243          */
32244         "addpane" : true,
32245         /**
32246          * @event activatepane
32247          * When a pane is activated
32248          * @param {Roo.bootstrap.dash.TabPane} pane
32249          */
32250         "activatepane" : true
32251         
32252          
32253     });
32254     
32255     this.panes = [];
32256 };
32257
32258 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
32259
32260     title : '',
32261     icon : false,
32262     showtabs : true,
32263     tabScrollable : false,
32264     
32265     getChildContainer : function()
32266     {
32267         return this.el.select('.tab-content', true).first();
32268     },
32269     
32270     getAutoCreate : function(){
32271         
32272         var header = {
32273             tag: 'li',
32274             cls: 'pull-left header',
32275             html: this.title,
32276             cn : []
32277         };
32278         
32279         if(this.icon){
32280             header.cn.push({
32281                 tag: 'i',
32282                 cls: 'fa ' + this.icon
32283             });
32284         }
32285         
32286         var h = {
32287             tag: 'ul',
32288             cls: 'nav nav-tabs pull-right',
32289             cn: [
32290                 header
32291             ]
32292         };
32293         
32294         if(this.tabScrollable){
32295             h = {
32296                 tag: 'div',
32297                 cls: 'tab-header',
32298                 cn: [
32299                     {
32300                         tag: 'ul',
32301                         cls: 'nav nav-tabs pull-right',
32302                         cn: [
32303                             header
32304                         ]
32305                     }
32306                 ]
32307             };
32308         }
32309         
32310         var cfg = {
32311             tag: 'div',
32312             cls: 'nav-tabs-custom',
32313             cn: [
32314                 h,
32315                 {
32316                     tag: 'div',
32317                     cls: 'tab-content no-padding',
32318                     cn: []
32319                 }
32320             ]
32321         };
32322
32323         return  cfg;
32324     },
32325     initEvents : function()
32326     {
32327         //Roo.log('add add pane handler');
32328         this.on('addpane', this.onAddPane, this);
32329     },
32330      /**
32331      * Updates the box title
32332      * @param {String} html to set the title to.
32333      */
32334     setTitle : function(value)
32335     {
32336         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
32337     },
32338     onAddPane : function(pane)
32339     {
32340         this.panes.push(pane);
32341         //Roo.log('addpane');
32342         //Roo.log(pane);
32343         // tabs are rendere left to right..
32344         if(!this.showtabs){
32345             return;
32346         }
32347         
32348         var ctr = this.el.select('.nav-tabs', true).first();
32349          
32350          
32351         var existing = ctr.select('.nav-tab',true);
32352         var qty = existing.getCount();;
32353         
32354         
32355         var tab = ctr.createChild({
32356             tag : 'li',
32357             cls : 'nav-tab' + (qty ? '' : ' active'),
32358             cn : [
32359                 {
32360                     tag : 'a',
32361                     href:'#',
32362                     html : pane.title
32363                 }
32364             ]
32365         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
32366         pane.tab = tab;
32367         
32368         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
32369         if (!qty) {
32370             pane.el.addClass('active');
32371         }
32372         
32373                 
32374     },
32375     onTabClick : function(ev,un,ob,pane)
32376     {
32377         //Roo.log('tab - prev default');
32378         ev.preventDefault();
32379         
32380         
32381         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
32382         pane.tab.addClass('active');
32383         //Roo.log(pane.title);
32384         this.getChildContainer().select('.tab-pane',true).removeClass('active');
32385         // technically we should have a deactivate event.. but maybe add later.
32386         // and it should not de-activate the selected tab...
32387         this.fireEvent('activatepane', pane);
32388         pane.el.addClass('active');
32389         pane.fireEvent('activate');
32390         
32391         
32392     },
32393     
32394     getActivePane : function()
32395     {
32396         var r = false;
32397         Roo.each(this.panes, function(p) {
32398             if(p.el.hasClass('active')){
32399                 r = p;
32400                 return false;
32401             }
32402             
32403             return;
32404         });
32405         
32406         return r;
32407     }
32408     
32409     
32410 });
32411
32412  
32413 /*
32414  * - LGPL
32415  *
32416  * Tab pane
32417  * 
32418  */
32419 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
32420 /**
32421  * @class Roo.bootstrap.TabPane
32422  * @extends Roo.bootstrap.Component
32423  * @children  Roo.bootstrap.Graph Roo.bootstrap.Column
32424  * Bootstrap TabPane class
32425  * @cfg {Boolean} active (false | true) Default false
32426  * @cfg {String} title title of panel
32427
32428  * 
32429  * @constructor
32430  * Create a new TabPane
32431  * @param {Object} config The config object
32432  */
32433
32434 Roo.bootstrap.dash.TabPane = function(config){
32435     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
32436     
32437     this.addEvents({
32438         // raw events
32439         /**
32440          * @event activate
32441          * When a pane is activated
32442          * @param {Roo.bootstrap.dash.TabPane} pane
32443          */
32444         "activate" : true
32445          
32446     });
32447 };
32448
32449 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
32450     
32451     active : false,
32452     title : '',
32453     
32454     // the tabBox that this is attached to.
32455     tab : false,
32456      
32457     getAutoCreate : function() 
32458     {
32459         var cfg = {
32460             tag: 'div',
32461             cls: 'tab-pane'
32462         };
32463         
32464         if(this.active){
32465             cfg.cls += ' active';
32466         }
32467         
32468         return cfg;
32469     },
32470     initEvents  : function()
32471     {
32472         //Roo.log('trigger add pane handler');
32473         this.parent().fireEvent('addpane', this)
32474     },
32475     
32476      /**
32477      * Updates the tab title 
32478      * @param {String} html to set the title to.
32479      */
32480     setTitle: function(str)
32481     {
32482         if (!this.tab) {
32483             return;
32484         }
32485         this.title = str;
32486         this.tab.select('a', true).first().dom.innerHTML = str;
32487         
32488     }
32489     
32490     
32491     
32492 });
32493
32494  
32495
32496
32497  /*
32498  * - LGPL
32499  *
32500  * Tooltip
32501  * 
32502  */
32503
32504 /**
32505  * @class Roo.bootstrap.Tooltip
32506  * Bootstrap Tooltip class
32507  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
32508  * to determine which dom element triggers the tooltip.
32509  * 
32510  * It needs to add support for additional attributes like tooltip-position
32511  * 
32512  * @constructor
32513  * Create a new Toolti
32514  * @param {Object} config The config object
32515  */
32516
32517 Roo.bootstrap.Tooltip = function(config){
32518     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
32519     
32520     this.alignment = Roo.bootstrap.Tooltip.alignment;
32521     
32522     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
32523         this.alignment = config.alignment;
32524     }
32525     
32526 };
32527
32528 Roo.apply(Roo.bootstrap.Tooltip, {
32529     /**
32530      * @function init initialize tooltip monitoring.
32531      * @static
32532      */
32533     currentEl : false,
32534     currentTip : false,
32535     currentRegion : false,
32536     
32537     //  init : delay?
32538     
32539     init : function()
32540     {
32541         Roo.get(document).on('mouseover', this.enter ,this);
32542         Roo.get(document).on('mouseout', this.leave, this);
32543          
32544         
32545         this.currentTip = new Roo.bootstrap.Tooltip();
32546     },
32547     
32548     enter : function(ev)
32549     {
32550         var dom = ev.getTarget();
32551         
32552         //Roo.log(['enter',dom]);
32553         var el = Roo.fly(dom);
32554         if (this.currentEl) {
32555             //Roo.log(dom);
32556             //Roo.log(this.currentEl);
32557             //Roo.log(this.currentEl.contains(dom));
32558             if (this.currentEl == el) {
32559                 return;
32560             }
32561             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
32562                 return;
32563             }
32564
32565         }
32566         
32567         if (this.currentTip.el) {
32568             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
32569         }    
32570         //Roo.log(ev);
32571         
32572         if(!el || el.dom == document){
32573             return;
32574         }
32575         
32576         var bindEl = el; 
32577         var pel = false;
32578         if (!el.attr('tooltip')) {
32579             pel = el.findParent("[tooltip]");
32580             if (pel) {
32581                 bindEl = Roo.get(pel);
32582             }
32583         }
32584         
32585        
32586         
32587         // you can not look for children, as if el is the body.. then everythign is the child..
32588         if (!pel && !el.attr('tooltip')) { //
32589             if (!el.select("[tooltip]").elements.length) {
32590                 return;
32591             }
32592             // is the mouse over this child...?
32593             bindEl = el.select("[tooltip]").first();
32594             var xy = ev.getXY();
32595             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
32596                 //Roo.log("not in region.");
32597                 return;
32598             }
32599             //Roo.log("child element over..");
32600             
32601         }
32602         this.currentEl = el;
32603         this.currentTip.bind(bindEl);
32604         this.currentRegion = Roo.lib.Region.getRegion(dom);
32605         this.currentTip.enter();
32606         
32607     },
32608     leave : function(ev)
32609     {
32610         var dom = ev.getTarget();
32611         //Roo.log(['leave',dom]);
32612         if (!this.currentEl) {
32613             return;
32614         }
32615         
32616         
32617         if (dom != this.currentEl.dom) {
32618             return;
32619         }
32620         var xy = ev.getXY();
32621         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
32622             return;
32623         }
32624         // only activate leave if mouse cursor is outside... bounding box..
32625         
32626         
32627         
32628         
32629         if (this.currentTip) {
32630             this.currentTip.leave();
32631         }
32632         //Roo.log('clear currentEl');
32633         this.currentEl = false;
32634         
32635         
32636     },
32637     alignment : {
32638         'left' : ['r-l', [-2,0], 'right'],
32639         'right' : ['l-r', [2,0], 'left'],
32640         'bottom' : ['t-b', [0,2], 'top'],
32641         'top' : [ 'b-t', [0,-2], 'bottom']
32642     }
32643     
32644 });
32645
32646
32647 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
32648     
32649     
32650     bindEl : false,
32651     
32652     delay : null, // can be { show : 300 , hide: 500}
32653     
32654     timeout : null,
32655     
32656     hoverState : null, //???
32657     
32658     placement : 'bottom', 
32659     
32660     alignment : false,
32661     
32662     getAutoCreate : function(){
32663     
32664         var cfg = {
32665            cls : 'tooltip',   
32666            role : 'tooltip',
32667            cn : [
32668                 {
32669                     cls : 'tooltip-arrow arrow'
32670                 },
32671                 {
32672                     cls : 'tooltip-inner'
32673                 }
32674            ]
32675         };
32676         
32677         return cfg;
32678     },
32679     bind : function(el)
32680     {
32681         this.bindEl = el;
32682     },
32683     
32684     initEvents : function()
32685     {
32686         this.arrowEl = this.el.select('.arrow', true).first();
32687         this.innerEl = this.el.select('.tooltip-inner', true).first();
32688     },
32689     
32690     enter : function () {
32691        
32692         if (this.timeout != null) {
32693             clearTimeout(this.timeout);
32694         }
32695         
32696         this.hoverState = 'in';
32697          //Roo.log("enter - show");
32698         if (!this.delay || !this.delay.show) {
32699             this.show();
32700             return;
32701         }
32702         var _t = this;
32703         this.timeout = setTimeout(function () {
32704             if (_t.hoverState == 'in') {
32705                 _t.show();
32706             }
32707         }, this.delay.show);
32708     },
32709     leave : function()
32710     {
32711         clearTimeout(this.timeout);
32712     
32713         this.hoverState = 'out';
32714          if (!this.delay || !this.delay.hide) {
32715             this.hide();
32716             return;
32717         }
32718        
32719         var _t = this;
32720         this.timeout = setTimeout(function () {
32721             //Roo.log("leave - timeout");
32722             
32723             if (_t.hoverState == 'out') {
32724                 _t.hide();
32725                 Roo.bootstrap.Tooltip.currentEl = false;
32726             }
32727         }, delay);
32728     },
32729     
32730     show : function (msg)
32731     {
32732         if (!this.el) {
32733             this.render(document.body);
32734         }
32735         // set content.
32736         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
32737         
32738         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
32739         
32740         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
32741         
32742         this.el.removeClass(['fade','top','bottom', 'left', 'right','in',
32743                              'bs-tooltip-top','bs-tooltip-bottom', 'bs-tooltip-left', 'bs-tooltip-right']);
32744         
32745         var placement = typeof this.placement == 'function' ?
32746             this.placement.call(this, this.el, on_el) :
32747             this.placement;
32748             
32749         var autoToken = /\s?auto?\s?/i;
32750         var autoPlace = autoToken.test(placement);
32751         if (autoPlace) {
32752             placement = placement.replace(autoToken, '') || 'top';
32753         }
32754         
32755         //this.el.detach()
32756         //this.el.setXY([0,0]);
32757         this.el.show();
32758         //this.el.dom.style.display='block';
32759         
32760         //this.el.appendTo(on_el);
32761         
32762         var p = this.getPosition();
32763         var box = this.el.getBox();
32764         
32765         if (autoPlace) {
32766             // fixme..
32767         }
32768         
32769         var align = this.alignment[placement];
32770         
32771         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
32772         
32773         if(placement == 'top' || placement == 'bottom'){
32774             if(xy[0] < 0){
32775                 placement = 'right';
32776             }
32777             
32778             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
32779                 placement = 'left';
32780             }
32781             
32782             var scroll = Roo.select('body', true).first().getScroll();
32783             
32784             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
32785                 placement = 'top';
32786             }
32787             
32788             align = this.alignment[placement];
32789             
32790             this.arrowEl.setLeft((this.innerEl.getWidth()/2) - 5);
32791             
32792         }
32793         
32794         var elems = document.getElementsByTagName('div');
32795         var highest = Number.MIN_SAFE_INTEGER || -(Math.pow(2, 53) - 1);
32796         for (var i = 0; i < elems.length; i++) {
32797           var zindex = Number.parseInt(
32798                 document.defaultView.getComputedStyle(elems[i], null).getPropertyValue("z-index"),
32799                 10
32800           );
32801           if (zindex > highest) {
32802             highest = zindex;
32803           }
32804         }
32805         
32806         
32807         
32808         this.el.dom.style.zIndex = highest;
32809         
32810         this.el.alignTo(this.bindEl, align[0],align[1]);
32811         //var arrow = this.el.select('.arrow',true).first();
32812         //arrow.set(align[2], 
32813         
32814         this.el.addClass(placement);
32815         this.el.addClass("bs-tooltip-"+ placement);
32816         
32817         this.el.addClass('in fade show');
32818         
32819         this.hoverState = null;
32820         
32821         if (this.el.hasClass('fade')) {
32822             // fade it?
32823         }
32824         
32825         
32826         
32827         
32828         
32829     },
32830     hide : function()
32831     {
32832          
32833         if (!this.el) {
32834             return;
32835         }
32836         //this.el.setXY([0,0]);
32837         this.el.removeClass(['show', 'in']);
32838         //this.el.hide();
32839         
32840     }
32841     
32842 });
32843  
32844
32845  /*
32846  * - LGPL
32847  *
32848  * Location Picker
32849  * 
32850  */
32851
32852 /**
32853  * @class Roo.bootstrap.LocationPicker
32854  * @extends Roo.bootstrap.Component
32855  * Bootstrap LocationPicker class
32856  * @cfg {Number} latitude Position when init default 0
32857  * @cfg {Number} longitude Position when init default 0
32858  * @cfg {Number} zoom default 15
32859  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
32860  * @cfg {Boolean} mapTypeControl default false
32861  * @cfg {Boolean} disableDoubleClickZoom default false
32862  * @cfg {Boolean} scrollwheel default true
32863  * @cfg {Boolean} streetViewControl default false
32864  * @cfg {Number} radius default 0
32865  * @cfg {String} locationName
32866  * @cfg {Boolean} draggable default true
32867  * @cfg {Boolean} enableAutocomplete default false
32868  * @cfg {Boolean} enableReverseGeocode default true
32869  * @cfg {String} markerTitle
32870  * 
32871  * @constructor
32872  * Create a new LocationPicker
32873  * @param {Object} config The config object
32874  */
32875
32876
32877 Roo.bootstrap.LocationPicker = function(config){
32878     
32879     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
32880     
32881     this.addEvents({
32882         /**
32883          * @event initial
32884          * Fires when the picker initialized.
32885          * @param {Roo.bootstrap.LocationPicker} this
32886          * @param {Google Location} location
32887          */
32888         initial : true,
32889         /**
32890          * @event positionchanged
32891          * Fires when the picker position changed.
32892          * @param {Roo.bootstrap.LocationPicker} this
32893          * @param {Google Location} location
32894          */
32895         positionchanged : true,
32896         /**
32897          * @event resize
32898          * Fires when the map resize.
32899          * @param {Roo.bootstrap.LocationPicker} this
32900          */
32901         resize : true,
32902         /**
32903          * @event show
32904          * Fires when the map show.
32905          * @param {Roo.bootstrap.LocationPicker} this
32906          */
32907         show : true,
32908         /**
32909          * @event hide
32910          * Fires when the map hide.
32911          * @param {Roo.bootstrap.LocationPicker} this
32912          */
32913         hide : true,
32914         /**
32915          * @event mapClick
32916          * Fires when click the map.
32917          * @param {Roo.bootstrap.LocationPicker} this
32918          * @param {Map event} e
32919          */
32920         mapClick : true,
32921         /**
32922          * @event mapRightClick
32923          * Fires when right click the map.
32924          * @param {Roo.bootstrap.LocationPicker} this
32925          * @param {Map event} e
32926          */
32927         mapRightClick : true,
32928         /**
32929          * @event markerClick
32930          * Fires when click the marker.
32931          * @param {Roo.bootstrap.LocationPicker} this
32932          * @param {Map event} e
32933          */
32934         markerClick : true,
32935         /**
32936          * @event markerRightClick
32937          * Fires when right click the marker.
32938          * @param {Roo.bootstrap.LocationPicker} this
32939          * @param {Map event} e
32940          */
32941         markerRightClick : true,
32942         /**
32943          * @event OverlayViewDraw
32944          * Fires when OverlayView Draw
32945          * @param {Roo.bootstrap.LocationPicker} this
32946          */
32947         OverlayViewDraw : true,
32948         /**
32949          * @event OverlayViewOnAdd
32950          * Fires when OverlayView Draw
32951          * @param {Roo.bootstrap.LocationPicker} this
32952          */
32953         OverlayViewOnAdd : true,
32954         /**
32955          * @event OverlayViewOnRemove
32956          * Fires when OverlayView Draw
32957          * @param {Roo.bootstrap.LocationPicker} this
32958          */
32959         OverlayViewOnRemove : true,
32960         /**
32961          * @event OverlayViewShow
32962          * Fires when OverlayView Draw
32963          * @param {Roo.bootstrap.LocationPicker} this
32964          * @param {Pixel} cpx
32965          */
32966         OverlayViewShow : true,
32967         /**
32968          * @event OverlayViewHide
32969          * Fires when OverlayView Draw
32970          * @param {Roo.bootstrap.LocationPicker} this
32971          */
32972         OverlayViewHide : true,
32973         /**
32974          * @event loadexception
32975          * Fires when load google lib failed.
32976          * @param {Roo.bootstrap.LocationPicker} this
32977          */
32978         loadexception : true
32979     });
32980         
32981 };
32982
32983 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
32984     
32985     gMapContext: false,
32986     
32987     latitude: 0,
32988     longitude: 0,
32989     zoom: 15,
32990     mapTypeId: false,
32991     mapTypeControl: false,
32992     disableDoubleClickZoom: false,
32993     scrollwheel: true,
32994     streetViewControl: false,
32995     radius: 0,
32996     locationName: '',
32997     draggable: true,
32998     enableAutocomplete: false,
32999     enableReverseGeocode: true,
33000     markerTitle: '',
33001     
33002     getAutoCreate: function()
33003     {
33004
33005         var cfg = {
33006             tag: 'div',
33007             cls: 'roo-location-picker'
33008         };
33009         
33010         return cfg
33011     },
33012     
33013     initEvents: function(ct, position)
33014     {       
33015         if(!this.el.getWidth() || this.isApplied()){
33016             return;
33017         }
33018         
33019         this.el.setVisibilityMode(Roo.Element.DISPLAY);
33020         
33021         this.initial();
33022     },
33023     
33024     initial: function()
33025     {
33026         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
33027             this.fireEvent('loadexception', this);
33028             return;
33029         }
33030         
33031         if(!this.mapTypeId){
33032             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
33033         }
33034         
33035         this.gMapContext = this.GMapContext();
33036         
33037         this.initOverlayView();
33038         
33039         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
33040         
33041         var _this = this;
33042                 
33043         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
33044             _this.setPosition(_this.gMapContext.marker.position);
33045         });
33046         
33047         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
33048             _this.fireEvent('mapClick', this, event);
33049             
33050         });
33051
33052         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
33053             _this.fireEvent('mapRightClick', this, event);
33054             
33055         });
33056         
33057         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
33058             _this.fireEvent('markerClick', this, event);
33059             
33060         });
33061
33062         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
33063             _this.fireEvent('markerRightClick', this, event);
33064             
33065         });
33066         
33067         this.setPosition(this.gMapContext.location);
33068         
33069         this.fireEvent('initial', this, this.gMapContext.location);
33070     },
33071     
33072     initOverlayView: function()
33073     {
33074         var _this = this;
33075         
33076         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
33077             
33078             draw: function()
33079             {
33080                 _this.fireEvent('OverlayViewDraw', _this);
33081             },
33082             
33083             onAdd: function()
33084             {
33085                 _this.fireEvent('OverlayViewOnAdd', _this);
33086             },
33087             
33088             onRemove: function()
33089             {
33090                 _this.fireEvent('OverlayViewOnRemove', _this);
33091             },
33092             
33093             show: function(cpx)
33094             {
33095                 _this.fireEvent('OverlayViewShow', _this, cpx);
33096             },
33097             
33098             hide: function()
33099             {
33100                 _this.fireEvent('OverlayViewHide', _this);
33101             }
33102             
33103         });
33104     },
33105     
33106     fromLatLngToContainerPixel: function(event)
33107     {
33108         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
33109     },
33110     
33111     isApplied: function() 
33112     {
33113         return this.getGmapContext() == false ? false : true;
33114     },
33115     
33116     getGmapContext: function() 
33117     {
33118         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
33119     },
33120     
33121     GMapContext: function() 
33122     {
33123         var position = new google.maps.LatLng(this.latitude, this.longitude);
33124         
33125         var _map = new google.maps.Map(this.el.dom, {
33126             center: position,
33127             zoom: this.zoom,
33128             mapTypeId: this.mapTypeId,
33129             mapTypeControl: this.mapTypeControl,
33130             disableDoubleClickZoom: this.disableDoubleClickZoom,
33131             scrollwheel: this.scrollwheel,
33132             streetViewControl: this.streetViewControl,
33133             locationName: this.locationName,
33134             draggable: this.draggable,
33135             enableAutocomplete: this.enableAutocomplete,
33136             enableReverseGeocode: this.enableReverseGeocode
33137         });
33138         
33139         var _marker = new google.maps.Marker({
33140             position: position,
33141             map: _map,
33142             title: this.markerTitle,
33143             draggable: this.draggable
33144         });
33145         
33146         return {
33147             map: _map,
33148             marker: _marker,
33149             circle: null,
33150             location: position,
33151             radius: this.radius,
33152             locationName: this.locationName,
33153             addressComponents: {
33154                 formatted_address: null,
33155                 addressLine1: null,
33156                 addressLine2: null,
33157                 streetName: null,
33158                 streetNumber: null,
33159                 city: null,
33160                 district: null,
33161                 state: null,
33162                 stateOrProvince: null
33163             },
33164             settings: this,
33165             domContainer: this.el.dom,
33166             geodecoder: new google.maps.Geocoder()
33167         };
33168     },
33169     
33170     drawCircle: function(center, radius, options) 
33171     {
33172         if (this.gMapContext.circle != null) {
33173             this.gMapContext.circle.setMap(null);
33174         }
33175         if (radius > 0) {
33176             radius *= 1;
33177             options = Roo.apply({}, options, {
33178                 strokeColor: "#0000FF",
33179                 strokeOpacity: .35,
33180                 strokeWeight: 2,
33181                 fillColor: "#0000FF",
33182                 fillOpacity: .2
33183             });
33184             
33185             options.map = this.gMapContext.map;
33186             options.radius = radius;
33187             options.center = center;
33188             this.gMapContext.circle = new google.maps.Circle(options);
33189             return this.gMapContext.circle;
33190         }
33191         
33192         return null;
33193     },
33194     
33195     setPosition: function(location) 
33196     {
33197         this.gMapContext.location = location;
33198         this.gMapContext.marker.setPosition(location);
33199         this.gMapContext.map.panTo(location);
33200         this.drawCircle(location, this.gMapContext.radius, {});
33201         
33202         var _this = this;
33203         
33204         if (this.gMapContext.settings.enableReverseGeocode) {
33205             this.gMapContext.geodecoder.geocode({
33206                 latLng: this.gMapContext.location
33207             }, function(results, status) {
33208                 
33209                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
33210                     _this.gMapContext.locationName = results[0].formatted_address;
33211                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
33212                     
33213                     _this.fireEvent('positionchanged', this, location);
33214                 }
33215             });
33216             
33217             return;
33218         }
33219         
33220         this.fireEvent('positionchanged', this, location);
33221     },
33222     
33223     resize: function()
33224     {
33225         google.maps.event.trigger(this.gMapContext.map, "resize");
33226         
33227         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
33228         
33229         this.fireEvent('resize', this);
33230     },
33231     
33232     setPositionByLatLng: function(latitude, longitude)
33233     {
33234         this.setPosition(new google.maps.LatLng(latitude, longitude));
33235     },
33236     
33237     getCurrentPosition: function() 
33238     {
33239         return {
33240             latitude: this.gMapContext.location.lat(),
33241             longitude: this.gMapContext.location.lng()
33242         };
33243     },
33244     
33245     getAddressName: function() 
33246     {
33247         return this.gMapContext.locationName;
33248     },
33249     
33250     getAddressComponents: function() 
33251     {
33252         return this.gMapContext.addressComponents;
33253     },
33254     
33255     address_component_from_google_geocode: function(address_components) 
33256     {
33257         var result = {};
33258         
33259         for (var i = 0; i < address_components.length; i++) {
33260             var component = address_components[i];
33261             if (component.types.indexOf("postal_code") >= 0) {
33262                 result.postalCode = component.short_name;
33263             } else if (component.types.indexOf("street_number") >= 0) {
33264                 result.streetNumber = component.short_name;
33265             } else if (component.types.indexOf("route") >= 0) {
33266                 result.streetName = component.short_name;
33267             } else if (component.types.indexOf("neighborhood") >= 0) {
33268                 result.city = component.short_name;
33269             } else if (component.types.indexOf("locality") >= 0) {
33270                 result.city = component.short_name;
33271             } else if (component.types.indexOf("sublocality") >= 0) {
33272                 result.district = component.short_name;
33273             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
33274                 result.stateOrProvince = component.short_name;
33275             } else if (component.types.indexOf("country") >= 0) {
33276                 result.country = component.short_name;
33277             }
33278         }
33279         
33280         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
33281         result.addressLine2 = "";
33282         return result;
33283     },
33284     
33285     setZoomLevel: function(zoom)
33286     {
33287         this.gMapContext.map.setZoom(zoom);
33288     },
33289     
33290     show: function()
33291     {
33292         if(!this.el){
33293             return;
33294         }
33295         
33296         this.el.show();
33297         
33298         this.resize();
33299         
33300         this.fireEvent('show', this);
33301     },
33302     
33303     hide: function()
33304     {
33305         if(!this.el){
33306             return;
33307         }
33308         
33309         this.el.hide();
33310         
33311         this.fireEvent('hide', this);
33312     }
33313     
33314 });
33315
33316 Roo.apply(Roo.bootstrap.LocationPicker, {
33317     
33318     OverlayView : function(map, options)
33319     {
33320         options = options || {};
33321         
33322         this.setMap(map);
33323     }
33324     
33325     
33326 });/**
33327  * @class Roo.bootstrap.Alert
33328  * @extends Roo.bootstrap.Component
33329  * Bootstrap Alert class - shows an alert area box
33330  * eg
33331  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
33332   Enter a valid email address
33333 </div>
33334  * @licence LGPL
33335  * @cfg {String} title The title of alert
33336  * @cfg {String} html The content of alert
33337  * @cfg {String} weight (success|info|warning|danger) Weight of the message
33338  * @cfg {String} fa font-awesomeicon
33339  * @cfg {Number} seconds default:-1 Number of seconds until it disapears (-1 means never.)
33340  * @cfg {Boolean} close true to show a x closer
33341  * 
33342  * 
33343  * @constructor
33344  * Create a new alert
33345  * @param {Object} config The config object
33346  */
33347
33348
33349 Roo.bootstrap.Alert = function(config){
33350     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
33351     
33352 };
33353
33354 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
33355     
33356     title: '',
33357     html: '',
33358     weight: false,
33359     fa: false,
33360     faicon: false, // BC
33361     close : false,
33362     
33363     
33364     getAutoCreate : function()
33365     {
33366         
33367         var cfg = {
33368             tag : 'div',
33369             cls : 'alert',
33370             cn : [
33371                 {
33372                     tag: 'button',
33373                     type :  "button",
33374                     cls: "close",
33375                     html : '×',
33376                     style : this.close ? '' : 'display:none'
33377                 },
33378                 {
33379                     tag : 'i',
33380                     cls : 'roo-alert-icon'
33381                     
33382                 },
33383                 {
33384                     tag : 'b',
33385                     cls : 'roo-alert-title',
33386                     html : this.title
33387                 },
33388                 {
33389                     tag : 'span',
33390                     cls : 'roo-alert-text',
33391                     html : this.html
33392                 }
33393             ]
33394         };
33395         
33396         if(this.faicon){
33397             cfg.cn[0].cls += ' fa ' + this.faicon;
33398         }
33399         if(this.fa){
33400             cfg.cn[0].cls += ' fa ' + this.fa;
33401         }
33402         
33403         if(this.weight){
33404             cfg.cls += ' alert-' + this.weight;
33405         }
33406         
33407         return cfg;
33408     },
33409     
33410     initEvents: function() 
33411     {
33412         this.el.setVisibilityMode(Roo.Element.DISPLAY);
33413         this.titleEl =  this.el.select('.roo-alert-title',true).first();
33414         this.iconEl = this.el.select('.roo-alert-icon',true).first();
33415         this.htmlEl = this.el.select('.roo-alert-text',true).first();
33416         if (this.seconds > 0) {
33417             this.hide.defer(this.seconds, this);
33418         }
33419     },
33420     /**
33421      * Set the Title Message HTML
33422      * @param {String} html
33423      */
33424     setTitle : function(str)
33425     {
33426         this.titleEl.dom.innerHTML = str;
33427     },
33428      
33429      /**
33430      * Set the Body Message HTML
33431      * @param {String} html
33432      */
33433     setHtml : function(str)
33434     {
33435         this.htmlEl.dom.innerHTML = str;
33436     },
33437     /**
33438      * Set the Weight of the alert
33439      * @param {String} (success|info|warning|danger) weight
33440      */
33441     
33442     setWeight : function(weight)
33443     {
33444         if(this.weight){
33445             this.el.removeClass('alert-' + this.weight);
33446         }
33447         
33448         this.weight = weight;
33449         
33450         this.el.addClass('alert-' + this.weight);
33451     },
33452       /**
33453      * Set the Icon of the alert
33454      * @param {String} see fontawsome names (name without the 'fa-' bit)
33455      */
33456     setIcon : function(icon)
33457     {
33458         if(this.faicon){
33459             this.alertEl.removeClass(['fa', 'fa-' + this.faicon]);
33460         }
33461         
33462         this.faicon = icon;
33463         
33464         this.alertEl.addClass(['fa', 'fa-' + this.faicon]);
33465     },
33466     /**
33467      * Hide the Alert
33468      */
33469     hide: function() 
33470     {
33471         this.el.hide();   
33472     },
33473     /**
33474      * Show the Alert
33475      */
33476     show: function() 
33477     {  
33478         this.el.show();   
33479     }
33480     
33481 });
33482
33483  
33484 /*
33485 * Licence: LGPL
33486 */
33487
33488 /**
33489  * @class Roo.bootstrap.UploadCropbox
33490  * @extends Roo.bootstrap.Component
33491  * Bootstrap UploadCropbox class
33492  * @cfg {String} emptyText show when image has been loaded
33493  * @cfg {String} rotateNotify show when image too small to rotate
33494  * @cfg {Number} errorTimeout default 3000
33495  * @cfg {Number} minWidth default 300
33496  * @cfg {Number} minHeight default 300
33497  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
33498  * @cfg {Boolean} isDocument (true|false) default false
33499  * @cfg {String} url action url
33500  * @cfg {String} paramName default 'imageUpload'
33501  * @cfg {String} method default POST
33502  * @cfg {Boolean} loadMask (true|false) default true
33503  * @cfg {Boolean} loadingText default 'Loading...'
33504  * 
33505  * @constructor
33506  * Create a new UploadCropbox
33507  * @param {Object} config The config object
33508  */
33509
33510 Roo.bootstrap.UploadCropbox = function(config){
33511     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
33512     
33513     this.addEvents({
33514         /**
33515          * @event beforeselectfile
33516          * Fire before select file
33517          * @param {Roo.bootstrap.UploadCropbox} this
33518          */
33519         "beforeselectfile" : true,
33520         /**
33521          * @event initial
33522          * Fire after initEvent
33523          * @param {Roo.bootstrap.UploadCropbox} this
33524          */
33525         "initial" : true,
33526         /**
33527          * @event crop
33528          * Fire after initEvent
33529          * @param {Roo.bootstrap.UploadCropbox} this
33530          * @param {String} data
33531          */
33532         "crop" : true,
33533         /**
33534          * @event prepare
33535          * Fire when preparing the file data
33536          * @param {Roo.bootstrap.UploadCropbox} this
33537          * @param {Object} file
33538          */
33539         "prepare" : true,
33540         /**
33541          * @event exception
33542          * Fire when get exception
33543          * @param {Roo.bootstrap.UploadCropbox} this
33544          * @param {XMLHttpRequest} xhr
33545          */
33546         "exception" : true,
33547         /**
33548          * @event beforeloadcanvas
33549          * Fire before load the canvas
33550          * @param {Roo.bootstrap.UploadCropbox} this
33551          * @param {String} src
33552          */
33553         "beforeloadcanvas" : true,
33554         /**
33555          * @event trash
33556          * Fire when trash image
33557          * @param {Roo.bootstrap.UploadCropbox} this
33558          */
33559         "trash" : true,
33560         /**
33561          * @event download
33562          * Fire when download the image
33563          * @param {Roo.bootstrap.UploadCropbox} this
33564          */
33565         "download" : true,
33566         /**
33567          * @event footerbuttonclick
33568          * Fire when footerbuttonclick
33569          * @param {Roo.bootstrap.UploadCropbox} this
33570          * @param {String} type
33571          */
33572         "footerbuttonclick" : true,
33573         /**
33574          * @event resize
33575          * Fire when resize
33576          * @param {Roo.bootstrap.UploadCropbox} this
33577          */
33578         "resize" : true,
33579         /**
33580          * @event rotate
33581          * Fire when rotate the image
33582          * @param {Roo.bootstrap.UploadCropbox} this
33583          * @param {String} pos
33584          */
33585         "rotate" : true,
33586         /**
33587          * @event inspect
33588          * Fire when inspect the file
33589          * @param {Roo.bootstrap.UploadCropbox} this
33590          * @param {Object} file
33591          */
33592         "inspect" : true,
33593         /**
33594          * @event upload
33595          * Fire when xhr upload the file
33596          * @param {Roo.bootstrap.UploadCropbox} this
33597          * @param {Object} data
33598          */
33599         "upload" : true,
33600         /**
33601          * @event arrange
33602          * Fire when arrange the file data
33603          * @param {Roo.bootstrap.UploadCropbox} this
33604          * @param {Object} formData
33605          */
33606         "arrange" : true
33607     });
33608     
33609     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
33610 };
33611
33612 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
33613     
33614     emptyText : 'Click to upload image',
33615     rotateNotify : 'Image is too small to rotate',
33616     errorTimeout : 3000,
33617     scale : 0,
33618     baseScale : 1,
33619     rotate : 0,
33620     dragable : false,
33621     pinching : false,
33622     mouseX : 0,
33623     mouseY : 0,
33624     cropData : false,
33625     minWidth : 300,
33626     minHeight : 300,
33627     file : false,
33628     exif : {},
33629     baseRotate : 1,
33630     cropType : 'image/jpeg',
33631     buttons : false,
33632     canvasLoaded : false,
33633     isDocument : false,
33634     method : 'POST',
33635     paramName : 'imageUpload',
33636     loadMask : true,
33637     loadingText : 'Loading...',
33638     maskEl : false,
33639     
33640     getAutoCreate : function()
33641     {
33642         var cfg = {
33643             tag : 'div',
33644             cls : 'roo-upload-cropbox',
33645             cn : [
33646                 {
33647                     tag : 'input',
33648                     cls : 'roo-upload-cropbox-selector',
33649                     type : 'file'
33650                 },
33651                 {
33652                     tag : 'div',
33653                     cls : 'roo-upload-cropbox-body',
33654                     style : 'cursor:pointer',
33655                     cn : [
33656                         {
33657                             tag : 'div',
33658                             cls : 'roo-upload-cropbox-preview'
33659                         },
33660                         {
33661                             tag : 'div',
33662                             cls : 'roo-upload-cropbox-thumb'
33663                         },
33664                         {
33665                             tag : 'div',
33666                             cls : 'roo-upload-cropbox-empty-notify',
33667                             html : this.emptyText
33668                         },
33669                         {
33670                             tag : 'div',
33671                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
33672                             html : this.rotateNotify
33673                         }
33674                     ]
33675                 },
33676                 {
33677                     tag : 'div',
33678                     cls : 'roo-upload-cropbox-footer',
33679                     cn : {
33680                         tag : 'div',
33681                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
33682                         cn : []
33683                     }
33684                 }
33685             ]
33686         };
33687         
33688         return cfg;
33689     },
33690     
33691     onRender : function(ct, position)
33692     {
33693         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
33694         
33695         if (this.buttons.length) {
33696             
33697             Roo.each(this.buttons, function(bb) {
33698                 
33699                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
33700                 
33701                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
33702                 
33703             }, this);
33704         }
33705         
33706         if(this.loadMask){
33707             this.maskEl = this.el;
33708         }
33709     },
33710     
33711     initEvents : function()
33712     {
33713         this.urlAPI = (window.createObjectURL && window) || 
33714                                 (window.URL && URL.revokeObjectURL && URL) || 
33715                                 (window.webkitURL && webkitURL);
33716                         
33717         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
33718         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
33719         
33720         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
33721         this.selectorEl.hide();
33722         
33723         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
33724         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
33725         
33726         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
33727         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
33728         this.thumbEl.hide();
33729         
33730         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
33731         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
33732         
33733         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
33734         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
33735         this.errorEl.hide();
33736         
33737         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
33738         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
33739         this.footerEl.hide();
33740         
33741         this.setThumbBoxSize();
33742         
33743         this.bind();
33744         
33745         this.resize();
33746         
33747         this.fireEvent('initial', this);
33748     },
33749
33750     bind : function()
33751     {
33752         var _this = this;
33753         
33754         window.addEventListener("resize", function() { _this.resize(); } );
33755         
33756         this.bodyEl.on('click', this.beforeSelectFile, this);
33757         
33758         if(Roo.isTouch){
33759             this.bodyEl.on('touchstart', this.onTouchStart, this);
33760             this.bodyEl.on('touchmove', this.onTouchMove, this);
33761             this.bodyEl.on('touchend', this.onTouchEnd, this);
33762         }
33763         
33764         if(!Roo.isTouch){
33765             this.bodyEl.on('mousedown', this.onMouseDown, this);
33766             this.bodyEl.on('mousemove', this.onMouseMove, this);
33767             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
33768             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
33769             Roo.get(document).on('mouseup', this.onMouseUp, this);
33770         }
33771         
33772         this.selectorEl.on('change', this.onFileSelected, this);
33773     },
33774     
33775     reset : function()
33776     {    
33777         this.scale = 0;
33778         this.baseScale = 1;
33779         this.rotate = 0;
33780         this.baseRotate = 1;
33781         this.dragable = false;
33782         this.pinching = false;
33783         this.mouseX = 0;
33784         this.mouseY = 0;
33785         this.cropData = false;
33786         this.notifyEl.dom.innerHTML = this.emptyText;
33787         
33788         this.selectorEl.dom.value = '';
33789         
33790     },
33791     
33792     resize : function()
33793     {
33794         if(this.fireEvent('resize', this) != false){
33795             this.setThumbBoxPosition();
33796             this.setCanvasPosition();
33797         }
33798     },
33799     
33800     onFooterButtonClick : function(e, el, o, type)
33801     {
33802         switch (type) {
33803             case 'rotate-left' :
33804                 this.onRotateLeft(e);
33805                 break;
33806             case 'rotate-right' :
33807                 this.onRotateRight(e);
33808                 break;
33809             case 'picture' :
33810                 this.beforeSelectFile(e);
33811                 break;
33812             case 'trash' :
33813                 this.trash(e);
33814                 break;
33815             case 'crop' :
33816                 this.crop(e);
33817                 break;
33818             case 'download' :
33819                 this.download(e);
33820                 break;
33821             default :
33822                 break;
33823         }
33824         
33825         this.fireEvent('footerbuttonclick', this, type);
33826     },
33827     
33828     beforeSelectFile : function(e)
33829     {
33830         e.preventDefault();
33831         
33832         if(this.fireEvent('beforeselectfile', this) != false){
33833             this.selectorEl.dom.click();
33834         }
33835     },
33836     
33837     onFileSelected : function(e)
33838     {
33839         e.preventDefault();
33840         
33841         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
33842             return;
33843         }
33844         
33845         var file = this.selectorEl.dom.files[0];
33846         
33847         if(this.fireEvent('inspect', this, file) != false){
33848             this.prepare(file);
33849         }
33850         
33851     },
33852     
33853     trash : function(e)
33854     {
33855         this.fireEvent('trash', this);
33856     },
33857     
33858     download : function(e)
33859     {
33860         this.fireEvent('download', this);
33861     },
33862     
33863     loadCanvas : function(src)
33864     {   
33865         if(this.fireEvent('beforeloadcanvas', this, src) != false){
33866             
33867             this.reset();
33868             
33869             this.imageEl = document.createElement('img');
33870             
33871             var _this = this;
33872             
33873             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
33874             
33875             this.imageEl.src = src;
33876         }
33877     },
33878     
33879     onLoadCanvas : function()
33880     {   
33881         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
33882         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
33883         
33884         this.bodyEl.un('click', this.beforeSelectFile, this);
33885         
33886         this.notifyEl.hide();
33887         this.thumbEl.show();
33888         this.footerEl.show();
33889         
33890         this.baseRotateLevel();
33891         
33892         if(this.isDocument){
33893             this.setThumbBoxSize();
33894         }
33895         
33896         this.setThumbBoxPosition();
33897         
33898         this.baseScaleLevel();
33899         
33900         this.draw();
33901         
33902         this.resize();
33903         
33904         this.canvasLoaded = true;
33905         
33906         if(this.loadMask){
33907             this.maskEl.unmask();
33908         }
33909         
33910     },
33911     
33912     setCanvasPosition : function()
33913     {   
33914         if(!this.canvasEl){
33915             return;
33916         }
33917         
33918         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
33919         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
33920         
33921         this.previewEl.setLeft(pw);
33922         this.previewEl.setTop(ph);
33923         
33924     },
33925     
33926     onMouseDown : function(e)
33927     {   
33928         e.stopEvent();
33929         
33930         this.dragable = true;
33931         this.pinching = false;
33932         
33933         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
33934             this.dragable = false;
33935             return;
33936         }
33937         
33938         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
33939         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
33940         
33941     },
33942     
33943     onMouseMove : function(e)
33944     {   
33945         e.stopEvent();
33946         
33947         if(!this.canvasLoaded){
33948             return;
33949         }
33950         
33951         if (!this.dragable){
33952             return;
33953         }
33954         
33955         var minX = Math.ceil(this.thumbEl.getLeft(true));
33956         var minY = Math.ceil(this.thumbEl.getTop(true));
33957         
33958         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
33959         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
33960         
33961         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
33962         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
33963         
33964         x = x - this.mouseX;
33965         y = y - this.mouseY;
33966         
33967         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
33968         var bgY = Math.ceil(y + this.previewEl.getTop(true));
33969         
33970         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
33971         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
33972         
33973         this.previewEl.setLeft(bgX);
33974         this.previewEl.setTop(bgY);
33975         
33976         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
33977         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
33978     },
33979     
33980     onMouseUp : function(e)
33981     {   
33982         e.stopEvent();
33983         
33984         this.dragable = false;
33985     },
33986     
33987     onMouseWheel : function(e)
33988     {   
33989         e.stopEvent();
33990         
33991         this.startScale = this.scale;
33992         
33993         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
33994         
33995         if(!this.zoomable()){
33996             this.scale = this.startScale;
33997             return;
33998         }
33999         
34000         this.draw();
34001         
34002         return;
34003     },
34004     
34005     zoomable : function()
34006     {
34007         var minScale = this.thumbEl.getWidth() / this.minWidth;
34008         
34009         if(this.minWidth < this.minHeight){
34010             minScale = this.thumbEl.getHeight() / this.minHeight;
34011         }
34012         
34013         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
34014         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
34015         
34016         if(
34017                 this.isDocument &&
34018                 (this.rotate == 0 || this.rotate == 180) && 
34019                 (
34020                     width > this.imageEl.OriginWidth || 
34021                     height > this.imageEl.OriginHeight ||
34022                     (width < this.minWidth && height < this.minHeight)
34023                 )
34024         ){
34025             return false;
34026         }
34027         
34028         if(
34029                 this.isDocument &&
34030                 (this.rotate == 90 || this.rotate == 270) && 
34031                 (
34032                     width > this.imageEl.OriginWidth || 
34033                     height > this.imageEl.OriginHeight ||
34034                     (width < this.minHeight && height < this.minWidth)
34035                 )
34036         ){
34037             return false;
34038         }
34039         
34040         if(
34041                 !this.isDocument &&
34042                 (this.rotate == 0 || this.rotate == 180) && 
34043                 (
34044                     width < this.minWidth || 
34045                     width > this.imageEl.OriginWidth || 
34046                     height < this.minHeight || 
34047                     height > this.imageEl.OriginHeight
34048                 )
34049         ){
34050             return false;
34051         }
34052         
34053         if(
34054                 !this.isDocument &&
34055                 (this.rotate == 90 || this.rotate == 270) && 
34056                 (
34057                     width < this.minHeight || 
34058                     width > this.imageEl.OriginWidth || 
34059                     height < this.minWidth || 
34060                     height > this.imageEl.OriginHeight
34061                 )
34062         ){
34063             return false;
34064         }
34065         
34066         return true;
34067         
34068     },
34069     
34070     onRotateLeft : function(e)
34071     {   
34072         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
34073             
34074             var minScale = this.thumbEl.getWidth() / this.minWidth;
34075             
34076             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
34077             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
34078             
34079             this.startScale = this.scale;
34080             
34081             while (this.getScaleLevel() < minScale){
34082             
34083                 this.scale = this.scale + 1;
34084                 
34085                 if(!this.zoomable()){
34086                     break;
34087                 }
34088                 
34089                 if(
34090                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
34091                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
34092                 ){
34093                     continue;
34094                 }
34095                 
34096                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
34097
34098                 this.draw();
34099                 
34100                 return;
34101             }
34102             
34103             this.scale = this.startScale;
34104             
34105             this.onRotateFail();
34106             
34107             return false;
34108         }
34109         
34110         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
34111
34112         if(this.isDocument){
34113             this.setThumbBoxSize();
34114             this.setThumbBoxPosition();
34115             this.setCanvasPosition();
34116         }
34117         
34118         this.draw();
34119         
34120         this.fireEvent('rotate', this, 'left');
34121         
34122     },
34123     
34124     onRotateRight : function(e)
34125     {
34126         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
34127             
34128             var minScale = this.thumbEl.getWidth() / this.minWidth;
34129         
34130             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
34131             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
34132             
34133             this.startScale = this.scale;
34134             
34135             while (this.getScaleLevel() < minScale){
34136             
34137                 this.scale = this.scale + 1;
34138                 
34139                 if(!this.zoomable()){
34140                     break;
34141                 }
34142                 
34143                 if(
34144                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
34145                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
34146                 ){
34147                     continue;
34148                 }
34149                 
34150                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
34151
34152                 this.draw();
34153                 
34154                 return;
34155             }
34156             
34157             this.scale = this.startScale;
34158             
34159             this.onRotateFail();
34160             
34161             return false;
34162         }
34163         
34164         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
34165
34166         if(this.isDocument){
34167             this.setThumbBoxSize();
34168             this.setThumbBoxPosition();
34169             this.setCanvasPosition();
34170         }
34171         
34172         this.draw();
34173         
34174         this.fireEvent('rotate', this, 'right');
34175     },
34176     
34177     onRotateFail : function()
34178     {
34179         this.errorEl.show(true);
34180         
34181         var _this = this;
34182         
34183         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
34184     },
34185     
34186     draw : function()
34187     {
34188         this.previewEl.dom.innerHTML = '';
34189         
34190         var canvasEl = document.createElement("canvas");
34191         
34192         var contextEl = canvasEl.getContext("2d");
34193         
34194         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
34195         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
34196         var center = this.imageEl.OriginWidth / 2;
34197         
34198         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
34199             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
34200             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
34201             center = this.imageEl.OriginHeight / 2;
34202         }
34203         
34204         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
34205         
34206         contextEl.translate(center, center);
34207         contextEl.rotate(this.rotate * Math.PI / 180);
34208
34209         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
34210         
34211         this.canvasEl = document.createElement("canvas");
34212         
34213         this.contextEl = this.canvasEl.getContext("2d");
34214         
34215         switch (this.rotate) {
34216             case 0 :
34217                 
34218                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
34219                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
34220                 
34221                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
34222                 
34223                 break;
34224             case 90 : 
34225                 
34226                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
34227                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
34228                 
34229                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
34230                     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);
34231                     break;
34232                 }
34233                 
34234                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
34235                 
34236                 break;
34237             case 180 :
34238                 
34239                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
34240                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
34241                 
34242                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
34243                     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);
34244                     break;
34245                 }
34246                 
34247                 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);
34248                 
34249                 break;
34250             case 270 :
34251                 
34252                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
34253                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
34254         
34255                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
34256                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
34257                     break;
34258                 }
34259                 
34260                 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);
34261                 
34262                 break;
34263             default : 
34264                 break;
34265         }
34266         
34267         this.previewEl.appendChild(this.canvasEl);
34268         
34269         this.setCanvasPosition();
34270     },
34271     
34272     crop : function()
34273     {
34274         if(!this.canvasLoaded){
34275             return;
34276         }
34277         
34278         var imageCanvas = document.createElement("canvas");
34279         
34280         var imageContext = imageCanvas.getContext("2d");
34281         
34282         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
34283         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
34284         
34285         var center = imageCanvas.width / 2;
34286         
34287         imageContext.translate(center, center);
34288         
34289         imageContext.rotate(this.rotate * Math.PI / 180);
34290         
34291         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
34292         
34293         var canvas = document.createElement("canvas");
34294         
34295         var context = canvas.getContext("2d");
34296                 
34297         canvas.width = this.minWidth;
34298         canvas.height = this.minHeight;
34299
34300         switch (this.rotate) {
34301             case 0 :
34302                 
34303                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
34304                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
34305                 
34306                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
34307                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
34308                 
34309                 var targetWidth = this.minWidth - 2 * x;
34310                 var targetHeight = this.minHeight - 2 * y;
34311                 
34312                 var scale = 1;
34313                 
34314                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
34315                     scale = targetWidth / width;
34316                 }
34317                 
34318                 if(x > 0 && y == 0){
34319                     scale = targetHeight / height;
34320                 }
34321                 
34322                 if(x > 0 && y > 0){
34323                     scale = targetWidth / width;
34324                     
34325                     if(width < height){
34326                         scale = targetHeight / height;
34327                     }
34328                 }
34329                 
34330                 context.scale(scale, scale);
34331                 
34332                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
34333                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
34334
34335                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
34336                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
34337
34338                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
34339                 
34340                 break;
34341             case 90 : 
34342                 
34343                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
34344                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
34345                 
34346                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
34347                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
34348                 
34349                 var targetWidth = this.minWidth - 2 * x;
34350                 var targetHeight = this.minHeight - 2 * y;
34351                 
34352                 var scale = 1;
34353                 
34354                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
34355                     scale = targetWidth / width;
34356                 }
34357                 
34358                 if(x > 0 && y == 0){
34359                     scale = targetHeight / height;
34360                 }
34361                 
34362                 if(x > 0 && y > 0){
34363                     scale = targetWidth / width;
34364                     
34365                     if(width < height){
34366                         scale = targetHeight / height;
34367                     }
34368                 }
34369                 
34370                 context.scale(scale, scale);
34371                 
34372                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
34373                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
34374
34375                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
34376                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
34377                 
34378                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
34379                 
34380                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
34381                 
34382                 break;
34383             case 180 :
34384                 
34385                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
34386                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
34387                 
34388                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
34389                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
34390                 
34391                 var targetWidth = this.minWidth - 2 * x;
34392                 var targetHeight = this.minHeight - 2 * y;
34393                 
34394                 var scale = 1;
34395                 
34396                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
34397                     scale = targetWidth / width;
34398                 }
34399                 
34400                 if(x > 0 && y == 0){
34401                     scale = targetHeight / height;
34402                 }
34403                 
34404                 if(x > 0 && y > 0){
34405                     scale = targetWidth / width;
34406                     
34407                     if(width < height){
34408                         scale = targetHeight / height;
34409                     }
34410                 }
34411                 
34412                 context.scale(scale, scale);
34413                 
34414                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
34415                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
34416
34417                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
34418                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
34419
34420                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
34421                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
34422                 
34423                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
34424                 
34425                 break;
34426             case 270 :
34427                 
34428                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
34429                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
34430                 
34431                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
34432                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
34433                 
34434                 var targetWidth = this.minWidth - 2 * x;
34435                 var targetHeight = this.minHeight - 2 * y;
34436                 
34437                 var scale = 1;
34438                 
34439                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
34440                     scale = targetWidth / width;
34441                 }
34442                 
34443                 if(x > 0 && y == 0){
34444                     scale = targetHeight / height;
34445                 }
34446                 
34447                 if(x > 0 && y > 0){
34448                     scale = targetWidth / width;
34449                     
34450                     if(width < height){
34451                         scale = targetHeight / height;
34452                     }
34453                 }
34454                 
34455                 context.scale(scale, scale);
34456                 
34457                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
34458                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
34459
34460                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
34461                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
34462                 
34463                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
34464                 
34465                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
34466                 
34467                 break;
34468             default : 
34469                 break;
34470         }
34471         
34472         this.cropData = canvas.toDataURL(this.cropType);
34473         
34474         if(this.fireEvent('crop', this, this.cropData) !== false){
34475             this.process(this.file, this.cropData);
34476         }
34477         
34478         return;
34479         
34480     },
34481     
34482     setThumbBoxSize : function()
34483     {
34484         var width, height;
34485         
34486         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
34487             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
34488             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
34489             
34490             this.minWidth = width;
34491             this.minHeight = height;
34492             
34493             if(this.rotate == 90 || this.rotate == 270){
34494                 this.minWidth = height;
34495                 this.minHeight = width;
34496             }
34497         }
34498         
34499         height = 300;
34500         width = Math.ceil(this.minWidth * height / this.minHeight);
34501         
34502         if(this.minWidth > this.minHeight){
34503             width = 300;
34504             height = Math.ceil(this.minHeight * width / this.minWidth);
34505         }
34506         
34507         this.thumbEl.setStyle({
34508             width : width + 'px',
34509             height : height + 'px'
34510         });
34511
34512         return;
34513             
34514     },
34515     
34516     setThumbBoxPosition : function()
34517     {
34518         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
34519         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
34520         
34521         this.thumbEl.setLeft(x);
34522         this.thumbEl.setTop(y);
34523         
34524     },
34525     
34526     baseRotateLevel : function()
34527     {
34528         this.baseRotate = 1;
34529         
34530         if(
34531                 typeof(this.exif) != 'undefined' &&
34532                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
34533                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
34534         ){
34535             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
34536         }
34537         
34538         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
34539         
34540     },
34541     
34542     baseScaleLevel : function()
34543     {
34544         var width, height;
34545         
34546         if(this.isDocument){
34547             
34548             if(this.baseRotate == 6 || this.baseRotate == 8){
34549             
34550                 height = this.thumbEl.getHeight();
34551                 this.baseScale = height / this.imageEl.OriginWidth;
34552
34553                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
34554                     width = this.thumbEl.getWidth();
34555                     this.baseScale = width / this.imageEl.OriginHeight;
34556                 }
34557
34558                 return;
34559             }
34560
34561             height = this.thumbEl.getHeight();
34562             this.baseScale = height / this.imageEl.OriginHeight;
34563
34564             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
34565                 width = this.thumbEl.getWidth();
34566                 this.baseScale = width / this.imageEl.OriginWidth;
34567             }
34568
34569             return;
34570         }
34571         
34572         if(this.baseRotate == 6 || this.baseRotate == 8){
34573             
34574             width = this.thumbEl.getHeight();
34575             this.baseScale = width / this.imageEl.OriginHeight;
34576             
34577             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
34578                 height = this.thumbEl.getWidth();
34579                 this.baseScale = height / this.imageEl.OriginHeight;
34580             }
34581             
34582             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
34583                 height = this.thumbEl.getWidth();
34584                 this.baseScale = height / this.imageEl.OriginHeight;
34585                 
34586                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
34587                     width = this.thumbEl.getHeight();
34588                     this.baseScale = width / this.imageEl.OriginWidth;
34589                 }
34590             }
34591             
34592             return;
34593         }
34594         
34595         width = this.thumbEl.getWidth();
34596         this.baseScale = width / this.imageEl.OriginWidth;
34597         
34598         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
34599             height = this.thumbEl.getHeight();
34600             this.baseScale = height / this.imageEl.OriginHeight;
34601         }
34602         
34603         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
34604             
34605             height = this.thumbEl.getHeight();
34606             this.baseScale = height / this.imageEl.OriginHeight;
34607             
34608             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
34609                 width = this.thumbEl.getWidth();
34610                 this.baseScale = width / this.imageEl.OriginWidth;
34611             }
34612             
34613         }
34614         
34615         return;
34616     },
34617     
34618     getScaleLevel : function()
34619     {
34620         return this.baseScale * Math.pow(1.1, this.scale);
34621     },
34622     
34623     onTouchStart : function(e)
34624     {
34625         if(!this.canvasLoaded){
34626             this.beforeSelectFile(e);
34627             return;
34628         }
34629         
34630         var touches = e.browserEvent.touches;
34631         
34632         if(!touches){
34633             return;
34634         }
34635         
34636         if(touches.length == 1){
34637             this.onMouseDown(e);
34638             return;
34639         }
34640         
34641         if(touches.length != 2){
34642             return;
34643         }
34644         
34645         var coords = [];
34646         
34647         for(var i = 0, finger; finger = touches[i]; i++){
34648             coords.push(finger.pageX, finger.pageY);
34649         }
34650         
34651         var x = Math.pow(coords[0] - coords[2], 2);
34652         var y = Math.pow(coords[1] - coords[3], 2);
34653         
34654         this.startDistance = Math.sqrt(x + y);
34655         
34656         this.startScale = this.scale;
34657         
34658         this.pinching = true;
34659         this.dragable = false;
34660         
34661     },
34662     
34663     onTouchMove : function(e)
34664     {
34665         if(!this.pinching && !this.dragable){
34666             return;
34667         }
34668         
34669         var touches = e.browserEvent.touches;
34670         
34671         if(!touches){
34672             return;
34673         }
34674         
34675         if(this.dragable){
34676             this.onMouseMove(e);
34677             return;
34678         }
34679         
34680         var coords = [];
34681         
34682         for(var i = 0, finger; finger = touches[i]; i++){
34683             coords.push(finger.pageX, finger.pageY);
34684         }
34685         
34686         var x = Math.pow(coords[0] - coords[2], 2);
34687         var y = Math.pow(coords[1] - coords[3], 2);
34688         
34689         this.endDistance = Math.sqrt(x + y);
34690         
34691         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
34692         
34693         if(!this.zoomable()){
34694             this.scale = this.startScale;
34695             return;
34696         }
34697         
34698         this.draw();
34699         
34700     },
34701     
34702     onTouchEnd : function(e)
34703     {
34704         this.pinching = false;
34705         this.dragable = false;
34706         
34707     },
34708     
34709     process : function(file, crop)
34710     {
34711         if(this.loadMask){
34712             this.maskEl.mask(this.loadingText);
34713         }
34714         
34715         this.xhr = new XMLHttpRequest();
34716         
34717         file.xhr = this.xhr;
34718
34719         this.xhr.open(this.method, this.url, true);
34720         
34721         var headers = {
34722             "Accept": "application/json",
34723             "Cache-Control": "no-cache",
34724             "X-Requested-With": "XMLHttpRequest"
34725         };
34726         
34727         for (var headerName in headers) {
34728             var headerValue = headers[headerName];
34729             if (headerValue) {
34730                 this.xhr.setRequestHeader(headerName, headerValue);
34731             }
34732         }
34733         
34734         var _this = this;
34735         
34736         this.xhr.onload = function()
34737         {
34738             _this.xhrOnLoad(_this.xhr);
34739         }
34740         
34741         this.xhr.onerror = function()
34742         {
34743             _this.xhrOnError(_this.xhr);
34744         }
34745         
34746         var formData = new FormData();
34747
34748         formData.append('returnHTML', 'NO');
34749         
34750         if(crop){
34751             formData.append('crop', crop);
34752         }
34753         
34754         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
34755             formData.append(this.paramName, file, file.name);
34756         }
34757         
34758         if(typeof(file.filename) != 'undefined'){
34759             formData.append('filename', file.filename);
34760         }
34761         
34762         if(typeof(file.mimetype) != 'undefined'){
34763             formData.append('mimetype', file.mimetype);
34764         }
34765         
34766         if(this.fireEvent('arrange', this, formData) != false){
34767             this.xhr.send(formData);
34768         };
34769     },
34770     
34771     xhrOnLoad : function(xhr)
34772     {
34773         if(this.loadMask){
34774             this.maskEl.unmask();
34775         }
34776         
34777         if (xhr.readyState !== 4) {
34778             this.fireEvent('exception', this, xhr);
34779             return;
34780         }
34781
34782         var response = Roo.decode(xhr.responseText);
34783         
34784         if(!response.success){
34785             this.fireEvent('exception', this, xhr);
34786             return;
34787         }
34788         
34789         var response = Roo.decode(xhr.responseText);
34790         
34791         this.fireEvent('upload', this, response);
34792         
34793     },
34794     
34795     xhrOnError : function()
34796     {
34797         if(this.loadMask){
34798             this.maskEl.unmask();
34799         }
34800         
34801         Roo.log('xhr on error');
34802         
34803         var response = Roo.decode(xhr.responseText);
34804           
34805         Roo.log(response);
34806         
34807     },
34808     
34809     prepare : function(file)
34810     {   
34811         if(this.loadMask){
34812             this.maskEl.mask(this.loadingText);
34813         }
34814         
34815         this.file = false;
34816         this.exif = {};
34817         
34818         if(typeof(file) === 'string'){
34819             this.loadCanvas(file);
34820             return;
34821         }
34822         
34823         if(!file || !this.urlAPI){
34824             return;
34825         }
34826         
34827         this.file = file;
34828         this.cropType = file.type;
34829         
34830         var _this = this;
34831         
34832         if(this.fireEvent('prepare', this, this.file) != false){
34833             
34834             var reader = new FileReader();
34835             
34836             reader.onload = function (e) {
34837                 if (e.target.error) {
34838                     Roo.log(e.target.error);
34839                     return;
34840                 }
34841                 
34842                 var buffer = e.target.result,
34843                     dataView = new DataView(buffer),
34844                     offset = 2,
34845                     maxOffset = dataView.byteLength - 4,
34846                     markerBytes,
34847                     markerLength;
34848                 
34849                 if (dataView.getUint16(0) === 0xffd8) {
34850                     while (offset < maxOffset) {
34851                         markerBytes = dataView.getUint16(offset);
34852                         
34853                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
34854                             markerLength = dataView.getUint16(offset + 2) + 2;
34855                             if (offset + markerLength > dataView.byteLength) {
34856                                 Roo.log('Invalid meta data: Invalid segment size.');
34857                                 break;
34858                             }
34859                             
34860                             if(markerBytes == 0xffe1){
34861                                 _this.parseExifData(
34862                                     dataView,
34863                                     offset,
34864                                     markerLength
34865                                 );
34866                             }
34867                             
34868                             offset += markerLength;
34869                             
34870                             continue;
34871                         }
34872                         
34873                         break;
34874                     }
34875                     
34876                 }
34877                 
34878                 var url = _this.urlAPI.createObjectURL(_this.file);
34879                 
34880                 _this.loadCanvas(url);
34881                 
34882                 return;
34883             }
34884             
34885             reader.readAsArrayBuffer(this.file);
34886             
34887         }
34888         
34889     },
34890     
34891     parseExifData : function(dataView, offset, length)
34892     {
34893         var tiffOffset = offset + 10,
34894             littleEndian,
34895             dirOffset;
34896     
34897         if (dataView.getUint32(offset + 4) !== 0x45786966) {
34898             // No Exif data, might be XMP data instead
34899             return;
34900         }
34901         
34902         // Check for the ASCII code for "Exif" (0x45786966):
34903         if (dataView.getUint32(offset + 4) !== 0x45786966) {
34904             // No Exif data, might be XMP data instead
34905             return;
34906         }
34907         if (tiffOffset + 8 > dataView.byteLength) {
34908             Roo.log('Invalid Exif data: Invalid segment size.');
34909             return;
34910         }
34911         // Check for the two null bytes:
34912         if (dataView.getUint16(offset + 8) !== 0x0000) {
34913             Roo.log('Invalid Exif data: Missing byte alignment offset.');
34914             return;
34915         }
34916         // Check the byte alignment:
34917         switch (dataView.getUint16(tiffOffset)) {
34918         case 0x4949:
34919             littleEndian = true;
34920             break;
34921         case 0x4D4D:
34922             littleEndian = false;
34923             break;
34924         default:
34925             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
34926             return;
34927         }
34928         // Check for the TIFF tag marker (0x002A):
34929         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
34930             Roo.log('Invalid Exif data: Missing TIFF marker.');
34931             return;
34932         }
34933         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
34934         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
34935         
34936         this.parseExifTags(
34937             dataView,
34938             tiffOffset,
34939             tiffOffset + dirOffset,
34940             littleEndian
34941         );
34942     },
34943     
34944     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
34945     {
34946         var tagsNumber,
34947             dirEndOffset,
34948             i;
34949         if (dirOffset + 6 > dataView.byteLength) {
34950             Roo.log('Invalid Exif data: Invalid directory offset.');
34951             return;
34952         }
34953         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
34954         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
34955         if (dirEndOffset + 4 > dataView.byteLength) {
34956             Roo.log('Invalid Exif data: Invalid directory size.');
34957             return;
34958         }
34959         for (i = 0; i < tagsNumber; i += 1) {
34960             this.parseExifTag(
34961                 dataView,
34962                 tiffOffset,
34963                 dirOffset + 2 + 12 * i, // tag offset
34964                 littleEndian
34965             );
34966         }
34967         // Return the offset to the next directory:
34968         return dataView.getUint32(dirEndOffset, littleEndian);
34969     },
34970     
34971     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
34972     {
34973         var tag = dataView.getUint16(offset, littleEndian);
34974         
34975         this.exif[tag] = this.getExifValue(
34976             dataView,
34977             tiffOffset,
34978             offset,
34979             dataView.getUint16(offset + 2, littleEndian), // tag type
34980             dataView.getUint32(offset + 4, littleEndian), // tag length
34981             littleEndian
34982         );
34983     },
34984     
34985     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
34986     {
34987         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
34988             tagSize,
34989             dataOffset,
34990             values,
34991             i,
34992             str,
34993             c;
34994     
34995         if (!tagType) {
34996             Roo.log('Invalid Exif data: Invalid tag type.');
34997             return;
34998         }
34999         
35000         tagSize = tagType.size * length;
35001         // Determine if the value is contained in the dataOffset bytes,
35002         // or if the value at the dataOffset is a pointer to the actual data:
35003         dataOffset = tagSize > 4 ?
35004                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
35005         if (dataOffset + tagSize > dataView.byteLength) {
35006             Roo.log('Invalid Exif data: Invalid data offset.');
35007             return;
35008         }
35009         if (length === 1) {
35010             return tagType.getValue(dataView, dataOffset, littleEndian);
35011         }
35012         values = [];
35013         for (i = 0; i < length; i += 1) {
35014             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
35015         }
35016         
35017         if (tagType.ascii) {
35018             str = '';
35019             // Concatenate the chars:
35020             for (i = 0; i < values.length; i += 1) {
35021                 c = values[i];
35022                 // Ignore the terminating NULL byte(s):
35023                 if (c === '\u0000') {
35024                     break;
35025                 }
35026                 str += c;
35027             }
35028             return str;
35029         }
35030         return values;
35031     }
35032     
35033 });
35034
35035 Roo.apply(Roo.bootstrap.UploadCropbox, {
35036     tags : {
35037         'Orientation': 0x0112
35038     },
35039     
35040     Orientation: {
35041             1: 0, //'top-left',
35042 //            2: 'top-right',
35043             3: 180, //'bottom-right',
35044 //            4: 'bottom-left',
35045 //            5: 'left-top',
35046             6: 90, //'right-top',
35047 //            7: 'right-bottom',
35048             8: 270 //'left-bottom'
35049     },
35050     
35051     exifTagTypes : {
35052         // byte, 8-bit unsigned int:
35053         1: {
35054             getValue: function (dataView, dataOffset) {
35055                 return dataView.getUint8(dataOffset);
35056             },
35057             size: 1
35058         },
35059         // ascii, 8-bit byte:
35060         2: {
35061             getValue: function (dataView, dataOffset) {
35062                 return String.fromCharCode(dataView.getUint8(dataOffset));
35063             },
35064             size: 1,
35065             ascii: true
35066         },
35067         // short, 16 bit int:
35068         3: {
35069             getValue: function (dataView, dataOffset, littleEndian) {
35070                 return dataView.getUint16(dataOffset, littleEndian);
35071             },
35072             size: 2
35073         },
35074         // long, 32 bit int:
35075         4: {
35076             getValue: function (dataView, dataOffset, littleEndian) {
35077                 return dataView.getUint32(dataOffset, littleEndian);
35078             },
35079             size: 4
35080         },
35081         // rational = two long values, first is numerator, second is denominator:
35082         5: {
35083             getValue: function (dataView, dataOffset, littleEndian) {
35084                 return dataView.getUint32(dataOffset, littleEndian) /
35085                     dataView.getUint32(dataOffset + 4, littleEndian);
35086             },
35087             size: 8
35088         },
35089         // slong, 32 bit signed int:
35090         9: {
35091             getValue: function (dataView, dataOffset, littleEndian) {
35092                 return dataView.getInt32(dataOffset, littleEndian);
35093             },
35094             size: 4
35095         },
35096         // srational, two slongs, first is numerator, second is denominator:
35097         10: {
35098             getValue: function (dataView, dataOffset, littleEndian) {
35099                 return dataView.getInt32(dataOffset, littleEndian) /
35100                     dataView.getInt32(dataOffset + 4, littleEndian);
35101             },
35102             size: 8
35103         }
35104     },
35105     
35106     footer : {
35107         STANDARD : [
35108             {
35109                 tag : 'div',
35110                 cls : 'btn-group roo-upload-cropbox-rotate-left',
35111                 action : 'rotate-left',
35112                 cn : [
35113                     {
35114                         tag : 'button',
35115                         cls : 'btn btn-default',
35116                         html : '<i class="fa fa-undo"></i>'
35117                     }
35118                 ]
35119             },
35120             {
35121                 tag : 'div',
35122                 cls : 'btn-group roo-upload-cropbox-picture',
35123                 action : 'picture',
35124                 cn : [
35125                     {
35126                         tag : 'button',
35127                         cls : 'btn btn-default',
35128                         html : '<i class="fa fa-picture-o"></i>'
35129                     }
35130                 ]
35131             },
35132             {
35133                 tag : 'div',
35134                 cls : 'btn-group roo-upload-cropbox-rotate-right',
35135                 action : 'rotate-right',
35136                 cn : [
35137                     {
35138                         tag : 'button',
35139                         cls : 'btn btn-default',
35140                         html : '<i class="fa fa-repeat"></i>'
35141                     }
35142                 ]
35143             }
35144         ],
35145         DOCUMENT : [
35146             {
35147                 tag : 'div',
35148                 cls : 'btn-group roo-upload-cropbox-rotate-left',
35149                 action : 'rotate-left',
35150                 cn : [
35151                     {
35152                         tag : 'button',
35153                         cls : 'btn btn-default',
35154                         html : '<i class="fa fa-undo"></i>'
35155                     }
35156                 ]
35157             },
35158             {
35159                 tag : 'div',
35160                 cls : 'btn-group roo-upload-cropbox-download',
35161                 action : 'download',
35162                 cn : [
35163                     {
35164                         tag : 'button',
35165                         cls : 'btn btn-default',
35166                         html : '<i class="fa fa-download"></i>'
35167                     }
35168                 ]
35169             },
35170             {
35171                 tag : 'div',
35172                 cls : 'btn-group roo-upload-cropbox-crop',
35173                 action : 'crop',
35174                 cn : [
35175                     {
35176                         tag : 'button',
35177                         cls : 'btn btn-default',
35178                         html : '<i class="fa fa-crop"></i>'
35179                     }
35180                 ]
35181             },
35182             {
35183                 tag : 'div',
35184                 cls : 'btn-group roo-upload-cropbox-trash',
35185                 action : 'trash',
35186                 cn : [
35187                     {
35188                         tag : 'button',
35189                         cls : 'btn btn-default',
35190                         html : '<i class="fa fa-trash"></i>'
35191                     }
35192                 ]
35193             },
35194             {
35195                 tag : 'div',
35196                 cls : 'btn-group roo-upload-cropbox-rotate-right',
35197                 action : 'rotate-right',
35198                 cn : [
35199                     {
35200                         tag : 'button',
35201                         cls : 'btn btn-default',
35202                         html : '<i class="fa fa-repeat"></i>'
35203                     }
35204                 ]
35205             }
35206         ],
35207         ROTATOR : [
35208             {
35209                 tag : 'div',
35210                 cls : 'btn-group roo-upload-cropbox-rotate-left',
35211                 action : 'rotate-left',
35212                 cn : [
35213                     {
35214                         tag : 'button',
35215                         cls : 'btn btn-default',
35216                         html : '<i class="fa fa-undo"></i>'
35217                     }
35218                 ]
35219             },
35220             {
35221                 tag : 'div',
35222                 cls : 'btn-group roo-upload-cropbox-rotate-right',
35223                 action : 'rotate-right',
35224                 cn : [
35225                     {
35226                         tag : 'button',
35227                         cls : 'btn btn-default',
35228                         html : '<i class="fa fa-repeat"></i>'
35229                     }
35230                 ]
35231             }
35232         ]
35233     }
35234 });
35235
35236 /*
35237 * Licence: LGPL
35238 */
35239
35240 /**
35241  * @class Roo.bootstrap.DocumentManager
35242  * @extends Roo.bootstrap.Component
35243  * Bootstrap DocumentManager class
35244  * @cfg {String} paramName default 'imageUpload'
35245  * @cfg {String} toolTipName default 'filename'
35246  * @cfg {String} method default POST
35247  * @cfg {String} url action url
35248  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
35249  * @cfg {Boolean} multiple multiple upload default true
35250  * @cfg {Number} thumbSize default 300
35251  * @cfg {String} fieldLabel
35252  * @cfg {Number} labelWidth default 4
35253  * @cfg {String} labelAlign (left|top) default left
35254  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
35255 * @cfg {Number} labellg set the width of label (1-12)
35256  * @cfg {Number} labelmd set the width of label (1-12)
35257  * @cfg {Number} labelsm set the width of label (1-12)
35258  * @cfg {Number} labelxs set the width of label (1-12)
35259  * 
35260  * @constructor
35261  * Create a new DocumentManager
35262  * @param {Object} config The config object
35263  */
35264
35265 Roo.bootstrap.DocumentManager = function(config){
35266     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
35267     
35268     this.files = [];
35269     this.delegates = [];
35270     
35271     this.addEvents({
35272         /**
35273          * @event initial
35274          * Fire when initial the DocumentManager
35275          * @param {Roo.bootstrap.DocumentManager} this
35276          */
35277         "initial" : true,
35278         /**
35279          * @event inspect
35280          * inspect selected file
35281          * @param {Roo.bootstrap.DocumentManager} this
35282          * @param {File} file
35283          */
35284         "inspect" : true,
35285         /**
35286          * @event exception
35287          * Fire when xhr load exception
35288          * @param {Roo.bootstrap.DocumentManager} this
35289          * @param {XMLHttpRequest} xhr
35290          */
35291         "exception" : true,
35292         /**
35293          * @event afterupload
35294          * Fire when xhr load exception
35295          * @param {Roo.bootstrap.DocumentManager} this
35296          * @param {XMLHttpRequest} xhr
35297          */
35298         "afterupload" : true,
35299         /**
35300          * @event prepare
35301          * prepare the form data
35302          * @param {Roo.bootstrap.DocumentManager} this
35303          * @param {Object} formData
35304          */
35305         "prepare" : true,
35306         /**
35307          * @event remove
35308          * Fire when remove the file
35309          * @param {Roo.bootstrap.DocumentManager} this
35310          * @param {Object} file
35311          */
35312         "remove" : true,
35313         /**
35314          * @event refresh
35315          * Fire after refresh the file
35316          * @param {Roo.bootstrap.DocumentManager} this
35317          */
35318         "refresh" : true,
35319         /**
35320          * @event click
35321          * Fire after click the image
35322          * @param {Roo.bootstrap.DocumentManager} this
35323          * @param {Object} file
35324          */
35325         "click" : true,
35326         /**
35327          * @event edit
35328          * Fire when upload a image and editable set to true
35329          * @param {Roo.bootstrap.DocumentManager} this
35330          * @param {Object} file
35331          */
35332         "edit" : true,
35333         /**
35334          * @event beforeselectfile
35335          * Fire before select file
35336          * @param {Roo.bootstrap.DocumentManager} this
35337          */
35338         "beforeselectfile" : true,
35339         /**
35340          * @event process
35341          * Fire before process file
35342          * @param {Roo.bootstrap.DocumentManager} this
35343          * @param {Object} file
35344          */
35345         "process" : true,
35346         /**
35347          * @event previewrendered
35348          * Fire when preview rendered
35349          * @param {Roo.bootstrap.DocumentManager} this
35350          * @param {Object} file
35351          */
35352         "previewrendered" : true,
35353         /**
35354          */
35355         "previewResize" : true
35356         
35357     });
35358 };
35359
35360 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
35361     
35362     boxes : 0,
35363     inputName : '',
35364     thumbSize : 300,
35365     multiple : true,
35366     files : false,
35367     method : 'POST',
35368     url : '',
35369     paramName : 'imageUpload',
35370     toolTipName : 'filename',
35371     fieldLabel : '',
35372     labelWidth : 4,
35373     labelAlign : 'left',
35374     editable : true,
35375     delegates : false,
35376     xhr : false, 
35377     
35378     labellg : 0,
35379     labelmd : 0,
35380     labelsm : 0,
35381     labelxs : 0,
35382     
35383     getAutoCreate : function()
35384     {   
35385         var managerWidget = {
35386             tag : 'div',
35387             cls : 'roo-document-manager',
35388             cn : [
35389                 {
35390                     tag : 'input',
35391                     cls : 'roo-document-manager-selector',
35392                     type : 'file'
35393                 },
35394                 {
35395                     tag : 'div',
35396                     cls : 'roo-document-manager-uploader',
35397                     cn : [
35398                         {
35399                             tag : 'div',
35400                             cls : 'roo-document-manager-upload-btn',
35401                             html : '<i class="fa fa-plus"></i>'
35402                         }
35403                     ]
35404                     
35405                 }
35406             ]
35407         };
35408         
35409         var content = [
35410             {
35411                 tag : 'div',
35412                 cls : 'column col-md-12',
35413                 cn : managerWidget
35414             }
35415         ];
35416         
35417         if(this.fieldLabel.length){
35418             
35419             content = [
35420                 {
35421                     tag : 'div',
35422                     cls : 'column col-md-12',
35423                     html : this.fieldLabel
35424                 },
35425                 {
35426                     tag : 'div',
35427                     cls : 'column col-md-12',
35428                     cn : managerWidget
35429                 }
35430             ];
35431
35432             if(this.labelAlign == 'left'){
35433                 content = [
35434                     {
35435                         tag : 'div',
35436                         cls : 'column',
35437                         html : this.fieldLabel
35438                     },
35439                     {
35440                         tag : 'div',
35441                         cls : 'column',
35442                         cn : managerWidget
35443                     }
35444                 ];
35445                 
35446                 if(this.labelWidth > 12){
35447                     content[0].style = "width: " + this.labelWidth + 'px';
35448                 }
35449
35450                 if(this.labelWidth < 13 && this.labelmd == 0){
35451                     this.labelmd = this.labelWidth;
35452                 }
35453
35454                 if(this.labellg > 0){
35455                     content[0].cls += ' col-lg-' + this.labellg;
35456                     content[1].cls += ' col-lg-' + (12 - this.labellg);
35457                 }
35458
35459                 if(this.labelmd > 0){
35460                     content[0].cls += ' col-md-' + this.labelmd;
35461                     content[1].cls += ' col-md-' + (12 - this.labelmd);
35462                 }
35463
35464                 if(this.labelsm > 0){
35465                     content[0].cls += ' col-sm-' + this.labelsm;
35466                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
35467                 }
35468
35469                 if(this.labelxs > 0){
35470                     content[0].cls += ' col-xs-' + this.labelxs;
35471                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
35472                 }
35473                 
35474             }
35475         }
35476         
35477         var cfg = {
35478             tag : 'div',
35479             cls : 'row clearfix',
35480             cn : content
35481         };
35482         
35483         return cfg;
35484         
35485     },
35486     
35487     initEvents : function()
35488     {
35489         this.managerEl = this.el.select('.roo-document-manager', true).first();
35490         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
35491         
35492         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
35493         this.selectorEl.hide();
35494         
35495         if(this.multiple){
35496             this.selectorEl.attr('multiple', 'multiple');
35497         }
35498         
35499         this.selectorEl.on('change', this.onFileSelected, this);
35500         
35501         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
35502         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
35503         
35504         this.uploader.on('click', this.onUploaderClick, this);
35505         
35506         this.renderProgressDialog();
35507         
35508         var _this = this;
35509         
35510         window.addEventListener("resize", function() { _this.refresh(); } );
35511         
35512         this.fireEvent('initial', this);
35513     },
35514     
35515     renderProgressDialog : function()
35516     {
35517         var _this = this;
35518         
35519         this.progressDialog = new Roo.bootstrap.Modal({
35520             cls : 'roo-document-manager-progress-dialog',
35521             allow_close : false,
35522             animate : false,
35523             title : '',
35524             buttons : [
35525                 {
35526                     name  :'cancel',
35527                     weight : 'danger',
35528                     html : 'Cancel'
35529                 }
35530             ], 
35531             listeners : { 
35532                 btnclick : function() {
35533                     _this.uploadCancel();
35534                     this.hide();
35535                 }
35536             }
35537         });
35538          
35539         this.progressDialog.render(Roo.get(document.body));
35540          
35541         this.progress = new Roo.bootstrap.Progress({
35542             cls : 'roo-document-manager-progress',
35543             active : true,
35544             striped : true
35545         });
35546         
35547         this.progress.render(this.progressDialog.getChildContainer());
35548         
35549         this.progressBar = new Roo.bootstrap.ProgressBar({
35550             cls : 'roo-document-manager-progress-bar',
35551             aria_valuenow : 0,
35552             aria_valuemin : 0,
35553             aria_valuemax : 12,
35554             panel : 'success'
35555         });
35556         
35557         this.progressBar.render(this.progress.getChildContainer());
35558     },
35559     
35560     onUploaderClick : function(e)
35561     {
35562         e.preventDefault();
35563      
35564         if(this.fireEvent('beforeselectfile', this) != false){
35565             this.selectorEl.dom.click();
35566         }
35567         
35568     },
35569     
35570     onFileSelected : function(e)
35571     {
35572         e.preventDefault();
35573         
35574         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
35575             return;
35576         }
35577         
35578         Roo.each(this.selectorEl.dom.files, function(file){
35579             if(this.fireEvent('inspect', this, file) != false){
35580                 this.files.push(file);
35581             }
35582         }, this);
35583         
35584         this.queue();
35585         
35586     },
35587     
35588     queue : function()
35589     {
35590         this.selectorEl.dom.value = '';
35591         
35592         if(!this.files || !this.files.length){
35593             return;
35594         }
35595         
35596         if(this.boxes > 0 && this.files.length > this.boxes){
35597             this.files = this.files.slice(0, this.boxes);
35598         }
35599         
35600         this.uploader.show();
35601         
35602         if(this.boxes > 0 && this.files.length > this.boxes - 1){
35603             this.uploader.hide();
35604         }
35605         
35606         var _this = this;
35607         
35608         var files = [];
35609         
35610         var docs = [];
35611         
35612         Roo.each(this.files, function(file){
35613             
35614             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
35615                 var f = this.renderPreview(file);
35616                 files.push(f);
35617                 return;
35618             }
35619             
35620             if(file.type.indexOf('image') != -1){
35621                 this.delegates.push(
35622                     (function(){
35623                         _this.process(file);
35624                     }).createDelegate(this)
35625                 );
35626         
35627                 return;
35628             }
35629             
35630             docs.push(
35631                 (function(){
35632                     _this.process(file);
35633                 }).createDelegate(this)
35634             );
35635             
35636         }, this);
35637         
35638         this.files = files;
35639         
35640         this.delegates = this.delegates.concat(docs);
35641         
35642         if(!this.delegates.length){
35643             this.refresh();
35644             return;
35645         }
35646         
35647         this.progressBar.aria_valuemax = this.delegates.length;
35648         
35649         this.arrange();
35650         
35651         return;
35652     },
35653     
35654     arrange : function()
35655     {
35656         if(!this.delegates.length){
35657             this.progressDialog.hide();
35658             this.refresh();
35659             return;
35660         }
35661         
35662         var delegate = this.delegates.shift();
35663         
35664         this.progressDialog.show();
35665         
35666         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
35667         
35668         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
35669         
35670         delegate();
35671     },
35672     
35673     refresh : function()
35674     {
35675         this.uploader.show();
35676         
35677         if(this.boxes > 0 && this.files.length > this.boxes - 1){
35678             this.uploader.hide();
35679         }
35680         
35681         Roo.isTouch ? this.closable(false) : this.closable(true);
35682         
35683         this.fireEvent('refresh', this);
35684     },
35685     
35686     onRemove : function(e, el, o)
35687     {
35688         e.preventDefault();
35689         
35690         this.fireEvent('remove', this, o);
35691         
35692     },
35693     
35694     remove : function(o)
35695     {
35696         var files = [];
35697         
35698         Roo.each(this.files, function(file){
35699             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
35700                 files.push(file);
35701                 return;
35702             }
35703
35704             o.target.remove();
35705
35706         }, this);
35707         
35708         this.files = files;
35709         
35710         this.refresh();
35711     },
35712     
35713     clear : function()
35714     {
35715         Roo.each(this.files, function(file){
35716             if(!file.target){
35717                 return;
35718             }
35719             
35720             file.target.remove();
35721
35722         }, this);
35723         
35724         this.files = [];
35725         
35726         this.refresh();
35727     },
35728     
35729     onClick : function(e, el, o)
35730     {
35731         e.preventDefault();
35732         
35733         this.fireEvent('click', this, o);
35734         
35735     },
35736     
35737     closable : function(closable)
35738     {
35739         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
35740             
35741             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
35742             
35743             if(closable){
35744                 el.show();
35745                 return;
35746             }
35747             
35748             el.hide();
35749             
35750         }, this);
35751     },
35752     
35753     xhrOnLoad : function(xhr)
35754     {
35755         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
35756             el.remove();
35757         }, this);
35758         
35759         if (xhr.readyState !== 4) {
35760             this.arrange();
35761             this.fireEvent('exception', this, xhr);
35762             return;
35763         }
35764
35765         var response = Roo.decode(xhr.responseText);
35766         
35767         if(!response.success){
35768             this.arrange();
35769             this.fireEvent('exception', this, xhr);
35770             return;
35771         }
35772         
35773         var file = this.renderPreview(response.data);
35774         
35775         this.files.push(file);
35776         
35777         this.arrange();
35778         
35779         this.fireEvent('afterupload', this, xhr);
35780         
35781     },
35782     
35783     xhrOnError : function(xhr)
35784     {
35785         Roo.log('xhr on error');
35786         
35787         var response = Roo.decode(xhr.responseText);
35788           
35789         Roo.log(response);
35790         
35791         this.arrange();
35792     },
35793     
35794     process : function(file)
35795     {
35796         if(this.fireEvent('process', this, file) !== false){
35797             if(this.editable && file.type.indexOf('image') != -1){
35798                 this.fireEvent('edit', this, file);
35799                 return;
35800             }
35801
35802             this.uploadStart(file, false);
35803
35804             return;
35805         }
35806         
35807     },
35808     
35809     uploadStart : function(file, crop)
35810     {
35811         this.xhr = new XMLHttpRequest();
35812         
35813         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
35814             this.arrange();
35815             return;
35816         }
35817         
35818         file.xhr = this.xhr;
35819             
35820         this.managerEl.createChild({
35821             tag : 'div',
35822             cls : 'roo-document-manager-loading',
35823             cn : [
35824                 {
35825                     tag : 'div',
35826                     tooltip : file.name,
35827                     cls : 'roo-document-manager-thumb',
35828                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
35829                 }
35830             ]
35831
35832         });
35833
35834         this.xhr.open(this.method, this.url, true);
35835         
35836         var headers = {
35837             "Accept": "application/json",
35838             "Cache-Control": "no-cache",
35839             "X-Requested-With": "XMLHttpRequest"
35840         };
35841         
35842         for (var headerName in headers) {
35843             var headerValue = headers[headerName];
35844             if (headerValue) {
35845                 this.xhr.setRequestHeader(headerName, headerValue);
35846             }
35847         }
35848         
35849         var _this = this;
35850         
35851         this.xhr.onload = function()
35852         {
35853             _this.xhrOnLoad(_this.xhr);
35854         }
35855         
35856         this.xhr.onerror = function()
35857         {
35858             _this.xhrOnError(_this.xhr);
35859         }
35860         
35861         var formData = new FormData();
35862
35863         formData.append('returnHTML', 'NO');
35864         
35865         if(crop){
35866             formData.append('crop', crop);
35867         }
35868         
35869         formData.append(this.paramName, file, file.name);
35870         
35871         var options = {
35872             file : file, 
35873             manually : false
35874         };
35875         
35876         if(this.fireEvent('prepare', this, formData, options) != false){
35877             
35878             if(options.manually){
35879                 return;
35880             }
35881             
35882             this.xhr.send(formData);
35883             return;
35884         };
35885         
35886         this.uploadCancel();
35887     },
35888     
35889     uploadCancel : function()
35890     {
35891         if (this.xhr) {
35892             this.xhr.abort();
35893         }
35894         
35895         this.delegates = [];
35896         
35897         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
35898             el.remove();
35899         }, this);
35900         
35901         this.arrange();
35902     },
35903     
35904     renderPreview : function(file)
35905     {
35906         if(typeof(file.target) != 'undefined' && file.target){
35907             return file;
35908         }
35909         
35910         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
35911         
35912         var previewEl = this.managerEl.createChild({
35913             tag : 'div',
35914             cls : 'roo-document-manager-preview',
35915             cn : [
35916                 {
35917                     tag : 'div',
35918                     tooltip : file[this.toolTipName],
35919                     cls : 'roo-document-manager-thumb',
35920                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
35921                 },
35922                 {
35923                     tag : 'button',
35924                     cls : 'close',
35925                     html : '<i class="fa fa-times-circle"></i>'
35926                 }
35927             ]
35928         });
35929
35930         var close = previewEl.select('button.close', true).first();
35931
35932         close.on('click', this.onRemove, this, file);
35933
35934         file.target = previewEl;
35935
35936         var image = previewEl.select('img', true).first();
35937         
35938         var _this = this;
35939         
35940         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
35941         
35942         image.on('click', this.onClick, this, file);
35943         
35944         this.fireEvent('previewrendered', this, file);
35945         
35946         return file;
35947         
35948     },
35949     
35950     onPreviewLoad : function(file, image)
35951     {
35952         if(typeof(file.target) == 'undefined' || !file.target){
35953             return;
35954         }
35955         
35956         var width = image.dom.naturalWidth || image.dom.width;
35957         var height = image.dom.naturalHeight || image.dom.height;
35958         
35959         if(!this.previewResize) {
35960             return;
35961         }
35962         
35963         if(width > height){
35964             file.target.addClass('wide');
35965             return;
35966         }
35967         
35968         file.target.addClass('tall');
35969         return;
35970         
35971     },
35972     
35973     uploadFromSource : function(file, crop)
35974     {
35975         this.xhr = new XMLHttpRequest();
35976         
35977         this.managerEl.createChild({
35978             tag : 'div',
35979             cls : 'roo-document-manager-loading',
35980             cn : [
35981                 {
35982                     tag : 'div',
35983                     tooltip : file.name,
35984                     cls : 'roo-document-manager-thumb',
35985                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
35986                 }
35987             ]
35988
35989         });
35990
35991         this.xhr.open(this.method, this.url, true);
35992         
35993         var headers = {
35994             "Accept": "application/json",
35995             "Cache-Control": "no-cache",
35996             "X-Requested-With": "XMLHttpRequest"
35997         };
35998         
35999         for (var headerName in headers) {
36000             var headerValue = headers[headerName];
36001             if (headerValue) {
36002                 this.xhr.setRequestHeader(headerName, headerValue);
36003             }
36004         }
36005         
36006         var _this = this;
36007         
36008         this.xhr.onload = function()
36009         {
36010             _this.xhrOnLoad(_this.xhr);
36011         }
36012         
36013         this.xhr.onerror = function()
36014         {
36015             _this.xhrOnError(_this.xhr);
36016         }
36017         
36018         var formData = new FormData();
36019
36020         formData.append('returnHTML', 'NO');
36021         
36022         formData.append('crop', crop);
36023         
36024         if(typeof(file.filename) != 'undefined'){
36025             formData.append('filename', file.filename);
36026         }
36027         
36028         if(typeof(file.mimetype) != 'undefined'){
36029             formData.append('mimetype', file.mimetype);
36030         }
36031         
36032         Roo.log(formData);
36033         
36034         if(this.fireEvent('prepare', this, formData) != false){
36035             this.xhr.send(formData);
36036         };
36037     }
36038 });
36039
36040 /*
36041 * Licence: LGPL
36042 */
36043
36044 /**
36045  * @class Roo.bootstrap.DocumentViewer
36046  * @extends Roo.bootstrap.Component
36047  * Bootstrap DocumentViewer class
36048  * @cfg {Boolean} showDownload (true|false) show download button (default true)
36049  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
36050  * 
36051  * @constructor
36052  * Create a new DocumentViewer
36053  * @param {Object} config The config object
36054  */
36055
36056 Roo.bootstrap.DocumentViewer = function(config){
36057     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
36058     
36059     this.addEvents({
36060         /**
36061          * @event initial
36062          * Fire after initEvent
36063          * @param {Roo.bootstrap.DocumentViewer} this
36064          */
36065         "initial" : true,
36066         /**
36067          * @event click
36068          * Fire after click
36069          * @param {Roo.bootstrap.DocumentViewer} this
36070          */
36071         "click" : true,
36072         /**
36073          * @event download
36074          * Fire after download button
36075          * @param {Roo.bootstrap.DocumentViewer} this
36076          */
36077         "download" : true,
36078         /**
36079          * @event trash
36080          * Fire after trash button
36081          * @param {Roo.bootstrap.DocumentViewer} this
36082          */
36083         "trash" : true
36084         
36085     });
36086 };
36087
36088 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
36089     
36090     showDownload : true,
36091     
36092     showTrash : true,
36093     
36094     getAutoCreate : function()
36095     {
36096         var cfg = {
36097             tag : 'div',
36098             cls : 'roo-document-viewer',
36099             cn : [
36100                 {
36101                     tag : 'div',
36102                     cls : 'roo-document-viewer-body',
36103                     cn : [
36104                         {
36105                             tag : 'div',
36106                             cls : 'roo-document-viewer-thumb',
36107                             cn : [
36108                                 {
36109                                     tag : 'img',
36110                                     cls : 'roo-document-viewer-image'
36111                                 }
36112                             ]
36113                         }
36114                     ]
36115                 },
36116                 {
36117                     tag : 'div',
36118                     cls : 'roo-document-viewer-footer',
36119                     cn : {
36120                         tag : 'div',
36121                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
36122                         cn : [
36123                             {
36124                                 tag : 'div',
36125                                 cls : 'btn-group roo-document-viewer-download',
36126                                 cn : [
36127                                     {
36128                                         tag : 'button',
36129                                         cls : 'btn btn-default',
36130                                         html : '<i class="fa fa-download"></i>'
36131                                     }
36132                                 ]
36133                             },
36134                             {
36135                                 tag : 'div',
36136                                 cls : 'btn-group roo-document-viewer-trash',
36137                                 cn : [
36138                                     {
36139                                         tag : 'button',
36140                                         cls : 'btn btn-default',
36141                                         html : '<i class="fa fa-trash"></i>'
36142                                     }
36143                                 ]
36144                             }
36145                         ]
36146                     }
36147                 }
36148             ]
36149         };
36150         
36151         return cfg;
36152     },
36153     
36154     initEvents : function()
36155     {
36156         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
36157         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
36158         
36159         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
36160         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
36161         
36162         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
36163         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
36164         
36165         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
36166         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
36167         
36168         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
36169         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
36170         
36171         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
36172         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
36173         
36174         this.bodyEl.on('click', this.onClick, this);
36175         this.downloadBtn.on('click', this.onDownload, this);
36176         this.trashBtn.on('click', this.onTrash, this);
36177         
36178         this.downloadBtn.hide();
36179         this.trashBtn.hide();
36180         
36181         if(this.showDownload){
36182             this.downloadBtn.show();
36183         }
36184         
36185         if(this.showTrash){
36186             this.trashBtn.show();
36187         }
36188         
36189         if(!this.showDownload && !this.showTrash) {
36190             this.footerEl.hide();
36191         }
36192         
36193     },
36194     
36195     initial : function()
36196     {
36197         this.fireEvent('initial', this);
36198         
36199     },
36200     
36201     onClick : function(e)
36202     {
36203         e.preventDefault();
36204         
36205         this.fireEvent('click', this);
36206     },
36207     
36208     onDownload : function(e)
36209     {
36210         e.preventDefault();
36211         
36212         this.fireEvent('download', this);
36213     },
36214     
36215     onTrash : function(e)
36216     {
36217         e.preventDefault();
36218         
36219         this.fireEvent('trash', this);
36220     }
36221     
36222 });
36223 /*
36224  * - LGPL
36225  *
36226  * FieldLabel
36227  * 
36228  */
36229
36230 /**
36231  * @class Roo.bootstrap.form.FieldLabel
36232  * @extends Roo.bootstrap.Component
36233  * Bootstrap FieldLabel class
36234  * @cfg {String} html contents of the element
36235  * @cfg {String} tag tag of the element default label
36236  * @cfg {String} cls class of the element
36237  * @cfg {String} target label target 
36238  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
36239  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
36240  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
36241  * @cfg {String} iconTooltip default "This field is required"
36242  * @cfg {String} indicatorpos (left|right) default left
36243  * 
36244  * @constructor
36245  * Create a new FieldLabel
36246  * @param {Object} config The config object
36247  */
36248
36249 Roo.bootstrap.form.FieldLabel = function(config){
36250     Roo.bootstrap.Element.superclass.constructor.call(this, config);
36251     
36252     this.addEvents({
36253             /**
36254              * @event invalid
36255              * Fires after the field has been marked as invalid.
36256              * @param {Roo.form.FieldLabel} this
36257              * @param {String} msg The validation message
36258              */
36259             invalid : true,
36260             /**
36261              * @event valid
36262              * Fires after the field has been validated with no errors.
36263              * @param {Roo.form.FieldLabel} this
36264              */
36265             valid : true
36266         });
36267 };
36268
36269 Roo.extend(Roo.bootstrap.form.FieldLabel, Roo.bootstrap.Component,  {
36270     
36271     tag: 'label',
36272     cls: '',
36273     html: '',
36274     target: '',
36275     allowBlank : true,
36276     invalidClass : 'has-warning',
36277     validClass : 'has-success',
36278     iconTooltip : 'This field is required',
36279     indicatorpos : 'left',
36280     
36281     getAutoCreate : function(){
36282         
36283         var cls = "";
36284         if (!this.allowBlank) {
36285             cls  = "visible";
36286         }
36287         
36288         var cfg = {
36289             tag : this.tag,
36290             cls : 'roo-bootstrap-field-label ' + this.cls,
36291             for : this.target,
36292             cn : [
36293                 {
36294                     tag : 'i',
36295                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
36296                     tooltip : this.iconTooltip
36297                 },
36298                 {
36299                     tag : 'span',
36300                     html : this.html
36301                 }
36302             ] 
36303         };
36304         
36305         if(this.indicatorpos == 'right'){
36306             var cfg = {
36307                 tag : this.tag,
36308                 cls : 'roo-bootstrap-field-label ' + this.cls,
36309                 for : this.target,
36310                 cn : [
36311                     {
36312                         tag : 'span',
36313                         html : this.html
36314                     },
36315                     {
36316                         tag : 'i',
36317                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
36318                         tooltip : this.iconTooltip
36319                     }
36320                 ] 
36321             };
36322         }
36323         
36324         return cfg;
36325     },
36326     
36327     initEvents: function() 
36328     {
36329         Roo.bootstrap.Element.superclass.initEvents.call(this);
36330         
36331         this.indicator = this.indicatorEl();
36332         
36333         if(this.indicator){
36334             this.indicator.removeClass('visible');
36335             this.indicator.addClass('invisible');
36336         }
36337         
36338         Roo.bootstrap.form.FieldLabel.register(this);
36339     },
36340     
36341     indicatorEl : function()
36342     {
36343         var indicator = this.el.select('i.roo-required-indicator',true).first();
36344         
36345         if(!indicator){
36346             return false;
36347         }
36348         
36349         return indicator;
36350         
36351     },
36352     
36353     /**
36354      * Mark this field as valid
36355      */
36356     markValid : function()
36357     {
36358         if(this.indicator){
36359             this.indicator.removeClass('visible');
36360             this.indicator.addClass('invisible');
36361         }
36362         if (Roo.bootstrap.version == 3) {
36363             this.el.removeClass(this.invalidClass);
36364             this.el.addClass(this.validClass);
36365         } else {
36366             this.el.removeClass('is-invalid');
36367             this.el.addClass('is-valid');
36368         }
36369         
36370         
36371         this.fireEvent('valid', this);
36372     },
36373     
36374     /**
36375      * Mark this field as invalid
36376      * @param {String} msg The validation message
36377      */
36378     markInvalid : function(msg)
36379     {
36380         if(this.indicator){
36381             this.indicator.removeClass('invisible');
36382             this.indicator.addClass('visible');
36383         }
36384           if (Roo.bootstrap.version == 3) {
36385             this.el.removeClass(this.validClass);
36386             this.el.addClass(this.invalidClass);
36387         } else {
36388             this.el.removeClass('is-valid');
36389             this.el.addClass('is-invalid');
36390         }
36391         
36392         
36393         this.fireEvent('invalid', this, msg);
36394     }
36395     
36396    
36397 });
36398
36399 Roo.apply(Roo.bootstrap.form.FieldLabel, {
36400     
36401     groups: {},
36402     
36403      /**
36404     * register a FieldLabel Group
36405     * @param {Roo.bootstrap.form.FieldLabel} the FieldLabel to add
36406     */
36407     register : function(label)
36408     {
36409         if(this.groups.hasOwnProperty(label.target)){
36410             return;
36411         }
36412      
36413         this.groups[label.target] = label;
36414         
36415     },
36416     /**
36417     * fetch a FieldLabel Group based on the target
36418     * @param {string} target
36419     * @returns {Roo.bootstrap.form.FieldLabel} the CheckBox group
36420     */
36421     get: function(target) {
36422         if (typeof(this.groups[target]) == 'undefined') {
36423             return false;
36424         }
36425         
36426         return this.groups[target] ;
36427     }
36428 });
36429
36430  
36431
36432  /*
36433  * - LGPL
36434  *
36435  * page DateSplitField.
36436  * 
36437  */
36438
36439
36440 /**
36441  * @class Roo.bootstrap.form.DateSplitField
36442  * @extends Roo.bootstrap.Component
36443  * Bootstrap DateSplitField class
36444  * @cfg {string} fieldLabel - the label associated
36445  * @cfg {Number} labelWidth set the width of label (0-12)
36446  * @cfg {String} labelAlign (top|left)
36447  * @cfg {Boolean} dayAllowBlank (true|false) default false
36448  * @cfg {Boolean} monthAllowBlank (true|false) default false
36449  * @cfg {Boolean} yearAllowBlank (true|false) default false
36450  * @cfg {string} dayPlaceholder 
36451  * @cfg {string} monthPlaceholder
36452  * @cfg {string} yearPlaceholder
36453  * @cfg {string} dayFormat default 'd'
36454  * @cfg {string} monthFormat default 'm'
36455  * @cfg {string} yearFormat default 'Y'
36456  * @cfg {Number} labellg set the width of label (1-12)
36457  * @cfg {Number} labelmd set the width of label (1-12)
36458  * @cfg {Number} labelsm set the width of label (1-12)
36459  * @cfg {Number} labelxs set the width of label (1-12)
36460
36461  *     
36462  * @constructor
36463  * Create a new DateSplitField
36464  * @param {Object} config The config object
36465  */
36466
36467 Roo.bootstrap.form.DateSplitField = function(config){
36468     Roo.bootstrap.form.DateSplitField.superclass.constructor.call(this, config);
36469     
36470     this.addEvents({
36471         // raw events
36472          /**
36473          * @event years
36474          * getting the data of years
36475          * @param {Roo.bootstrap.form.DateSplitField} this
36476          * @param {Object} years
36477          */
36478         "years" : true,
36479         /**
36480          * @event days
36481          * getting the data of days
36482          * @param {Roo.bootstrap.form.DateSplitField} this
36483          * @param {Object} days
36484          */
36485         "days" : true,
36486         /**
36487          * @event invalid
36488          * Fires after the field has been marked as invalid.
36489          * @param {Roo.form.Field} this
36490          * @param {String} msg The validation message
36491          */
36492         invalid : true,
36493        /**
36494          * @event valid
36495          * Fires after the field has been validated with no errors.
36496          * @param {Roo.form.Field} this
36497          */
36498         valid : true
36499     });
36500 };
36501
36502 Roo.extend(Roo.bootstrap.form.DateSplitField, Roo.bootstrap.Component,  {
36503     
36504     fieldLabel : '',
36505     labelAlign : 'top',
36506     labelWidth : 3,
36507     dayAllowBlank : false,
36508     monthAllowBlank : false,
36509     yearAllowBlank : false,
36510     dayPlaceholder : '',
36511     monthPlaceholder : '',
36512     yearPlaceholder : '',
36513     dayFormat : 'd',
36514     monthFormat : 'm',
36515     yearFormat : 'Y',
36516     isFormField : true,
36517     labellg : 0,
36518     labelmd : 0,
36519     labelsm : 0,
36520     labelxs : 0,
36521     
36522     getAutoCreate : function()
36523     {
36524         var cfg = {
36525             tag : 'div',
36526             cls : 'row roo-date-split-field-group',
36527             cn : [
36528                 {
36529                     tag : 'input',
36530                     type : 'hidden',
36531                     cls : 'form-hidden-field roo-date-split-field-group-value',
36532                     name : this.name
36533                 }
36534             ]
36535         };
36536         
36537         var labelCls = 'col-md-12';
36538         var contentCls = 'col-md-4';
36539         
36540         if(this.fieldLabel){
36541             
36542             var label = {
36543                 tag : 'div',
36544                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
36545                 cn : [
36546                     {
36547                         tag : 'label',
36548                         html : this.fieldLabel
36549                     }
36550                 ]
36551             };
36552             
36553             if(this.labelAlign == 'left'){
36554             
36555                 if(this.labelWidth > 12){
36556                     label.style = "width: " + this.labelWidth + 'px';
36557                 }
36558
36559                 if(this.labelWidth < 13 && this.labelmd == 0){
36560                     this.labelmd = this.labelWidth;
36561                 }
36562
36563                 if(this.labellg > 0){
36564                     labelCls = ' col-lg-' + this.labellg;
36565                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
36566                 }
36567
36568                 if(this.labelmd > 0){
36569                     labelCls = ' col-md-' + this.labelmd;
36570                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
36571                 }
36572
36573                 if(this.labelsm > 0){
36574                     labelCls = ' col-sm-' + this.labelsm;
36575                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
36576                 }
36577
36578                 if(this.labelxs > 0){
36579                     labelCls = ' col-xs-' + this.labelxs;
36580                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
36581                 }
36582             }
36583             
36584             label.cls += ' ' + labelCls;
36585             
36586             cfg.cn.push(label);
36587         }
36588         
36589         Roo.each(['day', 'month', 'year'], function(t){
36590             cfg.cn.push({
36591                 tag : 'div',
36592                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
36593             });
36594         }, this);
36595         
36596         return cfg;
36597     },
36598     
36599     inputEl: function ()
36600     {
36601         return this.el.select('.roo-date-split-field-group-value', true).first();
36602     },
36603     
36604     onRender : function(ct, position) 
36605     {
36606         var _this = this;
36607         
36608         Roo.bootstrap.DateSplitFiel.superclass.onRender.call(this, ct, position);
36609         
36610         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
36611         
36612         this.dayField = new Roo.bootstrap.form.ComboBox({
36613             allowBlank : this.dayAllowBlank,
36614             alwaysQuery : true,
36615             displayField : 'value',
36616             editable : false,
36617             fieldLabel : '',
36618             forceSelection : true,
36619             mode : 'local',
36620             placeholder : this.dayPlaceholder,
36621             selectOnFocus : true,
36622             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
36623             triggerAction : 'all',
36624             typeAhead : true,
36625             valueField : 'value',
36626             store : new Roo.data.SimpleStore({
36627                 data : (function() {    
36628                     var days = [];
36629                     _this.fireEvent('days', _this, days);
36630                     return days;
36631                 })(),
36632                 fields : [ 'value' ]
36633             }),
36634             listeners : {
36635                 select : function (_self, record, index)
36636                 {
36637                     _this.setValue(_this.getValue());
36638                 }
36639             }
36640         });
36641
36642         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
36643         
36644         this.monthField = new Roo.bootstrap.form.MonthField({
36645             after : '<i class=\"fa fa-calendar\"></i>',
36646             allowBlank : this.monthAllowBlank,
36647             placeholder : this.monthPlaceholder,
36648             readOnly : true,
36649             listeners : {
36650                 render : function (_self)
36651                 {
36652                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
36653                         e.preventDefault();
36654                         _self.focus();
36655                     });
36656                 },
36657                 select : function (_self, oldvalue, newvalue)
36658                 {
36659                     _this.setValue(_this.getValue());
36660                 }
36661             }
36662         });
36663         
36664         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
36665         
36666         this.yearField = new Roo.bootstrap.form.ComboBox({
36667             allowBlank : this.yearAllowBlank,
36668             alwaysQuery : true,
36669             displayField : 'value',
36670             editable : false,
36671             fieldLabel : '',
36672             forceSelection : true,
36673             mode : 'local',
36674             placeholder : this.yearPlaceholder,
36675             selectOnFocus : true,
36676             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
36677             triggerAction : 'all',
36678             typeAhead : true,
36679             valueField : 'value',
36680             store : new Roo.data.SimpleStore({
36681                 data : (function() {
36682                     var years = [];
36683                     _this.fireEvent('years', _this, years);
36684                     return years;
36685                 })(),
36686                 fields : [ 'value' ]
36687             }),
36688             listeners : {
36689                 select : function (_self, record, index)
36690                 {
36691                     _this.setValue(_this.getValue());
36692                 }
36693             }
36694         });
36695
36696         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
36697     },
36698     
36699     setValue : function(v, format)
36700     {
36701         this.inputEl.dom.value = v;
36702         
36703         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
36704         
36705         var d = Date.parseDate(v, f);
36706         
36707         if(!d){
36708             this.validate();
36709             return;
36710         }
36711         
36712         this.setDay(d.format(this.dayFormat));
36713         this.setMonth(d.format(this.monthFormat));
36714         this.setYear(d.format(this.yearFormat));
36715         
36716         this.validate();
36717         
36718         return;
36719     },
36720     
36721     setDay : function(v)
36722     {
36723         this.dayField.setValue(v);
36724         this.inputEl.dom.value = this.getValue();
36725         this.validate();
36726         return;
36727     },
36728     
36729     setMonth : function(v)
36730     {
36731         this.monthField.setValue(v, true);
36732         this.inputEl.dom.value = this.getValue();
36733         this.validate();
36734         return;
36735     },
36736     
36737     setYear : function(v)
36738     {
36739         this.yearField.setValue(v);
36740         this.inputEl.dom.value = this.getValue();
36741         this.validate();
36742         return;
36743     },
36744     
36745     getDay : function()
36746     {
36747         return this.dayField.getValue();
36748     },
36749     
36750     getMonth : function()
36751     {
36752         return this.monthField.getValue();
36753     },
36754     
36755     getYear : function()
36756     {
36757         return this.yearField.getValue();
36758     },
36759     
36760     getValue : function()
36761     {
36762         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
36763         
36764         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
36765         
36766         return date;
36767     },
36768     
36769     reset : function()
36770     {
36771         this.setDay('');
36772         this.setMonth('');
36773         this.setYear('');
36774         this.inputEl.dom.value = '';
36775         this.validate();
36776         return;
36777     },
36778     
36779     validate : function()
36780     {
36781         var d = this.dayField.validate();
36782         var m = this.monthField.validate();
36783         var y = this.yearField.validate();
36784         
36785         var valid = true;
36786         
36787         if(
36788                 (!this.dayAllowBlank && !d) ||
36789                 (!this.monthAllowBlank && !m) ||
36790                 (!this.yearAllowBlank && !y)
36791         ){
36792             valid = false;
36793         }
36794         
36795         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
36796             return valid;
36797         }
36798         
36799         if(valid){
36800             this.markValid();
36801             return valid;
36802         }
36803         
36804         this.markInvalid();
36805         
36806         return valid;
36807     },
36808     
36809     markValid : function()
36810     {
36811         
36812         var label = this.el.select('label', true).first();
36813         var icon = this.el.select('i.fa-star', true).first();
36814
36815         if(label && icon){
36816             icon.remove();
36817         }
36818         
36819         this.fireEvent('valid', this);
36820     },
36821     
36822      /**
36823      * Mark this field as invalid
36824      * @param {String} msg The validation message
36825      */
36826     markInvalid : function(msg)
36827     {
36828         
36829         var label = this.el.select('label', true).first();
36830         var icon = this.el.select('i.fa-star', true).first();
36831
36832         if(label && !icon){
36833             this.el.select('.roo-date-split-field-label', true).createChild({
36834                 tag : 'i',
36835                 cls : 'text-danger fa fa-lg fa-star',
36836                 tooltip : 'This field is required',
36837                 style : 'margin-right:5px;'
36838             }, label, true);
36839         }
36840         
36841         this.fireEvent('invalid', this, msg);
36842     },
36843     
36844     clearInvalid : function()
36845     {
36846         var label = this.el.select('label', true).first();
36847         var icon = this.el.select('i.fa-star', true).first();
36848
36849         if(label && icon){
36850             icon.remove();
36851         }
36852         
36853         this.fireEvent('valid', this);
36854     },
36855     
36856     getName: function()
36857     {
36858         return this.name;
36859     }
36860     
36861 });
36862
36863  
36864
36865 /**
36866  * @class Roo.bootstrap.LayoutMasonry
36867  * @extends Roo.bootstrap.Component
36868  * @children Roo.bootstrap.Element Roo.bootstrap.Img Roo.bootstrap.MasonryBrick
36869  * Bootstrap Layout Masonry class
36870  *
36871  * This is based on 
36872  * http://masonry.desandro.com
36873  *
36874  * The idea is to render all the bricks based on vertical width...
36875  *
36876  * The original code extends 'outlayer' - we might need to use that....
36877
36878  * @constructor
36879  * Create a new Element
36880  * @param {Object} config The config object
36881  */
36882
36883 Roo.bootstrap.LayoutMasonry = function(config){
36884     
36885     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
36886     
36887     this.bricks = [];
36888     
36889     Roo.bootstrap.LayoutMasonry.register(this);
36890     
36891     this.addEvents({
36892         // raw events
36893         /**
36894          * @event layout
36895          * Fire after layout the items
36896          * @param {Roo.bootstrap.LayoutMasonry} this
36897          * @param {Roo.EventObject} e
36898          */
36899         "layout" : true
36900     });
36901     
36902 };
36903
36904 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
36905     
36906     /**
36907      * @cfg {Boolean} isLayoutInstant = no animation?
36908      */   
36909     isLayoutInstant : false, // needed?
36910    
36911     /**
36912      * @cfg {Number} boxWidth  width of the columns
36913      */   
36914     boxWidth : 450,
36915     
36916       /**
36917      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
36918      */   
36919     boxHeight : 0,
36920     
36921     /**
36922      * @cfg {Number} padWidth padding below box..
36923      */   
36924     padWidth : 10, 
36925     
36926     /**
36927      * @cfg {Number} gutter gutter width..
36928      */   
36929     gutter : 10,
36930     
36931      /**
36932      * @cfg {Number} maxCols maximum number of columns
36933      */   
36934     
36935     maxCols: 0,
36936     
36937     /**
36938      * @cfg {Boolean} isAutoInitial defalut true
36939      */   
36940     isAutoInitial : true, 
36941     
36942     containerWidth: 0,
36943     
36944     /**
36945      * @cfg {Boolean} isHorizontal defalut false
36946      */   
36947     isHorizontal : false, 
36948
36949     currentSize : null,
36950     
36951     tag: 'div',
36952     
36953     cls: '',
36954     
36955     bricks: null, //CompositeElement
36956     
36957     cols : 1,
36958     
36959     _isLayoutInited : false,
36960     
36961 //    isAlternative : false, // only use for vertical layout...
36962     
36963     /**
36964      * @cfg {Number} alternativePadWidth padding below box..
36965      */   
36966     alternativePadWidth : 50,
36967     
36968     selectedBrick : [],
36969     
36970     getAutoCreate : function(){
36971         
36972         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
36973         
36974         var cfg = {
36975             tag: this.tag,
36976             cls: 'blog-masonary-wrapper ' + this.cls,
36977             cn : {
36978                 cls : 'mas-boxes masonary'
36979             }
36980         };
36981         
36982         return cfg;
36983     },
36984     
36985     getChildContainer: function( )
36986     {
36987         if (this.boxesEl) {
36988             return this.boxesEl;
36989         }
36990         
36991         this.boxesEl = this.el.select('.mas-boxes').first();
36992         
36993         return this.boxesEl;
36994     },
36995     
36996     
36997     initEvents : function()
36998     {
36999         var _this = this;
37000         
37001         if(this.isAutoInitial){
37002             Roo.log('hook children rendered');
37003             this.on('childrenrendered', function() {
37004                 Roo.log('children rendered');
37005                 _this.initial();
37006             } ,this);
37007         }
37008     },
37009     
37010     initial : function()
37011     {
37012         this.selectedBrick = [];
37013         
37014         this.currentSize = this.el.getBox(true);
37015         
37016         Roo.EventManager.onWindowResize(this.resize, this); 
37017
37018         if(!this.isAutoInitial){
37019             this.layout();
37020             return;
37021         }
37022         
37023         this.layout();
37024         
37025         return;
37026         //this.layout.defer(500,this);
37027         
37028     },
37029     
37030     resize : function()
37031     {
37032         var cs = this.el.getBox(true);
37033         
37034         if (
37035                 this.currentSize.width == cs.width && 
37036                 this.currentSize.x == cs.x && 
37037                 this.currentSize.height == cs.height && 
37038                 this.currentSize.y == cs.y 
37039         ) {
37040             Roo.log("no change in with or X or Y");
37041             return;
37042         }
37043         
37044         this.currentSize = cs;
37045         
37046         this.layout();
37047         
37048     },
37049     
37050     layout : function()
37051     {   
37052         this._resetLayout();
37053         
37054         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
37055         
37056         this.layoutItems( isInstant );
37057       
37058         this._isLayoutInited = true;
37059         
37060         this.fireEvent('layout', this);
37061         
37062     },
37063     
37064     _resetLayout : function()
37065     {
37066         if(this.isHorizontal){
37067             this.horizontalMeasureColumns();
37068             return;
37069         }
37070         
37071         this.verticalMeasureColumns();
37072         
37073     },
37074     
37075     verticalMeasureColumns : function()
37076     {
37077         this.getContainerWidth();
37078         
37079 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
37080 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
37081 //            return;
37082 //        }
37083         
37084         var boxWidth = this.boxWidth + this.padWidth;
37085         
37086         if(this.containerWidth < this.boxWidth){
37087             boxWidth = this.containerWidth
37088         }
37089         
37090         var containerWidth = this.containerWidth;
37091         
37092         var cols = Math.floor(containerWidth / boxWidth);
37093         
37094         this.cols = Math.max( cols, 1 );
37095         
37096         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
37097         
37098         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
37099         
37100         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
37101         
37102         this.colWidth = boxWidth + avail - this.padWidth;
37103         
37104         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
37105         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
37106     },
37107     
37108     horizontalMeasureColumns : function()
37109     {
37110         this.getContainerWidth();
37111         
37112         var boxWidth = this.boxWidth;
37113         
37114         if(this.containerWidth < boxWidth){
37115             boxWidth = this.containerWidth;
37116         }
37117         
37118         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
37119         
37120         this.el.setHeight(boxWidth);
37121         
37122     },
37123     
37124     getContainerWidth : function()
37125     {
37126         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
37127     },
37128     
37129     layoutItems : function( isInstant )
37130     {
37131         Roo.log(this.bricks);
37132         
37133         var items = Roo.apply([], this.bricks);
37134         
37135         if(this.isHorizontal){
37136             this._horizontalLayoutItems( items , isInstant );
37137             return;
37138         }
37139         
37140 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
37141 //            this._verticalAlternativeLayoutItems( items , isInstant );
37142 //            return;
37143 //        }
37144         
37145         this._verticalLayoutItems( items , isInstant );
37146         
37147     },
37148     
37149     _verticalLayoutItems : function ( items , isInstant)
37150     {
37151         if ( !items || !items.length ) {
37152             return;
37153         }
37154         
37155         var standard = [
37156             ['xs', 'xs', 'xs', 'tall'],
37157             ['xs', 'xs', 'tall'],
37158             ['xs', 'xs', 'sm'],
37159             ['xs', 'xs', 'xs'],
37160             ['xs', 'tall'],
37161             ['xs', 'sm'],
37162             ['xs', 'xs'],
37163             ['xs'],
37164             
37165             ['sm', 'xs', 'xs'],
37166             ['sm', 'xs'],
37167             ['sm'],
37168             
37169             ['tall', 'xs', 'xs', 'xs'],
37170             ['tall', 'xs', 'xs'],
37171             ['tall', 'xs'],
37172             ['tall']
37173             
37174         ];
37175         
37176         var queue = [];
37177         
37178         var boxes = [];
37179         
37180         var box = [];
37181         
37182         Roo.each(items, function(item, k){
37183             
37184             switch (item.size) {
37185                 // these layouts take up a full box,
37186                 case 'md' :
37187                 case 'md-left' :
37188                 case 'md-right' :
37189                 case 'wide' :
37190                     
37191                     if(box.length){
37192                         boxes.push(box);
37193                         box = [];
37194                     }
37195                     
37196                     boxes.push([item]);
37197                     
37198                     break;
37199                     
37200                 case 'xs' :
37201                 case 'sm' :
37202                 case 'tall' :
37203                     
37204                     box.push(item);
37205                     
37206                     break;
37207                 default :
37208                     break;
37209                     
37210             }
37211             
37212         }, this);
37213         
37214         if(box.length){
37215             boxes.push(box);
37216             box = [];
37217         }
37218         
37219         var filterPattern = function(box, length)
37220         {
37221             if(!box.length){
37222                 return;
37223             }
37224             
37225             var match = false;
37226             
37227             var pattern = box.slice(0, length);
37228             
37229             var format = [];
37230             
37231             Roo.each(pattern, function(i){
37232                 format.push(i.size);
37233             }, this);
37234             
37235             Roo.each(standard, function(s){
37236                 
37237                 if(String(s) != String(format)){
37238                     return;
37239                 }
37240                 
37241                 match = true;
37242                 return false;
37243                 
37244             }, this);
37245             
37246             if(!match && length == 1){
37247                 return;
37248             }
37249             
37250             if(!match){
37251                 filterPattern(box, length - 1);
37252                 return;
37253             }
37254                 
37255             queue.push(pattern);
37256
37257             box = box.slice(length, box.length);
37258
37259             filterPattern(box, 4);
37260
37261             return;
37262             
37263         }
37264         
37265         Roo.each(boxes, function(box, k){
37266             
37267             if(!box.length){
37268                 return;
37269             }
37270             
37271             if(box.length == 1){
37272                 queue.push(box);
37273                 return;
37274             }
37275             
37276             filterPattern(box, 4);
37277             
37278         }, this);
37279         
37280         this._processVerticalLayoutQueue( queue, isInstant );
37281         
37282     },
37283     
37284 //    _verticalAlternativeLayoutItems : function( items , isInstant )
37285 //    {
37286 //        if ( !items || !items.length ) {
37287 //            return;
37288 //        }
37289 //
37290 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
37291 //        
37292 //    },
37293     
37294     _horizontalLayoutItems : function ( items , isInstant)
37295     {
37296         if ( !items || !items.length || items.length < 3) {
37297             return;
37298         }
37299         
37300         items.reverse();
37301         
37302         var eItems = items.slice(0, 3);
37303         
37304         items = items.slice(3, items.length);
37305         
37306         var standard = [
37307             ['xs', 'xs', 'xs', 'wide'],
37308             ['xs', 'xs', 'wide'],
37309             ['xs', 'xs', 'sm'],
37310             ['xs', 'xs', 'xs'],
37311             ['xs', 'wide'],
37312             ['xs', 'sm'],
37313             ['xs', 'xs'],
37314             ['xs'],
37315             
37316             ['sm', 'xs', 'xs'],
37317             ['sm', 'xs'],
37318             ['sm'],
37319             
37320             ['wide', 'xs', 'xs', 'xs'],
37321             ['wide', 'xs', 'xs'],
37322             ['wide', 'xs'],
37323             ['wide'],
37324             
37325             ['wide-thin']
37326         ];
37327         
37328         var queue = [];
37329         
37330         var boxes = [];
37331         
37332         var box = [];
37333         
37334         Roo.each(items, function(item, k){
37335             
37336             switch (item.size) {
37337                 case 'md' :
37338                 case 'md-left' :
37339                 case 'md-right' :
37340                 case 'tall' :
37341                     
37342                     if(box.length){
37343                         boxes.push(box);
37344                         box = [];
37345                     }
37346                     
37347                     boxes.push([item]);
37348                     
37349                     break;
37350                     
37351                 case 'xs' :
37352                 case 'sm' :
37353                 case 'wide' :
37354                 case 'wide-thin' :
37355                     
37356                     box.push(item);
37357                     
37358                     break;
37359                 default :
37360                     break;
37361                     
37362             }
37363             
37364         }, this);
37365         
37366         if(box.length){
37367             boxes.push(box);
37368             box = [];
37369         }
37370         
37371         var filterPattern = function(box, length)
37372         {
37373             if(!box.length){
37374                 return;
37375             }
37376             
37377             var match = false;
37378             
37379             var pattern = box.slice(0, length);
37380             
37381             var format = [];
37382             
37383             Roo.each(pattern, function(i){
37384                 format.push(i.size);
37385             }, this);
37386             
37387             Roo.each(standard, function(s){
37388                 
37389                 if(String(s) != String(format)){
37390                     return;
37391                 }
37392                 
37393                 match = true;
37394                 return false;
37395                 
37396             }, this);
37397             
37398             if(!match && length == 1){
37399                 return;
37400             }
37401             
37402             if(!match){
37403                 filterPattern(box, length - 1);
37404                 return;
37405             }
37406                 
37407             queue.push(pattern);
37408
37409             box = box.slice(length, box.length);
37410
37411             filterPattern(box, 4);
37412
37413             return;
37414             
37415         }
37416         
37417         Roo.each(boxes, function(box, k){
37418             
37419             if(!box.length){
37420                 return;
37421             }
37422             
37423             if(box.length == 1){
37424                 queue.push(box);
37425                 return;
37426             }
37427             
37428             filterPattern(box, 4);
37429             
37430         }, this);
37431         
37432         
37433         var prune = [];
37434         
37435         var pos = this.el.getBox(true);
37436         
37437         var minX = pos.x;
37438         
37439         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
37440         
37441         var hit_end = false;
37442         
37443         Roo.each(queue, function(box){
37444             
37445             if(hit_end){
37446                 
37447                 Roo.each(box, function(b){
37448                 
37449                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
37450                     b.el.hide();
37451
37452                 }, this);
37453
37454                 return;
37455             }
37456             
37457             var mx = 0;
37458             
37459             Roo.each(box, function(b){
37460                 
37461                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
37462                 b.el.show();
37463
37464                 mx = Math.max(mx, b.x);
37465                 
37466             }, this);
37467             
37468             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
37469             
37470             if(maxX < minX){
37471                 
37472                 Roo.each(box, function(b){
37473                 
37474                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
37475                     b.el.hide();
37476                     
37477                 }, this);
37478                 
37479                 hit_end = true;
37480                 
37481                 return;
37482             }
37483             
37484             prune.push(box);
37485             
37486         }, this);
37487         
37488         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
37489     },
37490     
37491     /** Sets position of item in DOM
37492     * @param {Element} item
37493     * @param {Number} x - horizontal position
37494     * @param {Number} y - vertical position
37495     * @param {Boolean} isInstant - disables transitions
37496     */
37497     _processVerticalLayoutQueue : function( queue, isInstant )
37498     {
37499         var pos = this.el.getBox(true);
37500         var x = pos.x;
37501         var y = pos.y;
37502         var maxY = [];
37503         
37504         for (var i = 0; i < this.cols; i++){
37505             maxY[i] = pos.y;
37506         }
37507         
37508         Roo.each(queue, function(box, k){
37509             
37510             var col = k % this.cols;
37511             
37512             Roo.each(box, function(b,kk){
37513                 
37514                 b.el.position('absolute');
37515                 
37516                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
37517                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
37518                 
37519                 if(b.size == 'md-left' || b.size == 'md-right'){
37520                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
37521                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
37522                 }
37523                 
37524                 b.el.setWidth(width);
37525                 b.el.setHeight(height);
37526                 // iframe?
37527                 b.el.select('iframe',true).setSize(width,height);
37528                 
37529             }, this);
37530             
37531             for (var i = 0; i < this.cols; i++){
37532                 
37533                 if(maxY[i] < maxY[col]){
37534                     col = i;
37535                     continue;
37536                 }
37537                 
37538                 col = Math.min(col, i);
37539                 
37540             }
37541             
37542             x = pos.x + col * (this.colWidth + this.padWidth);
37543             
37544             y = maxY[col];
37545             
37546             var positions = [];
37547             
37548             switch (box.length){
37549                 case 1 :
37550                     positions = this.getVerticalOneBoxColPositions(x, y, box);
37551                     break;
37552                 case 2 :
37553                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
37554                     break;
37555                 case 3 :
37556                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
37557                     break;
37558                 case 4 :
37559                     positions = this.getVerticalFourBoxColPositions(x, y, box);
37560                     break;
37561                 default :
37562                     break;
37563             }
37564             
37565             Roo.each(box, function(b,kk){
37566                 
37567                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
37568                 
37569                 var sz = b.el.getSize();
37570                 
37571                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
37572                 
37573             }, this);
37574             
37575         }, this);
37576         
37577         var mY = 0;
37578         
37579         for (var i = 0; i < this.cols; i++){
37580             mY = Math.max(mY, maxY[i]);
37581         }
37582         
37583         this.el.setHeight(mY - pos.y);
37584         
37585     },
37586     
37587 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
37588 //    {
37589 //        var pos = this.el.getBox(true);
37590 //        var x = pos.x;
37591 //        var y = pos.y;
37592 //        var maxX = pos.right;
37593 //        
37594 //        var maxHeight = 0;
37595 //        
37596 //        Roo.each(items, function(item, k){
37597 //            
37598 //            var c = k % 2;
37599 //            
37600 //            item.el.position('absolute');
37601 //                
37602 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
37603 //
37604 //            item.el.setWidth(width);
37605 //
37606 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
37607 //
37608 //            item.el.setHeight(height);
37609 //            
37610 //            if(c == 0){
37611 //                item.el.setXY([x, y], isInstant ? false : true);
37612 //            } else {
37613 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
37614 //            }
37615 //            
37616 //            y = y + height + this.alternativePadWidth;
37617 //            
37618 //            maxHeight = maxHeight + height + this.alternativePadWidth;
37619 //            
37620 //        }, this);
37621 //        
37622 //        this.el.setHeight(maxHeight);
37623 //        
37624 //    },
37625     
37626     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
37627     {
37628         var pos = this.el.getBox(true);
37629         
37630         var minX = pos.x;
37631         var minY = pos.y;
37632         
37633         var maxX = pos.right;
37634         
37635         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
37636         
37637         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
37638         
37639         Roo.each(queue, function(box, k){
37640             
37641             Roo.each(box, function(b, kk){
37642                 
37643                 b.el.position('absolute');
37644                 
37645                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
37646                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
37647                 
37648                 if(b.size == 'md-left' || b.size == 'md-right'){
37649                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
37650                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
37651                 }
37652                 
37653                 b.el.setWidth(width);
37654                 b.el.setHeight(height);
37655                 
37656             }, this);
37657             
37658             if(!box.length){
37659                 return;
37660             }
37661             
37662             var positions = [];
37663             
37664             switch (box.length){
37665                 case 1 :
37666                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
37667                     break;
37668                 case 2 :
37669                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
37670                     break;
37671                 case 3 :
37672                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
37673                     break;
37674                 case 4 :
37675                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
37676                     break;
37677                 default :
37678                     break;
37679             }
37680             
37681             Roo.each(box, function(b,kk){
37682                 
37683                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
37684                 
37685                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
37686                 
37687             }, this);
37688             
37689         }, this);
37690         
37691     },
37692     
37693     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
37694     {
37695         Roo.each(eItems, function(b,k){
37696             
37697             b.size = (k == 0) ? 'sm' : 'xs';
37698             b.x = (k == 0) ? 2 : 1;
37699             b.y = (k == 0) ? 2 : 1;
37700             
37701             b.el.position('absolute');
37702             
37703             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
37704                 
37705             b.el.setWidth(width);
37706             
37707             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
37708             
37709             b.el.setHeight(height);
37710             
37711         }, this);
37712
37713         var positions = [];
37714         
37715         positions.push({
37716             x : maxX - this.unitWidth * 2 - this.gutter,
37717             y : minY
37718         });
37719         
37720         positions.push({
37721             x : maxX - this.unitWidth,
37722             y : minY + (this.unitWidth + this.gutter) * 2
37723         });
37724         
37725         positions.push({
37726             x : maxX - this.unitWidth * 3 - this.gutter * 2,
37727             y : minY
37728         });
37729         
37730         Roo.each(eItems, function(b,k){
37731             
37732             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
37733
37734         }, this);
37735         
37736     },
37737     
37738     getVerticalOneBoxColPositions : function(x, y, box)
37739     {
37740         var pos = [];
37741         
37742         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
37743         
37744         if(box[0].size == 'md-left'){
37745             rand = 0;
37746         }
37747         
37748         if(box[0].size == 'md-right'){
37749             rand = 1;
37750         }
37751         
37752         pos.push({
37753             x : x + (this.unitWidth + this.gutter) * rand,
37754             y : y
37755         });
37756         
37757         return pos;
37758     },
37759     
37760     getVerticalTwoBoxColPositions : function(x, y, box)
37761     {
37762         var pos = [];
37763         
37764         if(box[0].size == 'xs'){
37765             
37766             pos.push({
37767                 x : x,
37768                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
37769             });
37770
37771             pos.push({
37772                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
37773                 y : y
37774             });
37775             
37776             return pos;
37777             
37778         }
37779         
37780         pos.push({
37781             x : x,
37782             y : y
37783         });
37784
37785         pos.push({
37786             x : x + (this.unitWidth + this.gutter) * 2,
37787             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
37788         });
37789         
37790         return pos;
37791         
37792     },
37793     
37794     getVerticalThreeBoxColPositions : function(x, y, box)
37795     {
37796         var pos = [];
37797         
37798         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
37799             
37800             pos.push({
37801                 x : x,
37802                 y : y
37803             });
37804
37805             pos.push({
37806                 x : x + (this.unitWidth + this.gutter) * 1,
37807                 y : y
37808             });
37809             
37810             pos.push({
37811                 x : x + (this.unitWidth + this.gutter) * 2,
37812                 y : y
37813             });
37814             
37815             return pos;
37816             
37817         }
37818         
37819         if(box[0].size == 'xs' && box[1].size == 'xs'){
37820             
37821             pos.push({
37822                 x : x,
37823                 y : y
37824             });
37825
37826             pos.push({
37827                 x : x,
37828                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
37829             });
37830             
37831             pos.push({
37832                 x : x + (this.unitWidth + this.gutter) * 1,
37833                 y : y
37834             });
37835             
37836             return pos;
37837             
37838         }
37839         
37840         pos.push({
37841             x : x,
37842             y : y
37843         });
37844
37845         pos.push({
37846             x : x + (this.unitWidth + this.gutter) * 2,
37847             y : y
37848         });
37849
37850         pos.push({
37851             x : x + (this.unitWidth + this.gutter) * 2,
37852             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
37853         });
37854             
37855         return pos;
37856         
37857     },
37858     
37859     getVerticalFourBoxColPositions : function(x, y, box)
37860     {
37861         var pos = [];
37862         
37863         if(box[0].size == 'xs'){
37864             
37865             pos.push({
37866                 x : x,
37867                 y : y
37868             });
37869
37870             pos.push({
37871                 x : x,
37872                 y : y + (this.unitHeight + this.gutter) * 1
37873             });
37874             
37875             pos.push({
37876                 x : x,
37877                 y : y + (this.unitHeight + this.gutter) * 2
37878             });
37879             
37880             pos.push({
37881                 x : x + (this.unitWidth + this.gutter) * 1,
37882                 y : y
37883             });
37884             
37885             return pos;
37886             
37887         }
37888         
37889         pos.push({
37890             x : x,
37891             y : y
37892         });
37893
37894         pos.push({
37895             x : x + (this.unitWidth + this.gutter) * 2,
37896             y : y
37897         });
37898
37899         pos.push({
37900             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
37901             y : y + (this.unitHeight + this.gutter) * 1
37902         });
37903
37904         pos.push({
37905             x : x + (this.unitWidth + this.gutter) * 2,
37906             y : y + (this.unitWidth + this.gutter) * 2
37907         });
37908
37909         return pos;
37910         
37911     },
37912     
37913     getHorizontalOneBoxColPositions : function(maxX, minY, box)
37914     {
37915         var pos = [];
37916         
37917         if(box[0].size == 'md-left'){
37918             pos.push({
37919                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
37920                 y : minY
37921             });
37922             
37923             return pos;
37924         }
37925         
37926         if(box[0].size == 'md-right'){
37927             pos.push({
37928                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
37929                 y : minY + (this.unitWidth + this.gutter) * 1
37930             });
37931             
37932             return pos;
37933         }
37934         
37935         var rand = Math.floor(Math.random() * (4 - box[0].y));
37936         
37937         pos.push({
37938             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
37939             y : minY + (this.unitWidth + this.gutter) * rand
37940         });
37941         
37942         return pos;
37943         
37944     },
37945     
37946     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
37947     {
37948         var pos = [];
37949         
37950         if(box[0].size == 'xs'){
37951             
37952             pos.push({
37953                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
37954                 y : minY
37955             });
37956
37957             pos.push({
37958                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
37959                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
37960             });
37961             
37962             return pos;
37963             
37964         }
37965         
37966         pos.push({
37967             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
37968             y : minY
37969         });
37970
37971         pos.push({
37972             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
37973             y : minY + (this.unitWidth + this.gutter) * 2
37974         });
37975         
37976         return pos;
37977         
37978     },
37979     
37980     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
37981     {
37982         var pos = [];
37983         
37984         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
37985             
37986             pos.push({
37987                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
37988                 y : minY
37989             });
37990
37991             pos.push({
37992                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
37993                 y : minY + (this.unitWidth + this.gutter) * 1
37994             });
37995             
37996             pos.push({
37997                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
37998                 y : minY + (this.unitWidth + this.gutter) * 2
37999             });
38000             
38001             return pos;
38002             
38003         }
38004         
38005         if(box[0].size == 'xs' && box[1].size == 'xs'){
38006             
38007             pos.push({
38008                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
38009                 y : minY
38010             });
38011
38012             pos.push({
38013                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
38014                 y : minY
38015             });
38016             
38017             pos.push({
38018                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
38019                 y : minY + (this.unitWidth + this.gutter) * 1
38020             });
38021             
38022             return pos;
38023             
38024         }
38025         
38026         pos.push({
38027             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
38028             y : minY
38029         });
38030
38031         pos.push({
38032             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
38033             y : minY + (this.unitWidth + this.gutter) * 2
38034         });
38035
38036         pos.push({
38037             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
38038             y : minY + (this.unitWidth + this.gutter) * 2
38039         });
38040             
38041         return pos;
38042         
38043     },
38044     
38045     getHorizontalFourBoxColPositions : function(maxX, minY, box)
38046     {
38047         var pos = [];
38048         
38049         if(box[0].size == 'xs'){
38050             
38051             pos.push({
38052                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
38053                 y : minY
38054             });
38055
38056             pos.push({
38057                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
38058                 y : minY
38059             });
38060             
38061             pos.push({
38062                 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),
38063                 y : minY
38064             });
38065             
38066             pos.push({
38067                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
38068                 y : minY + (this.unitWidth + this.gutter) * 1
38069             });
38070             
38071             return pos;
38072             
38073         }
38074         
38075         pos.push({
38076             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
38077             y : minY
38078         });
38079         
38080         pos.push({
38081             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
38082             y : minY + (this.unitWidth + this.gutter) * 2
38083         });
38084         
38085         pos.push({
38086             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
38087             y : minY + (this.unitWidth + this.gutter) * 2
38088         });
38089         
38090         pos.push({
38091             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),
38092             y : minY + (this.unitWidth + this.gutter) * 2
38093         });
38094
38095         return pos;
38096         
38097     },
38098     
38099     /**
38100     * remove a Masonry Brick
38101     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
38102     */
38103     removeBrick : function(brick_id)
38104     {
38105         if (!brick_id) {
38106             return;
38107         }
38108         
38109         for (var i = 0; i<this.bricks.length; i++) {
38110             if (this.bricks[i].id == brick_id) {
38111                 this.bricks.splice(i,1);
38112                 this.el.dom.removeChild(Roo.get(brick_id).dom);
38113                 this.initial();
38114             }
38115         }
38116     },
38117     
38118     /**
38119     * adds a Masonry Brick
38120     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
38121     */
38122     addBrick : function(cfg)
38123     {
38124         var cn = new Roo.bootstrap.MasonryBrick(cfg);
38125         //this.register(cn);
38126         cn.parentId = this.id;
38127         cn.render(this.el);
38128         return cn;
38129     },
38130     
38131     /**
38132     * register a Masonry Brick
38133     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
38134     */
38135     
38136     register : function(brick)
38137     {
38138         this.bricks.push(brick);
38139         brick.masonryId = this.id;
38140     },
38141     
38142     /**
38143     * clear all the Masonry Brick
38144     */
38145     clearAll : function()
38146     {
38147         this.bricks = [];
38148         //this.getChildContainer().dom.innerHTML = "";
38149         this.el.dom.innerHTML = '';
38150     },
38151     
38152     getSelected : function()
38153     {
38154         if (!this.selectedBrick) {
38155             return false;
38156         }
38157         
38158         return this.selectedBrick;
38159     }
38160 });
38161
38162 Roo.apply(Roo.bootstrap.LayoutMasonry, {
38163     
38164     groups: {},
38165      /**
38166     * register a Masonry Layout
38167     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
38168     */
38169     
38170     register : function(layout)
38171     {
38172         this.groups[layout.id] = layout;
38173     },
38174     /**
38175     * fetch a  Masonry Layout based on the masonry layout ID
38176     * @param {string} the masonry layout to add
38177     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
38178     */
38179     
38180     get: function(layout_id) {
38181         if (typeof(this.groups[layout_id]) == 'undefined') {
38182             return false;
38183         }
38184         return this.groups[layout_id] ;
38185     }
38186     
38187     
38188     
38189 });
38190
38191  
38192
38193  /**
38194  *
38195  * This is based on 
38196  * http://masonry.desandro.com
38197  *
38198  * The idea is to render all the bricks based on vertical width...
38199  *
38200  * The original code extends 'outlayer' - we might need to use that....
38201  * 
38202  */
38203
38204
38205 /**
38206  * @class Roo.bootstrap.LayoutMasonryAuto
38207  * @extends Roo.bootstrap.Component
38208  * Bootstrap Layout Masonry class
38209  * 
38210  * @constructor
38211  * Create a new Element
38212  * @param {Object} config The config object
38213  */
38214
38215 Roo.bootstrap.LayoutMasonryAuto = function(config){
38216     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
38217 };
38218
38219 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
38220     
38221       /**
38222      * @cfg {Boolean} isFitWidth  - resize the width..
38223      */   
38224     isFitWidth : false,  // options..
38225     /**
38226      * @cfg {Boolean} isOriginLeft = left align?
38227      */   
38228     isOriginLeft : true,
38229     /**
38230      * @cfg {Boolean} isOriginTop = top align?
38231      */   
38232     isOriginTop : false,
38233     /**
38234      * @cfg {Boolean} isLayoutInstant = no animation?
38235      */   
38236     isLayoutInstant : false, // needed?
38237     /**
38238      * @cfg {Boolean} isResizingContainer = not sure if this is used..
38239      */   
38240     isResizingContainer : true,
38241     /**
38242      * @cfg {Number} columnWidth  width of the columns 
38243      */   
38244     
38245     columnWidth : 0,
38246     
38247     /**
38248      * @cfg {Number} maxCols maximum number of columns
38249      */   
38250     
38251     maxCols: 0,
38252     /**
38253      * @cfg {Number} padHeight padding below box..
38254      */   
38255     
38256     padHeight : 10, 
38257     
38258     /**
38259      * @cfg {Boolean} isAutoInitial defalut true
38260      */   
38261     
38262     isAutoInitial : true, 
38263     
38264     // private?
38265     gutter : 0,
38266     
38267     containerWidth: 0,
38268     initialColumnWidth : 0,
38269     currentSize : null,
38270     
38271     colYs : null, // array.
38272     maxY : 0,
38273     padWidth: 10,
38274     
38275     
38276     tag: 'div',
38277     cls: '',
38278     bricks: null, //CompositeElement
38279     cols : 0, // array?
38280     // element : null, // wrapped now this.el
38281     _isLayoutInited : null, 
38282     
38283     
38284     getAutoCreate : function(){
38285         
38286         var cfg = {
38287             tag: this.tag,
38288             cls: 'blog-masonary-wrapper ' + this.cls,
38289             cn : {
38290                 cls : 'mas-boxes masonary'
38291             }
38292         };
38293         
38294         return cfg;
38295     },
38296     
38297     getChildContainer: function( )
38298     {
38299         if (this.boxesEl) {
38300             return this.boxesEl;
38301         }
38302         
38303         this.boxesEl = this.el.select('.mas-boxes').first();
38304         
38305         return this.boxesEl;
38306     },
38307     
38308     
38309     initEvents : function()
38310     {
38311         var _this = this;
38312         
38313         if(this.isAutoInitial){
38314             Roo.log('hook children rendered');
38315             this.on('childrenrendered', function() {
38316                 Roo.log('children rendered');
38317                 _this.initial();
38318             } ,this);
38319         }
38320         
38321     },
38322     
38323     initial : function()
38324     {
38325         this.reloadItems();
38326
38327         this.currentSize = this.el.getBox(true);
38328
38329         /// was window resize... - let's see if this works..
38330         Roo.EventManager.onWindowResize(this.resize, this); 
38331
38332         if(!this.isAutoInitial){
38333             this.layout();
38334             return;
38335         }
38336         
38337         this.layout.defer(500,this);
38338     },
38339     
38340     reloadItems: function()
38341     {
38342         this.bricks = this.el.select('.masonry-brick', true);
38343         
38344         this.bricks.each(function(b) {
38345             //Roo.log(b.getSize());
38346             if (!b.attr('originalwidth')) {
38347                 b.attr('originalwidth',  b.getSize().width);
38348             }
38349             
38350         });
38351         
38352         Roo.log(this.bricks.elements.length);
38353     },
38354     
38355     resize : function()
38356     {
38357         Roo.log('resize');
38358         var cs = this.el.getBox(true);
38359         
38360         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
38361             Roo.log("no change in with or X");
38362             return;
38363         }
38364         this.currentSize = cs;
38365         this.layout();
38366     },
38367     
38368     layout : function()
38369     {
38370          Roo.log('layout');
38371         this._resetLayout();
38372         //this._manageStamps();
38373       
38374         // don't animate first layout
38375         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
38376         this.layoutItems( isInstant );
38377       
38378         // flag for initalized
38379         this._isLayoutInited = true;
38380     },
38381     
38382     layoutItems : function( isInstant )
38383     {
38384         //var items = this._getItemsForLayout( this.items );
38385         // original code supports filtering layout items.. we just ignore it..
38386         
38387         this._layoutItems( this.bricks , isInstant );
38388       
38389         this._postLayout();
38390     },
38391     _layoutItems : function ( items , isInstant)
38392     {
38393        //this.fireEvent( 'layout', this, items );
38394     
38395
38396         if ( !items || !items.elements.length ) {
38397           // no items, emit event with empty array
38398             return;
38399         }
38400
38401         var queue = [];
38402         items.each(function(item) {
38403             Roo.log("layout item");
38404             Roo.log(item);
38405             // get x/y object from method
38406             var position = this._getItemLayoutPosition( item );
38407             // enqueue
38408             position.item = item;
38409             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
38410             queue.push( position );
38411         }, this);
38412       
38413         this._processLayoutQueue( queue );
38414     },
38415     /** Sets position of item in DOM
38416     * @param {Element} item
38417     * @param {Number} x - horizontal position
38418     * @param {Number} y - vertical position
38419     * @param {Boolean} isInstant - disables transitions
38420     */
38421     _processLayoutQueue : function( queue )
38422     {
38423         for ( var i=0, len = queue.length; i < len; i++ ) {
38424             var obj = queue[i];
38425             obj.item.position('absolute');
38426             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
38427         }
38428     },
38429       
38430     
38431     /**
38432     * Any logic you want to do after each layout,
38433     * i.e. size the container
38434     */
38435     _postLayout : function()
38436     {
38437         this.resizeContainer();
38438     },
38439     
38440     resizeContainer : function()
38441     {
38442         if ( !this.isResizingContainer ) {
38443             return;
38444         }
38445         var size = this._getContainerSize();
38446         if ( size ) {
38447             this.el.setSize(size.width,size.height);
38448             this.boxesEl.setSize(size.width,size.height);
38449         }
38450     },
38451     
38452     
38453     
38454     _resetLayout : function()
38455     {
38456         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
38457         this.colWidth = this.el.getWidth();
38458         //this.gutter = this.el.getWidth(); 
38459         
38460         this.measureColumns();
38461
38462         // reset column Y
38463         var i = this.cols;
38464         this.colYs = [];
38465         while (i--) {
38466             this.colYs.push( 0 );
38467         }
38468     
38469         this.maxY = 0;
38470     },
38471
38472     measureColumns : function()
38473     {
38474         this.getContainerWidth();
38475       // if columnWidth is 0, default to outerWidth of first item
38476         if ( !this.columnWidth ) {
38477             var firstItem = this.bricks.first();
38478             Roo.log(firstItem);
38479             this.columnWidth  = this.containerWidth;
38480             if (firstItem && firstItem.attr('originalwidth') ) {
38481                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
38482             }
38483             // columnWidth fall back to item of first element
38484             Roo.log("set column width?");
38485                         this.initialColumnWidth = this.columnWidth  ;
38486
38487             // if first elem has no width, default to size of container
38488             
38489         }
38490         
38491         
38492         if (this.initialColumnWidth) {
38493             this.columnWidth = this.initialColumnWidth;
38494         }
38495         
38496         
38497             
38498         // column width is fixed at the top - however if container width get's smaller we should
38499         // reduce it...
38500         
38501         // this bit calcs how man columns..
38502             
38503         var columnWidth = this.columnWidth += this.gutter;
38504       
38505         // calculate columns
38506         var containerWidth = this.containerWidth + this.gutter;
38507         
38508         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
38509         // fix rounding errors, typically with gutters
38510         var excess = columnWidth - containerWidth % columnWidth;
38511         
38512         
38513         // if overshoot is less than a pixel, round up, otherwise floor it
38514         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
38515         cols = Math[ mathMethod ]( cols );
38516         this.cols = Math.max( cols, 1 );
38517         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
38518         
38519          // padding positioning..
38520         var totalColWidth = this.cols * this.columnWidth;
38521         var padavail = this.containerWidth - totalColWidth;
38522         // so for 2 columns - we need 3 'pads'
38523         
38524         var padNeeded = (1+this.cols) * this.padWidth;
38525         
38526         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
38527         
38528         this.columnWidth += padExtra
38529         //this.padWidth = Math.floor(padavail /  ( this.cols));
38530         
38531         // adjust colum width so that padding is fixed??
38532         
38533         // we have 3 columns ... total = width * 3
38534         // we have X left over... that should be used by 
38535         
38536         //if (this.expandC) {
38537             
38538         //}
38539         
38540         
38541         
38542     },
38543     
38544     getContainerWidth : function()
38545     {
38546        /* // container is parent if fit width
38547         var container = this.isFitWidth ? this.element.parentNode : this.element;
38548         // check that this.size and size are there
38549         // IE8 triggers resize on body size change, so they might not be
38550         
38551         var size = getSize( container );  //FIXME
38552         this.containerWidth = size && size.innerWidth; //FIXME
38553         */
38554          
38555         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
38556         
38557     },
38558     
38559     _getItemLayoutPosition : function( item )  // what is item?
38560     {
38561         // we resize the item to our columnWidth..
38562       
38563         item.setWidth(this.columnWidth);
38564         item.autoBoxAdjust  = false;
38565         
38566         var sz = item.getSize();
38567  
38568         // how many columns does this brick span
38569         var remainder = this.containerWidth % this.columnWidth;
38570         
38571         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
38572         // round if off by 1 pixel, otherwise use ceil
38573         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
38574         colSpan = Math.min( colSpan, this.cols );
38575         
38576         // normally this should be '1' as we dont' currently allow multi width columns..
38577         
38578         var colGroup = this._getColGroup( colSpan );
38579         // get the minimum Y value from the columns
38580         var minimumY = Math.min.apply( Math, colGroup );
38581         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
38582         
38583         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
38584          
38585         // position the brick
38586         var position = {
38587             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
38588             y: this.currentSize.y + minimumY + this.padHeight
38589         };
38590         
38591         Roo.log(position);
38592         // apply setHeight to necessary columns
38593         var setHeight = minimumY + sz.height + this.padHeight;
38594         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
38595         
38596         var setSpan = this.cols + 1 - colGroup.length;
38597         for ( var i = 0; i < setSpan; i++ ) {
38598           this.colYs[ shortColIndex + i ] = setHeight ;
38599         }
38600       
38601         return position;
38602     },
38603     
38604     /**
38605      * @param {Number} colSpan - number of columns the element spans
38606      * @returns {Array} colGroup
38607      */
38608     _getColGroup : function( colSpan )
38609     {
38610         if ( colSpan < 2 ) {
38611           // if brick spans only one column, use all the column Ys
38612           return this.colYs;
38613         }
38614       
38615         var colGroup = [];
38616         // how many different places could this brick fit horizontally
38617         var groupCount = this.cols + 1 - colSpan;
38618         // for each group potential horizontal position
38619         for ( var i = 0; i < groupCount; i++ ) {
38620           // make an array of colY values for that one group
38621           var groupColYs = this.colYs.slice( i, i + colSpan );
38622           // and get the max value of the array
38623           colGroup[i] = Math.max.apply( Math, groupColYs );
38624         }
38625         return colGroup;
38626     },
38627     /*
38628     _manageStamp : function( stamp )
38629     {
38630         var stampSize =  stamp.getSize();
38631         var offset = stamp.getBox();
38632         // get the columns that this stamp affects
38633         var firstX = this.isOriginLeft ? offset.x : offset.right;
38634         var lastX = firstX + stampSize.width;
38635         var firstCol = Math.floor( firstX / this.columnWidth );
38636         firstCol = Math.max( 0, firstCol );
38637         
38638         var lastCol = Math.floor( lastX / this.columnWidth );
38639         // lastCol should not go over if multiple of columnWidth #425
38640         lastCol -= lastX % this.columnWidth ? 0 : 1;
38641         lastCol = Math.min( this.cols - 1, lastCol );
38642         
38643         // set colYs to bottom of the stamp
38644         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
38645             stampSize.height;
38646             
38647         for ( var i = firstCol; i <= lastCol; i++ ) {
38648           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
38649         }
38650     },
38651     */
38652     
38653     _getContainerSize : function()
38654     {
38655         this.maxY = Math.max.apply( Math, this.colYs );
38656         var size = {
38657             height: this.maxY
38658         };
38659       
38660         if ( this.isFitWidth ) {
38661             size.width = this._getContainerFitWidth();
38662         }
38663       
38664         return size;
38665     },
38666     
38667     _getContainerFitWidth : function()
38668     {
38669         var unusedCols = 0;
38670         // count unused columns
38671         var i = this.cols;
38672         while ( --i ) {
38673           if ( this.colYs[i] !== 0 ) {
38674             break;
38675           }
38676           unusedCols++;
38677         }
38678         // fit container to columns that have been used
38679         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
38680     },
38681     
38682     needsResizeLayout : function()
38683     {
38684         var previousWidth = this.containerWidth;
38685         this.getContainerWidth();
38686         return previousWidth !== this.containerWidth;
38687     }
38688  
38689 });
38690
38691  
38692
38693  /*
38694  * - LGPL
38695  *
38696  * element
38697  * 
38698  */
38699
38700 /**
38701  * @class Roo.bootstrap.MasonryBrick
38702  * @extends Roo.bootstrap.Component
38703  * Bootstrap MasonryBrick class
38704  * 
38705  * @constructor
38706  * Create a new MasonryBrick
38707  * @param {Object} config The config object
38708  */
38709
38710 Roo.bootstrap.MasonryBrick = function(config){
38711     
38712     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
38713     
38714     Roo.bootstrap.MasonryBrick.register(this);
38715     
38716     this.addEvents({
38717         // raw events
38718         /**
38719          * @event click
38720          * When a MasonryBrick is clcik
38721          * @param {Roo.bootstrap.MasonryBrick} this
38722          * @param {Roo.EventObject} e
38723          */
38724         "click" : true
38725     });
38726 };
38727
38728 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
38729     
38730     /**
38731      * @cfg {String} title
38732      */   
38733     title : '',
38734     /**
38735      * @cfg {String} html
38736      */   
38737     html : '',
38738     /**
38739      * @cfg {String} bgimage
38740      */   
38741     bgimage : '',
38742     /**
38743      * @cfg {String} videourl
38744      */   
38745     videourl : '',
38746     /**
38747      * @cfg {String} cls
38748      */   
38749     cls : '',
38750     /**
38751      * @cfg {String} href
38752      */   
38753     href : '',
38754     /**
38755      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
38756      */   
38757     size : 'xs',
38758     
38759     /**
38760      * @cfg {String} placetitle (center|bottom)
38761      */   
38762     placetitle : '',
38763     
38764     /**
38765      * @cfg {Boolean} isFitContainer defalut true
38766      */   
38767     isFitContainer : true, 
38768     
38769     /**
38770      * @cfg {Boolean} preventDefault defalut false
38771      */   
38772     preventDefault : false, 
38773     
38774     /**
38775      * @cfg {Boolean} inverse defalut false
38776      */   
38777     maskInverse : false, 
38778     
38779     getAutoCreate : function()
38780     {
38781         if(!this.isFitContainer){
38782             return this.getSplitAutoCreate();
38783         }
38784         
38785         var cls = 'masonry-brick masonry-brick-full';
38786         
38787         if(this.href.length){
38788             cls += ' masonry-brick-link';
38789         }
38790         
38791         if(this.bgimage.length){
38792             cls += ' masonry-brick-image';
38793         }
38794         
38795         if(this.maskInverse){
38796             cls += ' mask-inverse';
38797         }
38798         
38799         if(!this.html.length && !this.maskInverse && !this.videourl.length){
38800             cls += ' enable-mask';
38801         }
38802         
38803         if(this.size){
38804             cls += ' masonry-' + this.size + '-brick';
38805         }
38806         
38807         if(this.placetitle.length){
38808             
38809             switch (this.placetitle) {
38810                 case 'center' :
38811                     cls += ' masonry-center-title';
38812                     break;
38813                 case 'bottom' :
38814                     cls += ' masonry-bottom-title';
38815                     break;
38816                 default:
38817                     break;
38818             }
38819             
38820         } else {
38821             if(!this.html.length && !this.bgimage.length){
38822                 cls += ' masonry-center-title';
38823             }
38824
38825             if(!this.html.length && this.bgimage.length){
38826                 cls += ' masonry-bottom-title';
38827             }
38828         }
38829         
38830         if(this.cls){
38831             cls += ' ' + this.cls;
38832         }
38833         
38834         var cfg = {
38835             tag: (this.href.length) ? 'a' : 'div',
38836             cls: cls,
38837             cn: [
38838                 {
38839                     tag: 'div',
38840                     cls: 'masonry-brick-mask'
38841                 },
38842                 {
38843                     tag: 'div',
38844                     cls: 'masonry-brick-paragraph',
38845                     cn: []
38846                 }
38847             ]
38848         };
38849         
38850         if(this.href.length){
38851             cfg.href = this.href;
38852         }
38853         
38854         var cn = cfg.cn[1].cn;
38855         
38856         if(this.title.length){
38857             cn.push({
38858                 tag: 'h4',
38859                 cls: 'masonry-brick-title',
38860                 html: this.title
38861             });
38862         }
38863         
38864         if(this.html.length){
38865             cn.push({
38866                 tag: 'p',
38867                 cls: 'masonry-brick-text',
38868                 html: this.html
38869             });
38870         }
38871         
38872         if (!this.title.length && !this.html.length) {
38873             cfg.cn[1].cls += ' hide';
38874         }
38875         
38876         if(this.bgimage.length){
38877             cfg.cn.push({
38878                 tag: 'img',
38879                 cls: 'masonry-brick-image-view',
38880                 src: this.bgimage
38881             });
38882         }
38883         
38884         if(this.videourl.length){
38885             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
38886             // youtube support only?
38887             cfg.cn.push({
38888                 tag: 'iframe',
38889                 cls: 'masonry-brick-image-view',
38890                 src: vurl,
38891                 frameborder : 0,
38892                 allowfullscreen : true
38893             });
38894         }
38895         
38896         return cfg;
38897         
38898     },
38899     
38900     getSplitAutoCreate : function()
38901     {
38902         var cls = 'masonry-brick masonry-brick-split';
38903         
38904         if(this.href.length){
38905             cls += ' masonry-brick-link';
38906         }
38907         
38908         if(this.bgimage.length){
38909             cls += ' masonry-brick-image';
38910         }
38911         
38912         if(this.size){
38913             cls += ' masonry-' + this.size + '-brick';
38914         }
38915         
38916         switch (this.placetitle) {
38917             case 'center' :
38918                 cls += ' masonry-center-title';
38919                 break;
38920             case 'bottom' :
38921                 cls += ' masonry-bottom-title';
38922                 break;
38923             default:
38924                 if(!this.bgimage.length){
38925                     cls += ' masonry-center-title';
38926                 }
38927
38928                 if(this.bgimage.length){
38929                     cls += ' masonry-bottom-title';
38930                 }
38931                 break;
38932         }
38933         
38934         if(this.cls){
38935             cls += ' ' + this.cls;
38936         }
38937         
38938         var cfg = {
38939             tag: (this.href.length) ? 'a' : 'div',
38940             cls: cls,
38941             cn: [
38942                 {
38943                     tag: 'div',
38944                     cls: 'masonry-brick-split-head',
38945                     cn: [
38946                         {
38947                             tag: 'div',
38948                             cls: 'masonry-brick-paragraph',
38949                             cn: []
38950                         }
38951                     ]
38952                 },
38953                 {
38954                     tag: 'div',
38955                     cls: 'masonry-brick-split-body',
38956                     cn: []
38957                 }
38958             ]
38959         };
38960         
38961         if(this.href.length){
38962             cfg.href = this.href;
38963         }
38964         
38965         if(this.title.length){
38966             cfg.cn[0].cn[0].cn.push({
38967                 tag: 'h4',
38968                 cls: 'masonry-brick-title',
38969                 html: this.title
38970             });
38971         }
38972         
38973         if(this.html.length){
38974             cfg.cn[1].cn.push({
38975                 tag: 'p',
38976                 cls: 'masonry-brick-text',
38977                 html: this.html
38978             });
38979         }
38980
38981         if(this.bgimage.length){
38982             cfg.cn[0].cn.push({
38983                 tag: 'img',
38984                 cls: 'masonry-brick-image-view',
38985                 src: this.bgimage
38986             });
38987         }
38988         
38989         if(this.videourl.length){
38990             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
38991             // youtube support only?
38992             cfg.cn[0].cn.cn.push({
38993                 tag: 'iframe',
38994                 cls: 'masonry-brick-image-view',
38995                 src: vurl,
38996                 frameborder : 0,
38997                 allowfullscreen : true
38998             });
38999         }
39000         
39001         return cfg;
39002     },
39003     
39004     initEvents: function() 
39005     {
39006         switch (this.size) {
39007             case 'xs' :
39008                 this.x = 1;
39009                 this.y = 1;
39010                 break;
39011             case 'sm' :
39012                 this.x = 2;
39013                 this.y = 2;
39014                 break;
39015             case 'md' :
39016             case 'md-left' :
39017             case 'md-right' :
39018                 this.x = 3;
39019                 this.y = 3;
39020                 break;
39021             case 'tall' :
39022                 this.x = 2;
39023                 this.y = 3;
39024                 break;
39025             case 'wide' :
39026                 this.x = 3;
39027                 this.y = 2;
39028                 break;
39029             case 'wide-thin' :
39030                 this.x = 3;
39031                 this.y = 1;
39032                 break;
39033                         
39034             default :
39035                 break;
39036         }
39037         
39038         if(Roo.isTouch){
39039             this.el.on('touchstart', this.onTouchStart, this);
39040             this.el.on('touchmove', this.onTouchMove, this);
39041             this.el.on('touchend', this.onTouchEnd, this);
39042             this.el.on('contextmenu', this.onContextMenu, this);
39043         } else {
39044             this.el.on('mouseenter'  ,this.enter, this);
39045             this.el.on('mouseleave', this.leave, this);
39046             this.el.on('click', this.onClick, this);
39047         }
39048         
39049         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
39050             this.parent().bricks.push(this);   
39051         }
39052         
39053     },
39054     
39055     onClick: function(e, el)
39056     {
39057         var time = this.endTimer - this.startTimer;
39058         // Roo.log(e.preventDefault());
39059         if(Roo.isTouch){
39060             if(time > 1000){
39061                 e.preventDefault();
39062                 return;
39063             }
39064         }
39065         
39066         if(!this.preventDefault){
39067             return;
39068         }
39069         
39070         e.preventDefault();
39071         
39072         if (this.activeClass != '') {
39073             this.selectBrick();
39074         }
39075         
39076         this.fireEvent('click', this, e);
39077     },
39078     
39079     enter: function(e, el)
39080     {
39081         e.preventDefault();
39082         
39083         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
39084             return;
39085         }
39086         
39087         if(this.bgimage.length && this.html.length){
39088             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
39089         }
39090     },
39091     
39092     leave: function(e, el)
39093     {
39094         e.preventDefault();
39095         
39096         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
39097             return;
39098         }
39099         
39100         if(this.bgimage.length && this.html.length){
39101             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
39102         }
39103     },
39104     
39105     onTouchStart: function(e, el)
39106     {
39107 //        e.preventDefault();
39108         
39109         this.touchmoved = false;
39110         
39111         if(!this.isFitContainer){
39112             return;
39113         }
39114         
39115         if(!this.bgimage.length || !this.html.length){
39116             return;
39117         }
39118         
39119         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
39120         
39121         this.timer = new Date().getTime();
39122         
39123     },
39124     
39125     onTouchMove: function(e, el)
39126     {
39127         this.touchmoved = true;
39128     },
39129     
39130     onContextMenu : function(e,el)
39131     {
39132         e.preventDefault();
39133         e.stopPropagation();
39134         return false;
39135     },
39136     
39137     onTouchEnd: function(e, el)
39138     {
39139 //        e.preventDefault();
39140         
39141         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
39142         
39143             this.leave(e,el);
39144             
39145             return;
39146         }
39147         
39148         if(!this.bgimage.length || !this.html.length){
39149             
39150             if(this.href.length){
39151                 window.location.href = this.href;
39152             }
39153             
39154             return;
39155         }
39156         
39157         if(!this.isFitContainer){
39158             return;
39159         }
39160         
39161         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
39162         
39163         window.location.href = this.href;
39164     },
39165     
39166     //selection on single brick only
39167     selectBrick : function() {
39168         
39169         if (!this.parentId) {
39170             return;
39171         }
39172         
39173         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
39174         var index = m.selectedBrick.indexOf(this.id);
39175         
39176         if ( index > -1) {
39177             m.selectedBrick.splice(index,1);
39178             this.el.removeClass(this.activeClass);
39179             return;
39180         }
39181         
39182         for(var i = 0; i < m.selectedBrick.length; i++) {
39183             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
39184             b.el.removeClass(b.activeClass);
39185         }
39186         
39187         m.selectedBrick = [];
39188         
39189         m.selectedBrick.push(this.id);
39190         this.el.addClass(this.activeClass);
39191         return;
39192     },
39193     
39194     isSelected : function(){
39195         return this.el.hasClass(this.activeClass);
39196         
39197     }
39198 });
39199
39200 Roo.apply(Roo.bootstrap.MasonryBrick, {
39201     
39202     //groups: {},
39203     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
39204      /**
39205     * register a Masonry Brick
39206     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
39207     */
39208     
39209     register : function(brick)
39210     {
39211         //this.groups[brick.id] = brick;
39212         this.groups.add(brick.id, brick);
39213     },
39214     /**
39215     * fetch a  masonry brick based on the masonry brick ID
39216     * @param {string} the masonry brick to add
39217     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
39218     */
39219     
39220     get: function(brick_id) 
39221     {
39222         // if (typeof(this.groups[brick_id]) == 'undefined') {
39223         //     return false;
39224         // }
39225         // return this.groups[brick_id] ;
39226         
39227         if(this.groups.key(brick_id)) {
39228             return this.groups.key(brick_id);
39229         }
39230         
39231         return false;
39232     }
39233     
39234     
39235     
39236 });
39237
39238  /*
39239  * - LGPL
39240  *
39241  * element
39242  * 
39243  */
39244
39245 /**
39246  * @class Roo.bootstrap.Brick
39247  * @extends Roo.bootstrap.Component
39248  * Bootstrap Brick class
39249  * 
39250  * @constructor
39251  * Create a new Brick
39252  * @param {Object} config The config object
39253  */
39254
39255 Roo.bootstrap.Brick = function(config){
39256     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
39257     
39258     this.addEvents({
39259         // raw events
39260         /**
39261          * @event click
39262          * When a Brick is click
39263          * @param {Roo.bootstrap.Brick} this
39264          * @param {Roo.EventObject} e
39265          */
39266         "click" : true
39267     });
39268 };
39269
39270 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
39271     
39272     /**
39273      * @cfg {String} title
39274      */   
39275     title : '',
39276     /**
39277      * @cfg {String} html
39278      */   
39279     html : '',
39280     /**
39281      * @cfg {String} bgimage
39282      */   
39283     bgimage : '',
39284     /**
39285      * @cfg {String} cls
39286      */   
39287     cls : '',
39288     /**
39289      * @cfg {String} href
39290      */   
39291     href : '',
39292     /**
39293      * @cfg {String} video
39294      */   
39295     video : '',
39296     /**
39297      * @cfg {Boolean} square
39298      */   
39299     square : true,
39300     
39301     getAutoCreate : function()
39302     {
39303         var cls = 'roo-brick';
39304         
39305         if(this.href.length){
39306             cls += ' roo-brick-link';
39307         }
39308         
39309         if(this.bgimage.length){
39310             cls += ' roo-brick-image';
39311         }
39312         
39313         if(!this.html.length && !this.bgimage.length){
39314             cls += ' roo-brick-center-title';
39315         }
39316         
39317         if(!this.html.length && this.bgimage.length){
39318             cls += ' roo-brick-bottom-title';
39319         }
39320         
39321         if(this.cls){
39322             cls += ' ' + this.cls;
39323         }
39324         
39325         var cfg = {
39326             tag: (this.href.length) ? 'a' : 'div',
39327             cls: cls,
39328             cn: [
39329                 {
39330                     tag: 'div',
39331                     cls: 'roo-brick-paragraph',
39332                     cn: []
39333                 }
39334             ]
39335         };
39336         
39337         if(this.href.length){
39338             cfg.href = this.href;
39339         }
39340         
39341         var cn = cfg.cn[0].cn;
39342         
39343         if(this.title.length){
39344             cn.push({
39345                 tag: 'h4',
39346                 cls: 'roo-brick-title',
39347                 html: this.title
39348             });
39349         }
39350         
39351         if(this.html.length){
39352             cn.push({
39353                 tag: 'p',
39354                 cls: 'roo-brick-text',
39355                 html: this.html
39356             });
39357         } else {
39358             cn.cls += ' hide';
39359         }
39360         
39361         if(this.bgimage.length){
39362             cfg.cn.push({
39363                 tag: 'img',
39364                 cls: 'roo-brick-image-view',
39365                 src: this.bgimage
39366             });
39367         }
39368         
39369         return cfg;
39370     },
39371     
39372     initEvents: function() 
39373     {
39374         if(this.title.length || this.html.length){
39375             this.el.on('mouseenter'  ,this.enter, this);
39376             this.el.on('mouseleave', this.leave, this);
39377         }
39378         
39379         Roo.EventManager.onWindowResize(this.resize, this); 
39380         
39381         if(this.bgimage.length){
39382             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
39383             this.imageEl.on('load', this.onImageLoad, this);
39384             return;
39385         }
39386         
39387         this.resize();
39388     },
39389     
39390     onImageLoad : function()
39391     {
39392         this.resize();
39393     },
39394     
39395     resize : function()
39396     {
39397         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
39398         
39399         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
39400         
39401         if(this.bgimage.length){
39402             var image = this.el.select('.roo-brick-image-view', true).first();
39403             
39404             image.setWidth(paragraph.getWidth());
39405             
39406             if(this.square){
39407                 image.setHeight(paragraph.getWidth());
39408             }
39409             
39410             this.el.setHeight(image.getHeight());
39411             paragraph.setHeight(image.getHeight());
39412             
39413         }
39414         
39415     },
39416     
39417     enter: function(e, el)
39418     {
39419         e.preventDefault();
39420         
39421         if(this.bgimage.length){
39422             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
39423             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
39424         }
39425     },
39426     
39427     leave: function(e, el)
39428     {
39429         e.preventDefault();
39430         
39431         if(this.bgimage.length){
39432             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
39433             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
39434         }
39435     }
39436     
39437 });
39438
39439  
39440
39441  /*
39442  * - LGPL
39443  *
39444  * Number field 
39445  */
39446
39447 /**
39448  * @class Roo.bootstrap.form.NumberField
39449  * @extends Roo.bootstrap.form.Input
39450  * Bootstrap NumberField class
39451  * 
39452  * 
39453  * 
39454  * 
39455  * @constructor
39456  * Create a new NumberField
39457  * @param {Object} config The config object
39458  */
39459
39460 Roo.bootstrap.form.NumberField = function(config){
39461     Roo.bootstrap.form.NumberField.superclass.constructor.call(this, config);
39462 };
39463
39464 Roo.extend(Roo.bootstrap.form.NumberField, Roo.bootstrap.form.Input, {
39465     
39466     /**
39467      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
39468      */
39469     allowDecimals : true,
39470     /**
39471      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
39472      */
39473     decimalSeparator : ".",
39474     /**
39475      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
39476      */
39477     decimalPrecision : 2,
39478     /**
39479      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
39480      */
39481     allowNegative : true,
39482     
39483     /**
39484      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
39485      */
39486     allowZero: true,
39487     /**
39488      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
39489      */
39490     minValue : Number.NEGATIVE_INFINITY,
39491     /**
39492      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
39493      */
39494     maxValue : Number.MAX_VALUE,
39495     /**
39496      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
39497      */
39498     minText : "The minimum value for this field is {0}",
39499     /**
39500      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
39501      */
39502     maxText : "The maximum value for this field is {0}",
39503     /**
39504      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
39505      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
39506      */
39507     nanText : "{0} is not a valid number",
39508     /**
39509      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
39510      */
39511     thousandsDelimiter : false,
39512     /**
39513      * @cfg {String} valueAlign alignment of value
39514      */
39515     valueAlign : "left",
39516
39517     getAutoCreate : function()
39518     {
39519         var hiddenInput = {
39520             tag: 'input',
39521             type: 'hidden',
39522             id: Roo.id(),
39523             cls: 'hidden-number-input'
39524         };
39525         
39526         if (this.name) {
39527             hiddenInput.name = this.name;
39528         }
39529         
39530         this.name = '';
39531         
39532         var cfg = Roo.bootstrap.form.NumberField.superclass.getAutoCreate.call(this);
39533         
39534         this.name = hiddenInput.name;
39535         
39536         if(cfg.cn.length > 0) {
39537             cfg.cn.push(hiddenInput);
39538         }
39539         
39540         return cfg;
39541     },
39542
39543     // private
39544     initEvents : function()
39545     {   
39546         Roo.bootstrap.form.NumberField.superclass.initEvents.call(this);
39547         
39548         var allowed = "0123456789";
39549         
39550         if(this.allowDecimals){
39551             allowed += this.decimalSeparator;
39552         }
39553         
39554         if(this.allowNegative){
39555             allowed += "-";
39556         }
39557         
39558         if(this.thousandsDelimiter) {
39559             allowed += ",";
39560         }
39561         
39562         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
39563         
39564         var keyPress = function(e){
39565             
39566             var k = e.getKey();
39567             
39568             var c = e.getCharCode();
39569             
39570             if(
39571                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
39572                     allowed.indexOf(String.fromCharCode(c)) === -1
39573             ){
39574                 e.stopEvent();
39575                 return;
39576             }
39577             
39578             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
39579                 return;
39580             }
39581             
39582             if(allowed.indexOf(String.fromCharCode(c)) === -1){
39583                 e.stopEvent();
39584             }
39585         };
39586         
39587         this.el.on("keypress", keyPress, this);
39588     },
39589     
39590     validateValue : function(value)
39591     {
39592         
39593         if(!Roo.bootstrap.form.NumberField.superclass.validateValue.call(this, value)){
39594             return false;
39595         }
39596         
39597         var num = this.parseValue(value);
39598         
39599         if(isNaN(num)){
39600             this.markInvalid(String.format(this.nanText, value));
39601             return false;
39602         }
39603         
39604         if(num < this.minValue){
39605             this.markInvalid(String.format(this.minText, this.minValue));
39606             return false;
39607         }
39608         
39609         if(num > this.maxValue){
39610             this.markInvalid(String.format(this.maxText, this.maxValue));
39611             return false;
39612         }
39613         
39614         return true;
39615     },
39616
39617     getValue : function()
39618     {
39619         var v = this.hiddenEl().getValue();
39620         
39621         return this.fixPrecision(this.parseValue(v));
39622     },
39623
39624     parseValue : function(value)
39625     {
39626         if(this.thousandsDelimiter) {
39627             value += "";
39628             r = new RegExp(",", "g");
39629             value = value.replace(r, "");
39630         }
39631         
39632         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
39633         return isNaN(value) ? '' : value;
39634     },
39635
39636     fixPrecision : function(value)
39637     {
39638         if(this.thousandsDelimiter) {
39639             value += "";
39640             r = new RegExp(",", "g");
39641             value = value.replace(r, "");
39642         }
39643         
39644         var nan = isNaN(value);
39645         
39646         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
39647             return nan ? '' : value;
39648         }
39649         return parseFloat(value).toFixed(this.decimalPrecision);
39650     },
39651
39652     setValue : function(v)
39653     {
39654         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
39655         
39656         this.value = v;
39657         
39658         if(this.rendered){
39659             
39660             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
39661             
39662             this.inputEl().dom.value = (v == '') ? '' :
39663                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
39664             
39665             if(!this.allowZero && v === '0') {
39666                 this.hiddenEl().dom.value = '';
39667                 this.inputEl().dom.value = '';
39668             }
39669             
39670             this.validate();
39671         }
39672     },
39673
39674     decimalPrecisionFcn : function(v)
39675     {
39676         return Math.floor(v);
39677     },
39678
39679     beforeBlur : function()
39680     {
39681         var v = this.parseValue(this.getRawValue());
39682         
39683         if(v || v === 0 || v === ''){
39684             this.setValue(v);
39685         }
39686     },
39687     
39688     hiddenEl : function()
39689     {
39690         return this.el.select('input.hidden-number-input',true).first();
39691     }
39692     
39693 });
39694
39695  
39696
39697 /*
39698 * Licence: LGPL
39699 */
39700
39701 /**
39702  * @class Roo.bootstrap.DocumentSlider
39703  * @extends Roo.bootstrap.Component
39704  * Bootstrap DocumentSlider class
39705  * 
39706  * @constructor
39707  * Create a new DocumentViewer
39708  * @param {Object} config The config object
39709  */
39710
39711 Roo.bootstrap.DocumentSlider = function(config){
39712     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
39713     
39714     this.files = [];
39715     
39716     this.addEvents({
39717         /**
39718          * @event initial
39719          * Fire after initEvent
39720          * @param {Roo.bootstrap.DocumentSlider} this
39721          */
39722         "initial" : true,
39723         /**
39724          * @event update
39725          * Fire after update
39726          * @param {Roo.bootstrap.DocumentSlider} this
39727          */
39728         "update" : true,
39729         /**
39730          * @event click
39731          * Fire after click
39732          * @param {Roo.bootstrap.DocumentSlider} this
39733          */
39734         "click" : true
39735     });
39736 };
39737
39738 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
39739     
39740     files : false,
39741     
39742     indicator : 0,
39743     
39744     getAutoCreate : function()
39745     {
39746         var cfg = {
39747             tag : 'div',
39748             cls : 'roo-document-slider',
39749             cn : [
39750                 {
39751                     tag : 'div',
39752                     cls : 'roo-document-slider-header',
39753                     cn : [
39754                         {
39755                             tag : 'div',
39756                             cls : 'roo-document-slider-header-title'
39757                         }
39758                     ]
39759                 },
39760                 {
39761                     tag : 'div',
39762                     cls : 'roo-document-slider-body',
39763                     cn : [
39764                         {
39765                             tag : 'div',
39766                             cls : 'roo-document-slider-prev',
39767                             cn : [
39768                                 {
39769                                     tag : 'i',
39770                                     cls : 'fa fa-chevron-left'
39771                                 }
39772                             ]
39773                         },
39774                         {
39775                             tag : 'div',
39776                             cls : 'roo-document-slider-thumb',
39777                             cn : [
39778                                 {
39779                                     tag : 'img',
39780                                     cls : 'roo-document-slider-image'
39781                                 }
39782                             ]
39783                         },
39784                         {
39785                             tag : 'div',
39786                             cls : 'roo-document-slider-next',
39787                             cn : [
39788                                 {
39789                                     tag : 'i',
39790                                     cls : 'fa fa-chevron-right'
39791                                 }
39792                             ]
39793                         }
39794                     ]
39795                 }
39796             ]
39797         };
39798         
39799         return cfg;
39800     },
39801     
39802     initEvents : function()
39803     {
39804         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
39805         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
39806         
39807         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
39808         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
39809         
39810         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
39811         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
39812         
39813         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
39814         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
39815         
39816         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
39817         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
39818         
39819         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
39820         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
39821         
39822         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
39823         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
39824         
39825         this.thumbEl.on('click', this.onClick, this);
39826         
39827         this.prevIndicator.on('click', this.prev, this);
39828         
39829         this.nextIndicator.on('click', this.next, this);
39830         
39831     },
39832     
39833     initial : function()
39834     {
39835         if(this.files.length){
39836             this.indicator = 1;
39837             this.update()
39838         }
39839         
39840         this.fireEvent('initial', this);
39841     },
39842     
39843     update : function()
39844     {
39845         this.imageEl.attr('src', this.files[this.indicator - 1]);
39846         
39847         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
39848         
39849         this.prevIndicator.show();
39850         
39851         if(this.indicator == 1){
39852             this.prevIndicator.hide();
39853         }
39854         
39855         this.nextIndicator.show();
39856         
39857         if(this.indicator == this.files.length){
39858             this.nextIndicator.hide();
39859         }
39860         
39861         this.thumbEl.scrollTo('top');
39862         
39863         this.fireEvent('update', this);
39864     },
39865     
39866     onClick : function(e)
39867     {
39868         e.preventDefault();
39869         
39870         this.fireEvent('click', this);
39871     },
39872     
39873     prev : function(e)
39874     {
39875         e.preventDefault();
39876         
39877         this.indicator = Math.max(1, this.indicator - 1);
39878         
39879         this.update();
39880     },
39881     
39882     next : function(e)
39883     {
39884         e.preventDefault();
39885         
39886         this.indicator = Math.min(this.files.length, this.indicator + 1);
39887         
39888         this.update();
39889     }
39890 });
39891 /*
39892  * - LGPL
39893  *
39894  * RadioSet
39895  *
39896  *
39897  */
39898
39899 /**
39900  * @class Roo.bootstrap.form.RadioSet
39901  * @extends Roo.bootstrap.form.Input
39902  * @children Roo.bootstrap.form.Radio
39903  * Bootstrap RadioSet class
39904  * @cfg {String} indicatorpos (left|right) default left
39905  * @cfg {Boolean} inline (true|false) inline the element (default true)
39906  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
39907  * @constructor
39908  * Create a new RadioSet
39909  * @param {Object} config The config object
39910  */
39911
39912 Roo.bootstrap.form.RadioSet = function(config){
39913     
39914     Roo.bootstrap.form.RadioSet.superclass.constructor.call(this, config);
39915     
39916     this.radioes = [];
39917     
39918     Roo.bootstrap.form.RadioSet.register(this);
39919     
39920     this.addEvents({
39921         /**
39922         * @event check
39923         * Fires when the element is checked or unchecked.
39924         * @param {Roo.bootstrap.form.RadioSet} this This radio
39925         * @param {Roo.bootstrap.form.Radio} item The checked item
39926         */
39927        check : true,
39928        /**
39929         * @event click
39930         * Fires when the element is click.
39931         * @param {Roo.bootstrap.form.RadioSet} this This radio set
39932         * @param {Roo.bootstrap.form.Radio} item The checked item
39933         * @param {Roo.EventObject} e The event object
39934         */
39935        click : true
39936     });
39937     
39938 };
39939
39940 Roo.extend(Roo.bootstrap.form.RadioSet, Roo.bootstrap.form.Input,  {
39941
39942     radioes : false,
39943     
39944     inline : true,
39945     
39946     weight : '',
39947     
39948     indicatorpos : 'left',
39949     
39950     getAutoCreate : function()
39951     {
39952         var label = {
39953             tag : 'label',
39954             cls : 'roo-radio-set-label',
39955             cn : [
39956                 {
39957                     tag : 'span',
39958                     html : this.fieldLabel
39959                 }
39960             ]
39961         };
39962         if (Roo.bootstrap.version == 3) {
39963             
39964             
39965             if(this.indicatorpos == 'left'){
39966                 label.cn.unshift({
39967                     tag : 'i',
39968                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
39969                     tooltip : 'This field is required'
39970                 });
39971             } else {
39972                 label.cn.push({
39973                     tag : 'i',
39974                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
39975                     tooltip : 'This field is required'
39976                 });
39977             }
39978         }
39979         var items = {
39980             tag : 'div',
39981             cls : 'roo-radio-set-items'
39982         };
39983         
39984         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
39985         
39986         if (align === 'left' && this.fieldLabel.length) {
39987             
39988             items = {
39989                 cls : "roo-radio-set-right", 
39990                 cn: [
39991                     items
39992                 ]
39993             };
39994             
39995             if(this.labelWidth > 12){
39996                 label.style = "width: " + this.labelWidth + 'px';
39997             }
39998             
39999             if(this.labelWidth < 13 && this.labelmd == 0){
40000                 this.labelmd = this.labelWidth;
40001             }
40002             
40003             if(this.labellg > 0){
40004                 label.cls += ' col-lg-' + this.labellg;
40005                 items.cls += ' col-lg-' + (12 - this.labellg);
40006             }
40007             
40008             if(this.labelmd > 0){
40009                 label.cls += ' col-md-' + this.labelmd;
40010                 items.cls += ' col-md-' + (12 - this.labelmd);
40011             }
40012             
40013             if(this.labelsm > 0){
40014                 label.cls += ' col-sm-' + this.labelsm;
40015                 items.cls += ' col-sm-' + (12 - this.labelsm);
40016             }
40017             
40018             if(this.labelxs > 0){
40019                 label.cls += ' col-xs-' + this.labelxs;
40020                 items.cls += ' col-xs-' + (12 - this.labelxs);
40021             }
40022         }
40023         
40024         var cfg = {
40025             tag : 'div',
40026             cls : 'roo-radio-set',
40027             cn : [
40028                 {
40029                     tag : 'input',
40030                     cls : 'roo-radio-set-input',
40031                     type : 'hidden',
40032                     name : this.name,
40033                     value : this.value ? this.value :  ''
40034                 },
40035                 label,
40036                 items
40037             ]
40038         };
40039         
40040         if(this.weight.length){
40041             cfg.cls += ' roo-radio-' + this.weight;
40042         }
40043         
40044         if(this.inline) {
40045             cfg.cls += ' roo-radio-set-inline';
40046         }
40047         
40048         var settings=this;
40049         ['xs','sm','md','lg'].map(function(size){
40050             if (settings[size]) {
40051                 cfg.cls += ' col-' + size + '-' + settings[size];
40052             }
40053         });
40054         
40055         return cfg;
40056         
40057     },
40058
40059     initEvents : function()
40060     {
40061         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
40062         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
40063         
40064         if(!this.fieldLabel.length){
40065             this.labelEl.hide();
40066         }
40067         
40068         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
40069         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
40070         
40071         this.indicator = this.indicatorEl();
40072         
40073         if(this.indicator){
40074             this.indicator.addClass('invisible');
40075         }
40076         
40077         this.originalValue = this.getValue();
40078         
40079     },
40080     
40081     inputEl: function ()
40082     {
40083         return this.el.select('.roo-radio-set-input', true).first();
40084     },
40085     
40086     getChildContainer : function()
40087     {
40088         return this.itemsEl;
40089     },
40090     
40091     register : function(item)
40092     {
40093         this.radioes.push(item);
40094         
40095     },
40096     
40097     validate : function()
40098     {   
40099         if(this.getVisibilityEl().hasClass('hidden')){
40100             return true;
40101         }
40102         
40103         var valid = false;
40104         
40105         Roo.each(this.radioes, function(i){
40106             if(!i.checked){
40107                 return;
40108             }
40109             
40110             valid = true;
40111             return false;
40112         });
40113         
40114         if(this.allowBlank) {
40115             return true;
40116         }
40117         
40118         if(this.disabled || valid){
40119             this.markValid();
40120             return true;
40121         }
40122         
40123         this.markInvalid();
40124         return false;
40125         
40126     },
40127     
40128     markValid : function()
40129     {
40130         if(this.labelEl.isVisible(true) && this.indicatorEl()){
40131             this.indicatorEl().removeClass('visible');
40132             this.indicatorEl().addClass('invisible');
40133         }
40134         
40135         
40136         if (Roo.bootstrap.version == 3) {
40137             this.el.removeClass([this.invalidClass, this.validClass]);
40138             this.el.addClass(this.validClass);
40139         } else {
40140             this.el.removeClass(['is-invalid','is-valid']);
40141             this.el.addClass(['is-valid']);
40142         }
40143         this.fireEvent('valid', this);
40144     },
40145     
40146     markInvalid : function(msg)
40147     {
40148         if(this.allowBlank || this.disabled){
40149             return;
40150         }
40151         
40152         if(this.labelEl.isVisible(true) && this.indicatorEl()){
40153             this.indicatorEl().removeClass('invisible');
40154             this.indicatorEl().addClass('visible');
40155         }
40156         if (Roo.bootstrap.version == 3) {
40157             this.el.removeClass([this.invalidClass, this.validClass]);
40158             this.el.addClass(this.invalidClass);
40159         } else {
40160             this.el.removeClass(['is-invalid','is-valid']);
40161             this.el.addClass(['is-invalid']);
40162         }
40163         
40164         this.fireEvent('invalid', this, msg);
40165         
40166     },
40167     
40168     setValue : function(v, suppressEvent)
40169     {   
40170         if(this.value === v){
40171             return;
40172         }
40173         
40174         this.value = v;
40175         
40176         if(this.rendered){
40177             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
40178         }
40179         
40180         Roo.each(this.radioes, function(i){
40181             i.checked = false;
40182             i.el.removeClass('checked');
40183         });
40184         
40185         Roo.each(this.radioes, function(i){
40186             
40187             if(i.value === v || i.value.toString() === v.toString()){
40188                 i.checked = true;
40189                 i.el.addClass('checked');
40190                 
40191                 if(suppressEvent !== true){
40192                     this.fireEvent('check', this, i);
40193                 }
40194                 
40195                 return false;
40196             }
40197             
40198         }, this);
40199         
40200         this.validate();
40201     },
40202     
40203     clearInvalid : function(){
40204         
40205         if(!this.el || this.preventMark){
40206             return;
40207         }
40208         
40209         this.el.removeClass([this.invalidClass]);
40210         
40211         this.fireEvent('valid', this);
40212     }
40213     
40214 });
40215
40216 Roo.apply(Roo.bootstrap.form.RadioSet, {
40217     
40218     groups: {},
40219     
40220     register : function(set)
40221     {
40222         this.groups[set.name] = set;
40223     },
40224     
40225     get: function(name) 
40226     {
40227         if (typeof(this.groups[name]) == 'undefined') {
40228             return false;
40229         }
40230         
40231         return this.groups[name] ;
40232     }
40233     
40234 });
40235 /*
40236  * Based on:
40237  * Ext JS Library 1.1.1
40238  * Copyright(c) 2006-2007, Ext JS, LLC.
40239  *
40240  * Originally Released Under LGPL - original licence link has changed is not relivant.
40241  *
40242  * Fork - LGPL
40243  * <script type="text/javascript">
40244  */
40245
40246
40247 /**
40248  * @class Roo.bootstrap.SplitBar
40249  * @extends Roo.util.Observable
40250  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
40251  * <br><br>
40252  * Usage:
40253  * <pre><code>
40254 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
40255                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
40256 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
40257 split.minSize = 100;
40258 split.maxSize = 600;
40259 split.animate = true;
40260 split.on('moved', splitterMoved);
40261 </code></pre>
40262  * @constructor
40263  * Create a new SplitBar
40264  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
40265  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
40266  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
40267  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
40268                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
40269                         position of the SplitBar).
40270  */
40271 Roo.bootstrap.SplitBar = function(cfg){
40272     
40273     /** @private */
40274     
40275     //{
40276     //  dragElement : elm
40277     //  resizingElement: el,
40278         // optional..
40279     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
40280     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
40281         // existingProxy ???
40282     //}
40283     
40284     this.el = Roo.get(cfg.dragElement, true);
40285     this.el.dom.unselectable = "on";
40286     /** @private */
40287     this.resizingEl = Roo.get(cfg.resizingElement, true);
40288
40289     /**
40290      * @private
40291      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
40292      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
40293      * @type Number
40294      */
40295     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
40296     
40297     /**
40298      * The minimum size of the resizing element. (Defaults to 0)
40299      * @type Number
40300      */
40301     this.minSize = 0;
40302     
40303     /**
40304      * The maximum size of the resizing element. (Defaults to 2000)
40305      * @type Number
40306      */
40307     this.maxSize = 2000;
40308     
40309     /**
40310      * Whether to animate the transition to the new size
40311      * @type Boolean
40312      */
40313     this.animate = false;
40314     
40315     /**
40316      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
40317      * @type Boolean
40318      */
40319     this.useShim = false;
40320     
40321     /** @private */
40322     this.shim = null;
40323     
40324     if(!cfg.existingProxy){
40325         /** @private */
40326         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
40327     }else{
40328         this.proxy = Roo.get(cfg.existingProxy).dom;
40329     }
40330     /** @private */
40331     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
40332     
40333     /** @private */
40334     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
40335     
40336     /** @private */
40337     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
40338     
40339     /** @private */
40340     this.dragSpecs = {};
40341     
40342     /**
40343      * @private The adapter to use to positon and resize elements
40344      */
40345     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
40346     this.adapter.init(this);
40347     
40348     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
40349         /** @private */
40350         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
40351         this.el.addClass("roo-splitbar-h");
40352     }else{
40353         /** @private */
40354         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
40355         this.el.addClass("roo-splitbar-v");
40356     }
40357     
40358     this.addEvents({
40359         /**
40360          * @event resize
40361          * Fires when the splitter is moved (alias for {@link #event-moved})
40362          * @param {Roo.bootstrap.SplitBar} this
40363          * @param {Number} newSize the new width or height
40364          */
40365         "resize" : true,
40366         /**
40367          * @event moved
40368          * Fires when the splitter is moved
40369          * @param {Roo.bootstrap.SplitBar} this
40370          * @param {Number} newSize the new width or height
40371          */
40372         "moved" : true,
40373         /**
40374          * @event beforeresize
40375          * Fires before the splitter is dragged
40376          * @param {Roo.bootstrap.SplitBar} this
40377          */
40378         "beforeresize" : true,
40379
40380         "beforeapply" : true
40381     });
40382
40383     Roo.util.Observable.call(this);
40384 };
40385
40386 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
40387     onStartProxyDrag : function(x, y){
40388         this.fireEvent("beforeresize", this);
40389         if(!this.overlay){
40390             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
40391             o.unselectable();
40392             o.enableDisplayMode("block");
40393             // all splitbars share the same overlay
40394             Roo.bootstrap.SplitBar.prototype.overlay = o;
40395         }
40396         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
40397         this.overlay.show();
40398         Roo.get(this.proxy).setDisplayed("block");
40399         var size = this.adapter.getElementSize(this);
40400         this.activeMinSize = this.getMinimumSize();;
40401         this.activeMaxSize = this.getMaximumSize();;
40402         var c1 = size - this.activeMinSize;
40403         var c2 = Math.max(this.activeMaxSize - size, 0);
40404         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
40405             this.dd.resetConstraints();
40406             this.dd.setXConstraint(
40407                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
40408                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
40409             );
40410             this.dd.setYConstraint(0, 0);
40411         }else{
40412             this.dd.resetConstraints();
40413             this.dd.setXConstraint(0, 0);
40414             this.dd.setYConstraint(
40415                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
40416                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
40417             );
40418          }
40419         this.dragSpecs.startSize = size;
40420         this.dragSpecs.startPoint = [x, y];
40421         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
40422     },
40423     
40424     /** 
40425      * @private Called after the drag operation by the DDProxy
40426      */
40427     onEndProxyDrag : function(e){
40428         Roo.get(this.proxy).setDisplayed(false);
40429         var endPoint = Roo.lib.Event.getXY(e);
40430         if(this.overlay){
40431             this.overlay.hide();
40432         }
40433         var newSize;
40434         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
40435             newSize = this.dragSpecs.startSize + 
40436                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
40437                     endPoint[0] - this.dragSpecs.startPoint[0] :
40438                     this.dragSpecs.startPoint[0] - endPoint[0]
40439                 );
40440         }else{
40441             newSize = this.dragSpecs.startSize + 
40442                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
40443                     endPoint[1] - this.dragSpecs.startPoint[1] :
40444                     this.dragSpecs.startPoint[1] - endPoint[1]
40445                 );
40446         }
40447         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
40448         if(newSize != this.dragSpecs.startSize){
40449             if(this.fireEvent('beforeapply', this, newSize) !== false){
40450                 this.adapter.setElementSize(this, newSize);
40451                 this.fireEvent("moved", this, newSize);
40452                 this.fireEvent("resize", this, newSize);
40453             }
40454         }
40455     },
40456     
40457     /**
40458      * Get the adapter this SplitBar uses
40459      * @return The adapter object
40460      */
40461     getAdapter : function(){
40462         return this.adapter;
40463     },
40464     
40465     /**
40466      * Set the adapter this SplitBar uses
40467      * @param {Object} adapter A SplitBar adapter object
40468      */
40469     setAdapter : function(adapter){
40470         this.adapter = adapter;
40471         this.adapter.init(this);
40472     },
40473     
40474     /**
40475      * Gets the minimum size for the resizing element
40476      * @return {Number} The minimum size
40477      */
40478     getMinimumSize : function(){
40479         return this.minSize;
40480     },
40481     
40482     /**
40483      * Sets the minimum size for the resizing element
40484      * @param {Number} minSize The minimum size
40485      */
40486     setMinimumSize : function(minSize){
40487         this.minSize = minSize;
40488     },
40489     
40490     /**
40491      * Gets the maximum size for the resizing element
40492      * @return {Number} The maximum size
40493      */
40494     getMaximumSize : function(){
40495         return this.maxSize;
40496     },
40497     
40498     /**
40499      * Sets the maximum size for the resizing element
40500      * @param {Number} maxSize The maximum size
40501      */
40502     setMaximumSize : function(maxSize){
40503         this.maxSize = maxSize;
40504     },
40505     
40506     /**
40507      * Sets the initialize size for the resizing element
40508      * @param {Number} size The initial size
40509      */
40510     setCurrentSize : function(size){
40511         var oldAnimate = this.animate;
40512         this.animate = false;
40513         this.adapter.setElementSize(this, size);
40514         this.animate = oldAnimate;
40515     },
40516     
40517     /**
40518      * Destroy this splitbar. 
40519      * @param {Boolean} removeEl True to remove the element
40520      */
40521     destroy : function(removeEl){
40522         if(this.shim){
40523             this.shim.remove();
40524         }
40525         this.dd.unreg();
40526         this.proxy.parentNode.removeChild(this.proxy);
40527         if(removeEl){
40528             this.el.remove();
40529         }
40530     }
40531 });
40532
40533 /**
40534  * @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.
40535  */
40536 Roo.bootstrap.SplitBar.createProxy = function(dir){
40537     var proxy = new Roo.Element(document.createElement("div"));
40538     proxy.unselectable();
40539     var cls = 'roo-splitbar-proxy';
40540     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
40541     document.body.appendChild(proxy.dom);
40542     return proxy.dom;
40543 };
40544
40545 /** 
40546  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
40547  * Default Adapter. It assumes the splitter and resizing element are not positioned
40548  * elements and only gets/sets the width of the element. Generally used for table based layouts.
40549  */
40550 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
40551 };
40552
40553 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
40554     // do nothing for now
40555     init : function(s){
40556     
40557     },
40558     /**
40559      * Called before drag operations to get the current size of the resizing element. 
40560      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
40561      */
40562      getElementSize : function(s){
40563         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
40564             return s.resizingEl.getWidth();
40565         }else{
40566             return s.resizingEl.getHeight();
40567         }
40568     },
40569     
40570     /**
40571      * Called after drag operations to set the size of the resizing element.
40572      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
40573      * @param {Number} newSize The new size to set
40574      * @param {Function} onComplete A function to be invoked when resizing is complete
40575      */
40576     setElementSize : function(s, newSize, onComplete){
40577         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
40578             if(!s.animate){
40579                 s.resizingEl.setWidth(newSize);
40580                 if(onComplete){
40581                     onComplete(s, newSize);
40582                 }
40583             }else{
40584                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
40585             }
40586         }else{
40587             
40588             if(!s.animate){
40589                 s.resizingEl.setHeight(newSize);
40590                 if(onComplete){
40591                     onComplete(s, newSize);
40592                 }
40593             }else{
40594                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
40595             }
40596         }
40597     }
40598 };
40599
40600 /** 
40601  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
40602  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
40603  * Adapter that  moves the splitter element to align with the resized sizing element. 
40604  * Used with an absolute positioned SplitBar.
40605  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
40606  * document.body, make sure you assign an id to the body element.
40607  */
40608 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
40609     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
40610     this.container = Roo.get(container);
40611 };
40612
40613 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
40614     init : function(s){
40615         this.basic.init(s);
40616     },
40617     
40618     getElementSize : function(s){
40619         return this.basic.getElementSize(s);
40620     },
40621     
40622     setElementSize : function(s, newSize, onComplete){
40623         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
40624     },
40625     
40626     moveSplitter : function(s){
40627         var yes = Roo.bootstrap.SplitBar;
40628         switch(s.placement){
40629             case yes.LEFT:
40630                 s.el.setX(s.resizingEl.getRight());
40631                 break;
40632             case yes.RIGHT:
40633                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
40634                 break;
40635             case yes.TOP:
40636                 s.el.setY(s.resizingEl.getBottom());
40637                 break;
40638             case yes.BOTTOM:
40639                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
40640                 break;
40641         }
40642     }
40643 };
40644
40645 /**
40646  * Orientation constant - Create a vertical SplitBar
40647  * @static
40648  * @type Number
40649  */
40650 Roo.bootstrap.SplitBar.VERTICAL = 1;
40651
40652 /**
40653  * Orientation constant - Create a horizontal SplitBar
40654  * @static
40655  * @type Number
40656  */
40657 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
40658
40659 /**
40660  * Placement constant - The resizing element is to the left of the splitter element
40661  * @static
40662  * @type Number
40663  */
40664 Roo.bootstrap.SplitBar.LEFT = 1;
40665
40666 /**
40667  * Placement constant - The resizing element is to the right of the splitter element
40668  * @static
40669  * @type Number
40670  */
40671 Roo.bootstrap.SplitBar.RIGHT = 2;
40672
40673 /**
40674  * Placement constant - The resizing element is positioned above the splitter element
40675  * @static
40676  * @type Number
40677  */
40678 Roo.bootstrap.SplitBar.TOP = 3;
40679
40680 /**
40681  * Placement constant - The resizing element is positioned under splitter element
40682  * @static
40683  * @type Number
40684  */
40685 Roo.bootstrap.SplitBar.BOTTOM = 4;
40686 /*
40687  * Based on:
40688  * Ext JS Library 1.1.1
40689  * Copyright(c) 2006-2007, Ext JS, LLC.
40690  *
40691  * Originally Released Under LGPL - original licence link has changed is not relivant.
40692  *
40693  * Fork - LGPL
40694  * <script type="text/javascript">
40695  */
40696
40697 /**
40698  * @class Roo.bootstrap.layout.Manager
40699  * @extends Roo.bootstrap.Component
40700  * @abstract
40701  * Base class for layout managers.
40702  */
40703 Roo.bootstrap.layout.Manager = function(config)
40704 {
40705     this.monitorWindowResize = true; // do this before we apply configuration.
40706     
40707     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
40708
40709
40710
40711
40712
40713     /** false to disable window resize monitoring @type Boolean */
40714     
40715     this.regions = {};
40716     this.addEvents({
40717         /**
40718          * @event layout
40719          * Fires when a layout is performed.
40720          * @param {Roo.LayoutManager} this
40721          */
40722         "layout" : true,
40723         /**
40724          * @event regionresized
40725          * Fires when the user resizes a region.
40726          * @param {Roo.LayoutRegion} region The resized region
40727          * @param {Number} newSize The new size (width for east/west, height for north/south)
40728          */
40729         "regionresized" : true,
40730         /**
40731          * @event regioncollapsed
40732          * Fires when a region is collapsed.
40733          * @param {Roo.LayoutRegion} region The collapsed region
40734          */
40735         "regioncollapsed" : true,
40736         /**
40737          * @event regionexpanded
40738          * Fires when a region is expanded.
40739          * @param {Roo.LayoutRegion} region The expanded region
40740          */
40741         "regionexpanded" : true
40742     });
40743     this.updating = false;
40744
40745     if (config.el) {
40746         this.el = Roo.get(config.el);
40747         this.initEvents();
40748     }
40749
40750 };
40751
40752 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
40753
40754
40755     regions : null,
40756
40757     monitorWindowResize : true,
40758
40759
40760     updating : false,
40761
40762
40763     onRender : function(ct, position)
40764     {
40765         if(!this.el){
40766             this.el = Roo.get(ct);
40767             this.initEvents();
40768         }
40769         //this.fireEvent('render',this);
40770     },
40771
40772
40773     initEvents: function()
40774     {
40775
40776
40777         // ie scrollbar fix
40778         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
40779             document.body.scroll = "no";
40780         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
40781             this.el.position('relative');
40782         }
40783         this.id = this.el.id;
40784         this.el.addClass("roo-layout-container");
40785         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
40786         if(this.el.dom != document.body ) {
40787             this.el.on('resize', this.layout,this);
40788             this.el.on('show', this.layout,this);
40789         }
40790
40791     },
40792
40793     /**
40794      * Returns true if this layout is currently being updated
40795      * @return {Boolean}
40796      */
40797     isUpdating : function(){
40798         return this.updating;
40799     },
40800
40801     /**
40802      * Suspend the LayoutManager from doing auto-layouts while
40803      * making multiple add or remove calls
40804      */
40805     beginUpdate : function(){
40806         this.updating = true;
40807     },
40808
40809     /**
40810      * Restore auto-layouts and optionally disable the manager from performing a layout
40811      * @param {Boolean} noLayout true to disable a layout update
40812      */
40813     endUpdate : function(noLayout){
40814         this.updating = false;
40815         if(!noLayout){
40816             this.layout();
40817         }
40818     },
40819
40820     layout: function(){
40821         // abstract...
40822     },
40823
40824     onRegionResized : function(region, newSize){
40825         this.fireEvent("regionresized", region, newSize);
40826         this.layout();
40827     },
40828
40829     onRegionCollapsed : function(region){
40830         this.fireEvent("regioncollapsed", region);
40831     },
40832
40833     onRegionExpanded : function(region){
40834         this.fireEvent("regionexpanded", region);
40835     },
40836
40837     /**
40838      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
40839      * performs box-model adjustments.
40840      * @return {Object} The size as an object {width: (the width), height: (the height)}
40841      */
40842     getViewSize : function()
40843     {
40844         var size;
40845         if(this.el.dom != document.body){
40846             size = this.el.getSize();
40847         }else{
40848             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
40849         }
40850         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
40851         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
40852         return size;
40853     },
40854
40855     /**
40856      * Returns the Element this layout is bound to.
40857      * @return {Roo.Element}
40858      */
40859     getEl : function(){
40860         return this.el;
40861     },
40862
40863     /**
40864      * Returns the specified region.
40865      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
40866      * @return {Roo.LayoutRegion}
40867      */
40868     getRegion : function(target){
40869         return this.regions[target.toLowerCase()];
40870     },
40871
40872     onWindowResize : function(){
40873         if(this.monitorWindowResize){
40874             this.layout();
40875         }
40876     }
40877 });
40878 /*
40879  * Based on:
40880  * Ext JS Library 1.1.1
40881  * Copyright(c) 2006-2007, Ext JS, LLC.
40882  *
40883  * Originally Released Under LGPL - original licence link has changed is not relivant.
40884  *
40885  * Fork - LGPL
40886  * <script type="text/javascript">
40887  */
40888 /**
40889  * @class Roo.bootstrap.layout.Border
40890  * @extends Roo.bootstrap.layout.Manager
40891  * @children Roo.bootstrap.panel.Content Roo.bootstrap.panel.Nest Roo.bootstrap.panel.Grid
40892  * @parent builder Roo.bootstrap.panel.Nest Roo.bootstrap.panel.Nest Roo.bootstrap.Modal
40893  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
40894  * please see: examples/bootstrap/nested.html<br><br>
40895  
40896 <b>The container the layout is rendered into can be either the body element or any other element.
40897 If it is not the body element, the container needs to either be an absolute positioned element,
40898 or you will need to add "position:relative" to the css of the container.  You will also need to specify
40899 the container size if it is not the body element.</b>
40900
40901 * @constructor
40902 * Create a new Border
40903 * @param {Object} config Configuration options
40904  */
40905 Roo.bootstrap.layout.Border = function(config){
40906     config = config || {};
40907     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
40908     
40909     
40910     
40911     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
40912         if(config[region]){
40913             config[region].region = region;
40914             this.addRegion(config[region]);
40915         }
40916     },this);
40917     
40918 };
40919
40920 Roo.bootstrap.layout.Border.regions =  ["center", "north","south","east","west"];
40921
40922 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
40923     
40924         /**
40925          * @cfg {Roo.bootstrap.layout.Region} center region to go in center
40926          */
40927         /**
40928          * @cfg {Roo.bootstrap.layout.Region} west region to go in west
40929          */
40930         /**
40931          * @cfg {Roo.bootstrap.layout.Region} east region to go in east
40932          */
40933         /**
40934          * @cfg {Roo.bootstrap.layout.Region} south region to go in south
40935          */
40936         /**
40937          * @cfg {Roo.bootstrap.layout.Region} north region to go in north
40938          */
40939         
40940         
40941         
40942         
40943     parent : false, // this might point to a 'nest' or a ???
40944     
40945     /**
40946      * Creates and adds a new region if it doesn't already exist.
40947      * @param {String} target The target region key (north, south, east, west or center).
40948      * @param {Object} config The regions config object
40949      * @return {BorderLayoutRegion} The new region
40950      */
40951     addRegion : function(config)
40952     {
40953         if(!this.regions[config.region]){
40954             var r = this.factory(config);
40955             this.bindRegion(r);
40956         }
40957         return this.regions[config.region];
40958     },
40959
40960     // private (kinda)
40961     bindRegion : function(r){
40962         this.regions[r.config.region] = r;
40963         
40964         r.on("visibilitychange",    this.layout, this);
40965         r.on("paneladded",          this.layout, this);
40966         r.on("panelremoved",        this.layout, this);
40967         r.on("invalidated",         this.layout, this);
40968         r.on("resized",             this.onRegionResized, this);
40969         r.on("collapsed",           this.onRegionCollapsed, this);
40970         r.on("expanded",            this.onRegionExpanded, this);
40971     },
40972
40973     /**
40974      * Performs a layout update.
40975      */
40976     layout : function()
40977     {
40978         if(this.updating) {
40979             return;
40980         }
40981         
40982         // render all the rebions if they have not been done alreayd?
40983         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
40984             if(this.regions[region] && !this.regions[region].bodyEl){
40985                 this.regions[region].onRender(this.el)
40986             }
40987         },this);
40988         
40989         var size = this.getViewSize();
40990         var w = size.width;
40991         var h = size.height;
40992         var centerW = w;
40993         var centerH = h;
40994         var centerY = 0;
40995         var centerX = 0;
40996         //var x = 0, y = 0;
40997
40998         var rs = this.regions;
40999         var north = rs["north"];
41000         var south = rs["south"]; 
41001         var west = rs["west"];
41002         var east = rs["east"];
41003         var center = rs["center"];
41004         //if(this.hideOnLayout){ // not supported anymore
41005             //c.el.setStyle("display", "none");
41006         //}
41007         if(north && north.isVisible()){
41008             var b = north.getBox();
41009             var m = north.getMargins();
41010             b.width = w - (m.left+m.right);
41011             b.x = m.left;
41012             b.y = m.top;
41013             centerY = b.height + b.y + m.bottom;
41014             centerH -= centerY;
41015             north.updateBox(this.safeBox(b));
41016         }
41017         if(south && south.isVisible()){
41018             var b = south.getBox();
41019             var m = south.getMargins();
41020             b.width = w - (m.left+m.right);
41021             b.x = m.left;
41022             var totalHeight = (b.height + m.top + m.bottom);
41023             b.y = h - totalHeight + m.top;
41024             centerH -= totalHeight;
41025             south.updateBox(this.safeBox(b));
41026         }
41027         if(west && west.isVisible()){
41028             var b = west.getBox();
41029             var m = west.getMargins();
41030             b.height = centerH - (m.top+m.bottom);
41031             b.x = m.left;
41032             b.y = centerY + m.top;
41033             var totalWidth = (b.width + m.left + m.right);
41034             centerX += totalWidth;
41035             centerW -= totalWidth;
41036             west.updateBox(this.safeBox(b));
41037         }
41038         if(east && east.isVisible()){
41039             var b = east.getBox();
41040             var m = east.getMargins();
41041             b.height = centerH - (m.top+m.bottom);
41042             var totalWidth = (b.width + m.left + m.right);
41043             b.x = w - totalWidth + m.left;
41044             b.y = centerY + m.top;
41045             centerW -= totalWidth;
41046             east.updateBox(this.safeBox(b));
41047         }
41048         if(center){
41049             var m = center.getMargins();
41050             var centerBox = {
41051                 x: centerX + m.left,
41052                 y: centerY + m.top,
41053                 width: centerW - (m.left+m.right),
41054                 height: centerH - (m.top+m.bottom)
41055             };
41056             //if(this.hideOnLayout){
41057                 //center.el.setStyle("display", "block");
41058             //}
41059             center.updateBox(this.safeBox(centerBox));
41060         }
41061         this.el.repaint();
41062         this.fireEvent("layout", this);
41063     },
41064
41065     // private
41066     safeBox : function(box){
41067         box.width = Math.max(0, box.width);
41068         box.height = Math.max(0, box.height);
41069         return box;
41070     },
41071
41072     /**
41073      * Adds a ContentPanel (or subclass) to this layout.
41074      * @param {String} target The target region key (north, south, east, west or center).
41075      * @param {Roo.ContentPanel} panel The panel to add
41076      * @return {Roo.ContentPanel} The added panel
41077      */
41078     add : function(target, panel){
41079          
41080         target = target.toLowerCase();
41081         return this.regions[target].add(panel);
41082     },
41083
41084     /**
41085      * Remove a ContentPanel (or subclass) to this layout.
41086      * @param {String} target The target region key (north, south, east, west or center).
41087      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
41088      * @return {Roo.ContentPanel} The removed panel
41089      */
41090     remove : function(target, panel){
41091         target = target.toLowerCase();
41092         return this.regions[target].remove(panel);
41093     },
41094
41095     /**
41096      * Searches all regions for a panel with the specified id
41097      * @param {String} panelId
41098      * @return {Roo.ContentPanel} The panel or null if it wasn't found
41099      */
41100     findPanel : function(panelId){
41101         var rs = this.regions;
41102         for(var target in rs){
41103             if(typeof rs[target] != "function"){
41104                 var p = rs[target].getPanel(panelId);
41105                 if(p){
41106                     return p;
41107                 }
41108             }
41109         }
41110         return null;
41111     },
41112
41113     /**
41114      * Searches all regions for a panel with the specified id and activates (shows) it.
41115      * @param {String/ContentPanel} panelId The panels id or the panel itself
41116      * @return {Roo.ContentPanel} The shown panel or null
41117      */
41118     showPanel : function(panelId) {
41119       var rs = this.regions;
41120       for(var target in rs){
41121          var r = rs[target];
41122          if(typeof r != "function"){
41123             if(r.hasPanel(panelId)){
41124                return r.showPanel(panelId);
41125             }
41126          }
41127       }
41128       return null;
41129    },
41130
41131    /**
41132      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
41133      * @param {Roo.state.Provider} provider (optional) An alternate state provider
41134      */
41135    /*
41136     restoreState : function(provider){
41137         if(!provider){
41138             provider = Roo.state.Manager;
41139         }
41140         var sm = new Roo.LayoutStateManager();
41141         sm.init(this, provider);
41142     },
41143 */
41144  
41145  
41146     /**
41147      * Adds a xtype elements to the layout.
41148      * <pre><code>
41149
41150 layout.addxtype({
41151        xtype : 'ContentPanel',
41152        region: 'west',
41153        items: [ .... ]
41154    }
41155 );
41156
41157 layout.addxtype({
41158         xtype : 'NestedLayoutPanel',
41159         region: 'west',
41160         layout: {
41161            center: { },
41162            west: { }   
41163         },
41164         items : [ ... list of content panels or nested layout panels.. ]
41165    }
41166 );
41167 </code></pre>
41168      * @param {Object} cfg Xtype definition of item to add.
41169      */
41170     addxtype : function(cfg)
41171     {
41172         // basically accepts a pannel...
41173         // can accept a layout region..!?!?
41174         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
41175         
41176         
41177         // theory?  children can only be panels??
41178         
41179         //if (!cfg.xtype.match(/Panel$/)) {
41180         //    return false;
41181         //}
41182         var ret = false;
41183         
41184         if (typeof(cfg.region) == 'undefined') {
41185             Roo.log("Failed to add Panel, region was not set");
41186             Roo.log(cfg);
41187             return false;
41188         }
41189         var region = cfg.region;
41190         delete cfg.region;
41191         
41192           
41193         var xitems = [];
41194         if (cfg.items) {
41195             xitems = cfg.items;
41196             delete cfg.items;
41197         }
41198         var nb = false;
41199         
41200         if ( region == 'center') {
41201             Roo.log("Center: " + cfg.title);
41202         }
41203         
41204         
41205         switch(cfg.xtype) 
41206         {
41207             case 'Content':  // ContentPanel (el, cfg)
41208             case 'Scroll':  // ContentPanel (el, cfg)
41209             case 'View': 
41210                 cfg.autoCreate = cfg.autoCreate || true;
41211                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
41212                 //} else {
41213                 //    var el = this.el.createChild();
41214                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
41215                 //}
41216                 
41217                 this.add(region, ret);
41218                 break;
41219             
41220             /*
41221             case 'TreePanel': // our new panel!
41222                 cfg.el = this.el.createChild();
41223                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
41224                 this.add(region, ret);
41225                 break;
41226             */
41227             
41228             case 'Nest': 
41229                 // create a new Layout (which is  a Border Layout...
41230                 
41231                 var clayout = cfg.layout;
41232                 clayout.el  = this.el.createChild();
41233                 clayout.items   = clayout.items  || [];
41234                 
41235                 delete cfg.layout;
41236                 
41237                 // replace this exitems with the clayout ones..
41238                 xitems = clayout.items;
41239                  
41240                 // force background off if it's in center...
41241                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
41242                     cfg.background = false;
41243                 }
41244                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
41245                 
41246                 
41247                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
41248                 //console.log('adding nested layout panel '  + cfg.toSource());
41249                 this.add(region, ret);
41250                 nb = {}; /// find first...
41251                 break;
41252             
41253             case 'Grid':
41254                 
41255                 // needs grid and region
41256                 
41257                 //var el = this.getRegion(region).el.createChild();
41258                 /*
41259                  *var el = this.el.createChild();
41260                 // create the grid first...
41261                 cfg.grid.container = el;
41262                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
41263                 */
41264                 
41265                 if (region == 'center' && this.active ) {
41266                     cfg.background = false;
41267                 }
41268                 
41269                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
41270                 
41271                 this.add(region, ret);
41272                 /*
41273                 if (cfg.background) {
41274                     // render grid on panel activation (if panel background)
41275                     ret.on('activate', function(gp) {
41276                         if (!gp.grid.rendered) {
41277                     //        gp.grid.render(el);
41278                         }
41279                     });
41280                 } else {
41281                   //  cfg.grid.render(el);
41282                 }
41283                 */
41284                 break;
41285            
41286            
41287             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
41288                 // it was the old xcomponent building that caused this before.
41289                 // espeically if border is the top element in the tree.
41290                 ret = this;
41291                 break; 
41292                 
41293                     
41294                 
41295                 
41296                 
41297             default:
41298                 /*
41299                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
41300                     
41301                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
41302                     this.add(region, ret);
41303                 } else {
41304                 */
41305                     Roo.log(cfg);
41306                     throw "Can not add '" + cfg.xtype + "' to Border";
41307                     return null;
41308              
41309                                 
41310              
41311         }
41312         this.beginUpdate();
41313         // add children..
41314         var region = '';
41315         var abn = {};
41316         Roo.each(xitems, function(i)  {
41317             region = nb && i.region ? i.region : false;
41318             
41319             var add = ret.addxtype(i);
41320            
41321             if (region) {
41322                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
41323                 if (!i.background) {
41324                     abn[region] = nb[region] ;
41325                 }
41326             }
41327             
41328         });
41329         this.endUpdate();
41330
41331         // make the last non-background panel active..
41332         //if (nb) { Roo.log(abn); }
41333         if (nb) {
41334             
41335             for(var r in abn) {
41336                 region = this.getRegion(r);
41337                 if (region) {
41338                     // tried using nb[r], but it does not work..
41339                      
41340                     region.showPanel(abn[r]);
41341                    
41342                 }
41343             }
41344         }
41345         return ret;
41346         
41347     },
41348     
41349     
41350 // private
41351     factory : function(cfg)
41352     {
41353         
41354         var validRegions = Roo.bootstrap.layout.Border.regions;
41355
41356         var target = cfg.region;
41357         cfg.mgr = this;
41358         
41359         var r = Roo.bootstrap.layout;
41360         Roo.log(target);
41361         switch(target){
41362             case "north":
41363                 return new r.North(cfg);
41364             case "south":
41365                 return new r.South(cfg);
41366             case "east":
41367                 return new r.East(cfg);
41368             case "west":
41369                 return new r.West(cfg);
41370             case "center":
41371                 return new r.Center(cfg);
41372         }
41373         throw 'Layout region "'+target+'" not supported.';
41374     }
41375     
41376     
41377 });
41378  /*
41379  * Based on:
41380  * Ext JS Library 1.1.1
41381  * Copyright(c) 2006-2007, Ext JS, LLC.
41382  *
41383  * Originally Released Under LGPL - original licence link has changed is not relivant.
41384  *
41385  * Fork - LGPL
41386  * <script type="text/javascript">
41387  */
41388  
41389 /**
41390  * @class Roo.bootstrap.layout.Basic
41391  * @extends Roo.util.Observable
41392  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
41393  * and does not have a titlebar, tabs or any other features. All it does is size and position 
41394  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
41395  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
41396  * @cfg {string}   region  the region that it inhabits..
41397  * @cfg {bool}   skipConfig skip config?
41398  * 
41399
41400  */
41401 Roo.bootstrap.layout.Basic = function(config){
41402     
41403     this.mgr = config.mgr;
41404     
41405     this.position = config.region;
41406     
41407     var skipConfig = config.skipConfig;
41408     
41409     this.events = {
41410         /**
41411          * @scope Roo.BasicLayoutRegion
41412          */
41413         
41414         /**
41415          * @event beforeremove
41416          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
41417          * @param {Roo.LayoutRegion} this
41418          * @param {Roo.ContentPanel} panel The panel
41419          * @param {Object} e The cancel event object
41420          */
41421         "beforeremove" : true,
41422         /**
41423          * @event invalidated
41424          * Fires when the layout for this region is changed.
41425          * @param {Roo.LayoutRegion} this
41426          */
41427         "invalidated" : true,
41428         /**
41429          * @event visibilitychange
41430          * Fires when this region is shown or hidden 
41431          * @param {Roo.LayoutRegion} this
41432          * @param {Boolean} visibility true or false
41433          */
41434         "visibilitychange" : true,
41435         /**
41436          * @event paneladded
41437          * Fires when a panel is added. 
41438          * @param {Roo.LayoutRegion} this
41439          * @param {Roo.ContentPanel} panel The panel
41440          */
41441         "paneladded" : true,
41442         /**
41443          * @event panelremoved
41444          * Fires when a panel is removed. 
41445          * @param {Roo.LayoutRegion} this
41446          * @param {Roo.ContentPanel} panel The panel
41447          */
41448         "panelremoved" : true,
41449         /**
41450          * @event beforecollapse
41451          * Fires when this region before collapse.
41452          * @param {Roo.LayoutRegion} this
41453          */
41454         "beforecollapse" : true,
41455         /**
41456          * @event collapsed
41457          * Fires when this region is collapsed.
41458          * @param {Roo.LayoutRegion} this
41459          */
41460         "collapsed" : true,
41461         /**
41462          * @event expanded
41463          * Fires when this region is expanded.
41464          * @param {Roo.LayoutRegion} this
41465          */
41466         "expanded" : true,
41467         /**
41468          * @event slideshow
41469          * Fires when this region is slid into view.
41470          * @param {Roo.LayoutRegion} this
41471          */
41472         "slideshow" : true,
41473         /**
41474          * @event slidehide
41475          * Fires when this region slides out of view. 
41476          * @param {Roo.LayoutRegion} this
41477          */
41478         "slidehide" : true,
41479         /**
41480          * @event panelactivated
41481          * Fires when a panel is activated. 
41482          * @param {Roo.LayoutRegion} this
41483          * @param {Roo.ContentPanel} panel The activated panel
41484          */
41485         "panelactivated" : true,
41486         /**
41487          * @event resized
41488          * Fires when the user resizes this region. 
41489          * @param {Roo.LayoutRegion} this
41490          * @param {Number} newSize The new size (width for east/west, height for north/south)
41491          */
41492         "resized" : true
41493     };
41494     /** A collection of panels in this region. @type Roo.util.MixedCollection */
41495     this.panels = new Roo.util.MixedCollection();
41496     this.panels.getKey = this.getPanelId.createDelegate(this);
41497     this.box = null;
41498     this.activePanel = null;
41499     // ensure listeners are added...
41500     
41501     if (config.listeners || config.events) {
41502         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
41503             listeners : config.listeners || {},
41504             events : config.events || {}
41505         });
41506     }
41507     
41508     if(skipConfig !== true){
41509         this.applyConfig(config);
41510     }
41511 };
41512
41513 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
41514 {
41515     getPanelId : function(p){
41516         return p.getId();
41517     },
41518     
41519     applyConfig : function(config){
41520         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
41521         this.config = config;
41522         
41523     },
41524     
41525     /**
41526      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
41527      * the width, for horizontal (north, south) the height.
41528      * @param {Number} newSize The new width or height
41529      */
41530     resizeTo : function(newSize){
41531         var el = this.el ? this.el :
41532                  (this.activePanel ? this.activePanel.getEl() : null);
41533         if(el){
41534             switch(this.position){
41535                 case "east":
41536                 case "west":
41537                     el.setWidth(newSize);
41538                     this.fireEvent("resized", this, newSize);
41539                 break;
41540                 case "north":
41541                 case "south":
41542                     el.setHeight(newSize);
41543                     this.fireEvent("resized", this, newSize);
41544                 break;                
41545             }
41546         }
41547     },
41548     
41549     getBox : function(){
41550         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
41551     },
41552     
41553     getMargins : function(){
41554         return this.margins;
41555     },
41556     
41557     updateBox : function(box){
41558         this.box = box;
41559         var el = this.activePanel.getEl();
41560         el.dom.style.left = box.x + "px";
41561         el.dom.style.top = box.y + "px";
41562         this.activePanel.setSize(box.width, box.height);
41563     },
41564     
41565     /**
41566      * Returns the container element for this region.
41567      * @return {Roo.Element}
41568      */
41569     getEl : function(){
41570         return this.activePanel;
41571     },
41572     
41573     /**
41574      * Returns true if this region is currently visible.
41575      * @return {Boolean}
41576      */
41577     isVisible : function(){
41578         return this.activePanel ? true : false;
41579     },
41580     
41581     setActivePanel : function(panel){
41582         panel = this.getPanel(panel);
41583         if(this.activePanel && this.activePanel != panel){
41584             this.activePanel.setActiveState(false);
41585             this.activePanel.getEl().setLeftTop(-10000,-10000);
41586         }
41587         this.activePanel = panel;
41588         panel.setActiveState(true);
41589         if(this.box){
41590             panel.setSize(this.box.width, this.box.height);
41591         }
41592         this.fireEvent("panelactivated", this, panel);
41593         this.fireEvent("invalidated");
41594     },
41595     
41596     /**
41597      * Show the specified panel.
41598      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
41599      * @return {Roo.ContentPanel} The shown panel or null
41600      */
41601     showPanel : function(panel){
41602         panel = this.getPanel(panel);
41603         if(panel){
41604             this.setActivePanel(panel);
41605         }
41606         return panel;
41607     },
41608     
41609     /**
41610      * Get the active panel for this region.
41611      * @return {Roo.ContentPanel} The active panel or null
41612      */
41613     getActivePanel : function(){
41614         return this.activePanel;
41615     },
41616     
41617     /**
41618      * Add the passed ContentPanel(s)
41619      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
41620      * @return {Roo.ContentPanel} The panel added (if only one was added)
41621      */
41622     add : function(panel){
41623         if(arguments.length > 1){
41624             for(var i = 0, len = arguments.length; i < len; i++) {
41625                 this.add(arguments[i]);
41626             }
41627             return null;
41628         }
41629         if(this.hasPanel(panel)){
41630             this.showPanel(panel);
41631             return panel;
41632         }
41633         var el = panel.getEl();
41634         if(el.dom.parentNode != this.mgr.el.dom){
41635             this.mgr.el.dom.appendChild(el.dom);
41636         }
41637         if(panel.setRegion){
41638             panel.setRegion(this);
41639         }
41640         this.panels.add(panel);
41641         el.setStyle("position", "absolute");
41642         if(!panel.background){
41643             this.setActivePanel(panel);
41644             if(this.config.initialSize && this.panels.getCount()==1){
41645                 this.resizeTo(this.config.initialSize);
41646             }
41647         }
41648         this.fireEvent("paneladded", this, panel);
41649         return panel;
41650     },
41651     
41652     /**
41653      * Returns true if the panel is in this region.
41654      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
41655      * @return {Boolean}
41656      */
41657     hasPanel : function(panel){
41658         if(typeof panel == "object"){ // must be panel obj
41659             panel = panel.getId();
41660         }
41661         return this.getPanel(panel) ? true : false;
41662     },
41663     
41664     /**
41665      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
41666      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
41667      * @param {Boolean} preservePanel Overrides the config preservePanel option
41668      * @return {Roo.ContentPanel} The panel that was removed
41669      */
41670     remove : function(panel, preservePanel){
41671         panel = this.getPanel(panel);
41672         if(!panel){
41673             return null;
41674         }
41675         var e = {};
41676         this.fireEvent("beforeremove", this, panel, e);
41677         if(e.cancel === true){
41678             return null;
41679         }
41680         var panelId = panel.getId();
41681         this.panels.removeKey(panelId);
41682         return panel;
41683     },
41684     
41685     /**
41686      * Returns the panel specified or null if it's not in this region.
41687      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
41688      * @return {Roo.ContentPanel}
41689      */
41690     getPanel : function(id){
41691         if(typeof id == "object"){ // must be panel obj
41692             return id;
41693         }
41694         return this.panels.get(id);
41695     },
41696     
41697     /**
41698      * Returns this regions position (north/south/east/west/center).
41699      * @return {String} 
41700      */
41701     getPosition: function(){
41702         return this.position;    
41703     }
41704 });/*
41705  * Based on:
41706  * Ext JS Library 1.1.1
41707  * Copyright(c) 2006-2007, Ext JS, LLC.
41708  *
41709  * Originally Released Under LGPL - original licence link has changed is not relivant.
41710  *
41711  * Fork - LGPL
41712  * <script type="text/javascript">
41713  */
41714  
41715 /**
41716  * @class Roo.bootstrap.layout.Region
41717  * @extends Roo.bootstrap.layout.Basic
41718  * This class represents a region in a layout manager.
41719  
41720  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
41721  * @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})
41722  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
41723  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
41724  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
41725  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
41726  * @cfg {String}    title           The title for the region (overrides panel titles)
41727  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
41728  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
41729  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
41730  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
41731  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
41732  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
41733  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
41734  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
41735  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
41736  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
41737
41738  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
41739  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
41740  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
41741  * @cfg {Number}    width           For East/West panels
41742  * @cfg {Number}    height          For North/South panels
41743  * @cfg {Boolean}   split           To show the splitter
41744  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
41745  * 
41746  * @cfg {string}   cls             Extra CSS classes to add to region
41747  * 
41748  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
41749  * @cfg {string}   region  the region that it inhabits..
41750  *
41751
41752  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
41753  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
41754
41755  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
41756  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
41757  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
41758  */
41759 Roo.bootstrap.layout.Region = function(config)
41760 {
41761     this.applyConfig(config);
41762
41763     var mgr = config.mgr;
41764     var pos = config.region;
41765     config.skipConfig = true;
41766     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
41767     
41768     if (mgr.el) {
41769         this.onRender(mgr.el);   
41770     }
41771      
41772     this.visible = true;
41773     this.collapsed = false;
41774     this.unrendered_panels = [];
41775 };
41776
41777 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
41778
41779     position: '', // set by wrapper (eg. north/south etc..)
41780     unrendered_panels : null,  // unrendered panels.
41781     
41782     tabPosition : false,
41783     
41784     mgr: false, // points to 'Border'
41785     
41786     
41787     createBody : function(){
41788         /** This region's body element 
41789         * @type Roo.Element */
41790         this.bodyEl = this.el.createChild({
41791                 tag: "div",
41792                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
41793         });
41794     },
41795
41796     onRender: function(ctr, pos)
41797     {
41798         var dh = Roo.DomHelper;
41799         /** This region's container element 
41800         * @type Roo.Element */
41801         this.el = dh.append(ctr.dom, {
41802                 tag: "div",
41803                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
41804             }, true);
41805         /** This region's title element 
41806         * @type Roo.Element */
41807     
41808         this.titleEl = dh.append(this.el.dom,  {
41809                 tag: "div",
41810                 unselectable: "on",
41811                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
41812                 children:[
41813                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
41814                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
41815                 ]
41816             }, true);
41817         
41818         this.titleEl.enableDisplayMode();
41819         /** This region's title text element 
41820         * @type HTMLElement */
41821         this.titleTextEl = this.titleEl.dom.firstChild;
41822         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
41823         /*
41824         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
41825         this.closeBtn.enableDisplayMode();
41826         this.closeBtn.on("click", this.closeClicked, this);
41827         this.closeBtn.hide();
41828     */
41829         this.createBody(this.config);
41830         if(this.config.hideWhenEmpty){
41831             this.hide();
41832             this.on("paneladded", this.validateVisibility, this);
41833             this.on("panelremoved", this.validateVisibility, this);
41834         }
41835         if(this.autoScroll){
41836             this.bodyEl.setStyle("overflow", "auto");
41837         }else{
41838             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
41839         }
41840         //if(c.titlebar !== false){
41841             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
41842                 this.titleEl.hide();
41843             }else{
41844                 this.titleEl.show();
41845                 if(this.config.title){
41846                     this.titleTextEl.innerHTML = this.config.title;
41847                 }
41848             }
41849         //}
41850         if(this.config.collapsed){
41851             this.collapse(true);
41852         }
41853         if(this.config.hidden){
41854             this.hide();
41855         }
41856         
41857         if (this.unrendered_panels && this.unrendered_panels.length) {
41858             for (var i =0;i< this.unrendered_panels.length; i++) {
41859                 this.add(this.unrendered_panels[i]);
41860             }
41861             this.unrendered_panels = null;
41862             
41863         }
41864         
41865     },
41866     
41867     applyConfig : function(c)
41868     {
41869         /*
41870          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
41871             var dh = Roo.DomHelper;
41872             if(c.titlebar !== false){
41873                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
41874                 this.collapseBtn.on("click", this.collapse, this);
41875                 this.collapseBtn.enableDisplayMode();
41876                 /*
41877                 if(c.showPin === true || this.showPin){
41878                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
41879                     this.stickBtn.enableDisplayMode();
41880                     this.stickBtn.on("click", this.expand, this);
41881                     this.stickBtn.hide();
41882                 }
41883                 
41884             }
41885             */
41886             /** This region's collapsed element
41887             * @type Roo.Element */
41888             /*
41889              *
41890             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
41891                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
41892             ]}, true);
41893             
41894             if(c.floatable !== false){
41895                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
41896                this.collapsedEl.on("click", this.collapseClick, this);
41897             }
41898
41899             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
41900                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
41901                    id: "message", unselectable: "on", style:{"float":"left"}});
41902                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
41903              }
41904             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
41905             this.expandBtn.on("click", this.expand, this);
41906             
41907         }
41908         
41909         if(this.collapseBtn){
41910             this.collapseBtn.setVisible(c.collapsible == true);
41911         }
41912         
41913         this.cmargins = c.cmargins || this.cmargins ||
41914                          (this.position == "west" || this.position == "east" ?
41915                              {top: 0, left: 2, right:2, bottom: 0} :
41916                              {top: 2, left: 0, right:0, bottom: 2});
41917         */
41918         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
41919         
41920         
41921         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
41922         
41923         this.autoScroll = c.autoScroll || false;
41924         
41925         
41926        
41927         
41928         this.duration = c.duration || .30;
41929         this.slideDuration = c.slideDuration || .45;
41930         this.config = c;
41931        
41932     },
41933     /**
41934      * Returns true if this region is currently visible.
41935      * @return {Boolean}
41936      */
41937     isVisible : function(){
41938         return this.visible;
41939     },
41940
41941     /**
41942      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
41943      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
41944      */
41945     //setCollapsedTitle : function(title){
41946     //    title = title || "&#160;";
41947      //   if(this.collapsedTitleTextEl){
41948       //      this.collapsedTitleTextEl.innerHTML = title;
41949        // }
41950     //},
41951
41952     getBox : function(){
41953         var b;
41954       //  if(!this.collapsed){
41955             b = this.el.getBox(false, true);
41956        // }else{
41957           //  b = this.collapsedEl.getBox(false, true);
41958         //}
41959         return b;
41960     },
41961
41962     getMargins : function(){
41963         return this.margins;
41964         //return this.collapsed ? this.cmargins : this.margins;
41965     },
41966 /*
41967     highlight : function(){
41968         this.el.addClass("x-layout-panel-dragover");
41969     },
41970
41971     unhighlight : function(){
41972         this.el.removeClass("x-layout-panel-dragover");
41973     },
41974 */
41975     updateBox : function(box)
41976     {
41977         if (!this.bodyEl) {
41978             return; // not rendered yet..
41979         }
41980         
41981         this.box = box;
41982         if(!this.collapsed){
41983             this.el.dom.style.left = box.x + "px";
41984             this.el.dom.style.top = box.y + "px";
41985             this.updateBody(box.width, box.height);
41986         }else{
41987             this.collapsedEl.dom.style.left = box.x + "px";
41988             this.collapsedEl.dom.style.top = box.y + "px";
41989             this.collapsedEl.setSize(box.width, box.height);
41990         }
41991         if(this.tabs){
41992             this.tabs.autoSizeTabs();
41993         }
41994     },
41995
41996     updateBody : function(w, h)
41997     {
41998         if(w !== null){
41999             this.el.setWidth(w);
42000             w -= this.el.getBorderWidth("rl");
42001             if(this.config.adjustments){
42002                 w += this.config.adjustments[0];
42003             }
42004         }
42005         if(h !== null && h > 0){
42006             this.el.setHeight(h);
42007             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
42008             h -= this.el.getBorderWidth("tb");
42009             if(this.config.adjustments){
42010                 h += this.config.adjustments[1];
42011             }
42012             this.bodyEl.setHeight(h);
42013             if(this.tabs){
42014                 h = this.tabs.syncHeight(h);
42015             }
42016         }
42017         if(this.panelSize){
42018             w = w !== null ? w : this.panelSize.width;
42019             h = h !== null ? h : this.panelSize.height;
42020         }
42021         if(this.activePanel){
42022             var el = this.activePanel.getEl();
42023             w = w !== null ? w : el.getWidth();
42024             h = h !== null ? h : el.getHeight();
42025             this.panelSize = {width: w, height: h};
42026             this.activePanel.setSize(w, h);
42027         }
42028         if(Roo.isIE && this.tabs){
42029             this.tabs.el.repaint();
42030         }
42031     },
42032
42033     /**
42034      * Returns the container element for this region.
42035      * @return {Roo.Element}
42036      */
42037     getEl : function(){
42038         return this.el;
42039     },
42040
42041     /**
42042      * Hides this region.
42043      */
42044     hide : function(){
42045         //if(!this.collapsed){
42046             this.el.dom.style.left = "-2000px";
42047             this.el.hide();
42048         //}else{
42049          //   this.collapsedEl.dom.style.left = "-2000px";
42050          //   this.collapsedEl.hide();
42051        // }
42052         this.visible = false;
42053         this.fireEvent("visibilitychange", this, false);
42054     },
42055
42056     /**
42057      * Shows this region if it was previously hidden.
42058      */
42059     show : function(){
42060         //if(!this.collapsed){
42061             this.el.show();
42062         //}else{
42063         //    this.collapsedEl.show();
42064        // }
42065         this.visible = true;
42066         this.fireEvent("visibilitychange", this, true);
42067     },
42068 /*
42069     closeClicked : function(){
42070         if(this.activePanel){
42071             this.remove(this.activePanel);
42072         }
42073     },
42074
42075     collapseClick : function(e){
42076         if(this.isSlid){
42077            e.stopPropagation();
42078            this.slideIn();
42079         }else{
42080            e.stopPropagation();
42081            this.slideOut();
42082         }
42083     },
42084 */
42085     /**
42086      * Collapses this region.
42087      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
42088      */
42089     /*
42090     collapse : function(skipAnim, skipCheck = false){
42091         if(this.collapsed) {
42092             return;
42093         }
42094         
42095         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
42096             
42097             this.collapsed = true;
42098             if(this.split){
42099                 this.split.el.hide();
42100             }
42101             if(this.config.animate && skipAnim !== true){
42102                 this.fireEvent("invalidated", this);
42103                 this.animateCollapse();
42104             }else{
42105                 this.el.setLocation(-20000,-20000);
42106                 this.el.hide();
42107                 this.collapsedEl.show();
42108                 this.fireEvent("collapsed", this);
42109                 this.fireEvent("invalidated", this);
42110             }
42111         }
42112         
42113     },
42114 */
42115     animateCollapse : function(){
42116         // overridden
42117     },
42118
42119     /**
42120      * Expands this region if it was previously collapsed.
42121      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
42122      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
42123      */
42124     /*
42125     expand : function(e, skipAnim){
42126         if(e) {
42127             e.stopPropagation();
42128         }
42129         if(!this.collapsed || this.el.hasActiveFx()) {
42130             return;
42131         }
42132         if(this.isSlid){
42133             this.afterSlideIn();
42134             skipAnim = true;
42135         }
42136         this.collapsed = false;
42137         if(this.config.animate && skipAnim !== true){
42138             this.animateExpand();
42139         }else{
42140             this.el.show();
42141             if(this.split){
42142                 this.split.el.show();
42143             }
42144             this.collapsedEl.setLocation(-2000,-2000);
42145             this.collapsedEl.hide();
42146             this.fireEvent("invalidated", this);
42147             this.fireEvent("expanded", this);
42148         }
42149     },
42150 */
42151     animateExpand : function(){
42152         // overridden
42153     },
42154
42155     initTabs : function()
42156     {
42157         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
42158         
42159         var ts = new Roo.bootstrap.panel.Tabs({
42160             el: this.bodyEl.dom,
42161             region : this,
42162             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
42163             disableTooltips: this.config.disableTabTips,
42164             toolbar : this.config.toolbar
42165         });
42166         
42167         if(this.config.hideTabs){
42168             ts.stripWrap.setDisplayed(false);
42169         }
42170         this.tabs = ts;
42171         ts.resizeTabs = this.config.resizeTabs === true;
42172         ts.minTabWidth = this.config.minTabWidth || 40;
42173         ts.maxTabWidth = this.config.maxTabWidth || 250;
42174         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
42175         ts.monitorResize = false;
42176         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
42177         ts.bodyEl.addClass('roo-layout-tabs-body');
42178         this.panels.each(this.initPanelAsTab, this);
42179     },
42180
42181     initPanelAsTab : function(panel){
42182         var ti = this.tabs.addTab(
42183             panel.getEl().id,
42184             panel.getTitle(),
42185             null,
42186             this.config.closeOnTab && panel.isClosable(),
42187             panel.tpl
42188         );
42189         if(panel.tabTip !== undefined){
42190             ti.setTooltip(panel.tabTip);
42191         }
42192         ti.on("activate", function(){
42193               this.setActivePanel(panel);
42194         }, this);
42195         
42196         if(this.config.closeOnTab){
42197             ti.on("beforeclose", function(t, e){
42198                 e.cancel = true;
42199                 this.remove(panel);
42200             }, this);
42201         }
42202         
42203         panel.tabItem = ti;
42204         
42205         return ti;
42206     },
42207
42208     updatePanelTitle : function(panel, title)
42209     {
42210         if(this.activePanel == panel){
42211             this.updateTitle(title);
42212         }
42213         if(this.tabs){
42214             var ti = this.tabs.getTab(panel.getEl().id);
42215             ti.setText(title);
42216             if(panel.tabTip !== undefined){
42217                 ti.setTooltip(panel.tabTip);
42218             }
42219         }
42220     },
42221
42222     updateTitle : function(title){
42223         if(this.titleTextEl && !this.config.title){
42224             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
42225         }
42226     },
42227
42228     setActivePanel : function(panel)
42229     {
42230         panel = this.getPanel(panel);
42231         if(this.activePanel && this.activePanel != panel){
42232             if(this.activePanel.setActiveState(false) === false){
42233                 return;
42234             }
42235         }
42236         this.activePanel = panel;
42237         panel.setActiveState(true);
42238         if(this.panelSize){
42239             panel.setSize(this.panelSize.width, this.panelSize.height);
42240         }
42241         if(this.closeBtn){
42242             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
42243         }
42244         this.updateTitle(panel.getTitle());
42245         if(this.tabs){
42246             this.fireEvent("invalidated", this);
42247         }
42248         this.fireEvent("panelactivated", this, panel);
42249     },
42250
42251     /**
42252      * Shows the specified panel.
42253      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
42254      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
42255      */
42256     showPanel : function(panel)
42257     {
42258         panel = this.getPanel(panel);
42259         if(panel){
42260             if(this.tabs){
42261                 var tab = this.tabs.getTab(panel.getEl().id);
42262                 if(tab.isHidden()){
42263                     this.tabs.unhideTab(tab.id);
42264                 }
42265                 tab.activate();
42266             }else{
42267                 this.setActivePanel(panel);
42268             }
42269         }
42270         return panel;
42271     },
42272
42273     /**
42274      * Get the active panel for this region.
42275      * @return {Roo.ContentPanel} The active panel or null
42276      */
42277     getActivePanel : function(){
42278         return this.activePanel;
42279     },
42280
42281     validateVisibility : function(){
42282         if(this.panels.getCount() < 1){
42283             this.updateTitle("&#160;");
42284             this.closeBtn.hide();
42285             this.hide();
42286         }else{
42287             if(!this.isVisible()){
42288                 this.show();
42289             }
42290         }
42291     },
42292
42293     /**
42294      * Adds the passed ContentPanel(s) to this region.
42295      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
42296      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
42297      */
42298     add : function(panel)
42299     {
42300         if(arguments.length > 1){
42301             for(var i = 0, len = arguments.length; i < len; i++) {
42302                 this.add(arguments[i]);
42303             }
42304             return null;
42305         }
42306         
42307         // if we have not been rendered yet, then we can not really do much of this..
42308         if (!this.bodyEl) {
42309             this.unrendered_panels.push(panel);
42310             return panel;
42311         }
42312         
42313         
42314         
42315         
42316         if(this.hasPanel(panel)){
42317             this.showPanel(panel);
42318             return panel;
42319         }
42320         panel.setRegion(this);
42321         this.panels.add(panel);
42322        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
42323             // sinle panel - no tab...?? would it not be better to render it with the tabs,
42324             // and hide them... ???
42325             this.bodyEl.dom.appendChild(panel.getEl().dom);
42326             if(panel.background !== true){
42327                 this.setActivePanel(panel);
42328             }
42329             this.fireEvent("paneladded", this, panel);
42330             return panel;
42331         }
42332         */
42333         if(!this.tabs){
42334             this.initTabs();
42335         }else{
42336             this.initPanelAsTab(panel);
42337         }
42338         
42339         
42340         if(panel.background !== true){
42341             this.tabs.activate(panel.getEl().id);
42342         }
42343         this.fireEvent("paneladded", this, panel);
42344         return panel;
42345     },
42346
42347     /**
42348      * Hides the tab for the specified panel.
42349      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
42350      */
42351     hidePanel : function(panel){
42352         if(this.tabs && (panel = this.getPanel(panel))){
42353             this.tabs.hideTab(panel.getEl().id);
42354         }
42355     },
42356
42357     /**
42358      * Unhides the tab for a previously hidden panel.
42359      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
42360      */
42361     unhidePanel : function(panel){
42362         if(this.tabs && (panel = this.getPanel(panel))){
42363             this.tabs.unhideTab(panel.getEl().id);
42364         }
42365     },
42366
42367     clearPanels : function(){
42368         while(this.panels.getCount() > 0){
42369              this.remove(this.panels.first());
42370         }
42371     },
42372
42373     /**
42374      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
42375      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
42376      * @param {Boolean} preservePanel Overrides the config preservePanel option
42377      * @return {Roo.ContentPanel} The panel that was removed
42378      */
42379     remove : function(panel, preservePanel)
42380     {
42381         panel = this.getPanel(panel);
42382         if(!panel){
42383             return null;
42384         }
42385         var e = {};
42386         this.fireEvent("beforeremove", this, panel, e);
42387         if(e.cancel === true){
42388             return null;
42389         }
42390         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
42391         var panelId = panel.getId();
42392         this.panels.removeKey(panelId);
42393         if(preservePanel){
42394             document.body.appendChild(panel.getEl().dom);
42395         }
42396         if(this.tabs){
42397             this.tabs.removeTab(panel.getEl().id);
42398         }else if (!preservePanel){
42399             this.bodyEl.dom.removeChild(panel.getEl().dom);
42400         }
42401         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
42402             var p = this.panels.first();
42403             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
42404             tempEl.appendChild(p.getEl().dom);
42405             this.bodyEl.update("");
42406             this.bodyEl.dom.appendChild(p.getEl().dom);
42407             tempEl = null;
42408             this.updateTitle(p.getTitle());
42409             this.tabs = null;
42410             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
42411             this.setActivePanel(p);
42412         }
42413         panel.setRegion(null);
42414         if(this.activePanel == panel){
42415             this.activePanel = null;
42416         }
42417         if(this.config.autoDestroy !== false && preservePanel !== true){
42418             try{panel.destroy();}catch(e){}
42419         }
42420         this.fireEvent("panelremoved", this, panel);
42421         return panel;
42422     },
42423
42424     /**
42425      * Returns the TabPanel component used by this region
42426      * @return {Roo.TabPanel}
42427      */
42428     getTabs : function(){
42429         return this.tabs;
42430     },
42431
42432     createTool : function(parentEl, className){
42433         var btn = Roo.DomHelper.append(parentEl, {
42434             tag: "div",
42435             cls: "x-layout-tools-button",
42436             children: [ {
42437                 tag: "div",
42438                 cls: "roo-layout-tools-button-inner " + className,
42439                 html: "&#160;"
42440             }]
42441         }, true);
42442         btn.addClassOnOver("roo-layout-tools-button-over");
42443         return btn;
42444     }
42445 });/*
42446  * Based on:
42447  * Ext JS Library 1.1.1
42448  * Copyright(c) 2006-2007, Ext JS, LLC.
42449  *
42450  * Originally Released Under LGPL - original licence link has changed is not relivant.
42451  *
42452  * Fork - LGPL
42453  * <script type="text/javascript">
42454  */
42455  
42456
42457
42458 /**
42459  * @class Roo.SplitLayoutRegion
42460  * @extends Roo.LayoutRegion
42461  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
42462  */
42463 Roo.bootstrap.layout.Split = function(config){
42464     this.cursor = config.cursor;
42465     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
42466 };
42467
42468 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
42469 {
42470     splitTip : "Drag to resize.",
42471     collapsibleSplitTip : "Drag to resize. Double click to hide.",
42472     useSplitTips : false,
42473
42474     applyConfig : function(config){
42475         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
42476     },
42477     
42478     onRender : function(ctr,pos) {
42479         
42480         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
42481         if(!this.config.split){
42482             return;
42483         }
42484         if(!this.split){
42485             
42486             var splitEl = Roo.DomHelper.append(ctr.dom,  {
42487                             tag: "div",
42488                             id: this.el.id + "-split",
42489                             cls: "roo-layout-split roo-layout-split-"+this.position,
42490                             html: "&#160;"
42491             });
42492             /** The SplitBar for this region 
42493             * @type Roo.SplitBar */
42494             // does not exist yet...
42495             Roo.log([this.position, this.orientation]);
42496             
42497             this.split = new Roo.bootstrap.SplitBar({
42498                 dragElement : splitEl,
42499                 resizingElement: this.el,
42500                 orientation : this.orientation
42501             });
42502             
42503             this.split.on("moved", this.onSplitMove, this);
42504             this.split.useShim = this.config.useShim === true;
42505             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
42506             if(this.useSplitTips){
42507                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
42508             }
42509             //if(config.collapsible){
42510             //    this.split.el.on("dblclick", this.collapse,  this);
42511             //}
42512         }
42513         if(typeof this.config.minSize != "undefined"){
42514             this.split.minSize = this.config.minSize;
42515         }
42516         if(typeof this.config.maxSize != "undefined"){
42517             this.split.maxSize = this.config.maxSize;
42518         }
42519         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
42520             this.hideSplitter();
42521         }
42522         
42523     },
42524
42525     getHMaxSize : function(){
42526          var cmax = this.config.maxSize || 10000;
42527          var center = this.mgr.getRegion("center");
42528          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
42529     },
42530
42531     getVMaxSize : function(){
42532          var cmax = this.config.maxSize || 10000;
42533          var center = this.mgr.getRegion("center");
42534          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
42535     },
42536
42537     onSplitMove : function(split, newSize){
42538         this.fireEvent("resized", this, newSize);
42539     },
42540     
42541     /** 
42542      * Returns the {@link Roo.SplitBar} for this region.
42543      * @return {Roo.SplitBar}
42544      */
42545     getSplitBar : function(){
42546         return this.split;
42547     },
42548     
42549     hide : function(){
42550         this.hideSplitter();
42551         Roo.bootstrap.layout.Split.superclass.hide.call(this);
42552     },
42553
42554     hideSplitter : function(){
42555         if(this.split){
42556             this.split.el.setLocation(-2000,-2000);
42557             this.split.el.hide();
42558         }
42559     },
42560
42561     show : function(){
42562         if(this.split){
42563             this.split.el.show();
42564         }
42565         Roo.bootstrap.layout.Split.superclass.show.call(this);
42566     },
42567     
42568     beforeSlide: function(){
42569         if(Roo.isGecko){// firefox overflow auto bug workaround
42570             this.bodyEl.clip();
42571             if(this.tabs) {
42572                 this.tabs.bodyEl.clip();
42573             }
42574             if(this.activePanel){
42575                 this.activePanel.getEl().clip();
42576                 
42577                 if(this.activePanel.beforeSlide){
42578                     this.activePanel.beforeSlide();
42579                 }
42580             }
42581         }
42582     },
42583     
42584     afterSlide : function(){
42585         if(Roo.isGecko){// firefox overflow auto bug workaround
42586             this.bodyEl.unclip();
42587             if(this.tabs) {
42588                 this.tabs.bodyEl.unclip();
42589             }
42590             if(this.activePanel){
42591                 this.activePanel.getEl().unclip();
42592                 if(this.activePanel.afterSlide){
42593                     this.activePanel.afterSlide();
42594                 }
42595             }
42596         }
42597     },
42598
42599     initAutoHide : function(){
42600         if(this.autoHide !== false){
42601             if(!this.autoHideHd){
42602                 var st = new Roo.util.DelayedTask(this.slideIn, this);
42603                 this.autoHideHd = {
42604                     "mouseout": function(e){
42605                         if(!e.within(this.el, true)){
42606                             st.delay(500);
42607                         }
42608                     },
42609                     "mouseover" : function(e){
42610                         st.cancel();
42611                     },
42612                     scope : this
42613                 };
42614             }
42615             this.el.on(this.autoHideHd);
42616         }
42617     },
42618
42619     clearAutoHide : function(){
42620         if(this.autoHide !== false){
42621             this.el.un("mouseout", this.autoHideHd.mouseout);
42622             this.el.un("mouseover", this.autoHideHd.mouseover);
42623         }
42624     },
42625
42626     clearMonitor : function(){
42627         Roo.get(document).un("click", this.slideInIf, this);
42628     },
42629
42630     // these names are backwards but not changed for compat
42631     slideOut : function(){
42632         if(this.isSlid || this.el.hasActiveFx()){
42633             return;
42634         }
42635         this.isSlid = true;
42636         if(this.collapseBtn){
42637             this.collapseBtn.hide();
42638         }
42639         this.closeBtnState = this.closeBtn.getStyle('display');
42640         this.closeBtn.hide();
42641         if(this.stickBtn){
42642             this.stickBtn.show();
42643         }
42644         this.el.show();
42645         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
42646         this.beforeSlide();
42647         this.el.setStyle("z-index", 10001);
42648         this.el.slideIn(this.getSlideAnchor(), {
42649             callback: function(){
42650                 this.afterSlide();
42651                 this.initAutoHide();
42652                 Roo.get(document).on("click", this.slideInIf, this);
42653                 this.fireEvent("slideshow", this);
42654             },
42655             scope: this,
42656             block: true
42657         });
42658     },
42659
42660     afterSlideIn : function(){
42661         this.clearAutoHide();
42662         this.isSlid = false;
42663         this.clearMonitor();
42664         this.el.setStyle("z-index", "");
42665         if(this.collapseBtn){
42666             this.collapseBtn.show();
42667         }
42668         this.closeBtn.setStyle('display', this.closeBtnState);
42669         if(this.stickBtn){
42670             this.stickBtn.hide();
42671         }
42672         this.fireEvent("slidehide", this);
42673     },
42674
42675     slideIn : function(cb){
42676         if(!this.isSlid || this.el.hasActiveFx()){
42677             Roo.callback(cb);
42678             return;
42679         }
42680         this.isSlid = false;
42681         this.beforeSlide();
42682         this.el.slideOut(this.getSlideAnchor(), {
42683             callback: function(){
42684                 this.el.setLeftTop(-10000, -10000);
42685                 this.afterSlide();
42686                 this.afterSlideIn();
42687                 Roo.callback(cb);
42688             },
42689             scope: this,
42690             block: true
42691         });
42692     },
42693     
42694     slideInIf : function(e){
42695         if(!e.within(this.el)){
42696             this.slideIn();
42697         }
42698     },
42699
42700     animateCollapse : function(){
42701         this.beforeSlide();
42702         this.el.setStyle("z-index", 20000);
42703         var anchor = this.getSlideAnchor();
42704         this.el.slideOut(anchor, {
42705             callback : function(){
42706                 this.el.setStyle("z-index", "");
42707                 this.collapsedEl.slideIn(anchor, {duration:.3});
42708                 this.afterSlide();
42709                 this.el.setLocation(-10000,-10000);
42710                 this.el.hide();
42711                 this.fireEvent("collapsed", this);
42712             },
42713             scope: this,
42714             block: true
42715         });
42716     },
42717
42718     animateExpand : function(){
42719         this.beforeSlide();
42720         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
42721         this.el.setStyle("z-index", 20000);
42722         this.collapsedEl.hide({
42723             duration:.1
42724         });
42725         this.el.slideIn(this.getSlideAnchor(), {
42726             callback : function(){
42727                 this.el.setStyle("z-index", "");
42728                 this.afterSlide();
42729                 if(this.split){
42730                     this.split.el.show();
42731                 }
42732                 this.fireEvent("invalidated", this);
42733                 this.fireEvent("expanded", this);
42734             },
42735             scope: this,
42736             block: true
42737         });
42738     },
42739
42740     anchors : {
42741         "west" : "left",
42742         "east" : "right",
42743         "north" : "top",
42744         "south" : "bottom"
42745     },
42746
42747     sanchors : {
42748         "west" : "l",
42749         "east" : "r",
42750         "north" : "t",
42751         "south" : "b"
42752     },
42753
42754     canchors : {
42755         "west" : "tl-tr",
42756         "east" : "tr-tl",
42757         "north" : "tl-bl",
42758         "south" : "bl-tl"
42759     },
42760
42761     getAnchor : function(){
42762         return this.anchors[this.position];
42763     },
42764
42765     getCollapseAnchor : function(){
42766         return this.canchors[this.position];
42767     },
42768
42769     getSlideAnchor : function(){
42770         return this.sanchors[this.position];
42771     },
42772
42773     getAlignAdj : function(){
42774         var cm = this.cmargins;
42775         switch(this.position){
42776             case "west":
42777                 return [0, 0];
42778             break;
42779             case "east":
42780                 return [0, 0];
42781             break;
42782             case "north":
42783                 return [0, 0];
42784             break;
42785             case "south":
42786                 return [0, 0];
42787             break;
42788         }
42789     },
42790
42791     getExpandAdj : function(){
42792         var c = this.collapsedEl, cm = this.cmargins;
42793         switch(this.position){
42794             case "west":
42795                 return [-(cm.right+c.getWidth()+cm.left), 0];
42796             break;
42797             case "east":
42798                 return [cm.right+c.getWidth()+cm.left, 0];
42799             break;
42800             case "north":
42801                 return [0, -(cm.top+cm.bottom+c.getHeight())];
42802             break;
42803             case "south":
42804                 return [0, cm.top+cm.bottom+c.getHeight()];
42805             break;
42806         }
42807     }
42808 });/*
42809  * Based on:
42810  * Ext JS Library 1.1.1
42811  * Copyright(c) 2006-2007, Ext JS, LLC.
42812  *
42813  * Originally Released Under LGPL - original licence link has changed is not relivant.
42814  *
42815  * Fork - LGPL
42816  * <script type="text/javascript">
42817  */
42818 /*
42819  * These classes are private internal classes
42820  */
42821 Roo.bootstrap.layout.Center = function(config){
42822     config.region = "center";
42823     Roo.bootstrap.layout.Region.call(this, config);
42824     this.visible = true;
42825     this.minWidth = config.minWidth || 20;
42826     this.minHeight = config.minHeight || 20;
42827 };
42828
42829 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
42830     hide : function(){
42831         // center panel can't be hidden
42832     },
42833     
42834     show : function(){
42835         // center panel can't be hidden
42836     },
42837     
42838     getMinWidth: function(){
42839         return this.minWidth;
42840     },
42841     
42842     getMinHeight: function(){
42843         return this.minHeight;
42844     }
42845 });
42846
42847
42848
42849
42850  
42851
42852
42853
42854
42855
42856
42857 Roo.bootstrap.layout.North = function(config)
42858 {
42859     config.region = 'north';
42860     config.cursor = 'n-resize';
42861     
42862     Roo.bootstrap.layout.Split.call(this, config);
42863     
42864     
42865     if(this.split){
42866         this.split.placement = Roo.bootstrap.SplitBar.TOP;
42867         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
42868         this.split.el.addClass("roo-layout-split-v");
42869     }
42870     //var size = config.initialSize || config.height;
42871     //if(this.el && typeof size != "undefined"){
42872     //    this.el.setHeight(size);
42873     //}
42874 };
42875 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
42876 {
42877     orientation: Roo.bootstrap.SplitBar.VERTICAL,
42878      
42879      
42880     onRender : function(ctr, pos)
42881     {
42882         Roo.bootstrap.layout.Split.prototype.onRender.call(this, ctr, pos);
42883         var size = this.config.initialSize || this.config.height;
42884         if(this.el && typeof size != "undefined"){
42885             this.el.setHeight(size);
42886         }
42887     
42888     },
42889     
42890     getBox : function(){
42891         if(this.collapsed){
42892             return this.collapsedEl.getBox();
42893         }
42894         var box = this.el.getBox();
42895         if(this.split){
42896             box.height += this.split.el.getHeight();
42897         }
42898         return box;
42899     },
42900     
42901     updateBox : function(box){
42902         if(this.split && !this.collapsed){
42903             box.height -= this.split.el.getHeight();
42904             this.split.el.setLeft(box.x);
42905             this.split.el.setTop(box.y+box.height);
42906             this.split.el.setWidth(box.width);
42907         }
42908         if(this.collapsed){
42909             this.updateBody(box.width, null);
42910         }
42911         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
42912     }
42913 });
42914
42915
42916
42917
42918
42919 Roo.bootstrap.layout.South = function(config){
42920     config.region = 'south';
42921     config.cursor = 's-resize';
42922     Roo.bootstrap.layout.Split.call(this, config);
42923     if(this.split){
42924         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
42925         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
42926         this.split.el.addClass("roo-layout-split-v");
42927     }
42928     
42929 };
42930
42931 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
42932     orientation: Roo.bootstrap.SplitBar.VERTICAL,
42933     
42934     onRender : function(ctr, pos)
42935     {
42936         Roo.bootstrap.layout.Split.prototype.onRender.call(this, ctr, pos);
42937         var size = this.config.initialSize || this.config.height;
42938         if(this.el && typeof size != "undefined"){
42939             this.el.setHeight(size);
42940         }
42941     
42942     },
42943     
42944     getBox : function(){
42945         if(this.collapsed){
42946             return this.collapsedEl.getBox();
42947         }
42948         var box = this.el.getBox();
42949         if(this.split){
42950             var sh = this.split.el.getHeight();
42951             box.height += sh;
42952             box.y -= sh;
42953         }
42954         return box;
42955     },
42956     
42957     updateBox : function(box){
42958         if(this.split && !this.collapsed){
42959             var sh = this.split.el.getHeight();
42960             box.height -= sh;
42961             box.y += sh;
42962             this.split.el.setLeft(box.x);
42963             this.split.el.setTop(box.y-sh);
42964             this.split.el.setWidth(box.width);
42965         }
42966         if(this.collapsed){
42967             this.updateBody(box.width, null);
42968         }
42969         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
42970     }
42971 });
42972
42973 Roo.bootstrap.layout.East = function(config){
42974     config.region = "east";
42975     config.cursor = "e-resize";
42976     Roo.bootstrap.layout.Split.call(this, config);
42977     if(this.split){
42978         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
42979         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
42980         this.split.el.addClass("roo-layout-split-h");
42981     }
42982     
42983 };
42984 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
42985     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
42986     
42987     onRender : function(ctr, pos)
42988     {
42989         Roo.bootstrap.layout.Split.prototype.onRender.call(this, ctr, pos);
42990         var size = this.config.initialSize || this.config.width;
42991         if(this.el && typeof size != "undefined"){
42992             this.el.setWidth(size);
42993         }
42994     
42995     },
42996     
42997     getBox : function(){
42998         if(this.collapsed){
42999             return this.collapsedEl.getBox();
43000         }
43001         var box = this.el.getBox();
43002         if(this.split){
43003             var sw = this.split.el.getWidth();
43004             box.width += sw;
43005             box.x -= sw;
43006         }
43007         return box;
43008     },
43009
43010     updateBox : function(box){
43011         if(this.split && !this.collapsed){
43012             var sw = this.split.el.getWidth();
43013             box.width -= sw;
43014             this.split.el.setLeft(box.x);
43015             this.split.el.setTop(box.y);
43016             this.split.el.setHeight(box.height);
43017             box.x += sw;
43018         }
43019         if(this.collapsed){
43020             this.updateBody(null, box.height);
43021         }
43022         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
43023     }
43024 });
43025
43026 Roo.bootstrap.layout.West = function(config){
43027     config.region = "west";
43028     config.cursor = "w-resize";
43029     
43030     Roo.bootstrap.layout.Split.call(this, config);
43031     if(this.split){
43032         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
43033         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
43034         this.split.el.addClass("roo-layout-split-h");
43035     }
43036     
43037 };
43038 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
43039     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
43040     
43041     onRender: function(ctr, pos)
43042     {
43043         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
43044         var size = this.config.initialSize || this.config.width;
43045         if(typeof size != "undefined"){
43046             this.el.setWidth(size);
43047         }
43048     },
43049     
43050     getBox : function(){
43051         if(this.collapsed){
43052             return this.collapsedEl.getBox();
43053         }
43054         var box = this.el.getBox();
43055         if (box.width == 0) {
43056             box.width = this.config.width; // kludge?
43057         }
43058         if(this.split){
43059             box.width += this.split.el.getWidth();
43060         }
43061         return box;
43062     },
43063     
43064     updateBox : function(box){
43065         if(this.split && !this.collapsed){
43066             var sw = this.split.el.getWidth();
43067             box.width -= sw;
43068             this.split.el.setLeft(box.x+box.width);
43069             this.split.el.setTop(box.y);
43070             this.split.el.setHeight(box.height);
43071         }
43072         if(this.collapsed){
43073             this.updateBody(null, box.height);
43074         }
43075         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
43076     }
43077 });/*
43078  * Based on:
43079  * Ext JS Library 1.1.1
43080  * Copyright(c) 2006-2007, Ext JS, LLC.
43081  *
43082  * Originally Released Under LGPL - original licence link has changed is not relivant.
43083  *
43084  * Fork - LGPL
43085  * <script type="text/javascript">
43086  */
43087 /**
43088  * @class Roo.bootstrap.paenl.Content
43089  * @extends Roo.util.Observable
43090  * @children Roo.bootstrap.Component
43091  * @parent builder Roo.bootstrap.layout.Border
43092  * A basic ContentPanel element. - a panel that contain any content (eg. forms etc.)
43093  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
43094  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
43095  * @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
43096  * @cfg {Boolean}   closable      True if the panel can be closed/removed
43097  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
43098  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
43099  * @cfg {Toolbar}   toolbar       A toolbar for this panel
43100  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
43101  * @cfg {String} title          The title for this panel
43102  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
43103  * @cfg {String} url            Calls {@link #setUrl} with this value
43104  * @cfg {String} region  [required] (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
43105  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
43106  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
43107  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
43108  * @cfg {Boolean} iframe      contents are an iframe - makes showing remote sources/CSS feasible..
43109  * @cfg {Boolean} badges render the badges
43110  * @cfg {String} cls  extra classes to use  
43111  * @cfg {String} background (primary|secondary|success|info|warning|danger|light|dark)
43112  
43113  * @constructor
43114  * Create a new ContentPanel.
43115  * @param {String/Object} config A string to set only the title or a config object
43116  
43117  */
43118 Roo.bootstrap.panel.Content = function( config){
43119     
43120     this.tpl = config.tpl || false;
43121     
43122     var el = config.el;
43123     var content = config.content;
43124
43125     if(config.autoCreate){ // xtype is available if this is called from factory
43126         el = Roo.id();
43127     }
43128     this.el = Roo.get(el);
43129     if(!this.el && config && config.autoCreate){
43130         if(typeof config.autoCreate == "object"){
43131             if(!config.autoCreate.id){
43132                 config.autoCreate.id = config.id||el;
43133             }
43134             this.el = Roo.DomHelper.append(document.body,
43135                         config.autoCreate, true);
43136         }else{
43137             var elcfg =  {
43138                 tag: "div",
43139                 cls: (config.cls || '') +
43140                     (config.background ? ' bg-' + config.background : '') +
43141                     " roo-layout-inactive-content",
43142                 id: config.id||el
43143             };
43144             if (config.iframe) {
43145                 elcfg.cn = [
43146                     {
43147                         tag : 'iframe',
43148                         style : 'border: 0px',
43149                         src : 'about:blank'
43150                     }
43151                 ];
43152             }
43153               
43154             if (config.html) {
43155                 elcfg.html = config.html;
43156                 
43157             }
43158                         
43159             this.el = Roo.DomHelper.append(document.body, elcfg , true);
43160             if (config.iframe) {
43161                 this.iframeEl = this.el.select('iframe',true).first();
43162             }
43163             
43164         }
43165     } 
43166     this.closable = false;
43167     this.loaded = false;
43168     this.active = false;
43169    
43170       
43171     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
43172         
43173         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
43174         
43175         this.wrapEl = this.el; //this.el.wrap();
43176         var ti = [];
43177         if (config.toolbar.items) {
43178             ti = config.toolbar.items ;
43179             delete config.toolbar.items ;
43180         }
43181         
43182         var nitems = [];
43183         this.toolbar.render(this.wrapEl, 'before');
43184         for(var i =0;i < ti.length;i++) {
43185           //  Roo.log(['add child', items[i]]);
43186             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
43187         }
43188         this.toolbar.items = nitems;
43189         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
43190         delete config.toolbar;
43191         
43192     }
43193     /*
43194     // xtype created footer. - not sure if will work as we normally have to render first..
43195     if (this.footer && !this.footer.el && this.footer.xtype) {
43196         if (!this.wrapEl) {
43197             this.wrapEl = this.el.wrap();
43198         }
43199     
43200         this.footer.container = this.wrapEl.createChild();
43201          
43202         this.footer = Roo.factory(this.footer, Roo);
43203         
43204     }
43205     */
43206     
43207      if(typeof config == "string"){
43208         this.title = config;
43209     }else{
43210         Roo.apply(this, config);
43211     }
43212     
43213     if(this.resizeEl){
43214         this.resizeEl = Roo.get(this.resizeEl, true);
43215     }else{
43216         this.resizeEl = this.el;
43217     }
43218     // handle view.xtype
43219     
43220  
43221     
43222     
43223     this.addEvents({
43224         /**
43225          * @event activate
43226          * Fires when this panel is activated. 
43227          * @param {Roo.ContentPanel} this
43228          */
43229         "activate" : true,
43230         /**
43231          * @event deactivate
43232          * Fires when this panel is activated. 
43233          * @param {Roo.ContentPanel} this
43234          */
43235         "deactivate" : true,
43236
43237         /**
43238          * @event resize
43239          * Fires when this panel is resized if fitToFrame is true.
43240          * @param {Roo.ContentPanel} this
43241          * @param {Number} width The width after any component adjustments
43242          * @param {Number} height The height after any component adjustments
43243          */
43244         "resize" : true,
43245         
43246          /**
43247          * @event render
43248          * Fires when this tab is created
43249          * @param {Roo.ContentPanel} this
43250          */
43251         "render" : true,
43252         
43253           /**
43254          * @event scroll
43255          * Fires when this content is scrolled
43256          * @param {Roo.ContentPanel} this
43257          * @param {Event} scrollEvent
43258          */
43259         "scroll" : true
43260         
43261         
43262         
43263     });
43264     
43265
43266     
43267     
43268     if(this.autoScroll && !this.iframe){
43269         this.resizeEl.setStyle("overflow", "auto");
43270         this.resizeEl.on('scroll', this.onScroll, this);
43271     } else {
43272         // fix randome scrolling
43273         //this.el.on('scroll', function() {
43274         //    Roo.log('fix random scolling');
43275         //    this.scrollTo('top',0); 
43276         //});
43277     }
43278     content = content || this.content;
43279     if(content){
43280         this.setContent(content);
43281     }
43282     if(config && config.url){
43283         this.setUrl(this.url, this.params, this.loadOnce);
43284     }
43285     
43286     
43287     
43288     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
43289     
43290     if (this.view && typeof(this.view.xtype) != 'undefined') {
43291         this.view.el = this.el.appendChild(document.createElement("div"));
43292         this.view = Roo.factory(this.view); 
43293         this.view.render  &&  this.view.render(false, '');  
43294     }
43295     
43296     
43297     this.fireEvent('render', this);
43298 };
43299
43300 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
43301     
43302     cls : '',
43303     background : '',
43304     
43305     tabTip : '',
43306     
43307     iframe : false,
43308     iframeEl : false,
43309     
43310     /* Resize Element - use this to work out scroll etc. */
43311     resizeEl : false,
43312     
43313     setRegion : function(region){
43314         this.region = region;
43315         this.setActiveClass(region && !this.background);
43316     },
43317     
43318     
43319     setActiveClass: function(state)
43320     {
43321         if(state){
43322            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
43323            this.el.setStyle('position','relative');
43324         }else{
43325            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
43326            this.el.setStyle('position', 'absolute');
43327         } 
43328     },
43329     
43330     /**
43331      * Returns the toolbar for this Panel if one was configured. 
43332      * @return {Roo.Toolbar} 
43333      */
43334     getToolbar : function(){
43335         return this.toolbar;
43336     },
43337     
43338     setActiveState : function(active)
43339     {
43340         this.active = active;
43341         this.setActiveClass(active);
43342         if(!active){
43343             if(this.fireEvent("deactivate", this) === false){
43344                 return false;
43345             }
43346             return true;
43347         }
43348         this.fireEvent("activate", this);
43349         return true;
43350     },
43351     /**
43352      * Updates this panel's element (not for iframe)
43353      * @param {String} content The new content
43354      * @param {Boolean} loadScripts (optional) true to look for and process scripts
43355     */
43356     setContent : function(content, loadScripts){
43357         if (this.iframe) {
43358             return;
43359         }
43360         
43361         this.el.update(content, loadScripts);
43362     },
43363
43364     ignoreResize : function(w, h)
43365     {
43366         //return false; // always resize?
43367         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
43368             return true;
43369         }else{
43370             this.lastSize = {width: w, height: h};
43371             return false;
43372         }
43373     },
43374     /**
43375      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
43376      * @return {Roo.UpdateManager} The UpdateManager
43377      */
43378     getUpdateManager : function(){
43379         if (this.iframe) {
43380             return false;
43381         }
43382         return this.el.getUpdateManager();
43383     },
43384      /**
43385      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
43386      * Does not work with IFRAME contents
43387      * @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:
43388 <pre><code>
43389 panel.load({
43390     url: "your-url.php",
43391     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
43392     callback: yourFunction,
43393     scope: yourObject, //(optional scope)
43394     discardUrl: false,
43395     nocache: false,
43396     text: "Loading...",
43397     timeout: 30,
43398     scripts: false
43399 });
43400 </code></pre>
43401      
43402      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
43403      * 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.
43404      * @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}
43405      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
43406      * @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.
43407      * @return {Roo.ContentPanel} this
43408      */
43409     load : function(){
43410         
43411         if (this.iframe) {
43412             return this;
43413         }
43414         
43415         var um = this.el.getUpdateManager();
43416         um.update.apply(um, arguments);
43417         return this;
43418     },
43419
43420
43421     /**
43422      * 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.
43423      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
43424      * @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)
43425      * @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)
43426      * @return {Roo.UpdateManager|Boolean} The UpdateManager or false if IFRAME
43427      */
43428     setUrl : function(url, params, loadOnce){
43429         if (this.iframe) {
43430             this.iframeEl.dom.src = url;
43431             return false;
43432         }
43433         
43434         if(this.refreshDelegate){
43435             this.removeListener("activate", this.refreshDelegate);
43436         }
43437         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
43438         this.on("activate", this.refreshDelegate);
43439         return this.el.getUpdateManager();
43440     },
43441     
43442     _handleRefresh : function(url, params, loadOnce){
43443         if(!loadOnce || !this.loaded){
43444             var updater = this.el.getUpdateManager();
43445             updater.update(url, params, this._setLoaded.createDelegate(this));
43446         }
43447     },
43448     
43449     _setLoaded : function(){
43450         this.loaded = true;
43451     }, 
43452     
43453     /**
43454      * Returns this panel's id
43455      * @return {String} 
43456      */
43457     getId : function(){
43458         return this.el.id;
43459     },
43460     
43461     /** 
43462      * Returns this panel's element - used by regiosn to add.
43463      * @return {Roo.Element} 
43464      */
43465     getEl : function(){
43466         return this.wrapEl || this.el;
43467     },
43468     
43469    
43470     
43471     adjustForComponents : function(width, height)
43472     {
43473         //Roo.log('adjustForComponents ');
43474         if(this.resizeEl != this.el){
43475             width -= this.el.getFrameWidth('lr');
43476             height -= this.el.getFrameWidth('tb');
43477         }
43478         if(this.toolbar){
43479             var te = this.toolbar.getEl();
43480             te.setWidth(width);
43481             height -= te.getHeight();
43482         }
43483         if(this.footer){
43484             var te = this.footer.getEl();
43485             te.setWidth(width);
43486             height -= te.getHeight();
43487         }
43488         
43489         
43490         if(this.adjustments){
43491             width += this.adjustments[0];
43492             height += this.adjustments[1];
43493         }
43494         return {"width": width, "height": height};
43495     },
43496     
43497     setSize : function(width, height){
43498         if(this.fitToFrame && !this.ignoreResize(width, height)){
43499             if(this.fitContainer && this.resizeEl != this.el){
43500                 this.el.setSize(width, height);
43501             }
43502             var size = this.adjustForComponents(width, height);
43503             if (this.iframe) {
43504                 this.iframeEl.setSize(width,height);
43505             }
43506             
43507             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
43508             this.fireEvent('resize', this, size.width, size.height);
43509             
43510             
43511         }
43512     },
43513     
43514     /**
43515      * Returns this panel's title
43516      * @return {String} 
43517      */
43518     getTitle : function(){
43519         
43520         if (typeof(this.title) != 'object') {
43521             return this.title;
43522         }
43523         
43524         var t = '';
43525         for (var k in this.title) {
43526             if (!this.title.hasOwnProperty(k)) {
43527                 continue;
43528             }
43529             
43530             if (k.indexOf('-') >= 0) {
43531                 var s = k.split('-');
43532                 for (var i = 0; i<s.length; i++) {
43533                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
43534                 }
43535             } else {
43536                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
43537             }
43538         }
43539         return t;
43540     },
43541     
43542     /**
43543      * Set this panel's title
43544      * @param {String} title
43545      */
43546     setTitle : function(title){
43547         this.title = title;
43548         if(this.region){
43549             this.region.updatePanelTitle(this, title);
43550         }
43551     },
43552     
43553     /**
43554      * Returns true is this panel was configured to be closable
43555      * @return {Boolean} 
43556      */
43557     isClosable : function(){
43558         return this.closable;
43559     },
43560     
43561     beforeSlide : function(){
43562         this.el.clip();
43563         this.resizeEl.clip();
43564     },
43565     
43566     afterSlide : function(){
43567         this.el.unclip();
43568         this.resizeEl.unclip();
43569     },
43570     
43571     /**
43572      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
43573      *   Will fail silently if the {@link #setUrl} method has not been called.
43574      *   This does not activate the panel, just updates its content.
43575      */
43576     refresh : function(){
43577         if(this.refreshDelegate){
43578            this.loaded = false;
43579            this.refreshDelegate();
43580         }
43581     },
43582     
43583     /**
43584      * Destroys this panel
43585      */
43586     destroy : function(){
43587         this.el.removeAllListeners();
43588         var tempEl = document.createElement("span");
43589         tempEl.appendChild(this.el.dom);
43590         tempEl.innerHTML = "";
43591         this.el.remove();
43592         this.el = null;
43593     },
43594     
43595     /**
43596      * form - if the content panel contains a form - this is a reference to it.
43597      * @type {Roo.form.Form}
43598      */
43599     form : false,
43600     /**
43601      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
43602      *    This contains a reference to it.
43603      * @type {Roo.View}
43604      */
43605     view : false,
43606     
43607       /**
43608      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
43609      * <pre><code>
43610
43611 layout.addxtype({
43612        xtype : 'Form',
43613        items: [ .... ]
43614    }
43615 );
43616
43617 </code></pre>
43618      * @param {Object} cfg Xtype definition of item to add.
43619      */
43620     
43621     
43622     getChildContainer: function () {
43623         return this.getEl();
43624     },
43625     
43626     
43627     onScroll : function(e)
43628     {
43629         this.fireEvent('scroll', this, e);
43630     }
43631     
43632     
43633     /*
43634         var  ret = new Roo.factory(cfg);
43635         return ret;
43636         
43637         
43638         // add form..
43639         if (cfg.xtype.match(/^Form$/)) {
43640             
43641             var el;
43642             //if (this.footer) {
43643             //    el = this.footer.container.insertSibling(false, 'before');
43644             //} else {
43645                 el = this.el.createChild();
43646             //}
43647
43648             this.form = new  Roo.form.Form(cfg);
43649             
43650             
43651             if ( this.form.allItems.length) {
43652                 this.form.render(el.dom);
43653             }
43654             return this.form;
43655         }
43656         // should only have one of theses..
43657         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
43658             // views.. should not be just added - used named prop 'view''
43659             
43660             cfg.el = this.el.appendChild(document.createElement("div"));
43661             // factory?
43662             
43663             var ret = new Roo.factory(cfg);
43664              
43665              ret.render && ret.render(false, ''); // render blank..
43666             this.view = ret;
43667             return ret;
43668         }
43669         return false;
43670     }
43671     \*/
43672 });
43673  
43674 /**
43675  * @class Roo.bootstrap.panel.Grid
43676  * @extends Roo.bootstrap.panel.Content
43677  * @constructor
43678  * Create a new GridPanel.
43679  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
43680  * @cfg {Roo.bootstrap.nav.Simplebar} toolbar the toolbar at the top of the grid.
43681  * @param {Object} config A the config object
43682   
43683  */
43684
43685
43686
43687 Roo.bootstrap.panel.Grid = function(config)
43688 {
43689     
43690       
43691     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
43692         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
43693
43694     config.el = this.wrapper;
43695     //this.el = this.wrapper;
43696     
43697       if (config.container) {
43698         // ctor'ed from a Border/panel.grid
43699         
43700         
43701         this.wrapper.setStyle("overflow", "hidden");
43702         this.wrapper.addClass('roo-grid-container');
43703
43704     }
43705     
43706     
43707     if(config.toolbar){
43708         var tool_el = this.wrapper.createChild();    
43709         this.toolbar = Roo.factory(config.toolbar);
43710         var ti = [];
43711         if (config.toolbar.items) {
43712             ti = config.toolbar.items ;
43713             delete config.toolbar.items ;
43714         }
43715         
43716         var nitems = [];
43717         this.toolbar.render(tool_el);
43718         for(var i =0;i < ti.length;i++) {
43719           //  Roo.log(['add child', items[i]]);
43720             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
43721         }
43722         this.toolbar.items = nitems;
43723         
43724         delete config.toolbar;
43725     }
43726     
43727     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
43728     config.grid.scrollBody = true;;
43729     config.grid.monitorWindowResize = false; // turn off autosizing
43730     config.grid.autoHeight = false;
43731     config.grid.autoWidth = false;
43732     
43733     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
43734     
43735     if (config.background) {
43736         // render grid on panel activation (if panel background)
43737         this.on('activate', function(gp) {
43738             if (!gp.grid.rendered) {
43739                 gp.grid.render(this.wrapper);
43740                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
43741             }
43742         });
43743             
43744     } else {
43745         this.grid.render(this.wrapper);
43746         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
43747
43748     }
43749     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
43750     // ??? needed ??? config.el = this.wrapper;
43751     
43752     
43753     
43754   
43755     // xtype created footer. - not sure if will work as we normally have to render first..
43756     if (this.footer && !this.footer.el && this.footer.xtype) {
43757         
43758         var ctr = this.grid.getView().getFooterPanel(true);
43759         this.footer.dataSource = this.grid.dataSource;
43760         this.footer = Roo.factory(this.footer, Roo);
43761         this.footer.render(ctr);
43762         
43763     }
43764     
43765     
43766     
43767     
43768      
43769 };
43770
43771 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content,
43772 {
43773   
43774     getId : function(){
43775         return this.grid.id;
43776     },
43777     
43778     /**
43779      * Returns the grid for this panel
43780      * @return {Roo.bootstrap.Table} 
43781      */
43782     getGrid : function(){
43783         return this.grid;    
43784     },
43785     
43786     setSize : function(width, height)
43787     {
43788      
43789         //if(!this.ignoreResize(width, height)){
43790             var grid = this.grid;
43791             var size = this.adjustForComponents(width, height);
43792             // tfoot is not a footer?
43793           
43794             
43795             var gridel = grid.getGridEl();
43796             gridel.setSize(size.width, size.height);
43797             
43798             var tbd = grid.getGridEl().select('tbody', true).first();
43799             var thd = grid.getGridEl().select('thead',true).first();
43800             var tbf= grid.getGridEl().select('tfoot', true).first();
43801
43802             if (tbf) {
43803                 size.height -= tbf.getHeight();
43804             }
43805             if (thd) {
43806                 size.height -= thd.getHeight();
43807             }
43808             
43809             tbd.setSize(size.width, size.height );
43810             // this is for the account management tab -seems to work there.
43811             var thd = grid.getGridEl().select('thead',true).first();
43812             //if (tbd) {
43813             //    tbd.setSize(size.width, size.height - thd.getHeight());
43814             //}
43815              
43816             grid.autoSize();
43817         //}
43818    
43819     },
43820      
43821     
43822     
43823     beforeSlide : function(){
43824         this.grid.getView().scroller.clip();
43825     },
43826     
43827     afterSlide : function(){
43828         this.grid.getView().scroller.unclip();
43829     },
43830     
43831     destroy : function(){
43832         this.grid.destroy();
43833         delete this.grid;
43834         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
43835     }
43836 });
43837
43838 /**
43839  * @class Roo.bootstrap.panel.Nest
43840  * @extends Roo.bootstrap.panel.Content
43841  * @constructor
43842  * Create a new Panel, that can contain a layout.Border.
43843  * 
43844  * 
43845  * @param {String/Object} config A string to set only the title or a config object
43846  */
43847 Roo.bootstrap.panel.Nest = function(config)
43848 {
43849     // construct with only one argument..
43850     /* FIXME - implement nicer consturctors
43851     if (layout.layout) {
43852         config = layout;
43853         layout = config.layout;
43854         delete config.layout;
43855     }
43856     if (layout.xtype && !layout.getEl) {
43857         // then layout needs constructing..
43858         layout = Roo.factory(layout, Roo);
43859     }
43860     */
43861     
43862     config.el =  config.layout.getEl();
43863     
43864     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
43865     
43866     config.layout.monitorWindowResize = false; // turn off autosizing
43867     this.layout = config.layout;
43868     this.layout.getEl().addClass("roo-layout-nested-layout");
43869     this.layout.parent = this;
43870     
43871     
43872     
43873     
43874 };
43875
43876 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
43877     /**
43878     * @cfg {Roo.BorderLayout} layout The layout for this panel
43879     */
43880     layout : false,
43881
43882     setSize : function(width, height){
43883         if(!this.ignoreResize(width, height)){
43884             var size = this.adjustForComponents(width, height);
43885             var el = this.layout.getEl();
43886             if (size.height < 1) {
43887                 el.setWidth(size.width);   
43888             } else {
43889                 el.setSize(size.width, size.height);
43890             }
43891             var touch = el.dom.offsetWidth;
43892             this.layout.layout();
43893             // ie requires a double layout on the first pass
43894             if(Roo.isIE && !this.initialized){
43895                 this.initialized = true;
43896                 this.layout.layout();
43897             }
43898         }
43899     },
43900     
43901     // activate all subpanels if not currently active..
43902     
43903     setActiveState : function(active){
43904         this.active = active;
43905         this.setActiveClass(active);
43906         
43907         if(!active){
43908             this.fireEvent("deactivate", this);
43909             return;
43910         }
43911         
43912         this.fireEvent("activate", this);
43913         // not sure if this should happen before or after..
43914         if (!this.layout) {
43915             return; // should not happen..
43916         }
43917         var reg = false;
43918         for (var r in this.layout.regions) {
43919             reg = this.layout.getRegion(r);
43920             if (reg.getActivePanel()) {
43921                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
43922                 reg.setActivePanel(reg.getActivePanel());
43923                 continue;
43924             }
43925             if (!reg.panels.length) {
43926                 continue;
43927             }
43928             reg.showPanel(reg.getPanel(0));
43929         }
43930         
43931         
43932         
43933         
43934     },
43935     
43936     /**
43937      * Returns the nested BorderLayout for this panel
43938      * @return {Roo.BorderLayout} 
43939      */
43940     getLayout : function(){
43941         return this.layout;
43942     },
43943     
43944      /**
43945      * Adds a xtype elements to the layout of the nested panel
43946      * <pre><code>
43947
43948 panel.addxtype({
43949        xtype : 'ContentPanel',
43950        region: 'west',
43951        items: [ .... ]
43952    }
43953 );
43954
43955 panel.addxtype({
43956         xtype : 'NestedLayoutPanel',
43957         region: 'west',
43958         layout: {
43959            center: { },
43960            west: { }   
43961         },
43962         items : [ ... list of content panels or nested layout panels.. ]
43963    }
43964 );
43965 </code></pre>
43966      * @param {Object} cfg Xtype definition of item to add.
43967      */
43968     addxtype : function(cfg) {
43969         return this.layout.addxtype(cfg);
43970     
43971     }
43972 });/*
43973  * Based on:
43974  * Ext JS Library 1.1.1
43975  * Copyright(c) 2006-2007, Ext JS, LLC.
43976  *
43977  * Originally Released Under LGPL - original licence link has changed is not relivant.
43978  *
43979  * Fork - LGPL
43980  * <script type="text/javascript">
43981  */
43982 /**
43983  * @class Roo.TabPanel
43984  * @extends Roo.util.Observable
43985  * A lightweight tab container.
43986  * <br><br>
43987  * Usage:
43988  * <pre><code>
43989 // basic tabs 1, built from existing content
43990 var tabs = new Roo.TabPanel("tabs1");
43991 tabs.addTab("script", "View Script");
43992 tabs.addTab("markup", "View Markup");
43993 tabs.activate("script");
43994
43995 // more advanced tabs, built from javascript
43996 var jtabs = new Roo.TabPanel("jtabs");
43997 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
43998
43999 // set up the UpdateManager
44000 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
44001 var updater = tab2.getUpdateManager();
44002 updater.setDefaultUrl("ajax1.htm");
44003 tab2.on('activate', updater.refresh, updater, true);
44004
44005 // Use setUrl for Ajax loading
44006 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
44007 tab3.setUrl("ajax2.htm", null, true);
44008
44009 // Disabled tab
44010 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
44011 tab4.disable();
44012
44013 jtabs.activate("jtabs-1");
44014  * </code></pre>
44015  * @constructor
44016  * Create a new TabPanel.
44017  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
44018  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
44019  */
44020 Roo.bootstrap.panel.Tabs = function(config){
44021     /**
44022     * The container element for this TabPanel.
44023     * @type Roo.Element
44024     */
44025     this.el = Roo.get(config.el);
44026     delete config.el;
44027     if(config){
44028         if(typeof config == "boolean"){
44029             this.tabPosition = config ? "bottom" : "top";
44030         }else{
44031             Roo.apply(this, config);
44032         }
44033     }
44034     
44035     if(this.tabPosition == "bottom"){
44036         // if tabs are at the bottom = create the body first.
44037         this.bodyEl = Roo.get(this.createBody(this.el.dom));
44038         this.el.addClass("roo-tabs-bottom");
44039     }
44040     // next create the tabs holders
44041     
44042     if (this.tabPosition == "west"){
44043         
44044         var reg = this.region; // fake it..
44045         while (reg) {
44046             if (!reg.mgr.parent) {
44047                 break;
44048             }
44049             reg = reg.mgr.parent.region;
44050         }
44051         Roo.log("got nest?");
44052         Roo.log(reg);
44053         if (reg.mgr.getRegion('west')) {
44054             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
44055             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
44056             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
44057             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
44058             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
44059         
44060             
44061         }
44062         
44063         
44064     } else {
44065      
44066         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
44067         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
44068         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
44069         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
44070     }
44071     
44072     
44073     if(Roo.isIE){
44074         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
44075     }
44076     
44077     // finally - if tabs are at the top, then create the body last..
44078     if(this.tabPosition != "bottom"){
44079         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
44080          * @type Roo.Element
44081          */
44082         this.bodyEl = Roo.get(this.createBody(this.el.dom));
44083         this.el.addClass("roo-tabs-top");
44084     }
44085     this.items = [];
44086
44087     this.bodyEl.setStyle("position", "relative");
44088
44089     this.active = null;
44090     this.activateDelegate = this.activate.createDelegate(this);
44091
44092     this.addEvents({
44093         /**
44094          * @event tabchange
44095          * Fires when the active tab changes
44096          * @param {Roo.TabPanel} this
44097          * @param {Roo.TabPanelItem} activePanel The new active tab
44098          */
44099         "tabchange": true,
44100         /**
44101          * @event beforetabchange
44102          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
44103          * @param {Roo.TabPanel} this
44104          * @param {Object} e Set cancel to true on this object to cancel the tab change
44105          * @param {Roo.TabPanelItem} tab The tab being changed to
44106          */
44107         "beforetabchange" : true
44108     });
44109
44110     Roo.EventManager.onWindowResize(this.onResize, this);
44111     this.cpad = this.el.getPadding("lr");
44112     this.hiddenCount = 0;
44113
44114
44115     // toolbar on the tabbar support...
44116     if (this.toolbar) {
44117         alert("no toolbar support yet");
44118         this.toolbar  = false;
44119         /*
44120         var tcfg = this.toolbar;
44121         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
44122         this.toolbar = new Roo.Toolbar(tcfg);
44123         if (Roo.isSafari) {
44124             var tbl = tcfg.container.child('table', true);
44125             tbl.setAttribute('width', '100%');
44126         }
44127         */
44128         
44129     }
44130    
44131
44132
44133     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
44134 };
44135
44136 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
44137     /*
44138      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
44139      */
44140     tabPosition : "top",
44141     /*
44142      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
44143      */
44144     currentTabWidth : 0,
44145     /*
44146      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
44147      */
44148     minTabWidth : 40,
44149     /*
44150      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
44151      */
44152     maxTabWidth : 250,
44153     /*
44154      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
44155      */
44156     preferredTabWidth : 175,
44157     /*
44158      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
44159      */
44160     resizeTabs : false,
44161     /*
44162      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
44163      */
44164     monitorResize : true,
44165     /*
44166      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
44167      */
44168     toolbar : false,  // set by caller..
44169     
44170     region : false, /// set by caller
44171     
44172     disableTooltips : true, // not used yet...
44173
44174     /**
44175      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
44176      * @param {String} id The id of the div to use <b>or create</b>
44177      * @param {String} text The text for the tab
44178      * @param {String} content (optional) Content to put in the TabPanelItem body
44179      * @param {Boolean} closable (optional) True to create a close icon on the tab
44180      * @return {Roo.TabPanelItem} The created TabPanelItem
44181      */
44182     addTab : function(id, text, content, closable, tpl)
44183     {
44184         var item = new Roo.bootstrap.panel.TabItem({
44185             panel: this,
44186             id : id,
44187             text : text,
44188             closable : closable,
44189             tpl : tpl
44190         });
44191         this.addTabItem(item);
44192         if(content){
44193             item.setContent(content);
44194         }
44195         return item;
44196     },
44197
44198     /**
44199      * Returns the {@link Roo.TabPanelItem} with the specified id/index
44200      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
44201      * @return {Roo.TabPanelItem}
44202      */
44203     getTab : function(id){
44204         return this.items[id];
44205     },
44206
44207     /**
44208      * Hides the {@link Roo.TabPanelItem} with the specified id/index
44209      * @param {String/Number} id The id or index of the TabPanelItem to hide.
44210      */
44211     hideTab : function(id){
44212         var t = this.items[id];
44213         if(!t.isHidden()){
44214            t.setHidden(true);
44215            this.hiddenCount++;
44216            this.autoSizeTabs();
44217         }
44218     },
44219
44220     /**
44221      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
44222      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
44223      */
44224     unhideTab : function(id){
44225         var t = this.items[id];
44226         if(t.isHidden()){
44227            t.setHidden(false);
44228            this.hiddenCount--;
44229            this.autoSizeTabs();
44230         }
44231     },
44232
44233     /**
44234      * Adds an existing {@link Roo.TabPanelItem}.
44235      * @param {Roo.TabPanelItem} item The TabPanelItem to add
44236      */
44237     addTabItem : function(item)
44238     {
44239         this.items[item.id] = item;
44240         this.items.push(item);
44241         this.autoSizeTabs();
44242       //  if(this.resizeTabs){
44243     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
44244   //         this.autoSizeTabs();
44245 //        }else{
44246 //            item.autoSize();
44247        // }
44248     },
44249
44250     /**
44251      * Removes a {@link Roo.TabPanelItem}.
44252      * @param {String/Number} id The id or index of the TabPanelItem to remove.
44253      */
44254     removeTab : function(id){
44255         var items = this.items;
44256         var tab = items[id];
44257         if(!tab) { return; }
44258         var index = items.indexOf(tab);
44259         if(this.active == tab && items.length > 1){
44260             var newTab = this.getNextAvailable(index);
44261             if(newTab) {
44262                 newTab.activate();
44263             }
44264         }
44265         this.stripEl.dom.removeChild(tab.pnode.dom);
44266         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
44267             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
44268         }
44269         items.splice(index, 1);
44270         delete this.items[tab.id];
44271         tab.fireEvent("close", tab);
44272         tab.purgeListeners();
44273         this.autoSizeTabs();
44274     },
44275
44276     getNextAvailable : function(start){
44277         var items = this.items;
44278         var index = start;
44279         // look for a next tab that will slide over to
44280         // replace the one being removed
44281         while(index < items.length){
44282             var item = items[++index];
44283             if(item && !item.isHidden()){
44284                 return item;
44285             }
44286         }
44287         // if one isn't found select the previous tab (on the left)
44288         index = start;
44289         while(index >= 0){
44290             var item = items[--index];
44291             if(item && !item.isHidden()){
44292                 return item;
44293             }
44294         }
44295         return null;
44296     },
44297
44298     /**
44299      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
44300      * @param {String/Number} id The id or index of the TabPanelItem to disable.
44301      */
44302     disableTab : function(id){
44303         var tab = this.items[id];
44304         if(tab && this.active != tab){
44305             tab.disable();
44306         }
44307     },
44308
44309     /**
44310      * Enables a {@link Roo.TabPanelItem} that is disabled.
44311      * @param {String/Number} id The id or index of the TabPanelItem to enable.
44312      */
44313     enableTab : function(id){
44314         var tab = this.items[id];
44315         tab.enable();
44316     },
44317
44318     /**
44319      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
44320      * @param {String/Number} id The id or index of the TabPanelItem to activate.
44321      * @return {Roo.TabPanelItem} The TabPanelItem.
44322      */
44323     activate : function(id)
44324     {
44325         //Roo.log('activite:'  + id);
44326         
44327         var tab = this.items[id];
44328         if(!tab){
44329             return null;
44330         }
44331         if(tab == this.active || tab.disabled){
44332             return tab;
44333         }
44334         var e = {};
44335         this.fireEvent("beforetabchange", this, e, tab);
44336         if(e.cancel !== true && !tab.disabled){
44337             if(this.active){
44338                 this.active.hide();
44339             }
44340             this.active = this.items[id];
44341             this.active.show();
44342             this.fireEvent("tabchange", this, this.active);
44343         }
44344         return tab;
44345     },
44346
44347     /**
44348      * Gets the active {@link Roo.TabPanelItem}.
44349      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
44350      */
44351     getActiveTab : function(){
44352         return this.active;
44353     },
44354
44355     /**
44356      * Updates the tab body element to fit the height of the container element
44357      * for overflow scrolling
44358      * @param {Number} targetHeight (optional) Override the starting height from the elements height
44359      */
44360     syncHeight : function(targetHeight){
44361         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
44362         var bm = this.bodyEl.getMargins();
44363         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
44364         this.bodyEl.setHeight(newHeight);
44365         return newHeight;
44366     },
44367
44368     onResize : function(){
44369         if(this.monitorResize){
44370             this.autoSizeTabs();
44371         }
44372     },
44373
44374     /**
44375      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
44376      */
44377     beginUpdate : function(){
44378         this.updating = true;
44379     },
44380
44381     /**
44382      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
44383      */
44384     endUpdate : function(){
44385         this.updating = false;
44386         this.autoSizeTabs();
44387     },
44388
44389     /**
44390      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
44391      */
44392     autoSizeTabs : function()
44393     {
44394         var count = this.items.length;
44395         var vcount = count - this.hiddenCount;
44396         
44397         if (vcount < 2) {
44398             this.stripEl.hide();
44399         } else {
44400             this.stripEl.show();
44401         }
44402         
44403         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
44404             return;
44405         }
44406         
44407         
44408         var w = Math.max(this.el.getWidth() - this.cpad, 10);
44409         var availWidth = Math.floor(w / vcount);
44410         var b = this.stripBody;
44411         if(b.getWidth() > w){
44412             var tabs = this.items;
44413             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
44414             if(availWidth < this.minTabWidth){
44415                 /*if(!this.sleft){    // incomplete scrolling code
44416                     this.createScrollButtons();
44417                 }
44418                 this.showScroll();
44419                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
44420             }
44421         }else{
44422             if(this.currentTabWidth < this.preferredTabWidth){
44423                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
44424             }
44425         }
44426     },
44427
44428     /**
44429      * Returns the number of tabs in this TabPanel.
44430      * @return {Number}
44431      */
44432      getCount : function(){
44433          return this.items.length;
44434      },
44435
44436     /**
44437      * Resizes all the tabs to the passed width
44438      * @param {Number} The new width
44439      */
44440     setTabWidth : function(width){
44441         this.currentTabWidth = width;
44442         for(var i = 0, len = this.items.length; i < len; i++) {
44443                 if(!this.items[i].isHidden()) {
44444                 this.items[i].setWidth(width);
44445             }
44446         }
44447     },
44448
44449     /**
44450      * Destroys this TabPanel
44451      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
44452      */
44453     destroy : function(removeEl){
44454         Roo.EventManager.removeResizeListener(this.onResize, this);
44455         for(var i = 0, len = this.items.length; i < len; i++){
44456             this.items[i].purgeListeners();
44457         }
44458         if(removeEl === true){
44459             this.el.update("");
44460             this.el.remove();
44461         }
44462     },
44463     
44464     createStrip : function(container)
44465     {
44466         var strip = document.createElement("nav");
44467         strip.className = Roo.bootstrap.version == 4 ?
44468             "navbar-light bg-light" : 
44469             "navbar navbar-default"; //"x-tabs-wrap";
44470         container.appendChild(strip);
44471         return strip;
44472     },
44473     
44474     createStripList : function(strip)
44475     {
44476         // div wrapper for retard IE
44477         // returns the "tr" element.
44478         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
44479         //'<div class="x-tabs-strip-wrap">'+
44480           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
44481           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
44482         return strip.firstChild; //.firstChild.firstChild.firstChild;
44483     },
44484     createBody : function(container)
44485     {
44486         var body = document.createElement("div");
44487         Roo.id(body, "tab-body");
44488         //Roo.fly(body).addClass("x-tabs-body");
44489         Roo.fly(body).addClass("tab-content");
44490         container.appendChild(body);
44491         return body;
44492     },
44493     createItemBody :function(bodyEl, id){
44494         var body = Roo.getDom(id);
44495         if(!body){
44496             body = document.createElement("div");
44497             body.id = id;
44498         }
44499         //Roo.fly(body).addClass("x-tabs-item-body");
44500         Roo.fly(body).addClass("tab-pane");
44501          bodyEl.insertBefore(body, bodyEl.firstChild);
44502         return body;
44503     },
44504     /** @private */
44505     createStripElements :  function(stripEl, text, closable, tpl)
44506     {
44507         var td = document.createElement("li"); // was td..
44508         td.className = 'nav-item';
44509         
44510         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
44511         
44512         
44513         stripEl.appendChild(td);
44514         /*if(closable){
44515             td.className = "x-tabs-closable";
44516             if(!this.closeTpl){
44517                 this.closeTpl = new Roo.Template(
44518                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
44519                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
44520                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
44521                 );
44522             }
44523             var el = this.closeTpl.overwrite(td, {"text": text});
44524             var close = el.getElementsByTagName("div")[0];
44525             var inner = el.getElementsByTagName("em")[0];
44526             return {"el": el, "close": close, "inner": inner};
44527         } else {
44528         */
44529         // not sure what this is..
44530 //            if(!this.tabTpl){
44531                 //this.tabTpl = new Roo.Template(
44532                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
44533                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
44534                 //);
44535 //                this.tabTpl = new Roo.Template(
44536 //                   '<a href="#">' +
44537 //                   '<span unselectable="on"' +
44538 //                            (this.disableTooltips ? '' : ' title="{text}"') +
44539 //                            ' >{text}</span></a>'
44540 //                );
44541 //                
44542 //            }
44543
44544
44545             var template = tpl || this.tabTpl || false;
44546             
44547             if(!template){
44548                 template =  new Roo.Template(
44549                         Roo.bootstrap.version == 4 ? 
44550                             (
44551                                 '<a class="nav-link" href="#" unselectable="on"' +
44552                                      (this.disableTooltips ? '' : ' title="{text}"') +
44553                                      ' >{text}</a>'
44554                             ) : (
44555                                 '<a class="nav-link" href="#">' +
44556                                 '<span unselectable="on"' +
44557                                          (this.disableTooltips ? '' : ' title="{text}"') +
44558                                     ' >{text}</span></a>'
44559                             )
44560                 );
44561             }
44562             
44563             switch (typeof(template)) {
44564                 case 'object' :
44565                     break;
44566                 case 'string' :
44567                     template = new Roo.Template(template);
44568                     break;
44569                 default :
44570                     break;
44571             }
44572             
44573             var el = template.overwrite(td, {"text": text});
44574             
44575             var inner = el.getElementsByTagName("span")[0];
44576             
44577             return {"el": el, "inner": inner};
44578             
44579     }
44580         
44581     
44582 });
44583
44584 /**
44585  * @class Roo.TabPanelItem
44586  * @extends Roo.util.Observable
44587  * Represents an individual item (tab plus body) in a TabPanel.
44588  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
44589  * @param {String} id The id of this TabPanelItem
44590  * @param {String} text The text for the tab of this TabPanelItem
44591  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
44592  */
44593 Roo.bootstrap.panel.TabItem = function(config){
44594     /**
44595      * The {@link Roo.TabPanel} this TabPanelItem belongs to
44596      * @type Roo.TabPanel
44597      */
44598     this.tabPanel = config.panel;
44599     /**
44600      * The id for this TabPanelItem
44601      * @type String
44602      */
44603     this.id = config.id;
44604     /** @private */
44605     this.disabled = false;
44606     /** @private */
44607     this.text = config.text;
44608     /** @private */
44609     this.loaded = false;
44610     this.closable = config.closable;
44611
44612     /**
44613      * The body element for this TabPanelItem.
44614      * @type Roo.Element
44615      */
44616     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
44617     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
44618     this.bodyEl.setStyle("display", "block");
44619     this.bodyEl.setStyle("zoom", "1");
44620     //this.hideAction();
44621
44622     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
44623     /** @private */
44624     this.el = Roo.get(els.el);
44625     this.inner = Roo.get(els.inner, true);
44626      this.textEl = Roo.bootstrap.version == 4 ?
44627         this.el : Roo.get(this.el.dom.firstChild, true);
44628
44629     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
44630     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
44631
44632     
44633 //    this.el.on("mousedown", this.onTabMouseDown, this);
44634     this.el.on("click", this.onTabClick, this);
44635     /** @private */
44636     if(config.closable){
44637         var c = Roo.get(els.close, true);
44638         c.dom.title = this.closeText;
44639         c.addClassOnOver("close-over");
44640         c.on("click", this.closeClick, this);
44641      }
44642
44643     this.addEvents({
44644          /**
44645          * @event activate
44646          * Fires when this tab becomes the active tab.
44647          * @param {Roo.TabPanel} tabPanel The parent TabPanel
44648          * @param {Roo.TabPanelItem} this
44649          */
44650         "activate": true,
44651         /**
44652          * @event beforeclose
44653          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
44654          * @param {Roo.TabPanelItem} this
44655          * @param {Object} e Set cancel to true on this object to cancel the close.
44656          */
44657         "beforeclose": true,
44658         /**
44659          * @event close
44660          * Fires when this tab is closed.
44661          * @param {Roo.TabPanelItem} this
44662          */
44663          "close": true,
44664         /**
44665          * @event deactivate
44666          * Fires when this tab is no longer the active tab.
44667          * @param {Roo.TabPanel} tabPanel The parent TabPanel
44668          * @param {Roo.TabPanelItem} this
44669          */
44670          "deactivate" : true
44671     });
44672     this.hidden = false;
44673
44674     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
44675 };
44676
44677 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
44678            {
44679     purgeListeners : function(){
44680        Roo.util.Observable.prototype.purgeListeners.call(this);
44681        this.el.removeAllListeners();
44682     },
44683     /**
44684      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
44685      */
44686     show : function(){
44687         this.status_node.addClass("active");
44688         this.showAction();
44689         if(Roo.isOpera){
44690             this.tabPanel.stripWrap.repaint();
44691         }
44692         this.fireEvent("activate", this.tabPanel, this);
44693     },
44694
44695     /**
44696      * Returns true if this tab is the active tab.
44697      * @return {Boolean}
44698      */
44699     isActive : function(){
44700         return this.tabPanel.getActiveTab() == this;
44701     },
44702
44703     /**
44704      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
44705      */
44706     hide : function(){
44707         this.status_node.removeClass("active");
44708         this.hideAction();
44709         this.fireEvent("deactivate", this.tabPanel, this);
44710     },
44711
44712     hideAction : function(){
44713         this.bodyEl.hide();
44714         this.bodyEl.setStyle("position", "absolute");
44715         this.bodyEl.setLeft("-20000px");
44716         this.bodyEl.setTop("-20000px");
44717     },
44718
44719     showAction : function(){
44720         this.bodyEl.setStyle("position", "relative");
44721         this.bodyEl.setTop("");
44722         this.bodyEl.setLeft("");
44723         this.bodyEl.show();
44724     },
44725
44726     /**
44727      * Set the tooltip for the tab.
44728      * @param {String} tooltip The tab's tooltip
44729      */
44730     setTooltip : function(text){
44731         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
44732             this.textEl.dom.qtip = text;
44733             this.textEl.dom.removeAttribute('title');
44734         }else{
44735             this.textEl.dom.title = text;
44736         }
44737     },
44738
44739     onTabClick : function(e){
44740         e.preventDefault();
44741         this.tabPanel.activate(this.id);
44742     },
44743
44744     onTabMouseDown : function(e){
44745         e.preventDefault();
44746         this.tabPanel.activate(this.id);
44747     },
44748 /*
44749     getWidth : function(){
44750         return this.inner.getWidth();
44751     },
44752
44753     setWidth : function(width){
44754         var iwidth = width - this.linode.getPadding("lr");
44755         this.inner.setWidth(iwidth);
44756         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
44757         this.linode.setWidth(width);
44758     },
44759 */
44760     /**
44761      * Show or hide the tab
44762      * @param {Boolean} hidden True to hide or false to show.
44763      */
44764     setHidden : function(hidden){
44765         this.hidden = hidden;
44766         this.linode.setStyle("display", hidden ? "none" : "");
44767     },
44768
44769     /**
44770      * Returns true if this tab is "hidden"
44771      * @return {Boolean}
44772      */
44773     isHidden : function(){
44774         return this.hidden;
44775     },
44776
44777     /**
44778      * Returns the text for this tab
44779      * @return {String}
44780      */
44781     getText : function(){
44782         return this.text;
44783     },
44784     /*
44785     autoSize : function(){
44786         //this.el.beginMeasure();
44787         this.textEl.setWidth(1);
44788         /*
44789          *  #2804 [new] Tabs in Roojs
44790          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
44791          */
44792         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
44793         //this.el.endMeasure();
44794     //},
44795
44796     /**
44797      * Sets the text for the tab (Note: this also sets the tooltip text)
44798      * @param {String} text The tab's text and tooltip
44799      */
44800     setText : function(text){
44801         this.text = text;
44802         this.textEl.update(text);
44803         this.setTooltip(text);
44804         //if(!this.tabPanel.resizeTabs){
44805         //    this.autoSize();
44806         //}
44807     },
44808     /**
44809      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
44810      */
44811     activate : function(){
44812         this.tabPanel.activate(this.id);
44813     },
44814
44815     /**
44816      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
44817      */
44818     disable : function(){
44819         if(this.tabPanel.active != this){
44820             this.disabled = true;
44821             this.status_node.addClass("disabled");
44822         }
44823     },
44824
44825     /**
44826      * Enables this TabPanelItem if it was previously disabled.
44827      */
44828     enable : function(){
44829         this.disabled = false;
44830         this.status_node.removeClass("disabled");
44831     },
44832
44833     /**
44834      * Sets the content for this TabPanelItem.
44835      * @param {String} content The content
44836      * @param {Boolean} loadScripts true to look for and load scripts
44837      */
44838     setContent : function(content, loadScripts){
44839         this.bodyEl.update(content, loadScripts);
44840     },
44841
44842     /**
44843      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
44844      * @return {Roo.UpdateManager} The UpdateManager
44845      */
44846     getUpdateManager : function(){
44847         return this.bodyEl.getUpdateManager();
44848     },
44849
44850     /**
44851      * Set a URL to be used to load the content for this TabPanelItem.
44852      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
44853      * @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)
44854      * @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)
44855      * @return {Roo.UpdateManager} The UpdateManager
44856      */
44857     setUrl : function(url, params, loadOnce){
44858         if(this.refreshDelegate){
44859             this.un('activate', this.refreshDelegate);
44860         }
44861         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
44862         this.on("activate", this.refreshDelegate);
44863         return this.bodyEl.getUpdateManager();
44864     },
44865
44866     /** @private */
44867     _handleRefresh : function(url, params, loadOnce){
44868         if(!loadOnce || !this.loaded){
44869             var updater = this.bodyEl.getUpdateManager();
44870             updater.update(url, params, this._setLoaded.createDelegate(this));
44871         }
44872     },
44873
44874     /**
44875      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
44876      *   Will fail silently if the setUrl method has not been called.
44877      *   This does not activate the panel, just updates its content.
44878      */
44879     refresh : function(){
44880         if(this.refreshDelegate){
44881            this.loaded = false;
44882            this.refreshDelegate();
44883         }
44884     },
44885
44886     /** @private */
44887     _setLoaded : function(){
44888         this.loaded = true;
44889     },
44890
44891     /** @private */
44892     closeClick : function(e){
44893         var o = {};
44894         e.stopEvent();
44895         this.fireEvent("beforeclose", this, o);
44896         if(o.cancel !== true){
44897             this.tabPanel.removeTab(this.id);
44898         }
44899     },
44900     /**
44901      * The text displayed in the tooltip for the close icon.
44902      * @type String
44903      */
44904     closeText : "Close this tab"
44905 });
44906 /**
44907 *    This script refer to:
44908 *    Title: International Telephone Input
44909 *    Author: Jack O'Connor
44910 *    Code version:  v12.1.12
44911 *    Availability: https://github.com/jackocnr/intl-tel-input.git
44912 **/
44913
44914 Roo.bootstrap.form.PhoneInputData = function() {
44915     var d = [
44916       [
44917         "Afghanistan (‫افغانستان‬‎)",
44918         "af",
44919         "93"
44920       ],
44921       [
44922         "Albania (Shqipëri)",
44923         "al",
44924         "355"
44925       ],
44926       [
44927         "Algeria (‫الجزائر‬‎)",
44928         "dz",
44929         "213"
44930       ],
44931       [
44932         "American Samoa",
44933         "as",
44934         "1684"
44935       ],
44936       [
44937         "Andorra",
44938         "ad",
44939         "376"
44940       ],
44941       [
44942         "Angola",
44943         "ao",
44944         "244"
44945       ],
44946       [
44947         "Anguilla",
44948         "ai",
44949         "1264"
44950       ],
44951       [
44952         "Antigua and Barbuda",
44953         "ag",
44954         "1268"
44955       ],
44956       [
44957         "Argentina",
44958         "ar",
44959         "54"
44960       ],
44961       [
44962         "Armenia (Հայաստան)",
44963         "am",
44964         "374"
44965       ],
44966       [
44967         "Aruba",
44968         "aw",
44969         "297"
44970       ],
44971       [
44972         "Australia",
44973         "au",
44974         "61",
44975         0
44976       ],
44977       [
44978         "Austria (Österreich)",
44979         "at",
44980         "43"
44981       ],
44982       [
44983         "Azerbaijan (Azərbaycan)",
44984         "az",
44985         "994"
44986       ],
44987       [
44988         "Bahamas",
44989         "bs",
44990         "1242"
44991       ],
44992       [
44993         "Bahrain (‫البحرين‬‎)",
44994         "bh",
44995         "973"
44996       ],
44997       [
44998         "Bangladesh (বাংলাদেশ)",
44999         "bd",
45000         "880"
45001       ],
45002       [
45003         "Barbados",
45004         "bb",
45005         "1246"
45006       ],
45007       [
45008         "Belarus (Беларусь)",
45009         "by",
45010         "375"
45011       ],
45012       [
45013         "Belgium (België)",
45014         "be",
45015         "32"
45016       ],
45017       [
45018         "Belize",
45019         "bz",
45020         "501"
45021       ],
45022       [
45023         "Benin (Bénin)",
45024         "bj",
45025         "229"
45026       ],
45027       [
45028         "Bermuda",
45029         "bm",
45030         "1441"
45031       ],
45032       [
45033         "Bhutan (འབྲུག)",
45034         "bt",
45035         "975"
45036       ],
45037       [
45038         "Bolivia",
45039         "bo",
45040         "591"
45041       ],
45042       [
45043         "Bosnia and Herzegovina (Босна и Херцеговина)",
45044         "ba",
45045         "387"
45046       ],
45047       [
45048         "Botswana",
45049         "bw",
45050         "267"
45051       ],
45052       [
45053         "Brazil (Brasil)",
45054         "br",
45055         "55"
45056       ],
45057       [
45058         "British Indian Ocean Territory",
45059         "io",
45060         "246"
45061       ],
45062       [
45063         "British Virgin Islands",
45064         "vg",
45065         "1284"
45066       ],
45067       [
45068         "Brunei",
45069         "bn",
45070         "673"
45071       ],
45072       [
45073         "Bulgaria (България)",
45074         "bg",
45075         "359"
45076       ],
45077       [
45078         "Burkina Faso",
45079         "bf",
45080         "226"
45081       ],
45082       [
45083         "Burundi (Uburundi)",
45084         "bi",
45085         "257"
45086       ],
45087       [
45088         "Cambodia (កម្ពុជា)",
45089         "kh",
45090         "855"
45091       ],
45092       [
45093         "Cameroon (Cameroun)",
45094         "cm",
45095         "237"
45096       ],
45097       [
45098         "Canada",
45099         "ca",
45100         "1",
45101         1,
45102         ["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"]
45103       ],
45104       [
45105         "Cape Verde (Kabu Verdi)",
45106         "cv",
45107         "238"
45108       ],
45109       [
45110         "Caribbean Netherlands",
45111         "bq",
45112         "599",
45113         1
45114       ],
45115       [
45116         "Cayman Islands",
45117         "ky",
45118         "1345"
45119       ],
45120       [
45121         "Central African Republic (République centrafricaine)",
45122         "cf",
45123         "236"
45124       ],
45125       [
45126         "Chad (Tchad)",
45127         "td",
45128         "235"
45129       ],
45130       [
45131         "Chile",
45132         "cl",
45133         "56"
45134       ],
45135       [
45136         "China (中国)",
45137         "cn",
45138         "86"
45139       ],
45140       [
45141         "Christmas Island",
45142         "cx",
45143         "61",
45144         2
45145       ],
45146       [
45147         "Cocos (Keeling) Islands",
45148         "cc",
45149         "61",
45150         1
45151       ],
45152       [
45153         "Colombia",
45154         "co",
45155         "57"
45156       ],
45157       [
45158         "Comoros (‫جزر القمر‬‎)",
45159         "km",
45160         "269"
45161       ],
45162       [
45163         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
45164         "cd",
45165         "243"
45166       ],
45167       [
45168         "Congo (Republic) (Congo-Brazzaville)",
45169         "cg",
45170         "242"
45171       ],
45172       [
45173         "Cook Islands",
45174         "ck",
45175         "682"
45176       ],
45177       [
45178         "Costa Rica",
45179         "cr",
45180         "506"
45181       ],
45182       [
45183         "Côte d’Ivoire",
45184         "ci",
45185         "225"
45186       ],
45187       [
45188         "Croatia (Hrvatska)",
45189         "hr",
45190         "385"
45191       ],
45192       [
45193         "Cuba",
45194         "cu",
45195         "53"
45196       ],
45197       [
45198         "Curaçao",
45199         "cw",
45200         "599",
45201         0
45202       ],
45203       [
45204         "Cyprus (Κύπρος)",
45205         "cy",
45206         "357"
45207       ],
45208       [
45209         "Czech Republic (Česká republika)",
45210         "cz",
45211         "420"
45212       ],
45213       [
45214         "Denmark (Danmark)",
45215         "dk",
45216         "45"
45217       ],
45218       [
45219         "Djibouti",
45220         "dj",
45221         "253"
45222       ],
45223       [
45224         "Dominica",
45225         "dm",
45226         "1767"
45227       ],
45228       [
45229         "Dominican Republic (República Dominicana)",
45230         "do",
45231         "1",
45232         2,
45233         ["809", "829", "849"]
45234       ],
45235       [
45236         "Ecuador",
45237         "ec",
45238         "593"
45239       ],
45240       [
45241         "Egypt (‫مصر‬‎)",
45242         "eg",
45243         "20"
45244       ],
45245       [
45246         "El Salvador",
45247         "sv",
45248         "503"
45249       ],
45250       [
45251         "Equatorial Guinea (Guinea Ecuatorial)",
45252         "gq",
45253         "240"
45254       ],
45255       [
45256         "Eritrea",
45257         "er",
45258         "291"
45259       ],
45260       [
45261         "Estonia (Eesti)",
45262         "ee",
45263         "372"
45264       ],
45265       [
45266         "Ethiopia",
45267         "et",
45268         "251"
45269       ],
45270       [
45271         "Falkland Islands (Islas Malvinas)",
45272         "fk",
45273         "500"
45274       ],
45275       [
45276         "Faroe Islands (Føroyar)",
45277         "fo",
45278         "298"
45279       ],
45280       [
45281         "Fiji",
45282         "fj",
45283         "679"
45284       ],
45285       [
45286         "Finland (Suomi)",
45287         "fi",
45288         "358",
45289         0
45290       ],
45291       [
45292         "France",
45293         "fr",
45294         "33"
45295       ],
45296       [
45297         "French Guiana (Guyane française)",
45298         "gf",
45299         "594"
45300       ],
45301       [
45302         "French Polynesia (Polynésie française)",
45303         "pf",
45304         "689"
45305       ],
45306       [
45307         "Gabon",
45308         "ga",
45309         "241"
45310       ],
45311       [
45312         "Gambia",
45313         "gm",
45314         "220"
45315       ],
45316       [
45317         "Georgia (საქართველო)",
45318         "ge",
45319         "995"
45320       ],
45321       [
45322         "Germany (Deutschland)",
45323         "de",
45324         "49"
45325       ],
45326       [
45327         "Ghana (Gaana)",
45328         "gh",
45329         "233"
45330       ],
45331       [
45332         "Gibraltar",
45333         "gi",
45334         "350"
45335       ],
45336       [
45337         "Greece (Ελλάδα)",
45338         "gr",
45339         "30"
45340       ],
45341       [
45342         "Greenland (Kalaallit Nunaat)",
45343         "gl",
45344         "299"
45345       ],
45346       [
45347         "Grenada",
45348         "gd",
45349         "1473"
45350       ],
45351       [
45352         "Guadeloupe",
45353         "gp",
45354         "590",
45355         0
45356       ],
45357       [
45358         "Guam",
45359         "gu",
45360         "1671"
45361       ],
45362       [
45363         "Guatemala",
45364         "gt",
45365         "502"
45366       ],
45367       [
45368         "Guernsey",
45369         "gg",
45370         "44",
45371         1
45372       ],
45373       [
45374         "Guinea (Guinée)",
45375         "gn",
45376         "224"
45377       ],
45378       [
45379         "Guinea-Bissau (Guiné Bissau)",
45380         "gw",
45381         "245"
45382       ],
45383       [
45384         "Guyana",
45385         "gy",
45386         "592"
45387       ],
45388       [
45389         "Haiti",
45390         "ht",
45391         "509"
45392       ],
45393       [
45394         "Honduras",
45395         "hn",
45396         "504"
45397       ],
45398       [
45399         "Hong Kong (香港)",
45400         "hk",
45401         "852"
45402       ],
45403       [
45404         "Hungary (Magyarország)",
45405         "hu",
45406         "36"
45407       ],
45408       [
45409         "Iceland (Ísland)",
45410         "is",
45411         "354"
45412       ],
45413       [
45414         "India (भारत)",
45415         "in",
45416         "91"
45417       ],
45418       [
45419         "Indonesia",
45420         "id",
45421         "62"
45422       ],
45423       [
45424         "Iran (‫ایران‬‎)",
45425         "ir",
45426         "98"
45427       ],
45428       [
45429         "Iraq (‫العراق‬‎)",
45430         "iq",
45431         "964"
45432       ],
45433       [
45434         "Ireland",
45435         "ie",
45436         "353"
45437       ],
45438       [
45439         "Isle of Man",
45440         "im",
45441         "44",
45442         2
45443       ],
45444       [
45445         "Israel (‫ישראל‬‎)",
45446         "il",
45447         "972"
45448       ],
45449       [
45450         "Italy (Italia)",
45451         "it",
45452         "39",
45453         0
45454       ],
45455       [
45456         "Jamaica",
45457         "jm",
45458         "1876"
45459       ],
45460       [
45461         "Japan (日本)",
45462         "jp",
45463         "81"
45464       ],
45465       [
45466         "Jersey",
45467         "je",
45468         "44",
45469         3
45470       ],
45471       [
45472         "Jordan (‫الأردن‬‎)",
45473         "jo",
45474         "962"
45475       ],
45476       [
45477         "Kazakhstan (Казахстан)",
45478         "kz",
45479         "7",
45480         1
45481       ],
45482       [
45483         "Kenya",
45484         "ke",
45485         "254"
45486       ],
45487       [
45488         "Kiribati",
45489         "ki",
45490         "686"
45491       ],
45492       [
45493         "Kosovo",
45494         "xk",
45495         "383"
45496       ],
45497       [
45498         "Kuwait (‫الكويت‬‎)",
45499         "kw",
45500         "965"
45501       ],
45502       [
45503         "Kyrgyzstan (Кыргызстан)",
45504         "kg",
45505         "996"
45506       ],
45507       [
45508         "Laos (ລາວ)",
45509         "la",
45510         "856"
45511       ],
45512       [
45513         "Latvia (Latvija)",
45514         "lv",
45515         "371"
45516       ],
45517       [
45518         "Lebanon (‫لبنان‬‎)",
45519         "lb",
45520         "961"
45521       ],
45522       [
45523         "Lesotho",
45524         "ls",
45525         "266"
45526       ],
45527       [
45528         "Liberia",
45529         "lr",
45530         "231"
45531       ],
45532       [
45533         "Libya (‫ليبيا‬‎)",
45534         "ly",
45535         "218"
45536       ],
45537       [
45538         "Liechtenstein",
45539         "li",
45540         "423"
45541       ],
45542       [
45543         "Lithuania (Lietuva)",
45544         "lt",
45545         "370"
45546       ],
45547       [
45548         "Luxembourg",
45549         "lu",
45550         "352"
45551       ],
45552       [
45553         "Macau (澳門)",
45554         "mo",
45555         "853"
45556       ],
45557       [
45558         "Macedonia (FYROM) (Македонија)",
45559         "mk",
45560         "389"
45561       ],
45562       [
45563         "Madagascar (Madagasikara)",
45564         "mg",
45565         "261"
45566       ],
45567       [
45568         "Malawi",
45569         "mw",
45570         "265"
45571       ],
45572       [
45573         "Malaysia",
45574         "my",
45575         "60"
45576       ],
45577       [
45578         "Maldives",
45579         "mv",
45580         "960"
45581       ],
45582       [
45583         "Mali",
45584         "ml",
45585         "223"
45586       ],
45587       [
45588         "Malta",
45589         "mt",
45590         "356"
45591       ],
45592       [
45593         "Marshall Islands",
45594         "mh",
45595         "692"
45596       ],
45597       [
45598         "Martinique",
45599         "mq",
45600         "596"
45601       ],
45602       [
45603         "Mauritania (‫موريتانيا‬‎)",
45604         "mr",
45605         "222"
45606       ],
45607       [
45608         "Mauritius (Moris)",
45609         "mu",
45610         "230"
45611       ],
45612       [
45613         "Mayotte",
45614         "yt",
45615         "262",
45616         1
45617       ],
45618       [
45619         "Mexico (México)",
45620         "mx",
45621         "52"
45622       ],
45623       [
45624         "Micronesia",
45625         "fm",
45626         "691"
45627       ],
45628       [
45629         "Moldova (Republica Moldova)",
45630         "md",
45631         "373"
45632       ],
45633       [
45634         "Monaco",
45635         "mc",
45636         "377"
45637       ],
45638       [
45639         "Mongolia (Монгол)",
45640         "mn",
45641         "976"
45642       ],
45643       [
45644         "Montenegro (Crna Gora)",
45645         "me",
45646         "382"
45647       ],
45648       [
45649         "Montserrat",
45650         "ms",
45651         "1664"
45652       ],
45653       [
45654         "Morocco (‫المغرب‬‎)",
45655         "ma",
45656         "212",
45657         0
45658       ],
45659       [
45660         "Mozambique (Moçambique)",
45661         "mz",
45662         "258"
45663       ],
45664       [
45665         "Myanmar (Burma) (မြန်မာ)",
45666         "mm",
45667         "95"
45668       ],
45669       [
45670         "Namibia (Namibië)",
45671         "na",
45672         "264"
45673       ],
45674       [
45675         "Nauru",
45676         "nr",
45677         "674"
45678       ],
45679       [
45680         "Nepal (नेपाल)",
45681         "np",
45682         "977"
45683       ],
45684       [
45685         "Netherlands (Nederland)",
45686         "nl",
45687         "31"
45688       ],
45689       [
45690         "New Caledonia (Nouvelle-Calédonie)",
45691         "nc",
45692         "687"
45693       ],
45694       [
45695         "New Zealand",
45696         "nz",
45697         "64"
45698       ],
45699       [
45700         "Nicaragua",
45701         "ni",
45702         "505"
45703       ],
45704       [
45705         "Niger (Nijar)",
45706         "ne",
45707         "227"
45708       ],
45709       [
45710         "Nigeria",
45711         "ng",
45712         "234"
45713       ],
45714       [
45715         "Niue",
45716         "nu",
45717         "683"
45718       ],
45719       [
45720         "Norfolk Island",
45721         "nf",
45722         "672"
45723       ],
45724       [
45725         "North Korea (조선 민주주의 인민 공화국)",
45726         "kp",
45727         "850"
45728       ],
45729       [
45730         "Northern Mariana Islands",
45731         "mp",
45732         "1670"
45733       ],
45734       [
45735         "Norway (Norge)",
45736         "no",
45737         "47",
45738         0
45739       ],
45740       [
45741         "Oman (‫عُمان‬‎)",
45742         "om",
45743         "968"
45744       ],
45745       [
45746         "Pakistan (‫پاکستان‬‎)",
45747         "pk",
45748         "92"
45749       ],
45750       [
45751         "Palau",
45752         "pw",
45753         "680"
45754       ],
45755       [
45756         "Palestine (‫فلسطين‬‎)",
45757         "ps",
45758         "970"
45759       ],
45760       [
45761         "Panama (Panamá)",
45762         "pa",
45763         "507"
45764       ],
45765       [
45766         "Papua New Guinea",
45767         "pg",
45768         "675"
45769       ],
45770       [
45771         "Paraguay",
45772         "py",
45773         "595"
45774       ],
45775       [
45776         "Peru (Perú)",
45777         "pe",
45778         "51"
45779       ],
45780       [
45781         "Philippines",
45782         "ph",
45783         "63"
45784       ],
45785       [
45786         "Poland (Polska)",
45787         "pl",
45788         "48"
45789       ],
45790       [
45791         "Portugal",
45792         "pt",
45793         "351"
45794       ],
45795       [
45796         "Puerto Rico",
45797         "pr",
45798         "1",
45799         3,
45800         ["787", "939"]
45801       ],
45802       [
45803         "Qatar (‫قطر‬‎)",
45804         "qa",
45805         "974"
45806       ],
45807       [
45808         "Réunion (La Réunion)",
45809         "re",
45810         "262",
45811         0
45812       ],
45813       [
45814         "Romania (România)",
45815         "ro",
45816         "40"
45817       ],
45818       [
45819         "Russia (Россия)",
45820         "ru",
45821         "7",
45822         0
45823       ],
45824       [
45825         "Rwanda",
45826         "rw",
45827         "250"
45828       ],
45829       [
45830         "Saint Barthélemy",
45831         "bl",
45832         "590",
45833         1
45834       ],
45835       [
45836         "Saint Helena",
45837         "sh",
45838         "290"
45839       ],
45840       [
45841         "Saint Kitts and Nevis",
45842         "kn",
45843         "1869"
45844       ],
45845       [
45846         "Saint Lucia",
45847         "lc",
45848         "1758"
45849       ],
45850       [
45851         "Saint Martin (Saint-Martin (partie française))",
45852         "mf",
45853         "590",
45854         2
45855       ],
45856       [
45857         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
45858         "pm",
45859         "508"
45860       ],
45861       [
45862         "Saint Vincent and the Grenadines",
45863         "vc",
45864         "1784"
45865       ],
45866       [
45867         "Samoa",
45868         "ws",
45869         "685"
45870       ],
45871       [
45872         "San Marino",
45873         "sm",
45874         "378"
45875       ],
45876       [
45877         "São Tomé and Príncipe (São Tomé e Príncipe)",
45878         "st",
45879         "239"
45880       ],
45881       [
45882         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
45883         "sa",
45884         "966"
45885       ],
45886       [
45887         "Senegal (Sénégal)",
45888         "sn",
45889         "221"
45890       ],
45891       [
45892         "Serbia (Србија)",
45893         "rs",
45894         "381"
45895       ],
45896       [
45897         "Seychelles",
45898         "sc",
45899         "248"
45900       ],
45901       [
45902         "Sierra Leone",
45903         "sl",
45904         "232"
45905       ],
45906       [
45907         "Singapore",
45908         "sg",
45909         "65"
45910       ],
45911       [
45912         "Sint Maarten",
45913         "sx",
45914         "1721"
45915       ],
45916       [
45917         "Slovakia (Slovensko)",
45918         "sk",
45919         "421"
45920       ],
45921       [
45922         "Slovenia (Slovenija)",
45923         "si",
45924         "386"
45925       ],
45926       [
45927         "Solomon Islands",
45928         "sb",
45929         "677"
45930       ],
45931       [
45932         "Somalia (Soomaaliya)",
45933         "so",
45934         "252"
45935       ],
45936       [
45937         "South Africa",
45938         "za",
45939         "27"
45940       ],
45941       [
45942         "South Korea (대한민국)",
45943         "kr",
45944         "82"
45945       ],
45946       [
45947         "South Sudan (‫جنوب السودان‬‎)",
45948         "ss",
45949         "211"
45950       ],
45951       [
45952         "Spain (España)",
45953         "es",
45954         "34"
45955       ],
45956       [
45957         "Sri Lanka (ශ්‍රී ලංකාව)",
45958         "lk",
45959         "94"
45960       ],
45961       [
45962         "Sudan (‫السودان‬‎)",
45963         "sd",
45964         "249"
45965       ],
45966       [
45967         "Suriname",
45968         "sr",
45969         "597"
45970       ],
45971       [
45972         "Svalbard and Jan Mayen",
45973         "sj",
45974         "47",
45975         1
45976       ],
45977       [
45978         "Swaziland",
45979         "sz",
45980         "268"
45981       ],
45982       [
45983         "Sweden (Sverige)",
45984         "se",
45985         "46"
45986       ],
45987       [
45988         "Switzerland (Schweiz)",
45989         "ch",
45990         "41"
45991       ],
45992       [
45993         "Syria (‫سوريا‬‎)",
45994         "sy",
45995         "963"
45996       ],
45997       [
45998         "Taiwan (台灣)",
45999         "tw",
46000         "886"
46001       ],
46002       [
46003         "Tajikistan",
46004         "tj",
46005         "992"
46006       ],
46007       [
46008         "Tanzania",
46009         "tz",
46010         "255"
46011       ],
46012       [
46013         "Thailand (ไทย)",
46014         "th",
46015         "66"
46016       ],
46017       [
46018         "Timor-Leste",
46019         "tl",
46020         "670"
46021       ],
46022       [
46023         "Togo",
46024         "tg",
46025         "228"
46026       ],
46027       [
46028         "Tokelau",
46029         "tk",
46030         "690"
46031       ],
46032       [
46033         "Tonga",
46034         "to",
46035         "676"
46036       ],
46037       [
46038         "Trinidad and Tobago",
46039         "tt",
46040         "1868"
46041       ],
46042       [
46043         "Tunisia (‫تونس‬‎)",
46044         "tn",
46045         "216"
46046       ],
46047       [
46048         "Turkey (Türkiye)",
46049         "tr",
46050         "90"
46051       ],
46052       [
46053         "Turkmenistan",
46054         "tm",
46055         "993"
46056       ],
46057       [
46058         "Turks and Caicos Islands",
46059         "tc",
46060         "1649"
46061       ],
46062       [
46063         "Tuvalu",
46064         "tv",
46065         "688"
46066       ],
46067       [
46068         "U.S. Virgin Islands",
46069         "vi",
46070         "1340"
46071       ],
46072       [
46073         "Uganda",
46074         "ug",
46075         "256"
46076       ],
46077       [
46078         "Ukraine (Україна)",
46079         "ua",
46080         "380"
46081       ],
46082       [
46083         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
46084         "ae",
46085         "971"
46086       ],
46087       [
46088         "United Kingdom",
46089         "gb",
46090         "44",
46091         0
46092       ],
46093       [
46094         "United States",
46095         "us",
46096         "1",
46097         0
46098       ],
46099       [
46100         "Uruguay",
46101         "uy",
46102         "598"
46103       ],
46104       [
46105         "Uzbekistan (Oʻzbekiston)",
46106         "uz",
46107         "998"
46108       ],
46109       [
46110         "Vanuatu",
46111         "vu",
46112         "678"
46113       ],
46114       [
46115         "Vatican City (Città del Vaticano)",
46116         "va",
46117         "39",
46118         1
46119       ],
46120       [
46121         "Venezuela",
46122         "ve",
46123         "58"
46124       ],
46125       [
46126         "Vietnam (Việt Nam)",
46127         "vn",
46128         "84"
46129       ],
46130       [
46131         "Wallis and Futuna (Wallis-et-Futuna)",
46132         "wf",
46133         "681"
46134       ],
46135       [
46136         "Western Sahara (‫الصحراء الغربية‬‎)",
46137         "eh",
46138         "212",
46139         1
46140       ],
46141       [
46142         "Yemen (‫اليمن‬‎)",
46143         "ye",
46144         "967"
46145       ],
46146       [
46147         "Zambia",
46148         "zm",
46149         "260"
46150       ],
46151       [
46152         "Zimbabwe",
46153         "zw",
46154         "263"
46155       ],
46156       [
46157         "Åland Islands",
46158         "ax",
46159         "358",
46160         1
46161       ]
46162   ];
46163   
46164   return d;
46165 }/**
46166 *    This script refer to:
46167 *    Title: International Telephone Input
46168 *    Author: Jack O'Connor
46169 *    Code version:  v12.1.12
46170 *    Availability: https://github.com/jackocnr/intl-tel-input.git
46171 **/
46172
46173 /**
46174  * @class Roo.bootstrap.form.PhoneInput
46175  * @extends Roo.bootstrap.form.TriggerField
46176  * An input with International dial-code selection
46177  
46178  * @cfg {String} defaultDialCode default '+852'
46179  * @cfg {Array} preferedCountries default []
46180   
46181  * @constructor
46182  * Create a new PhoneInput.
46183  * @param {Object} config Configuration options
46184  */
46185
46186 Roo.bootstrap.form.PhoneInput = function(config) {
46187     Roo.bootstrap.form.PhoneInput.superclass.constructor.call(this, config);
46188 };
46189
46190 Roo.extend(Roo.bootstrap.form.PhoneInput, Roo.bootstrap.form.TriggerField, {
46191         /**
46192         * @cfg {Roo.data.Store} store [required] The data store to which this combo is bound (defaults to undefined)
46193         */
46194         listWidth: undefined,
46195         
46196         selectedClass: 'active',
46197         
46198         invalidClass : "has-warning",
46199         
46200         validClass: 'has-success',
46201         
46202         allowed: '0123456789',
46203         
46204         max_length: 15,
46205         
46206         /**
46207          * @cfg {String} defaultDialCode The default dial code when initializing the input
46208          */
46209         defaultDialCode: '+852',
46210         
46211         /**
46212          * @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
46213          */
46214         preferedCountries: false,
46215         
46216         getAutoCreate : function()
46217         {
46218             var data = Roo.bootstrap.form.PhoneInputData();
46219             var align = this.labelAlign || this.parentLabelAlign();
46220             var id = Roo.id();
46221             
46222             this.allCountries = [];
46223             this.dialCodeMapping = [];
46224             
46225             for (var i = 0; i < data.length; i++) {
46226               var c = data[i];
46227               this.allCountries[i] = {
46228                 name: c[0],
46229                 iso2: c[1],
46230                 dialCode: c[2],
46231                 priority: c[3] || 0,
46232                 areaCodes: c[4] || null
46233               };
46234               this.dialCodeMapping[c[2]] = {
46235                   name: c[0],
46236                   iso2: c[1],
46237                   priority: c[3] || 0,
46238                   areaCodes: c[4] || null
46239               };
46240             }
46241             
46242             var cfg = {
46243                 cls: 'form-group',
46244                 cn: []
46245             };
46246             
46247             var input =  {
46248                 tag: 'input',
46249                 id : id,
46250                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
46251                 maxlength: this.max_length,
46252                 cls : 'form-control tel-input',
46253                 autocomplete: 'new-password'
46254             };
46255             
46256             var hiddenInput = {
46257                 tag: 'input',
46258                 type: 'hidden',
46259                 cls: 'hidden-tel-input'
46260             };
46261             
46262             if (this.name) {
46263                 hiddenInput.name = this.name;
46264             }
46265             
46266             if (this.disabled) {
46267                 input.disabled = true;
46268             }
46269             
46270             var flag_container = {
46271                 tag: 'div',
46272                 cls: 'flag-box',
46273                 cn: [
46274                     {
46275                         tag: 'div',
46276                         cls: 'flag'
46277                     },
46278                     {
46279                         tag: 'div',
46280                         cls: 'caret'
46281                     }
46282                 ]
46283             };
46284             
46285             var box = {
46286                 tag: 'div',
46287                 cls: this.hasFeedback ? 'has-feedback' : '',
46288                 cn: [
46289                     hiddenInput,
46290                     input,
46291                     {
46292                         tag: 'input',
46293                         cls: 'dial-code-holder',
46294                         disabled: true
46295                     }
46296                 ]
46297             };
46298             
46299             var container = {
46300                 cls: 'roo-select2-container input-group',
46301                 cn: [
46302                     flag_container,
46303                     box
46304                 ]
46305             };
46306             
46307             if (this.fieldLabel.length) {
46308                 var indicator = {
46309                     tag: 'i',
46310                     tooltip: 'This field is required'
46311                 };
46312                 
46313                 var label = {
46314                     tag: 'label',
46315                     'for':  id,
46316                     cls: 'control-label',
46317                     cn: []
46318                 };
46319                 
46320                 var label_text = {
46321                     tag: 'span',
46322                     html: this.fieldLabel
46323                 };
46324                 
46325                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
46326                 label.cn = [
46327                     indicator,
46328                     label_text
46329                 ];
46330                 
46331                 if(this.indicatorpos == 'right') {
46332                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
46333                     label.cn = [
46334                         label_text,
46335                         indicator
46336                     ];
46337                 }
46338                 
46339                 if(align == 'left') {
46340                     container = {
46341                         tag: 'div',
46342                         cn: [
46343                             container
46344                         ]
46345                     };
46346                     
46347                     if(this.labelWidth > 12){
46348                         label.style = "width: " + this.labelWidth + 'px';
46349                     }
46350                     if(this.labelWidth < 13 && this.labelmd == 0){
46351                         this.labelmd = this.labelWidth;
46352                     }
46353                     if(this.labellg > 0){
46354                         label.cls += ' col-lg-' + this.labellg;
46355                         input.cls += ' col-lg-' + (12 - this.labellg);
46356                     }
46357                     if(this.labelmd > 0){
46358                         label.cls += ' col-md-' + this.labelmd;
46359                         container.cls += ' col-md-' + (12 - this.labelmd);
46360                     }
46361                     if(this.labelsm > 0){
46362                         label.cls += ' col-sm-' + this.labelsm;
46363                         container.cls += ' col-sm-' + (12 - this.labelsm);
46364                     }
46365                     if(this.labelxs > 0){
46366                         label.cls += ' col-xs-' + this.labelxs;
46367                         container.cls += ' col-xs-' + (12 - this.labelxs);
46368                     }
46369                 }
46370             }
46371             
46372             cfg.cn = [
46373                 label,
46374                 container
46375             ];
46376             
46377             var settings = this;
46378             
46379             ['xs','sm','md','lg'].map(function(size){
46380                 if (settings[size]) {
46381                     cfg.cls += ' col-' + size + '-' + settings[size];
46382                 }
46383             });
46384             
46385             this.store = new Roo.data.Store({
46386                 proxy : new Roo.data.MemoryProxy({}),
46387                 reader : new Roo.data.JsonReader({
46388                     fields : [
46389                         {
46390                             'name' : 'name',
46391                             'type' : 'string'
46392                         },
46393                         {
46394                             'name' : 'iso2',
46395                             'type' : 'string'
46396                         },
46397                         {
46398                             'name' : 'dialCode',
46399                             'type' : 'string'
46400                         },
46401                         {
46402                             'name' : 'priority',
46403                             'type' : 'string'
46404                         },
46405                         {
46406                             'name' : 'areaCodes',
46407                             'type' : 'string'
46408                         }
46409                     ]
46410                 })
46411             });
46412             
46413             if(!this.preferedCountries) {
46414                 this.preferedCountries = [
46415                     'hk',
46416                     'gb',
46417                     'us'
46418                 ];
46419             }
46420             
46421             var p = this.preferedCountries.reverse();
46422             
46423             if(p) {
46424                 for (var i = 0; i < p.length; i++) {
46425                     for (var j = 0; j < this.allCountries.length; j++) {
46426                         if(this.allCountries[j].iso2 == p[i]) {
46427                             var t = this.allCountries[j];
46428                             this.allCountries.splice(j,1);
46429                             this.allCountries.unshift(t);
46430                         }
46431                     } 
46432                 }
46433             }
46434             
46435             this.store.proxy.data = {
46436                 success: true,
46437                 data: this.allCountries
46438             };
46439             
46440             return cfg;
46441         },
46442         
46443         initEvents : function()
46444         {
46445             this.createList();
46446             Roo.bootstrap.form.PhoneInput.superclass.initEvents.call(this);
46447             
46448             this.indicator = this.indicatorEl();
46449             this.flag = this.flagEl();
46450             this.dialCodeHolder = this.dialCodeHolderEl();
46451             
46452             this.trigger = this.el.select('div.flag-box',true).first();
46453             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
46454             
46455             var _this = this;
46456             
46457             (function(){
46458                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
46459                 _this.list.setWidth(lw);
46460             }).defer(100);
46461             
46462             this.list.on('mouseover', this.onViewOver, this);
46463             this.list.on('mousemove', this.onViewMove, this);
46464             this.inputEl().on("keyup", this.onKeyUp, this);
46465             this.inputEl().on("keypress", this.onKeyPress, this);
46466             
46467             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
46468
46469             this.view = new Roo.View(this.list, this.tpl, {
46470                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
46471             });
46472             
46473             this.view.on('click', this.onViewClick, this);
46474             this.setValue(this.defaultDialCode);
46475         },
46476         
46477         onTriggerClick : function(e)
46478         {
46479             Roo.log('trigger click');
46480             if(this.disabled){
46481                 return;
46482             }
46483             
46484             if(this.isExpanded()){
46485                 this.collapse();
46486                 this.hasFocus = false;
46487             }else {
46488                 this.store.load({});
46489                 this.hasFocus = true;
46490                 this.expand();
46491             }
46492         },
46493         
46494         isExpanded : function()
46495         {
46496             return this.list.isVisible();
46497         },
46498         
46499         collapse : function()
46500         {
46501             if(!this.isExpanded()){
46502                 return;
46503             }
46504             this.list.hide();
46505             Roo.get(document).un('mousedown', this.collapseIf, this);
46506             Roo.get(document).un('mousewheel', this.collapseIf, this);
46507             this.fireEvent('collapse', this);
46508             this.validate();
46509         },
46510         
46511         expand : function()
46512         {
46513             Roo.log('expand');
46514
46515             if(this.isExpanded() || !this.hasFocus){
46516                 return;
46517             }
46518             
46519             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
46520             this.list.setWidth(lw);
46521             
46522             this.list.show();
46523             this.restrictHeight();
46524             
46525             Roo.get(document).on('mousedown', this.collapseIf, this);
46526             Roo.get(document).on('mousewheel', this.collapseIf, this);
46527             
46528             this.fireEvent('expand', this);
46529         },
46530         
46531         restrictHeight : function()
46532         {
46533             this.list.alignTo(this.inputEl(), this.listAlign);
46534             this.list.alignTo(this.inputEl(), this.listAlign);
46535         },
46536         
46537         onViewOver : function(e, t)
46538         {
46539             if(this.inKeyMode){
46540                 return;
46541             }
46542             var item = this.view.findItemFromChild(t);
46543             
46544             if(item){
46545                 var index = this.view.indexOf(item);
46546                 this.select(index, false);
46547             }
46548         },
46549
46550         // private
46551         onViewClick : function(view, doFocus, el, e)
46552         {
46553             var index = this.view.getSelectedIndexes()[0];
46554             
46555             var r = this.store.getAt(index);
46556             
46557             if(r){
46558                 this.onSelect(r, index);
46559             }
46560             if(doFocus !== false && !this.blockFocus){
46561                 this.inputEl().focus();
46562             }
46563         },
46564         
46565         onViewMove : function(e, t)
46566         {
46567             this.inKeyMode = false;
46568         },
46569         
46570         select : function(index, scrollIntoView)
46571         {
46572             this.selectedIndex = index;
46573             this.view.select(index);
46574             if(scrollIntoView !== false){
46575                 var el = this.view.getNode(index);
46576                 if(el){
46577                     this.list.scrollChildIntoView(el, false);
46578                 }
46579             }
46580         },
46581         
46582         createList : function()
46583         {
46584             this.list = Roo.get(document.body).createChild({
46585                 tag: 'ul',
46586                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
46587                 style: 'display:none'
46588             });
46589             
46590             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
46591         },
46592         
46593         collapseIf : function(e)
46594         {
46595             var in_combo  = e.within(this.el);
46596             var in_list =  e.within(this.list);
46597             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
46598             
46599             if (in_combo || in_list || is_list) {
46600                 return;
46601             }
46602             this.collapse();
46603         },
46604         
46605         onSelect : function(record, index)
46606         {
46607             if(this.fireEvent('beforeselect', this, record, index) !== false){
46608                 
46609                 this.setFlagClass(record.data.iso2);
46610                 this.setDialCode(record.data.dialCode);
46611                 this.hasFocus = false;
46612                 this.collapse();
46613                 this.fireEvent('select', this, record, index);
46614             }
46615         },
46616         
46617         flagEl : function()
46618         {
46619             var flag = this.el.select('div.flag',true).first();
46620             if(!flag){
46621                 return false;
46622             }
46623             return flag;
46624         },
46625         
46626         dialCodeHolderEl : function()
46627         {
46628             var d = this.el.select('input.dial-code-holder',true).first();
46629             if(!d){
46630                 return false;
46631             }
46632             return d;
46633         },
46634         
46635         setDialCode : function(v)
46636         {
46637             this.dialCodeHolder.dom.value = '+'+v;
46638         },
46639         
46640         setFlagClass : function(n)
46641         {
46642             this.flag.dom.className = 'flag '+n;
46643         },
46644         
46645         getValue : function()
46646         {
46647             var v = this.inputEl().getValue();
46648             if(this.dialCodeHolder) {
46649                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
46650             }
46651             return v;
46652         },
46653         
46654         setValue : function(v)
46655         {
46656             var d = this.getDialCode(v);
46657             
46658             //invalid dial code
46659             if(v.length == 0 || !d || d.length == 0) {
46660                 if(this.rendered){
46661                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
46662                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
46663                 }
46664                 return;
46665             }
46666             
46667             //valid dial code
46668             this.setFlagClass(this.dialCodeMapping[d].iso2);
46669             this.setDialCode(d);
46670             this.inputEl().dom.value = v.replace('+'+d,'');
46671             this.hiddenEl().dom.value = this.getValue();
46672             
46673             this.validate();
46674         },
46675         
46676         getDialCode : function(v)
46677         {
46678             v = v ||  '';
46679             
46680             if (v.length == 0) {
46681                 return this.dialCodeHolder.dom.value;
46682             }
46683             
46684             var dialCode = "";
46685             if (v.charAt(0) != "+") {
46686                 return false;
46687             }
46688             var numericChars = "";
46689             for (var i = 1; i < v.length; i++) {
46690               var c = v.charAt(i);
46691               if (!isNaN(c)) {
46692                 numericChars += c;
46693                 if (this.dialCodeMapping[numericChars]) {
46694                   dialCode = v.substr(1, i);
46695                 }
46696                 if (numericChars.length == 4) {
46697                   break;
46698                 }
46699               }
46700             }
46701             return dialCode;
46702         },
46703         
46704         reset : function()
46705         {
46706             this.setValue(this.defaultDialCode);
46707             this.validate();
46708         },
46709         
46710         hiddenEl : function()
46711         {
46712             return this.el.select('input.hidden-tel-input',true).first();
46713         },
46714         
46715         // after setting val
46716         onKeyUp : function(e){
46717             this.setValue(this.getValue());
46718         },
46719         
46720         onKeyPress : function(e){
46721             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
46722                 e.stopEvent();
46723             }
46724         }
46725         
46726 });
46727 /**
46728  * @class Roo.bootstrap.form.MoneyField
46729  * @extends Roo.bootstrap.form.ComboBox
46730  * Bootstrap MoneyField class
46731  * 
46732  * @constructor
46733  * Create a new MoneyField.
46734  * @param {Object} config Configuration options
46735  */
46736
46737 Roo.bootstrap.form.MoneyField = function(config) {
46738     
46739     Roo.bootstrap.form.MoneyField.superclass.constructor.call(this, config);
46740     
46741 };
46742
46743 Roo.extend(Roo.bootstrap.form.MoneyField, Roo.bootstrap.form.ComboBox, {
46744     
46745     /**
46746      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
46747      */
46748     allowDecimals : true,
46749     /**
46750      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
46751      */
46752     decimalSeparator : ".",
46753     /**
46754      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
46755      */
46756     decimalPrecision : 0,
46757     /**
46758      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
46759      */
46760     allowNegative : true,
46761     /**
46762      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
46763      */
46764     allowZero: true,
46765     /**
46766      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
46767      */
46768     minValue : Number.NEGATIVE_INFINITY,
46769     /**
46770      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
46771      */
46772     maxValue : Number.MAX_VALUE,
46773     /**
46774      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
46775      */
46776     minText : "The minimum value for this field is {0}",
46777     /**
46778      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
46779      */
46780     maxText : "The maximum value for this field is {0}",
46781     /**
46782      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
46783      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
46784      */
46785     nanText : "{0} is not a valid number",
46786     /**
46787      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
46788      */
46789     castInt : true,
46790     /**
46791      * @cfg {String} defaults currency of the MoneyField
46792      * value should be in lkey
46793      */
46794     defaultCurrency : false,
46795     /**
46796      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
46797      */
46798     thousandsDelimiter : false,
46799     /**
46800      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
46801      */
46802     max_length: false,
46803     
46804     inputlg : 9,
46805     inputmd : 9,
46806     inputsm : 9,
46807     inputxs : 6,
46808      /**
46809      * @cfg {Roo.data.Store} store  Store to lookup currency??
46810      */
46811     store : false,
46812     
46813     getAutoCreate : function()
46814     {
46815         var align = this.labelAlign || this.parentLabelAlign();
46816         
46817         var id = Roo.id();
46818
46819         var cfg = {
46820             cls: 'form-group',
46821             cn: []
46822         };
46823
46824         var input =  {
46825             tag: 'input',
46826             id : id,
46827             cls : 'form-control roo-money-amount-input',
46828             autocomplete: 'new-password'
46829         };
46830         
46831         var hiddenInput = {
46832             tag: 'input',
46833             type: 'hidden',
46834             id: Roo.id(),
46835             cls: 'hidden-number-input'
46836         };
46837         
46838         if(this.max_length) {
46839             input.maxlength = this.max_length; 
46840         }
46841         
46842         if (this.name) {
46843             hiddenInput.name = this.name;
46844         }
46845
46846         if (this.disabled) {
46847             input.disabled = true;
46848         }
46849
46850         var clg = 12 - this.inputlg;
46851         var cmd = 12 - this.inputmd;
46852         var csm = 12 - this.inputsm;
46853         var cxs = 12 - this.inputxs;
46854         
46855         var container = {
46856             tag : 'div',
46857             cls : 'row roo-money-field',
46858             cn : [
46859                 {
46860                     tag : 'div',
46861                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
46862                     cn : [
46863                         {
46864                             tag : 'div',
46865                             cls: 'roo-select2-container input-group',
46866                             cn: [
46867                                 {
46868                                     tag : 'input',
46869                                     cls : 'form-control roo-money-currency-input',
46870                                     autocomplete: 'new-password',
46871                                     readOnly : 1,
46872                                     name : this.currencyName
46873                                 },
46874                                 {
46875                                     tag :'span',
46876                                     cls : 'input-group-addon',
46877                                     cn : [
46878                                         {
46879                                             tag: 'span',
46880                                             cls: 'caret'
46881                                         }
46882                                     ]
46883                                 }
46884                             ]
46885                         }
46886                     ]
46887                 },
46888                 {
46889                     tag : 'div',
46890                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
46891                     cn : [
46892                         {
46893                             tag: 'div',
46894                             cls: this.hasFeedback ? 'has-feedback' : '',
46895                             cn: [
46896                                 input
46897                             ]
46898                         }
46899                     ]
46900                 }
46901             ]
46902             
46903         };
46904         
46905         if (this.fieldLabel.length) {
46906             var indicator = {
46907                 tag: 'i',
46908                 tooltip: 'This field is required'
46909             };
46910
46911             var label = {
46912                 tag: 'label',
46913                 'for':  id,
46914                 cls: 'control-label',
46915                 cn: []
46916             };
46917
46918             var label_text = {
46919                 tag: 'span',
46920                 html: this.fieldLabel
46921             };
46922
46923             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
46924             label.cn = [
46925                 indicator,
46926                 label_text
46927             ];
46928
46929             if(this.indicatorpos == 'right') {
46930                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
46931                 label.cn = [
46932                     label_text,
46933                     indicator
46934                 ];
46935             }
46936
46937             if(align == 'left') {
46938                 container = {
46939                     tag: 'div',
46940                     cn: [
46941                         container
46942                     ]
46943                 };
46944
46945                 if(this.labelWidth > 12){
46946                     label.style = "width: " + this.labelWidth + 'px';
46947                 }
46948                 if(this.labelWidth < 13 && this.labelmd == 0){
46949                     this.labelmd = this.labelWidth;
46950                 }
46951                 if(this.labellg > 0){
46952                     label.cls += ' col-lg-' + this.labellg;
46953                     input.cls += ' col-lg-' + (12 - this.labellg);
46954                 }
46955                 if(this.labelmd > 0){
46956                     label.cls += ' col-md-' + this.labelmd;
46957                     container.cls += ' col-md-' + (12 - this.labelmd);
46958                 }
46959                 if(this.labelsm > 0){
46960                     label.cls += ' col-sm-' + this.labelsm;
46961                     container.cls += ' col-sm-' + (12 - this.labelsm);
46962                 }
46963                 if(this.labelxs > 0){
46964                     label.cls += ' col-xs-' + this.labelxs;
46965                     container.cls += ' col-xs-' + (12 - this.labelxs);
46966                 }
46967             }
46968         }
46969
46970         cfg.cn = [
46971             label,
46972             container,
46973             hiddenInput
46974         ];
46975         
46976         var settings = this;
46977
46978         ['xs','sm','md','lg'].map(function(size){
46979             if (settings[size]) {
46980                 cfg.cls += ' col-' + size + '-' + settings[size];
46981             }
46982         });
46983         
46984         return cfg;
46985     },
46986     
46987     initEvents : function()
46988     {
46989         this.indicator = this.indicatorEl();
46990         
46991         this.initCurrencyEvent();
46992         
46993         this.initNumberEvent();
46994     },
46995     
46996     initCurrencyEvent : function()
46997     {
46998         if (!this.store) {
46999             throw "can not find store for combo";
47000         }
47001         
47002         this.store = Roo.factory(this.store, Roo.data);
47003         this.store.parent = this;
47004         
47005         this.createList();
47006         
47007         this.triggerEl = this.el.select('.input-group-addon', true).first();
47008         
47009         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
47010         
47011         var _this = this;
47012         
47013         (function(){
47014             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
47015             _this.list.setWidth(lw);
47016         }).defer(100);
47017         
47018         this.list.on('mouseover', this.onViewOver, this);
47019         this.list.on('mousemove', this.onViewMove, this);
47020         this.list.on('scroll', this.onViewScroll, this);
47021         
47022         if(!this.tpl){
47023             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
47024         }
47025         
47026         this.view = new Roo.View(this.list, this.tpl, {
47027             singleSelect:true, store: this.store, selectedClass: this.selectedClass
47028         });
47029         
47030         this.view.on('click', this.onViewClick, this);
47031         
47032         this.store.on('beforeload', this.onBeforeLoad, this);
47033         this.store.on('load', this.onLoad, this);
47034         this.store.on('loadexception', this.onLoadException, this);
47035         
47036         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
47037             "up" : function(e){
47038                 this.inKeyMode = true;
47039                 this.selectPrev();
47040             },
47041
47042             "down" : function(e){
47043                 if(!this.isExpanded()){
47044                     this.onTriggerClick();
47045                 }else{
47046                     this.inKeyMode = true;
47047                     this.selectNext();
47048                 }
47049             },
47050
47051             "enter" : function(e){
47052                 this.collapse();
47053                 
47054                 if(this.fireEvent("specialkey", this, e)){
47055                     this.onViewClick(false);
47056                 }
47057                 
47058                 return true;
47059             },
47060
47061             "esc" : function(e){
47062                 this.collapse();
47063             },
47064
47065             "tab" : function(e){
47066                 this.collapse();
47067                 
47068                 if(this.fireEvent("specialkey", this, e)){
47069                     this.onViewClick(false);
47070                 }
47071                 
47072                 return true;
47073             },
47074
47075             scope : this,
47076
47077             doRelay : function(foo, bar, hname){
47078                 if(hname == 'down' || this.scope.isExpanded()){
47079                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
47080                 }
47081                 return true;
47082             },
47083
47084             forceKeyDown: true
47085         });
47086         
47087         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
47088         
47089     },
47090     
47091     initNumberEvent : function(e)
47092     {
47093         this.inputEl().on("keydown" , this.fireKey,  this);
47094         this.inputEl().on("focus", this.onFocus,  this);
47095         this.inputEl().on("blur", this.onBlur,  this);
47096         
47097         this.inputEl().relayEvent('keyup', this);
47098         
47099         if(this.indicator){
47100             this.indicator.addClass('invisible');
47101         }
47102  
47103         this.originalValue = this.getValue();
47104         
47105         if(this.validationEvent == 'keyup'){
47106             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
47107             this.inputEl().on('keyup', this.filterValidation, this);
47108         }
47109         else if(this.validationEvent !== false){
47110             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
47111         }
47112         
47113         if(this.selectOnFocus){
47114             this.on("focus", this.preFocus, this);
47115             
47116         }
47117         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
47118             this.inputEl().on("keypress", this.filterKeys, this);
47119         } else {
47120             this.inputEl().relayEvent('keypress', this);
47121         }
47122         
47123         var allowed = "0123456789";
47124         
47125         if(this.allowDecimals){
47126             allowed += this.decimalSeparator;
47127         }
47128         
47129         if(this.allowNegative){
47130             allowed += "-";
47131         }
47132         
47133         if(this.thousandsDelimiter) {
47134             allowed += ",";
47135         }
47136         
47137         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
47138         
47139         var keyPress = function(e){
47140             
47141             var k = e.getKey();
47142             
47143             var c = e.getCharCode();
47144             
47145             if(
47146                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
47147                     allowed.indexOf(String.fromCharCode(c)) === -1
47148             ){
47149                 e.stopEvent();
47150                 return;
47151             }
47152             
47153             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
47154                 return;
47155             }
47156             
47157             if(allowed.indexOf(String.fromCharCode(c)) === -1){
47158                 e.stopEvent();
47159             }
47160         };
47161         
47162         this.inputEl().on("keypress", keyPress, this);
47163         
47164     },
47165     
47166     onTriggerClick : function(e)
47167     {   
47168         if(this.disabled){
47169             return;
47170         }
47171         
47172         this.page = 0;
47173         this.loadNext = false;
47174         
47175         if(this.isExpanded()){
47176             this.collapse();
47177             return;
47178         }
47179         
47180         this.hasFocus = true;
47181         
47182         if(this.triggerAction == 'all') {
47183             this.doQuery(this.allQuery, true);
47184             return;
47185         }
47186         
47187         this.doQuery(this.getRawValue());
47188     },
47189     
47190     getCurrency : function()
47191     {   
47192         var v = this.currencyEl().getValue();
47193         
47194         return v;
47195     },
47196     
47197     restrictHeight : function()
47198     {
47199         this.list.alignTo(this.currencyEl(), this.listAlign);
47200         this.list.alignTo(this.currencyEl(), this.listAlign);
47201     },
47202     
47203     onViewClick : function(view, doFocus, el, e)
47204     {
47205         var index = this.view.getSelectedIndexes()[0];
47206         
47207         var r = this.store.getAt(index);
47208         
47209         if(r){
47210             this.onSelect(r, index);
47211         }
47212     },
47213     
47214     onSelect : function(record, index){
47215         
47216         if(this.fireEvent('beforeselect', this, record, index) !== false){
47217         
47218             this.setFromCurrencyData(index > -1 ? record.data : false);
47219             
47220             this.collapse();
47221             
47222             this.fireEvent('select', this, record, index);
47223         }
47224     },
47225     
47226     setFromCurrencyData : function(o)
47227     {
47228         var currency = '';
47229         
47230         this.lastCurrency = o;
47231         
47232         if (this.currencyField) {
47233             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
47234         } else {
47235             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
47236         }
47237         
47238         this.lastSelectionText = currency;
47239         
47240         //setting default currency
47241         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
47242             this.setCurrency(this.defaultCurrency);
47243             return;
47244         }
47245         
47246         this.setCurrency(currency);
47247     },
47248     
47249     setFromData : function(o)
47250     {
47251         var c = {};
47252         
47253         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
47254         
47255         this.setFromCurrencyData(c);
47256         
47257         var value = '';
47258         
47259         if (this.name) {
47260             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
47261         } else {
47262             Roo.log('no value set for '+ (this.name ? this.name : this.id));
47263         }
47264         
47265         this.setValue(value);
47266         
47267     },
47268     
47269     setCurrency : function(v)
47270     {   
47271         this.currencyValue = v;
47272         
47273         if(this.rendered){
47274             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
47275             this.validate();
47276         }
47277     },
47278     
47279     setValue : function(v)
47280     {
47281         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
47282         
47283         this.value = v;
47284         
47285         if(this.rendered){
47286             
47287             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
47288             
47289             this.inputEl().dom.value = (v == '') ? '' :
47290                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
47291             
47292             if(!this.allowZero && v === '0') {
47293                 this.hiddenEl().dom.value = '';
47294                 this.inputEl().dom.value = '';
47295             }
47296             
47297             this.validate();
47298         }
47299     },
47300     
47301     getRawValue : function()
47302     {
47303         var v = this.inputEl().getValue();
47304         
47305         return v;
47306     },
47307     
47308     getValue : function()
47309     {
47310         return this.fixPrecision(this.parseValue(this.getRawValue()));
47311     },
47312     
47313     parseValue : function(value)
47314     {
47315         if(this.thousandsDelimiter) {
47316             value += "";
47317             r = new RegExp(",", "g");
47318             value = value.replace(r, "");
47319         }
47320         
47321         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
47322         return isNaN(value) ? '' : value;
47323         
47324     },
47325     
47326     fixPrecision : function(value)
47327     {
47328         if(this.thousandsDelimiter) {
47329             value += "";
47330             r = new RegExp(",", "g");
47331             value = value.replace(r, "");
47332         }
47333         
47334         var nan = isNaN(value);
47335         
47336         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
47337             return nan ? '' : value;
47338         }
47339         return parseFloat(value).toFixed(this.decimalPrecision);
47340     },
47341     
47342     decimalPrecisionFcn : function(v)
47343     {
47344         return Math.floor(v);
47345     },
47346     
47347     validateValue : function(value)
47348     {
47349         if(!Roo.bootstrap.form.MoneyField.superclass.validateValue.call(this, value)){
47350             return false;
47351         }
47352         
47353         var num = this.parseValue(value);
47354         
47355         if(isNaN(num)){
47356             this.markInvalid(String.format(this.nanText, value));
47357             return false;
47358         }
47359         
47360         if(num < this.minValue){
47361             this.markInvalid(String.format(this.minText, this.minValue));
47362             return false;
47363         }
47364         
47365         if(num > this.maxValue){
47366             this.markInvalid(String.format(this.maxText, this.maxValue));
47367             return false;
47368         }
47369         
47370         return true;
47371     },
47372     
47373     validate : function()
47374     {
47375         if(this.disabled || this.allowBlank){
47376             this.markValid();
47377             return true;
47378         }
47379         
47380         var currency = this.getCurrency();
47381         
47382         if(this.validateValue(this.getRawValue()) && currency.length){
47383             this.markValid();
47384             return true;
47385         }
47386         
47387         this.markInvalid();
47388         return false;
47389     },
47390     
47391     getName: function()
47392     {
47393         return this.name;
47394     },
47395     
47396     beforeBlur : function()
47397     {
47398         if(!this.castInt){
47399             return;
47400         }
47401         
47402         var v = this.parseValue(this.getRawValue());
47403         
47404         if(v || v == 0){
47405             this.setValue(v);
47406         }
47407     },
47408     
47409     onBlur : function()
47410     {
47411         this.beforeBlur();
47412         
47413         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
47414             //this.el.removeClass(this.focusClass);
47415         }
47416         
47417         this.hasFocus = false;
47418         
47419         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
47420             this.validate();
47421         }
47422         
47423         var v = this.getValue();
47424         
47425         if(String(v) !== String(this.startValue)){
47426             this.fireEvent('change', this, v, this.startValue);
47427         }
47428         
47429         this.fireEvent("blur", this);
47430     },
47431     
47432     inputEl : function()
47433     {
47434         return this.el.select('.roo-money-amount-input', true).first();
47435     },
47436     
47437     currencyEl : function()
47438     {
47439         return this.el.select('.roo-money-currency-input', true).first();
47440     },
47441     
47442     hiddenEl : function()
47443     {
47444         return this.el.select('input.hidden-number-input',true).first();
47445     }
47446     
47447 });/**
47448  * @class Roo.bootstrap.BezierSignature
47449  * @extends Roo.bootstrap.Component
47450  * Bootstrap BezierSignature class
47451  * This script refer to:
47452  *    Title: Signature Pad
47453  *    Author: szimek
47454  *    Availability: https://github.com/szimek/signature_pad
47455  *
47456  * @constructor
47457  * Create a new BezierSignature
47458  * @param {Object} config The config object
47459  */
47460
47461 Roo.bootstrap.BezierSignature = function(config){
47462     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
47463     this.addEvents({
47464         "resize" : true
47465     });
47466 };
47467
47468 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
47469 {
47470      
47471     curve_data: [],
47472     
47473     is_empty: true,
47474     
47475     mouse_btn_down: true,
47476     
47477     /**
47478      * @cfg {int} canvas height
47479      */
47480     canvas_height: '200px',
47481     
47482     /**
47483      * @cfg {float|function} Radius of a single dot.
47484      */ 
47485     dot_size: false,
47486     
47487     /**
47488      * @cfg {float} Minimum width of a line. Defaults to 0.5.
47489      */
47490     min_width: 0.5,
47491     
47492     /**
47493      * @cfg {float} Maximum width of a line. Defaults to 2.5.
47494      */
47495     max_width: 2.5,
47496     
47497     /**
47498      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
47499      */
47500     throttle: 16,
47501     
47502     /**
47503      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
47504      */
47505     min_distance: 5,
47506     
47507     /**
47508      * @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.
47509      */
47510     bg_color: 'rgba(0, 0, 0, 0)',
47511     
47512     /**
47513      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
47514      */
47515     dot_color: 'black',
47516     
47517     /**
47518      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
47519      */ 
47520     velocity_filter_weight: 0.7,
47521     
47522     /**
47523      * @cfg {function} Callback when stroke begin. 
47524      */
47525     onBegin: false,
47526     
47527     /**
47528      * @cfg {function} Callback when stroke end.
47529      */
47530     onEnd: false,
47531     
47532     getAutoCreate : function()
47533     {
47534         var cls = 'roo-signature column';
47535         
47536         if(this.cls){
47537             cls += ' ' + this.cls;
47538         }
47539         
47540         var col_sizes = [
47541             'lg',
47542             'md',
47543             'sm',
47544             'xs'
47545         ];
47546         
47547         for(var i = 0; i < col_sizes.length; i++) {
47548             if(this[col_sizes[i]]) {
47549                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
47550             }
47551         }
47552         
47553         var cfg = {
47554             tag: 'div',
47555             cls: cls,
47556             cn: [
47557                 {
47558                     tag: 'div',
47559                     cls: 'roo-signature-body',
47560                     cn: [
47561                         {
47562                             tag: 'canvas',
47563                             cls: 'roo-signature-body-canvas',
47564                             height: this.canvas_height,
47565                             width: this.canvas_width
47566                         }
47567                     ]
47568                 },
47569                 {
47570                     tag: 'input',
47571                     type: 'file',
47572                     style: 'display: none'
47573                 }
47574             ]
47575         };
47576         
47577         return cfg;
47578     },
47579     
47580     initEvents: function() 
47581     {
47582         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
47583         
47584         var canvas = this.canvasEl();
47585         
47586         // mouse && touch event swapping...
47587         canvas.dom.style.touchAction = 'none';
47588         canvas.dom.style.msTouchAction = 'none';
47589         
47590         this.mouse_btn_down = false;
47591         canvas.on('mousedown', this._handleMouseDown, this);
47592         canvas.on('mousemove', this._handleMouseMove, this);
47593         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
47594         
47595         if (window.PointerEvent) {
47596             canvas.on('pointerdown', this._handleMouseDown, this);
47597             canvas.on('pointermove', this._handleMouseMove, this);
47598             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
47599         }
47600         
47601         if ('ontouchstart' in window) {
47602             canvas.on('touchstart', this._handleTouchStart, this);
47603             canvas.on('touchmove', this._handleTouchMove, this);
47604             canvas.on('touchend', this._handleTouchEnd, this);
47605         }
47606         
47607         Roo.EventManager.onWindowResize(this.resize, this, true);
47608         
47609         // file input event
47610         this.fileEl().on('change', this.uploadImage, this);
47611         
47612         this.clear();
47613         
47614         this.resize();
47615     },
47616     
47617     resize: function(){
47618         
47619         var canvas = this.canvasEl().dom;
47620         var ctx = this.canvasElCtx();
47621         var img_data = false;
47622         
47623         if(canvas.width > 0) {
47624             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
47625         }
47626         // setting canvas width will clean img data
47627         canvas.width = 0;
47628         
47629         var style = window.getComputedStyle ? 
47630             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
47631             
47632         var padding_left = parseInt(style.paddingLeft) || 0;
47633         var padding_right = parseInt(style.paddingRight) || 0;
47634         
47635         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
47636         
47637         if(img_data) {
47638             ctx.putImageData(img_data, 0, 0);
47639         }
47640     },
47641     
47642     _handleMouseDown: function(e)
47643     {
47644         if (e.browserEvent.which === 1) {
47645             this.mouse_btn_down = true;
47646             this.strokeBegin(e);
47647         }
47648     },
47649     
47650     _handleMouseMove: function (e)
47651     {
47652         if (this.mouse_btn_down) {
47653             this.strokeMoveUpdate(e);
47654         }
47655     },
47656     
47657     _handleMouseUp: function (e)
47658     {
47659         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
47660             this.mouse_btn_down = false;
47661             this.strokeEnd(e);
47662         }
47663     },
47664     
47665     _handleTouchStart: function (e) {
47666         
47667         e.preventDefault();
47668         if (e.browserEvent.targetTouches.length === 1) {
47669             // var touch = e.browserEvent.changedTouches[0];
47670             // this.strokeBegin(touch);
47671             
47672              this.strokeBegin(e); // assume e catching the correct xy...
47673         }
47674     },
47675     
47676     _handleTouchMove: function (e) {
47677         e.preventDefault();
47678         // var touch = event.targetTouches[0];
47679         // _this._strokeMoveUpdate(touch);
47680         this.strokeMoveUpdate(e);
47681     },
47682     
47683     _handleTouchEnd: function (e) {
47684         var wasCanvasTouched = e.target === this.canvasEl().dom;
47685         if (wasCanvasTouched) {
47686             e.preventDefault();
47687             // var touch = event.changedTouches[0];
47688             // _this._strokeEnd(touch);
47689             this.strokeEnd(e);
47690         }
47691     },
47692     
47693     reset: function () {
47694         this._lastPoints = [];
47695         this._lastVelocity = 0;
47696         this._lastWidth = (this.min_width + this.max_width) / 2;
47697         this.canvasElCtx().fillStyle = this.dot_color;
47698     },
47699     
47700     strokeMoveUpdate: function(e)
47701     {
47702         this.strokeUpdate(e);
47703         
47704         if (this.throttle) {
47705             this.throttleStroke(this.strokeUpdate, this.throttle);
47706         }
47707         else {
47708             this.strokeUpdate(e);
47709         }
47710     },
47711     
47712     strokeBegin: function(e)
47713     {
47714         var newPointGroup = {
47715             color: this.dot_color,
47716             points: []
47717         };
47718         
47719         if (typeof this.onBegin === 'function') {
47720             this.onBegin(e);
47721         }
47722         
47723         this.curve_data.push(newPointGroup);
47724         this.reset();
47725         this.strokeUpdate(e);
47726     },
47727     
47728     strokeUpdate: function(e)
47729     {
47730         var rect = this.canvasEl().dom.getBoundingClientRect();
47731         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
47732         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
47733         var lastPoints = lastPointGroup.points;
47734         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
47735         var isLastPointTooClose = lastPoint
47736             ? point.distanceTo(lastPoint) <= this.min_distance
47737             : false;
47738         var color = lastPointGroup.color;
47739         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
47740             var curve = this.addPoint(point);
47741             if (!lastPoint) {
47742                 this.drawDot({color: color, point: point});
47743             }
47744             else if (curve) {
47745                 this.drawCurve({color: color, curve: curve});
47746             }
47747             lastPoints.push({
47748                 time: point.time,
47749                 x: point.x,
47750                 y: point.y
47751             });
47752         }
47753     },
47754     
47755     strokeEnd: function(e)
47756     {
47757         this.strokeUpdate(e);
47758         if (typeof this.onEnd === 'function') {
47759             this.onEnd(e);
47760         }
47761     },
47762     
47763     addPoint:  function (point) {
47764         var _lastPoints = this._lastPoints;
47765         _lastPoints.push(point);
47766         if (_lastPoints.length > 2) {
47767             if (_lastPoints.length === 3) {
47768                 _lastPoints.unshift(_lastPoints[0]);
47769             }
47770             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
47771             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
47772             _lastPoints.shift();
47773             return curve;
47774         }
47775         return null;
47776     },
47777     
47778     calculateCurveWidths: function (startPoint, endPoint) {
47779         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
47780             (1 - this.velocity_filter_weight) * this._lastVelocity;
47781
47782         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
47783         var widths = {
47784             end: newWidth,
47785             start: this._lastWidth
47786         };
47787         
47788         this._lastVelocity = velocity;
47789         this._lastWidth = newWidth;
47790         return widths;
47791     },
47792     
47793     drawDot: function (_a) {
47794         var color = _a.color, point = _a.point;
47795         var ctx = this.canvasElCtx();
47796         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
47797         ctx.beginPath();
47798         this.drawCurveSegment(point.x, point.y, width);
47799         ctx.closePath();
47800         ctx.fillStyle = color;
47801         ctx.fill();
47802     },
47803     
47804     drawCurve: function (_a) {
47805         var color = _a.color, curve = _a.curve;
47806         var ctx = this.canvasElCtx();
47807         var widthDelta = curve.endWidth - curve.startWidth;
47808         var drawSteps = Math.floor(curve.length()) * 2;
47809         ctx.beginPath();
47810         ctx.fillStyle = color;
47811         for (var i = 0; i < drawSteps; i += 1) {
47812         var t = i / drawSteps;
47813         var tt = t * t;
47814         var ttt = tt * t;
47815         var u = 1 - t;
47816         var uu = u * u;
47817         var uuu = uu * u;
47818         var x = uuu * curve.startPoint.x;
47819         x += 3 * uu * t * curve.control1.x;
47820         x += 3 * u * tt * curve.control2.x;
47821         x += ttt * curve.endPoint.x;
47822         var y = uuu * curve.startPoint.y;
47823         y += 3 * uu * t * curve.control1.y;
47824         y += 3 * u * tt * curve.control2.y;
47825         y += ttt * curve.endPoint.y;
47826         var width = curve.startWidth + ttt * widthDelta;
47827         this.drawCurveSegment(x, y, width);
47828         }
47829         ctx.closePath();
47830         ctx.fill();
47831     },
47832     
47833     drawCurveSegment: function (x, y, width) {
47834         var ctx = this.canvasElCtx();
47835         ctx.moveTo(x, y);
47836         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
47837         this.is_empty = false;
47838     },
47839     
47840     clear: function()
47841     {
47842         var ctx = this.canvasElCtx();
47843         var canvas = this.canvasEl().dom;
47844         ctx.fillStyle = this.bg_color;
47845         ctx.clearRect(0, 0, canvas.width, canvas.height);
47846         ctx.fillRect(0, 0, canvas.width, canvas.height);
47847         this.curve_data = [];
47848         this.reset();
47849         this.is_empty = true;
47850     },
47851     
47852     fileEl: function()
47853     {
47854         return  this.el.select('input',true).first();
47855     },
47856     
47857     canvasEl: function()
47858     {
47859         return this.el.select('canvas',true).first();
47860     },
47861     
47862     canvasElCtx: function()
47863     {
47864         return this.el.select('canvas',true).first().dom.getContext('2d');
47865     },
47866     
47867     getImage: function(type)
47868     {
47869         if(this.is_empty) {
47870             return false;
47871         }
47872         
47873         // encryption ?
47874         return this.canvasEl().dom.toDataURL('image/'+type, 1);
47875     },
47876     
47877     drawFromImage: function(img_src)
47878     {
47879         var img = new Image();
47880         
47881         img.onload = function(){
47882             this.canvasElCtx().drawImage(img, 0, 0);
47883         }.bind(this);
47884         
47885         img.src = img_src;
47886         
47887         this.is_empty = false;
47888     },
47889     
47890     selectImage: function()
47891     {
47892         this.fileEl().dom.click();
47893     },
47894     
47895     uploadImage: function(e)
47896     {
47897         var reader = new FileReader();
47898         
47899         reader.onload = function(e){
47900             var img = new Image();
47901             img.onload = function(){
47902                 this.reset();
47903                 this.canvasElCtx().drawImage(img, 0, 0);
47904             }.bind(this);
47905             img.src = e.target.result;
47906         }.bind(this);
47907         
47908         reader.readAsDataURL(e.target.files[0]);
47909     },
47910     
47911     // Bezier Point Constructor
47912     Point: (function () {
47913         function Point(x, y, time) {
47914             this.x = x;
47915             this.y = y;
47916             this.time = time || Date.now();
47917         }
47918         Point.prototype.distanceTo = function (start) {
47919             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
47920         };
47921         Point.prototype.equals = function (other) {
47922             return this.x === other.x && this.y === other.y && this.time === other.time;
47923         };
47924         Point.prototype.velocityFrom = function (start) {
47925             return this.time !== start.time
47926             ? this.distanceTo(start) / (this.time - start.time)
47927             : 0;
47928         };
47929         return Point;
47930     }()),
47931     
47932     
47933     // Bezier Constructor
47934     Bezier: (function () {
47935         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
47936             this.startPoint = startPoint;
47937             this.control2 = control2;
47938             this.control1 = control1;
47939             this.endPoint = endPoint;
47940             this.startWidth = startWidth;
47941             this.endWidth = endWidth;
47942         }
47943         Bezier.fromPoints = function (points, widths, scope) {
47944             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
47945             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
47946             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
47947         };
47948         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
47949             var dx1 = s1.x - s2.x;
47950             var dy1 = s1.y - s2.y;
47951             var dx2 = s2.x - s3.x;
47952             var dy2 = s2.y - s3.y;
47953             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
47954             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
47955             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
47956             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
47957             var dxm = m1.x - m2.x;
47958             var dym = m1.y - m2.y;
47959             var k = l2 / (l1 + l2);
47960             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
47961             var tx = s2.x - cm.x;
47962             var ty = s2.y - cm.y;
47963             return {
47964                 c1: new scope.Point(m1.x + tx, m1.y + ty),
47965                 c2: new scope.Point(m2.x + tx, m2.y + ty)
47966             };
47967         };
47968         Bezier.prototype.length = function () {
47969             var steps = 10;
47970             var length = 0;
47971             var px;
47972             var py;
47973             for (var i = 0; i <= steps; i += 1) {
47974                 var t = i / steps;
47975                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
47976                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
47977                 if (i > 0) {
47978                     var xdiff = cx - px;
47979                     var ydiff = cy - py;
47980                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
47981                 }
47982                 px = cx;
47983                 py = cy;
47984             }
47985             return length;
47986         };
47987         Bezier.prototype.point = function (t, start, c1, c2, end) {
47988             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
47989             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
47990             + (3.0 * c2 * (1.0 - t) * t * t)
47991             + (end * t * t * t);
47992         };
47993         return Bezier;
47994     }()),
47995     
47996     throttleStroke: function(fn, wait) {
47997       if (wait === void 0) { wait = 250; }
47998       var previous = 0;
47999       var timeout = null;
48000       var result;
48001       var storedContext;
48002       var storedArgs;
48003       var later = function () {
48004           previous = Date.now();
48005           timeout = null;
48006           result = fn.apply(storedContext, storedArgs);
48007           if (!timeout) {
48008               storedContext = null;
48009               storedArgs = [];
48010           }
48011       };
48012       return function wrapper() {
48013           var args = [];
48014           for (var _i = 0; _i < arguments.length; _i++) {
48015               args[_i] = arguments[_i];
48016           }
48017           var now = Date.now();
48018           var remaining = wait - (now - previous);
48019           storedContext = this;
48020           storedArgs = args;
48021           if (remaining <= 0 || remaining > wait) {
48022               if (timeout) {
48023                   clearTimeout(timeout);
48024                   timeout = null;
48025               }
48026               previous = now;
48027               result = fn.apply(storedContext, storedArgs);
48028               if (!timeout) {
48029                   storedContext = null;
48030                   storedArgs = [];
48031               }
48032           }
48033           else if (!timeout) {
48034               timeout = window.setTimeout(later, remaining);
48035           }
48036           return result;
48037       };
48038   }
48039   
48040 });
48041
48042  
48043
48044  // old names for form elements
48045 Roo.bootstrap.Form          =   Roo.bootstrap.form.Form;
48046 Roo.bootstrap.Input         =   Roo.bootstrap.form.Input;
48047 Roo.bootstrap.TextArea      =   Roo.bootstrap.form.TextArea;
48048 Roo.bootstrap.TriggerField  =   Roo.bootstrap.form.TriggerField;
48049 Roo.bootstrap.ComboBox      =   Roo.bootstrap.form.ComboBox;
48050 Roo.bootstrap.DateField     =   Roo.bootstrap.form.DateField;
48051 Roo.bootstrap.TimeField     =   Roo.bootstrap.form.TimeField;
48052 Roo.bootstrap.MonthField    =   Roo.bootstrap.form.MonthField;
48053 Roo.bootstrap.CheckBox      =   Roo.bootstrap.form.CheckBox;
48054 Roo.bootstrap.Radio         =   Roo.bootstrap.form.Radio;
48055 Roo.bootstrap.RadioSet      =   Roo.bootstrap.form.RadioSet;
48056 Roo.bootstrap.SecurePass    =   Roo.bootstrap.form.SecurePass;
48057 Roo.bootstrap.FieldLabel    =   Roo.bootstrap.form.FieldLabel;
48058 Roo.bootstrap.DateSplitField=   Roo.bootstrap.form.DateSplitField;
48059 Roo.bootstrap.NumberField   =   Roo.bootstrap.form.NumberField;
48060 Roo.bootstrap.PhoneInput    =   Roo.bootstrap.form.PhoneInput;
48061 Roo.bootstrap.PhoneInputData=   Roo.bootstrap.form.PhoneInputData;
48062 Roo.bootstrap.MoneyField    =   Roo.bootstrap.form.MoneyField;
48063 Roo.bootstrap.HtmlEditor    =   Roo.bootstrap.form.HtmlEditor;
48064 Roo.bootstrap.HtmlEditor.ToolbarStandard =   Roo.bootstrap.form.HtmlEditorToolbarStandard;
48065 Roo.bootstrap.Markdown      = Roo.bootstrap.form.Markdown;
48066 Roo.bootstrap.CardUploader  = Roo.bootstrap.form.CardUploader;// depricated.
48067 Roo.bootstrap.Navbar            = Roo.bootstrap.nav.Bar;
48068 Roo.bootstrap.NavGroup          = Roo.bootstrap.nav.Group;
48069 Roo.bootstrap.NavHeaderbar      = Roo.bootstrap.nav.Headerbar;
48070 Roo.bootstrap.NavItem           = Roo.bootstrap.nav.Item;
48071
48072 Roo.bootstrap.NavProgressBar     = Roo.bootstrap.nav.ProgressBar;
48073 Roo.bootstrap.NavProgressBarItem = Roo.bootstrap.nav.ProgressBarItem;
48074
48075 Roo.bootstrap.NavSidebar        = Roo.bootstrap.nav.Sidebar;
48076 Roo.bootstrap.NavSidebarItem    = Roo.bootstrap.nav.SidebarItem;
48077
48078 Roo.bootstrap.NavSimplebar      = Roo.bootstrap.nav.Simplebar;// deprciated 
48079 Roo.bootstrap.Menu = Roo.bootstrap.menu.Menu;
48080 Roo.bootstrap.MenuItem =  Roo.bootstrap.menu.Item;
48081 Roo.bootstrap.MenuSeparator = Roo.bootstrap.menu.Separator
48082