sync
[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 Roo.htmleditor = {};
22 Roo.namespace('Roo.bootstrap.form.HtmlEditorToolbar');
23 /*
24  * Based on:
25  * Ext JS Library 1.1.1
26  * Copyright(c) 2006-2007, Ext JS, LLC.
27  *
28  * Originally Released Under LGPL - original licence link has changed is not relivant.
29  *
30  * Fork - LGPL
31  * <script type="text/javascript">
32  */
33
34
35 /**
36  * @class Roo.Shadow
37  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
38  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
39  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
40  * @constructor
41  * Create a new Shadow
42  * @param {Object} config The config object
43  */
44 Roo.Shadow = function(config){
45     Roo.apply(this, config);
46     if(typeof this.mode != "string"){
47         this.mode = this.defaultMode;
48     }
49     var o = this.offset, a = {h: 0};
50     var rad = Math.floor(this.offset/2);
51     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
52         case "drop":
53             a.w = 0;
54             a.l = a.t = o;
55             a.t -= 1;
56             if(Roo.isIE){
57                 a.l -= this.offset + rad;
58                 a.t -= this.offset + rad;
59                 a.w -= rad;
60                 a.h -= rad;
61                 a.t += 1;
62             }
63         break;
64         case "sides":
65             a.w = (o*2);
66             a.l = -o;
67             a.t = o-1;
68             if(Roo.isIE){
69                 a.l -= (this.offset - rad);
70                 a.t -= this.offset + rad;
71                 a.l += 1;
72                 a.w -= (this.offset - rad)*2;
73                 a.w -= rad + 1;
74                 a.h -= 1;
75             }
76         break;
77         case "frame":
78             a.w = a.h = (o*2);
79             a.l = a.t = -o;
80             a.t += 1;
81             a.h -= 2;
82             if(Roo.isIE){
83                 a.l -= (this.offset - rad);
84                 a.t -= (this.offset - rad);
85                 a.l += 1;
86                 a.w -= (this.offset + rad + 1);
87                 a.h -= (this.offset + rad);
88                 a.h += 1;
89             }
90         break;
91     };
92
93     this.adjusts = a;
94 };
95
96 Roo.Shadow.prototype = {
97     /**
98      * @cfg {String} mode
99      * The shadow display mode.  Supports the following options:<br />
100      * sides: Shadow displays on both sides and bottom only<br />
101      * frame: Shadow displays equally on all four sides<br />
102      * drop: Traditional bottom-right drop shadow (default)
103      */
104     mode: false,
105     /**
106      * @cfg {String} offset
107      * The number of pixels to offset the shadow from the element (defaults to 4)
108      */
109     offset: 4,
110
111     // private
112     defaultMode: "drop",
113
114     /**
115      * Displays the shadow under the target element
116      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
117      */
118     show : function(target){
119         target = Roo.get(target);
120         if(!this.el){
121             this.el = Roo.Shadow.Pool.pull();
122             if(this.el.dom.nextSibling != target.dom){
123                 this.el.insertBefore(target);
124             }
125         }
126         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
127         if(Roo.isIE){
128             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
129         }
130         this.realign(
131             target.getLeft(true),
132             target.getTop(true),
133             target.getWidth(),
134             target.getHeight()
135         );
136         this.el.dom.style.display = "block";
137     },
138
139     /**
140      * Returns true if the shadow is visible, else false
141      */
142     isVisible : function(){
143         return this.el ? true : false;  
144     },
145
146     /**
147      * Direct alignment when values are already available. Show must be called at least once before
148      * calling this method to ensure it is initialized.
149      * @param {Number} left The target element left position
150      * @param {Number} top The target element top position
151      * @param {Number} width The target element width
152      * @param {Number} height The target element height
153      */
154     realign : function(l, t, w, h){
155         if(!this.el){
156             return;
157         }
158         var a = this.adjusts, d = this.el.dom, s = d.style;
159         var iea = 0;
160         s.left = (l+a.l)+"px";
161         s.top = (t+a.t)+"px";
162         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
163  
164         if(s.width != sws || s.height != shs){
165             s.width = sws;
166             s.height = shs;
167             if(!Roo.isIE){
168                 var cn = d.childNodes;
169                 var sww = Math.max(0, (sw-12))+"px";
170                 cn[0].childNodes[1].style.width = sww;
171                 cn[1].childNodes[1].style.width = sww;
172                 cn[2].childNodes[1].style.width = sww;
173                 cn[1].style.height = Math.max(0, (sh-12))+"px";
174             }
175         }
176     },
177
178     /**
179      * Hides this shadow
180      */
181     hide : function(){
182         if(this.el){
183             this.el.dom.style.display = "none";
184             Roo.Shadow.Pool.push(this.el);
185             delete this.el;
186         }
187     },
188
189     /**
190      * Adjust the z-index of this shadow
191      * @param {Number} zindex The new z-index
192      */
193     setZIndex : function(z){
194         this.zIndex = z;
195         if(this.el){
196             this.el.setStyle("z-index", z);
197         }
198     }
199 };
200
201 // Private utility class that manages the internal Shadow cache
202 Roo.Shadow.Pool = function(){
203     var p = [];
204     var markup = Roo.isIE ?
205                  '<div class="x-ie-shadow"></div>' :
206                  '<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>';
207     return {
208         pull : function(){
209             var sh = p.shift();
210             if(!sh){
211                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
212                 sh.autoBoxAdjust = false;
213             }
214             return sh;
215         },
216
217         push : function(sh){
218             p.push(sh);
219         }
220     };
221 }();/*
222  * - LGPL
223  *
224  * base class for bootstrap elements.
225  * 
226  */
227
228 Roo.bootstrap = Roo.bootstrap || {};
229 /**
230  * @class Roo.bootstrap.Component
231  * @extends Roo.Component
232  * @abstract
233  * @children Roo.bootstrap.Component
234  * Bootstrap Component base class
235  * @cfg {String} cls css class
236  * @cfg {String} style any extra css
237  * @cfg {Object} xattr extra attributes to add to 'element' (used by builder to store stuff.)
238  * @cfg {Boolean} can_build_overlaid  True if element can be rebuild from a HTML page
239  * @cfg {string} dataId cutomer id
240  * @cfg {string} name Specifies name attribute
241  * @cfg {string} tooltip  Text for the tooltip
242  * @cfg {string} container_method method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)
243  * @cfg {string|object} visibilityEl (el|parent) What element to use for visibility (@see getVisibilityEl())
244  
245  * @constructor
246  * Do not use directly - it does not do anything..
247  * @param {Object} config The config object
248  */
249
250
251
252 Roo.bootstrap.Component = function(config){
253     Roo.bootstrap.Component.superclass.constructor.call(this, config);
254        
255     this.addEvents({
256         /**
257          * @event childrenrendered
258          * Fires when the children have been rendered..
259          * @param {Roo.bootstrap.Component} this
260          */
261         "childrenrendered" : true
262         
263         
264         
265     });
266     
267     
268 };
269
270 Roo.extend(Roo.bootstrap.Component, Roo.BoxComponent,  {
271     
272     
273     allowDomMove : false, // to stop relocations in parent onRender...
274     
275     cls : false,
276     
277     style : false,
278     
279     autoCreate : false,
280     
281     tooltip : null,
282     /**
283      * Initialize Events for the element
284      */
285     initEvents : function() { },
286     
287     xattr : false,
288     
289     parentId : false,
290     
291     can_build_overlaid : true,
292     
293     container_method : false,
294     
295     dataId : false,
296     
297     name : false,
298     
299     parent: function() {
300         // returns the parent component..
301         return Roo.ComponentMgr.get(this.parentId)
302         
303         
304     },
305     
306     // private
307     onRender : function(ct, position)
308     {
309        // Roo.log("Call onRender: " + this.xtype);
310         
311         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
312         
313         if(this.el){
314             if (this.el.attr('xtype')) {
315                 this.el.attr('xtypex', this.el.attr('xtype'));
316                 this.el.dom.removeAttribute('xtype');
317                 
318                 this.initEvents();
319             }
320             
321             return;
322         }
323         
324          
325         
326         var cfg = Roo.apply({},  this.getAutoCreate());
327         
328         cfg.id = this.id || Roo.id();
329         
330         // fill in the extra attributes 
331         if (this.xattr && typeof(this.xattr) =='object') {
332             for (var i in this.xattr) {
333                 cfg[i] = this.xattr[i];
334             }
335         }
336         
337         if(this.dataId){
338             cfg.dataId = this.dataId;
339         }
340         
341         if (this.cls) {
342             cfg.cls = (typeof(cfg.cls) == 'undefined' ? this.cls : cfg.cls) + ' ' + this.cls;
343         }
344         
345         if (this.style) { // fixme needs to support more complex style data.
346             cfg.style = (typeof(cfg.style) == 'undefined' ? this.style : cfg.style) + '; ' + this.style;
347         }
348         
349         if(this.name){
350             cfg.name = this.name;
351         }
352         
353         this.el = ct.createChild(cfg, position);
354         
355         if (this.tooltip) {
356             this.tooltipEl().attr('tooltip', this.tooltip);
357         }
358         
359         if(this.tabIndex !== undefined){
360             this.el.dom.setAttribute('tabIndex', this.tabIndex);
361         }
362         
363         this.initEvents();
364         
365     },
366     /**
367      * Fetch the element to add children to
368      * @return {Roo.Element} defaults to this.el
369      */
370     getChildContainer : function()
371     {
372         return this.el;
373     },
374     getDocumentBody : function() // used by menus - as they are attached to the body so zIndexes work
375     {
376         return Roo.get(document.body);
377     },
378     
379     /**
380      * Fetch the element to display the tooltip on.
381      * @return {Roo.Element} defaults to this.el
382      */
383     tooltipEl : function()
384     {
385         return this.el;
386     },
387         
388     addxtype  : function(tree,cntr)
389     {
390         var cn = this;
391         
392         cn = Roo.factory(tree);
393         //Roo.log(['addxtype', cn]);
394            
395         cn.parentType = this.xtype; //??
396         cn.parentId = this.id;
397         
398         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
399         if (typeof(cn.container_method) == 'string') {
400             cntr = cn.container_method;
401         }
402         
403         
404         var has_flexy_each =  (typeof(tree['flexy:foreach']) != 'undefined');
405         
406         var has_flexy_if =  (typeof(tree['flexy:if']) != 'undefined');
407         
408         var build_from_html =  Roo.XComponent.build_from_html;
409           
410         var is_body  = (tree.xtype == 'Body') ;
411           
412         var page_has_body = (Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body');
413           
414         var self_cntr_el = Roo.get(this[cntr](false));
415         
416         // do not try and build conditional elements 
417         if ((has_flexy_each || has_flexy_if || this.can_build_overlaid == false ) && build_from_html) {
418             return false;
419         }
420         
421         if (!has_flexy_each || !build_from_html || is_body || !page_has_body) {
422             if(!has_flexy_if || typeof(tree.name) == 'undefined' || !build_from_html || is_body || !page_has_body){
423                 return this.addxtypeChild(tree,cntr, is_body);
424             }
425             
426             var echild =self_cntr_el ? self_cntr_el.child('>*[name=' + tree.name + ']') : false;
427                 
428             if(echild){
429                 return this.addxtypeChild(Roo.apply({}, tree),cntr);
430             }
431             
432             Roo.log('skipping render');
433             return cn;
434             
435         }
436         
437         var ret = false;
438         if (!build_from_html) {
439             return false;
440         }
441         
442         // this i think handles overlaying multiple children of the same type
443         // with the sam eelement.. - which might be buggy..
444         while (true) {
445             var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
446             
447             if (!echild) {
448                 break;
449             }
450             
451             if (echild && echild.attr('xtype').split('.').pop() != cn.xtype) {
452                 break;
453             }
454             
455             ret = this.addxtypeChild(Roo.apply({}, tree),cntr);
456         }
457        
458         return ret;
459     },
460     
461     
462     addxtypeChild : function (tree, cntr, is_body)
463     {
464         Roo.debug && Roo.log('addxtypeChild:' + cntr);
465         var cn = this;
466         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
467         
468         
469         var has_flexy = (typeof(tree['flexy:if']) != 'undefined') ||
470                     (typeof(tree['flexy:foreach']) != 'undefined');
471           
472     
473         
474         skip_children = false;
475         // render the element if it's not BODY.
476         if (!is_body) {
477             
478             // if parent was disabled, then do not try and create the children..
479             if(!this[cntr](true)){
480                 tree.items = [];
481                 return tree;
482             }
483            
484             cn = Roo.factory(tree);
485            
486             cn.parentType = this.xtype; //??
487             cn.parentId = this.id;
488             
489             var build_from_html =  Roo.XComponent.build_from_html;
490             
491             
492             // does the container contain child eleemnts with 'xtype' attributes.
493             // that match this xtype..
494             // note - when we render we create these as well..
495             // so we should check to see if body has xtype set.
496             if (build_from_html && Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body') {
497                
498                 var self_cntr_el = Roo.get(this[cntr](false));
499                 var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
500                 if (echild) { 
501                     //Roo.log(Roo.XComponent.build_from_html);
502                     //Roo.log("got echild:");
503                     //Roo.log(echild);
504                 }
505                 // there is a scenario where some of the child elements are flexy:if (and all of the same type)
506                 // and are not displayed -this causes this to use up the wrong element when matching.
507                 // at present the only work around for this is to nest flexy:if elements in another element that is always rendered.
508                 
509                 
510                 if (echild && echild.attr('xtype').split('.').pop() == cn.xtype) {
511                   //  Roo.log("found child for " + this.xtype +": " + echild.attr('xtype') );
512                   
513                   
514                   
515                     cn.el = echild;
516                   //  Roo.log("GOT");
517                     //echild.dom.removeAttribute('xtype');
518                 } else {
519                     Roo.debug && Roo.log("MISSING " + cn.xtype + " on child of " + (this.el ? this.el.attr('xbuilderid') : 'no parent'));
520                     Roo.debug && Roo.log(self_cntr_el);
521                     Roo.debug && Roo.log(echild);
522                     Roo.debug && Roo.log(cn);
523                 }
524             }
525            
526             
527            
528             // if object has flexy:if - then it may or may not be rendered.
529             if (build_from_html && has_flexy && !cn.el &&  cn.can_build_overlaid) {
530                 // skip a flexy if element.
531                 Roo.debug && Roo.log('skipping render');
532                 Roo.debug && Roo.log(tree);
533                 if (!cn.el) {
534                     Roo.debug && Roo.log('skipping all children');
535                     skip_children = true;
536                 }
537                 
538              } else {
539                  
540                 // actually if flexy:foreach is found, we really want to create 
541                 // multiple copies here...
542                 //Roo.log('render');
543                 //Roo.log(this[cntr]());
544                 // some elements do not have render methods.. like the layouts...
545                 /*
546                 if(this[cntr](true) === false){
547                     cn.items = [];
548                     return cn;
549                 }
550                 */
551                 cn.render && cn.render(this[cntr](true));
552                 
553              }
554             // then add the element..
555         }
556          
557         // handle the kids..
558         
559         var nitems = [];
560         /*
561         if (typeof (tree.menu) != 'undefined') {
562             tree.menu.parentType = cn.xtype;
563             tree.menu.triggerEl = cn.el;
564             nitems.push(cn.addxtype(Roo.apply({}, tree.menu)));
565             
566         }
567         */
568         if (!tree.items || !tree.items.length) {
569             cn.items = nitems;
570             //Roo.log(["no children", this]);
571             
572             return cn;
573         }
574          
575         var items = tree.items;
576         delete tree.items;
577         
578         //Roo.log(items.length);
579             // add the items..
580         if (!skip_children) {    
581             for(var i =0;i < items.length;i++) {
582               //  Roo.log(['add child', items[i]]);
583                 nitems.push(cn.addxtype(items[i].xns == false ? items[i] : Roo.apply({}, items[i])));
584             }
585         }
586         
587         cn.items = nitems;
588         
589         //Roo.log("fire childrenrendered");
590         
591         cn.fireEvent('childrenrendered', this);
592         
593         return cn;
594     },
595     
596     /**
597      * Set the element that will be used to show or hide
598      */
599     setVisibilityEl : function(el)
600     {
601         this.visibilityEl = el;
602     },
603     
604      /**
605      * Get the element that will be used to show or hide
606      */
607     getVisibilityEl : function()
608     {
609         if (typeof(this.visibilityEl) == 'object') {
610             return this.visibilityEl;
611         }
612         
613         if (typeof(this.visibilityEl) == 'string') {
614             return this.visibilityEl == 'parent' ? this.parent().getEl() : this.getEl();
615         }
616         
617         return this.getEl();
618     },
619     
620     /**
621      * Show a component - removes 'hidden' class
622      */
623     show : function()
624     {
625         if(!this.getVisibilityEl()){
626             return;
627         }
628          
629         this.getVisibilityEl().removeClass(['hidden','d-none']);
630         
631         this.fireEvent('show', this);
632         
633         
634     },
635     /**
636      * Hide a component - adds 'hidden' class
637      */
638     hide: function()
639     {
640         if(!this.getVisibilityEl()){
641             return;
642         }
643         
644         this.getVisibilityEl().addClass(['hidden','d-none']);
645         
646         this.fireEvent('hide', this);
647         
648     }
649 });
650
651  /*
652  * - LGPL
653  *
654  * element
655  * 
656  */
657
658 /**
659  * @class Roo.bootstrap.Element
660  * @extends Roo.bootstrap.Component
661  * @children Roo.bootstrap.Component
662  * Bootstrap Element class (basically a DIV used to make random stuff )
663  * 
664  * @cfg {String} html contents of the element
665  * @cfg {String} tag tag of the element
666  * @cfg {String} cls class of the element
667  * @cfg {Boolean} preventDefault (true|false) default false
668  * @cfg {Boolean} clickable (true|false) default false
669  * @cfg {String} role default blank - set to button to force cursor pointer
670  
671  * 
672  * @constructor
673  * Create a new Element
674  * @param {Object} config The config object
675  */
676
677 Roo.bootstrap.Element = function(config){
678     Roo.bootstrap.Element.superclass.constructor.call(this, config);
679     
680     this.addEvents({
681         // raw events
682         /**
683          * @event click
684          * When a element is chick
685          * @param {Roo.bootstrap.Element} this
686          * @param {Roo.EventObject} e
687          */
688         "click" : true 
689         
690       
691     });
692 };
693
694 Roo.extend(Roo.bootstrap.Element, Roo.bootstrap.Component,  {
695     
696     tag: 'div',
697     cls: '',
698     html: '',
699     preventDefault: false, 
700     clickable: false,
701     tapedTwice : false,
702     role : false,
703     
704     getAutoCreate : function(){
705         
706         var cfg = {
707             tag: this.tag,
708             // cls: this.cls, double assign in parent class Component.js :: onRender
709             html: this.html
710         };
711         if (this.role !== false) {
712             cfg.role = this.role;
713         }
714         
715         return cfg;
716     },
717     
718     initEvents: function() 
719     {
720         Roo.bootstrap.Element.superclass.initEvents.call(this);
721         
722         if(this.clickable){
723             this.el.on('click', this.onClick, this);
724         }
725         
726         
727     },
728     
729     onClick : function(e)
730     {
731         if(this.preventDefault){
732             e.preventDefault();
733         }
734         
735         this.fireEvent('click', this, e); // why was this double click before?
736     },
737     
738     
739     
740
741     
742     
743     getValue : function()
744     {
745         return this.el.dom.innerHTML;
746     },
747     
748     setValue : function(value)
749     {
750         this.el.dom.innerHTML = value;
751     }
752    
753 });
754
755  
756
757  /*
758  * - LGPL
759  *
760  * dropable area
761  * 
762  */
763
764 /**
765  * @class Roo.bootstrap.DropTarget
766  * @extends Roo.bootstrap.Element
767  * Bootstrap DropTarget class
768  
769  * @cfg {string} name dropable name
770  * 
771  * @constructor
772  * Create a new Dropable Area
773  * @param {Object} config The config object
774  */
775
776 Roo.bootstrap.DropTarget = function(config){
777     Roo.bootstrap.DropTarget.superclass.constructor.call(this, config);
778     
779     this.addEvents({
780         // raw events
781         /**
782          * @event click
783          * When a element is chick
784          * @param {Roo.bootstrap.Element} this
785          * @param {Roo.EventObject} e
786          */
787         "drop" : true
788     });
789 };
790
791 Roo.extend(Roo.bootstrap.DropTarget, Roo.bootstrap.Element,  {
792     
793     
794     getAutoCreate : function(){
795         
796          
797     },
798     
799     initEvents: function() 
800     {
801         Roo.bootstrap.DropTarget.superclass.initEvents.call(this);
802         this.dropZone = new Roo.dd.DropTarget(this.getEl(), {
803             ddGroup: this.name,
804             listeners : {
805                 drop : this.dragDrop.createDelegate(this),
806                 enter : this.dragEnter.createDelegate(this),
807                 out : this.dragOut.createDelegate(this),
808                 over : this.dragOver.createDelegate(this)
809             }
810             
811         });
812         this.dropZone.DDM.useCache = false // so data gets refreshed when we resize stuff
813     },
814     
815     dragDrop : function(source,e,data)
816     {
817         // user has to decide how to impliment this.
818         Roo.log('drop');
819         Roo.log(this);
820         //this.fireEvent('drop', this, source, e ,data);
821         return false;
822     },
823     
824     dragEnter : function(n, dd, e, data)
825     {
826         // probably want to resize the element to match the dropped element..
827         Roo.log("enter");
828         this.originalSize = this.el.getSize();
829         this.el.setSize( n.el.getSize());
830         this.dropZone.DDM.refreshCache(this.name);
831         Roo.log([n, dd, e, data]);
832     },
833     
834     dragOut : function(value)
835     {
836         // resize back to normal
837         Roo.log("out");
838         this.el.setSize(this.originalSize);
839         this.dropZone.resetConstraints();
840     },
841     
842     dragOver : function()
843     {
844         // ??? do nothing?
845     }
846    
847 });
848
849  
850
851  /*
852  * - LGPL
853  *
854  * Body
855  *
856  */
857
858 /**
859  * @class Roo.bootstrap.Body
860  * @extends Roo.bootstrap.Component
861  * @children Roo.bootstrap.Component 
862  * @parent none builder
863  * Bootstrap Body class
864  *
865  * @constructor
866  * Create a new body
867  * @param {Object} config The config object
868  */
869
870 Roo.bootstrap.Body = function(config){
871
872     config = config || {};
873
874     Roo.bootstrap.Body.superclass.constructor.call(this, config);
875     this.el = Roo.get(config.el ? config.el : document.body );
876     if (this.cls && this.cls.length) {
877         Roo.get(document.body).addClass(this.cls);
878     }
879 };
880
881 Roo.extend(Roo.bootstrap.Body, Roo.bootstrap.Component,  {
882
883     is_body : true,// just to make sure it's constructed?
884
885         autoCreate : {
886         cls: 'container'
887     },
888     onRender : function(ct, position)
889     {
890        /* Roo.log("Roo.bootstrap.Body - onRender");
891         if (this.cls && this.cls.length) {
892             Roo.get(document.body).addClass(this.cls);
893         }
894         // style??? xttr???
895         */
896     }
897
898
899
900
901 });
902 /*
903  * - LGPL
904  *
905  * button group
906  * 
907  */
908
909
910 /**
911  * @class Roo.bootstrap.ButtonGroup
912  * @extends Roo.bootstrap.Component
913  * Bootstrap ButtonGroup class
914  * @children Roo.bootstrap.Button Roo.bootstrap.form.Form
915  * 
916  * @cfg {String} size lg | sm | xs (default empty normal)
917  * @cfg {String} align vertical | justified  (default none)
918  * @cfg {String} direction up | down (default down)
919  * @cfg {Boolean} toolbar false | true
920  * @cfg {Boolean} btn true | false
921  * 
922  * 
923  * @constructor
924  * Create a new Input
925  * @param {Object} config The config object
926  */
927
928 Roo.bootstrap.ButtonGroup = function(config){
929     Roo.bootstrap.ButtonGroup.superclass.constructor.call(this, config);
930 };
931
932 Roo.extend(Roo.bootstrap.ButtonGroup, Roo.bootstrap.Component,  {
933     
934     size: '',
935     align: '',
936     direction: '',
937     toolbar: false,
938     btn: true,
939
940     getAutoCreate : function(){
941         var cfg = {
942             cls: 'btn-group',
943             html : null
944         };
945         
946         cfg.html = this.html || cfg.html;
947         
948         if (this.toolbar) {
949             cfg = {
950                 cls: 'btn-toolbar',
951                 html: null
952             };
953             
954             return cfg;
955         }
956         
957         if (['vertical','justified'].indexOf(this.align)!==-1) {
958             cfg.cls = 'btn-group-' + this.align;
959             
960             if (this.align == 'justified') {
961                 console.log(this.items);
962             }
963         }
964         
965         if (['lg','sm','xs'].indexOf(this.size)!==-1) {
966             cfg.cls += ' btn-group-' + this.size;
967         }
968         
969         if (this.direction == 'up') {
970             cfg.cls += ' dropup' ;
971         }
972         
973         return cfg;
974     },
975     /**
976      * Add a button to the group (similar to NavItem API.)
977      */
978     addItem : function(cfg)
979     {
980         var cn = new Roo.bootstrap.Button(cfg);
981         //this.register(cn);
982         cn.parentId = this.id;
983         cn.onRender(this.el, null);
984         return cn;
985     }
986    
987 });
988
989  /*
990  * - LGPL
991  *
992  * button
993  * 
994  */
995
996 /**
997  * @class Roo.bootstrap.Button
998  * @extends Roo.bootstrap.Component
999  * Bootstrap Button class
1000  * @cfg {String} html The button content
1001  * @cfg {String} weight (default|primary|secondary|success|info|warning|danger|link|light|dark) default
1002  * @cfg {String} badge_weight (default|primary|secondary|success|info|warning|danger|link|light|dark) default (same as button)
1003  * @cfg {Boolean} outline default false (except for weight=default which emulates old behaveiour with an outline)
1004  * @cfg {String} size (lg|sm|xs)
1005  * @cfg {String} tag (a|input|submit)
1006  * @cfg {String} href empty or href
1007  * @cfg {Boolean} disabled default false;
1008  * @cfg {Boolean} isClose default false;
1009  * @cfg {String} glyphicon depricated - use fa
1010  * @cfg {String} fa fontawesome icon - eg. 'comment' - without the fa/fas etc..
1011  * @cfg {String} badge text for badge
1012  * @cfg {String} theme (default|glow)  
1013  * @cfg {Boolean} inverse dark themed version
1014  * @cfg {Boolean} toggle is it a slidy toggle button
1015  * @cfg {Boolean} pressed   default null - if the button ahs active state
1016  * @cfg {String} ontext text for on slidy toggle state
1017  * @cfg {String} offtext text for off slidy toggle state
1018  * @cfg {Boolean} preventDefault  default true (stop click event triggering the URL if it's a link.)
1019  * @cfg {Boolean} removeClass remove the standard class..
1020  * @cfg {String} target (_self|_blank|_parent|_top|other) target for a href. 
1021  * @cfg {Boolean} grpup if parent is a btn group - then it turns it into a toogleGroup.
1022  * @cfg {Roo.bootstrap.menu.Menu} menu a Menu 
1023
1024  * @constructor
1025  * Create a new button
1026  * @param {Object} config The config object
1027  */
1028
1029
1030 Roo.bootstrap.Button = function(config){
1031     Roo.bootstrap.Button.superclass.constructor.call(this, config);
1032     
1033     this.addEvents({
1034         // raw events
1035         /**
1036          * @event click
1037          * When a button is pressed
1038          * @param {Roo.bootstrap.Button} btn
1039          * @param {Roo.EventObject} e
1040          */
1041         "click" : true,
1042         /**
1043          * @event dblclick
1044          * When a button is double clicked
1045          * @param {Roo.bootstrap.Button} btn
1046          * @param {Roo.EventObject} e
1047          */
1048         "dblclick" : true,
1049          /**
1050          * @event toggle
1051          * After the button has been toggles
1052          * @param {Roo.bootstrap.Button} btn
1053          * @param {Roo.EventObject} e
1054          * @param {boolean} pressed (also available as button.pressed)
1055          */
1056         "toggle" : true
1057     });
1058 };
1059
1060 Roo.extend(Roo.bootstrap.Button, Roo.bootstrap.Component,  {
1061     html: false,
1062     active: false,
1063     weight: '',
1064     badge_weight: '',
1065     outline : false,
1066     size: '',
1067     tag: 'button',
1068     href: '',
1069     disabled: false,
1070     isClose: false,
1071     glyphicon: '',
1072     fa: '',
1073     badge: '',
1074     theme: 'default',
1075     inverse: false,
1076     
1077     toggle: false,
1078     ontext: 'ON',
1079     offtext: 'OFF',
1080     defaulton: true,
1081     preventDefault: true,
1082     removeClass: false,
1083     name: false,
1084     target: false,
1085     group : false,
1086      
1087     pressed : null,
1088      
1089     
1090     getAutoCreate : function(){
1091         
1092         var cfg = {
1093             tag : 'button',
1094             cls : 'roo-button',
1095             html: ''
1096         };
1097         
1098         if (['a', 'button', 'input', 'submit'].indexOf(this.tag) < 0) {
1099             throw "Invalid value for tag: " + this.tag + ". must be a, button, input or submit.";
1100             this.tag = 'button';
1101         } else {
1102             cfg.tag = this.tag;
1103         }
1104         cfg.html = '<span class="roo-button-text">' + (this.html || cfg.html) + '</span>';
1105         
1106         if (this.toggle == true) {
1107             cfg={
1108                 tag: 'div',
1109                 cls: 'slider-frame roo-button',
1110                 cn: [
1111                     {
1112                         tag: 'span',
1113                         'data-on-text':'ON',
1114                         'data-off-text':'OFF',
1115                         cls: 'slider-button',
1116                         html: this.offtext
1117                     }
1118                 ]
1119             };
1120             // why are we validating the weights?
1121             if (Roo.bootstrap.Button.weights.indexOf(this.weight) > -1) {
1122                 cfg.cls +=  ' ' + this.weight;
1123             }
1124             
1125             return cfg;
1126         }
1127         
1128         if (this.isClose) {
1129             cfg.cls += ' close';
1130             
1131             cfg["aria-hidden"] = true;
1132             
1133             cfg.html = "&times;";
1134             
1135             return cfg;
1136         }
1137              
1138         
1139         if (this.theme==='default') {
1140             cfg.cls = 'btn roo-button';
1141             
1142             //if (this.parentType != 'Navbar') {
1143             this.weight = this.weight.length ?  this.weight : 'default';
1144             //}
1145             if (Roo.bootstrap.Button.weights.indexOf(this.weight) > -1) {
1146                 
1147                 var outline = this.outline || this.weight == 'default' ? 'outline-' : '';
1148                 var weight = this.weight == 'default' ? 'secondary' : this.weight;
1149                 cfg.cls += ' btn-' + outline + weight;
1150                 if (this.weight == 'default') {
1151                     // BC
1152                     cfg.cls += ' btn-' + this.weight;
1153                 }
1154             }
1155         } else if (this.theme==='glow') {
1156             
1157             cfg.tag = 'a';
1158             cfg.cls = 'btn-glow roo-button';
1159             
1160             if (Roo.bootstrap.Button.weights.indexOf(this.weight) > -1) {
1161                 
1162                 cfg.cls += ' ' + this.weight;
1163             }
1164         }
1165    
1166         
1167         if (this.inverse) {
1168             this.cls += ' inverse';
1169         }
1170         
1171         
1172         if (this.active || this.pressed === true) {
1173             cfg.cls += ' active';
1174         }
1175         
1176         if (this.disabled) {
1177             cfg.disabled = 'disabled';
1178         }
1179         
1180         if (this.items) {
1181             Roo.log('changing to ul' );
1182             cfg.tag = 'ul';
1183             this.glyphicon = 'caret';
1184             if (Roo.bootstrap.version == 4) {
1185                 this.fa = 'caret-down';
1186             }
1187             
1188         }
1189         
1190         cfg.cls += this.size.length ? (' btn-' + this.size) : '';
1191          
1192         //gsRoo.log(this.parentType);
1193         if (this.parentType === 'Navbar' && !this.parent().bar) {
1194             Roo.log('changing to li?');
1195             
1196             cfg.tag = 'li';
1197             
1198             cfg.cls = '';
1199             cfg.cn =  [{
1200                 tag : 'a',
1201                 cls : 'roo-button',
1202                 html : this.html,
1203                 href : this.href || '#'
1204             }];
1205             if (this.menu) {
1206                 cfg.cn[0].html = this.html  + ' <span class="caret"></span>';
1207                 cfg.cls += ' dropdown';
1208             }   
1209             
1210             delete cfg.html;
1211             
1212         }
1213         
1214        cfg.cls += this.parentType === 'Navbar' ?  ' navbar-btn' : '';
1215         
1216         if (this.glyphicon) {
1217             cfg.html = ' ' + cfg.html;
1218             
1219             cfg.cn = [
1220                 {
1221                     tag: 'span',
1222                     cls: 'glyphicon glyphicon-' + this.glyphicon
1223                 }
1224             ];
1225         }
1226         if (this.fa) {
1227             cfg.html = ' ' + cfg.html;
1228             
1229             cfg.cn = [
1230                 {
1231                     tag: 'i',
1232                     cls: 'fa fas fa-' + this.fa
1233                 }
1234             ];
1235         }
1236         
1237         if (this.badge) {
1238             cfg.html += ' ';
1239             
1240             cfg.tag = 'a';
1241             
1242 //            cfg.cls='btn roo-button';
1243             
1244             cfg.href=this.href;
1245             
1246             var value = cfg.html;
1247             
1248             if(this.glyphicon){
1249                 value = {
1250                     tag: 'span',
1251                     cls: 'glyphicon glyphicon-' + this.glyphicon,
1252                     html: this.html
1253                 };
1254             }
1255             if(this.fa){
1256                 value = {
1257                     tag: 'i',
1258                     cls: 'fa fas fa-' + this.fa,
1259                     html: this.html
1260                 };
1261             }
1262             
1263             var bw = this.badge_weight.length ? this.badge_weight :
1264                 (this.weight.length ? this.weight : 'secondary');
1265             bw = bw == 'default' ? 'secondary' : bw;
1266             
1267             cfg.cn = [
1268                 value,
1269                 {
1270                     tag: 'span',
1271                     cls: 'badge badge-' + bw,
1272                     html: this.badge
1273                 }
1274             ];
1275             
1276             cfg.html='';
1277         }
1278         
1279         if (this.menu) {
1280             cfg.cls += ' dropdown';
1281             cfg.html = typeof(cfg.html) != 'undefined' ?
1282                     cfg.html + ' <span class="caret"></span>' : '<span class="caret"></span>';
1283         }
1284         
1285         if (cfg.tag !== 'a' && this.href !== '') {
1286             throw "Tag must be a to set href.";
1287         } else if (this.href.length > 0) {
1288             cfg.href = this.href;
1289         }
1290         
1291         if(this.removeClass){
1292             cfg.cls = '';
1293         }
1294         
1295         if(this.target){
1296             cfg.target = this.target;
1297         }
1298         
1299         return cfg;
1300     },
1301     initEvents: function() {
1302        // Roo.log('init events?');
1303 //        Roo.log(this.el.dom);
1304         // add the menu...
1305         
1306         if (typeof (this.menu) != 'undefined') {
1307             this.menu.parentType = this.xtype;
1308             this.menu.triggerEl = this.el;
1309             this.addxtype(Roo.apply({}, this.menu));
1310         }
1311
1312
1313         if (this.el.hasClass('roo-button')) {
1314              this.el.on('click', this.onClick, this);
1315              this.el.on('dblclick', this.onDblClick, this);
1316         } else {
1317              this.el.select('.roo-button').on('click', this.onClick, this);
1318              this.el.select('.roo-button').on('dblclick', this.onDblClick, this);
1319              
1320         }
1321         // why?
1322         if(this.removeClass){
1323             this.el.on('click', this.onClick, this);
1324         }
1325         
1326         if (this.group === true) {
1327              if (this.pressed === false || this.pressed === true) {
1328                 // nothing
1329             } else {
1330                 this.pressed = false;
1331                 this.setActive(this.pressed);
1332             }
1333             
1334         }
1335         
1336         this.el.enableDisplayMode();
1337         
1338     },
1339     onClick : function(e)
1340     {
1341         if (this.disabled) {
1342             return;
1343         }
1344         
1345         Roo.log('button on click ');
1346         if(this.href === '' || this.preventDefault){
1347             e.preventDefault();
1348         }
1349         
1350         if (this.group) {
1351             if (this.pressed) {
1352                 // do nothing -
1353                 return;
1354             }
1355             this.setActive(true);
1356             var pi = this.parent().items;
1357             for (var i = 0;i < pi.length;i++) {
1358                 if (this == pi[i]) {
1359                     continue;
1360                 }
1361                 if (pi[i].el.hasClass('roo-button')) {
1362                     pi[i].setActive(false);
1363                 }
1364             }
1365             this.fireEvent('click', this, e);            
1366             return;
1367         }
1368         
1369         if (this.pressed === true || this.pressed === false) {
1370             this.toggleActive(e);
1371         }
1372         
1373         
1374         this.fireEvent('click', this, e);
1375     },
1376     onDblClick: function(e)
1377     {
1378         if (this.disabled) {
1379             return;
1380         }
1381         if(this.preventDefault){
1382             e.preventDefault();
1383         }
1384         this.fireEvent('dblclick', this, e);
1385     },
1386     /**
1387      * Enables this button
1388      */
1389     enable : function()
1390     {
1391         this.disabled = false;
1392         this.el.removeClass('disabled');
1393         this.el.dom.removeAttribute("disabled");
1394     },
1395     
1396     /**
1397      * Disable this button
1398      */
1399     disable : function()
1400     {
1401         this.disabled = true;
1402         this.el.addClass('disabled');
1403         this.el.attr("disabled", "disabled")
1404     },
1405      /**
1406      * sets the active state on/off, 
1407      * @param {Boolean} state (optional) Force a particular state
1408      */
1409     setActive : function(v) {
1410         
1411         this.el[v ? 'addClass' : 'removeClass']('active');
1412         this.pressed = v;
1413     },
1414      /**
1415      * toggles the current active state 
1416      */
1417     toggleActive : function(e)
1418     {
1419         this.setActive(!this.pressed); // this modifies pressed...
1420         this.fireEvent('toggle', this, e, this.pressed);
1421     },
1422      /**
1423      * get the current active state
1424      * @return {boolean} true if it's active
1425      */
1426     isActive : function()
1427     {
1428         return this.el.hasClass('active');
1429     },
1430     /**
1431      * set the text of the first selected button
1432      */
1433     setText : function(str)
1434     {
1435         this.el.select('.roo-button-text',true).first().dom.innerHTML = str;
1436     },
1437     /**
1438      * get the text of the first selected button
1439      */
1440     getText : function()
1441     {
1442         return this.el.select('.roo-button-text',true).first().dom.innerHTML;
1443     },
1444     
1445     setWeight : function(str)
1446     {
1447         this.el.removeClass(Roo.bootstrap.Button.weights.map(function(w) { return 'btn-' + w; } ) );
1448         this.el.removeClass(Roo.bootstrap.Button.weights.map(function(w) { return 'btn-outline-' + w; } ) );
1449         this.weight = str;
1450         var outline = this.outline ? 'outline-' : '';
1451         if (str == 'default') {
1452             this.el.addClass('btn-default btn-outline-secondary');        
1453             return;
1454         }
1455         this.el.addClass('btn-' + outline + str);        
1456     }
1457     
1458     
1459 });
1460 // fixme - this is probably generic bootstrap - should go in some kind of enum file.. - like sizes.
1461
1462 Roo.bootstrap.Button.weights = [
1463     'default',
1464     'secondary' ,
1465     'primary',
1466     'success',
1467     'info',
1468     'warning',
1469     'danger',
1470     'link',
1471     'light',
1472     'dark'              
1473    
1474 ];/*
1475  * - LGPL
1476  *
1477  * column
1478  * 
1479  */
1480
1481 /**
1482  * @class Roo.bootstrap.Column
1483  * @extends Roo.bootstrap.Component
1484  * @children Roo.bootstrap.Component
1485  * Bootstrap Column class
1486  * @cfg {Number} xs colspan out of 12 for mobile-sized screens or 0 for hidden
1487  * @cfg {Number} sm colspan out of 12 for tablet-sized screens or 0 for hidden
1488  * @cfg {Number} md colspan out of 12 for computer-sized screens or 0 for hidden
1489  * @cfg {Number} lg colspan out of 12 for large computer-sized screens or 0 for hidden
1490  * @cfg {Number} xsoff colspan offset out of 12 for mobile-sized screens or 0 for hidden
1491  * @cfg {Number} smoff colspan offset out of 12 for tablet-sized screens or 0 for hidden
1492  * @cfg {Number} mdoff colspan offset out of 12 for computer-sized screens or 0 for hidden
1493  * @cfg {Number} lgoff colspan offset out of 12 for large computer-sized screens or 0 for hidden
1494  *
1495  * 
1496  * @cfg {Boolean} hidden (true|false) hide the element
1497  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1498  * @cfg {String} fa (ban|check|...) font awesome icon
1499  * @cfg {Number} fasize (1|2|....) font awsome size
1500
1501  * @cfg {String} icon (info-sign|check|...) glyphicon name
1502
1503  * @cfg {String} html content of column.
1504  * 
1505  * @constructor
1506  * Create a new Column
1507  * @param {Object} config The config object
1508  */
1509
1510 Roo.bootstrap.Column = function(config){
1511     Roo.bootstrap.Column.superclass.constructor.call(this, config);
1512 };
1513
1514 Roo.extend(Roo.bootstrap.Column, Roo.bootstrap.Component,  {
1515     
1516     xs: false,
1517     sm: false,
1518     md: false,
1519     lg: false,
1520     xsoff: false,
1521     smoff: false,
1522     mdoff: false,
1523     lgoff: false,
1524     html: '',
1525     offset: 0,
1526     alert: false,
1527     fa: false,
1528     icon : false,
1529     hidden : false,
1530     fasize : 1,
1531     
1532     getAutoCreate : function(){
1533         var cfg = Roo.apply({}, Roo.bootstrap.Column.superclass.getAutoCreate.call(this));
1534         
1535         cfg = {
1536             tag: 'div',
1537             cls: 'column'
1538         };
1539         
1540         var settings=this;
1541         var sizes =   ['xs','sm','md','lg'];
1542         sizes.map(function(size ,ix){
1543             //Roo.log( size + ':' + settings[size]);
1544             
1545             if (settings[size+'off'] !== false) {
1546                 cfg.cls += ' col-' + size + '-offset-' + settings[size+'off'] ;
1547             }
1548             
1549             if (settings[size] === false) {
1550                 return;
1551             }
1552             
1553             if (!settings[size]) { // 0 = hidden
1554                 cfg.cls += ' hidden-' + size + ' hidden-' + size + '-down';
1555                 // bootsrap4
1556                 for (var i = ix; i > -1; i--) {
1557                     cfg.cls +=  ' d-' + sizes[i] + '-none'; 
1558                 }
1559                 
1560                 
1561                 return;
1562             }
1563             cfg.cls += ' col-' + size + '-' + settings[size] + (
1564                 size == 'xs' ? (' col-' + settings[size] ) : '' // bs4 col-{num} replaces col-xs
1565             );
1566             
1567         });
1568         
1569         if (this.hidden) {
1570             cfg.cls += ' hidden';
1571         }
1572         
1573         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1574             cfg.cls +=' alert alert-' + this.alert;
1575         }
1576         
1577         
1578         if (this.html.length) {
1579             cfg.html = this.html;
1580         }
1581         if (this.fa) {
1582             var fasize = '';
1583             if (this.fasize > 1) {
1584                 fasize = ' fa-' + this.fasize + 'x';
1585             }
1586             cfg.html = '<i class="fa fa-'+this.fa + fasize + '"></i>' + (cfg.html || '');
1587             
1588             
1589         }
1590         if (this.icon) {
1591             cfg.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' +  (cfg.html || '');
1592         }
1593         
1594         return cfg;
1595     }
1596    
1597 });
1598
1599  
1600
1601  /*
1602  * - LGPL
1603  *
1604  * page container.
1605  * 
1606  */
1607
1608
1609 /**
1610  * @class Roo.bootstrap.Container
1611  * @extends Roo.bootstrap.Component
1612  * @children Roo.bootstrap.Component
1613  * @parent builder
1614  * Bootstrap Container class
1615  * @cfg {Boolean} jumbotron is it a jumbotron element
1616  * @cfg {String} html content of element
1617  * @cfg {String} well (lg|sm|md) a well, large, small or medium.
1618  * @cfg {String} panel (default|primary|success|info|warning|danger) render as panel  - type - primary/success.....
1619  * @cfg {String} header content of header (for panel)
1620  * @cfg {String} footer content of footer (for panel)
1621  * @cfg {String} sticky (footer|wrap|push) block to use as footer or body- needs css-bootstrap/sticky-footer.css
1622  * @cfg {String} tag (header|aside|section) type of HTML tag.
1623  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1624  * @cfg {String} fa font awesome icon
1625  * @cfg {String} icon (info-sign|check|...) glyphicon name
1626  * @cfg {Boolean} hidden (true|false) hide the element
1627  * @cfg {Boolean} expandable (true|false) default false
1628  * @cfg {Boolean} expanded (true|false) default true
1629  * @cfg {String} rheader contet on the right of header
1630  * @cfg {Boolean} clickable (true|false) default false
1631
1632  *     
1633  * @constructor
1634  * Create a new Container
1635  * @param {Object} config The config object
1636  */
1637
1638 Roo.bootstrap.Container = function(config){
1639     Roo.bootstrap.Container.superclass.constructor.call(this, config);
1640     
1641     this.addEvents({
1642         // raw events
1643          /**
1644          * @event expand
1645          * After the panel has been expand
1646          * 
1647          * @param {Roo.bootstrap.Container} this
1648          */
1649         "expand" : true,
1650         /**
1651          * @event collapse
1652          * After the panel has been collapsed
1653          * 
1654          * @param {Roo.bootstrap.Container} this
1655          */
1656         "collapse" : true,
1657         /**
1658          * @event click
1659          * When a element is chick
1660          * @param {Roo.bootstrap.Container} this
1661          * @param {Roo.EventObject} e
1662          */
1663         "click" : true
1664     });
1665 };
1666
1667 Roo.extend(Roo.bootstrap.Container, Roo.bootstrap.Component,  {
1668     
1669     jumbotron : false,
1670     well: '',
1671     panel : '',
1672     header: '',
1673     footer : '',
1674     sticky: '',
1675     tag : false,
1676     alert : false,
1677     fa: false,
1678     icon : false,
1679     expandable : false,
1680     rheader : '',
1681     expanded : true,
1682     clickable: false,
1683   
1684      
1685     getChildContainer : function() {
1686         
1687         if(!this.el){
1688             return false;
1689         }
1690         
1691         if (this.panel.length) {
1692             return this.el.select('.panel-body',true).first();
1693         }
1694         
1695         return this.el;
1696     },
1697     
1698     
1699     getAutoCreate : function(){
1700         
1701         var cfg = {
1702             tag : this.tag || 'div',
1703             html : '',
1704             cls : ''
1705         };
1706         if (this.jumbotron) {
1707             cfg.cls = 'jumbotron';
1708         }
1709         
1710         
1711         
1712         // - this is applied by the parent..
1713         //if (this.cls) {
1714         //    cfg.cls = this.cls + '';
1715         //}
1716         
1717         if (this.sticky.length) {
1718             
1719             var bd = Roo.get(document.body);
1720             if (!bd.hasClass('bootstrap-sticky')) {
1721                 bd.addClass('bootstrap-sticky');
1722                 Roo.select('html',true).setStyle('height', '100%');
1723             }
1724              
1725             cfg.cls += 'bootstrap-sticky-' + this.sticky;
1726         }
1727         
1728         
1729         if (this.well.length) {
1730             switch (this.well) {
1731                 case 'lg':
1732                 case 'sm':
1733                     cfg.cls +=' well well-' +this.well;
1734                     break;
1735                 default:
1736                     cfg.cls +=' well';
1737                     break;
1738             }
1739         }
1740         
1741         if (this.hidden) {
1742             cfg.cls += ' hidden';
1743         }
1744         
1745         
1746         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1747             cfg.cls +=' alert alert-' + this.alert;
1748         }
1749         
1750         var body = cfg;
1751         
1752         if (this.panel.length) {
1753             cfg.cls += ' panel panel-' + this.panel;
1754             cfg.cn = [];
1755             if (this.header.length) {
1756                 
1757                 var h = [];
1758                 
1759                 if(this.expandable){
1760                     
1761                     cfg.cls = cfg.cls + ' expandable';
1762                     
1763                     h.push({
1764                         tag: 'i',
1765                         cls: (this.expanded ? 'fa fa-minus' : 'fa fa-plus') 
1766                     });
1767                     
1768                 }
1769                 
1770                 h.push(
1771                     {
1772                         tag: 'span',
1773                         cls : 'panel-title',
1774                         html : (this.expandable ? '&nbsp;' : '') + this.header
1775                     },
1776                     {
1777                         tag: 'span',
1778                         cls: 'panel-header-right',
1779                         html: this.rheader
1780                     }
1781                 );
1782                 
1783                 cfg.cn.push({
1784                     cls : 'panel-heading',
1785                     style : this.expandable ? 'cursor: pointer' : '',
1786                     cn : h
1787                 });
1788                 
1789             }
1790             
1791             body = false;
1792             cfg.cn.push({
1793                 cls : 'panel-body' + (this.expanded ? '' : ' hide'),
1794                 html : this.html
1795             });
1796             
1797             
1798             if (this.footer.length) {
1799                 cfg.cn.push({
1800                     cls : 'panel-footer',
1801                     html : this.footer
1802                     
1803                 });
1804             }
1805             
1806         }
1807         
1808         if (body) {
1809             body.html = this.html || cfg.html;
1810             // prefix with the icons..
1811             if (this.fa) {
1812                 body.html = '<i class="fa fa-'+this.fa + '"></i>' + body.html ;
1813             }
1814             if (this.icon) {
1815                 body.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' + body.html ;
1816             }
1817             
1818             
1819         }
1820         if ((!this.cls || !this.cls.length) && (!cfg.cls || !cfg.cls.length)) {
1821             cfg.cls =  'container';
1822         }
1823         
1824         return cfg;
1825     },
1826     
1827     initEvents: function() 
1828     {
1829         if(this.expandable){
1830             var headerEl = this.headerEl();
1831         
1832             if(headerEl){
1833                 headerEl.on('click', this.onToggleClick, this);
1834             }
1835         }
1836         
1837         if(this.clickable){
1838             this.el.on('click', this.onClick, this);
1839         }
1840         
1841     },
1842     
1843     onToggleClick : function()
1844     {
1845         var headerEl = this.headerEl();
1846         
1847         if(!headerEl){
1848             return;
1849         }
1850         
1851         if(this.expanded){
1852             this.collapse();
1853             return;
1854         }
1855         
1856         this.expand();
1857     },
1858     
1859     expand : function()
1860     {
1861         if(this.fireEvent('expand', this)) {
1862             
1863             this.expanded = true;
1864             
1865             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).show();
1866             
1867             this.el.select('.panel-body',true).first().removeClass('hide');
1868             
1869             var toggleEl = this.toggleEl();
1870
1871             if(!toggleEl){
1872                 return;
1873             }
1874
1875             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-minus']);
1876         }
1877         
1878     },
1879     
1880     collapse : function()
1881     {
1882         if(this.fireEvent('collapse', this)) {
1883             
1884             this.expanded = false;
1885             
1886             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).hide();
1887             this.el.select('.panel-body',true).first().addClass('hide');
1888         
1889             var toggleEl = this.toggleEl();
1890
1891             if(!toggleEl){
1892                 return;
1893             }
1894
1895             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-plus']);
1896         }
1897     },
1898     
1899     toggleEl : function()
1900     {
1901         if(!this.el || !this.panel.length || !this.header.length || !this.expandable){
1902             return;
1903         }
1904         
1905         return this.el.select('.panel-heading .fa',true).first();
1906     },
1907     
1908     headerEl : function()
1909     {
1910         if(!this.el || !this.panel.length || !this.header.length){
1911             return;
1912         }
1913         
1914         return this.el.select('.panel-heading',true).first()
1915     },
1916     
1917     bodyEl : function()
1918     {
1919         if(!this.el || !this.panel.length){
1920             return;
1921         }
1922         
1923         return this.el.select('.panel-body',true).first()
1924     },
1925     
1926     titleEl : function()
1927     {
1928         if(!this.el || !this.panel.length || !this.header.length){
1929             return;
1930         }
1931         
1932         return this.el.select('.panel-title',true).first();
1933     },
1934     
1935     setTitle : function(v)
1936     {
1937         var titleEl = this.titleEl();
1938         
1939         if(!titleEl){
1940             return;
1941         }
1942         
1943         titleEl.dom.innerHTML = v;
1944     },
1945     
1946     getTitle : function()
1947     {
1948         
1949         var titleEl = this.titleEl();
1950         
1951         if(!titleEl){
1952             return '';
1953         }
1954         
1955         return titleEl.dom.innerHTML;
1956     },
1957     
1958     setRightTitle : function(v)
1959     {
1960         var t = this.el.select('.panel-header-right',true).first();
1961         
1962         if(!t){
1963             return;
1964         }
1965         
1966         t.dom.innerHTML = v;
1967     },
1968     
1969     onClick : function(e)
1970     {
1971         e.preventDefault();
1972         
1973         this.fireEvent('click', this, e);
1974     }
1975 });
1976
1977  /**
1978  * @class Roo.bootstrap.Card
1979  * @extends Roo.bootstrap.Component
1980  * @children Roo.bootstrap.Component
1981  * @licence LGPL
1982  * Bootstrap Card class - note this has children as CardHeader/ImageTop/Footer.. - which should really be listed properties?
1983  *
1984  *
1985  * possible... may not be implemented..
1986  * @cfg {String} header_image  src url of image.
1987  * @cfg {String|Object} header
1988  * @cfg {Number} header_size (0|1|2|3|4|5) H1 or H2 etc.. 0 indicates default
1989  * @cfg {Number} header_weight  (primary|secondary|success|info|warning|danger|light|dark)
1990  * 
1991  * @cfg {String} title
1992  * @cfg {String} subtitle
1993  * @cfg {String|Boolean} html -- html contents - or just use children.. use false to hide it..
1994  * @cfg {String} footer
1995  
1996  * @cfg {String} weight (primary|warning|info|danger|secondary|success|light|dark)
1997  * 
1998  * @cfg {String} margin (0|1|2|3|4|5|auto)
1999  * @cfg {String} margin_top (0|1|2|3|4|5|auto)
2000  * @cfg {String} margin_bottom (0|1|2|3|4|5|auto)
2001  * @cfg {String} margin_left (0|1|2|3|4|5|auto)
2002  * @cfg {String} margin_right (0|1|2|3|4|5|auto)
2003  * @cfg {String} margin_x (0|1|2|3|4|5|auto)
2004  * @cfg {String} margin_y (0|1|2|3|4|5|auto)
2005  *
2006  * @cfg {String} padding (0|1|2|3|4|5)
2007  * @cfg {String} padding_top (0|1|2|3|4|5)next_to_card
2008  * @cfg {String} padding_bottom (0|1|2|3|4|5)
2009  * @cfg {String} padding_left (0|1|2|3|4|5)
2010  * @cfg {String} padding_right (0|1|2|3|4|5)
2011  * @cfg {String} padding_x (0|1|2|3|4|5)
2012  * @cfg {String} padding_y (0|1|2|3|4|5)
2013  *
2014  * @cfg {String} display (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2015  * @cfg {String} display_xs (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2016  * @cfg {String} display_sm (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2017  * @cfg {String} display_lg (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2018  * @cfg {String} display_xl (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2019  
2020  * @config {Boolean} dragable  if this card can be dragged.
2021  * @config {String} drag_group  group for drag
2022  * @config {Boolean} dropable  if this card can recieve other cards being dropped onto it..
2023  * @config {String} drop_group  group for drag
2024  * 
2025  * @config {Boolean} collapsable can the body be collapsed.
2026  * @config {Boolean} collapsed is the body collapsed when rendered...
2027  * @config {Boolean} rotateable can the body be rotated by clicking on it..
2028  * @config {Boolean} rotated is the body rotated when rendered...
2029  * 
2030  * @constructor
2031  * Create a new Container
2032  * @param {Object} config The config object
2033  */
2034
2035 Roo.bootstrap.Card = function(config){
2036     Roo.bootstrap.Card.superclass.constructor.call(this, config);
2037     
2038     this.addEvents({
2039          // raw events
2040         /**
2041          * @event drop
2042          * When a element a card is dropped
2043          * @param {Roo.bootstrap.Card} this
2044          *
2045          * 
2046          * @param {Roo.bootstrap.Card} move_card the card being dropped?
2047          * @param {String} position 'above' or 'below'
2048          * @param {Roo.bootstrap.Card} next_to_card What card position is relative to of 'false' for empty list.
2049         
2050          */
2051         'drop' : true,
2052          /**
2053          * @event rotate
2054          * When a element a card is rotate
2055          * @param {Roo.bootstrap.Card} this
2056          * @param {Roo.Element} n the node being dropped?
2057          * @param {Boolean} rotate status
2058          */
2059         'rotate' : true,
2060         /**
2061          * @event cardover
2062          * When a card element is dragged over ready to drop (return false to block dropable)
2063          * @param {Roo.bootstrap.Card} this
2064          * @param {Object} data from dragdrop 
2065          */
2066          'cardover' : true
2067          
2068     });
2069 };
2070
2071
2072 Roo.extend(Roo.bootstrap.Card, Roo.bootstrap.Component,  {
2073     
2074     
2075     weight : '',
2076     
2077     margin: '', /// may be better in component?
2078     margin_top: '', 
2079     margin_bottom: '', 
2080     margin_left: '',
2081     margin_right: '',
2082     margin_x: '',
2083     margin_y: '',
2084     
2085     padding : '',
2086     padding_top: '', 
2087     padding_bottom: '', 
2088     padding_left: '',
2089     padding_right: '',
2090     padding_x: '',
2091     padding_y: '',
2092     
2093     display: '', 
2094     display_xs: '', 
2095     display_sm: '', 
2096     display_lg: '',
2097     display_xl: '',
2098  
2099     header_image  : '',
2100     header : '',
2101     header_size : 0,
2102     title : '',
2103     subtitle : '',
2104     html : '',
2105     footer: '',
2106
2107     collapsable : false,
2108     collapsed : false,
2109     rotateable : false,
2110     rotated : false,
2111     
2112     dragable : false,
2113     drag_group : false,
2114     dropable : false,
2115     drop_group : false,
2116     childContainer : false,
2117     dropEl : false, /// the dom placeholde element that indicates drop location.
2118     containerEl: false, // body container
2119     bodyEl: false, // card-body
2120     headerContainerEl : false, //
2121     headerEl : false,
2122     header_imageEl : false,
2123     
2124     
2125     layoutCls : function()
2126     {
2127         var cls = '';
2128         var t = this;
2129         Roo.log(this.margin_bottom.length);
2130         ['', 'top', 'bottom', 'left', 'right', 'x', 'y' ].forEach(function(v) {
2131             // in theory these can do margin_top : ml-xs-3 ??? but we don't support that yet
2132             
2133             if (('' + t['margin' + (v.length ? '_' : '') + v]).length) {
2134                 cls += ' m' +  (v.length ? v[0]  : '') + '-' +  t['margin' + (v.length ? '_' : '') + v];
2135             }
2136             if (('' + t['padding' + (v.length ? '_' : '') + v]).length) {
2137                 cls += ' p' +  (v.length ? v[0]  : '') + '-' +  t['padding' + (v.length ? '_' : '') + v];
2138             }
2139         });
2140         
2141         ['', 'xs', 'sm', 'lg', 'xl'].forEach(function(v) {
2142             if (('' + t['display' + (v.length ? '_' : '') + v]).length) {
2143                 cls += ' d' +  (v.length ? '-' : '') + v + '-' + t['display' + (v.length ? '_' : '') + v]
2144             }
2145         });
2146         
2147         // more generic support?
2148         if (this.hidden) {
2149             cls += ' d-none';
2150         }
2151         
2152         return cls;
2153     },
2154  
2155        // Roo.log("Call onRender: " + this.xtype);
2156         /*  We are looking at something like this.
2157 <div class="card">
2158     <img src="..." class="card-img-top" alt="...">
2159     <div class="card-body">
2160         <h5 class="card-title">Card title</h5>
2161          <h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
2162
2163         >> this bit is really the body...
2164         <div> << we will ad dthis in hopefully it will not break shit.
2165         
2166         ** card text does not actually have any styling...
2167         
2168             <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>
2169         
2170         </div> <<
2171           <a href="#" class="card-link">Card link</a>
2172           
2173     </div>
2174     <div class="card-footer">
2175         <small class="text-muted">Last updated 3 mins ago</small>
2176     </div>
2177 </div>
2178          */
2179     getAutoCreate : function(){
2180         
2181         var cfg = {
2182             tag : 'div',
2183             cls : 'card',
2184             cn : [ ]
2185         };
2186         
2187         if (this.weight.length && this.weight != 'light') {
2188             cfg.cls += ' text-white';
2189         } else {
2190             cfg.cls += ' text-dark'; // need as it's nested..
2191         }
2192         if (this.weight.length) {
2193             cfg.cls += ' bg-' + this.weight;
2194         }
2195         
2196         cfg.cls += ' ' + this.layoutCls(); 
2197         
2198         var hdr = false;
2199         var hdr_ctr = false;
2200         if (this.header.length) {
2201             hdr = {
2202                 tag : this.header_size > 0 ? 'h' + this.header_size : 'div',
2203                 cls : 'card-header ' + (this.header_weight ? 'bg-' + this.header_weight : ''),
2204                 cn : []
2205             };
2206             cfg.cn.push(hdr);
2207             hdr_ctr = hdr;
2208         } else {
2209             hdr = {
2210                 tag : 'div',
2211                 cls : 'card-header d-none ' + (this.header_weight ? 'bg-' + this.header_weight : ''),
2212                 cn : []
2213             };
2214             cfg.cn.push(hdr);
2215             hdr_ctr = hdr;
2216         }
2217         if (this.collapsable) {
2218             hdr_ctr = {
2219             tag : 'a',
2220             cls : 'd-block user-select-none',
2221             cn: [
2222                     {
2223                         tag: 'i',
2224                         cls : 'roo-collapse-toggle fa fa-chevron-down float-right ' + (this.collapsed ? 'collapsed' : '')
2225                     }
2226                    
2227                 ]
2228             };
2229             hdr.cn.push(hdr_ctr);
2230         }
2231         
2232         hdr_ctr.cn.push(        {
2233             tag: 'span',
2234             cls: 'roo-card-header-ctr' + ( this.header.length ? '' : ' d-none'),
2235             html : this.header
2236         });
2237         
2238         
2239         if (this.header_image.length) {
2240             cfg.cn.push({
2241                 tag : 'img',
2242                 cls : 'card-img-top',
2243                 src: this.header_image // escape?
2244             });
2245         } else {
2246             cfg.cn.push({
2247                     tag : 'div',
2248                     cls : 'card-img-top d-none' 
2249                 });
2250         }
2251             
2252         var body = {
2253             tag : 'div',
2254             cls : 'card-body' + (this.html === false  ? ' d-none' : ''),
2255             cn : []
2256         };
2257         var obody = body;
2258         if (this.collapsable || this.rotateable) {
2259             obody = {
2260                 tag: 'div',
2261                 cls : 'roo-collapsable collapse ' + (this.collapsed || this.rotated ? '' : 'show'),
2262                 cn : [  body ]
2263             };
2264         }
2265         
2266         cfg.cn.push(obody);
2267         
2268         if (this.title.length) {
2269             body.cn.push({
2270                 tag : 'div',
2271                 cls : 'card-title',
2272                 src: this.title // escape?
2273             });
2274         }  
2275         
2276         if (this.subtitle.length) {
2277             body.cn.push({
2278                 tag : 'div',
2279                 cls : 'card-title',
2280                 src: this.subtitle // escape?
2281             });
2282         }
2283         
2284         body.cn.push({
2285             tag : 'div',
2286             cls : 'roo-card-body-ctr'
2287         });
2288         
2289         if (this.html.length) {
2290             body.cn.push({
2291                 tag: 'div',
2292                 html : this.html
2293             });
2294         }
2295         // fixme ? handle objects?
2296         
2297         if (this.footer.length) {
2298            
2299             cfg.cn.push({
2300                 cls : 'card-footer ' + (this.rotated ? 'd-none' : ''),
2301                 html : this.footer
2302             });
2303             
2304         } else {
2305             cfg.cn.push({cls : 'card-footer d-none'});
2306         }
2307         
2308         // footer...
2309         
2310         return cfg;
2311     },
2312     
2313     
2314     getCardHeader : function()
2315     {
2316         var  ret = this.el.select('.card-header',true).first();
2317         if (ret.hasClass('d-none')) {
2318             ret.removeClass('d-none');
2319         }
2320         
2321         return ret;
2322     },
2323     getCardFooter : function()
2324     {
2325         var  ret = this.el.select('.card-footer',true).first();
2326         if (ret.hasClass('d-none')) {
2327             ret.removeClass('d-none');
2328         }
2329         
2330         return ret;
2331     },
2332     getCardImageTop : function()
2333     {
2334         var  ret = this.header_imageEl;
2335         if (ret.hasClass('d-none')) {
2336             ret.removeClass('d-none');
2337         }
2338             
2339         return ret;
2340     },
2341     
2342     getChildContainer : function()
2343     {
2344         
2345         if(!this.el){
2346             return false;
2347         }
2348         return this.el.select('.roo-card-body-ctr',true).first();    
2349     },
2350     
2351     initEvents: function() 
2352     {
2353         this.bodyEl = this.el.select('.card-body',true).first(); 
2354         this.containerEl = this.getChildContainer();
2355         if(this.dragable){
2356             this.dragZone = new Roo.dd.DragZone(this.getEl(), {
2357                     containerScroll: true,
2358                     ddGroup: this.drag_group || 'default_card_drag_group'
2359             });
2360             this.dragZone.getDragData = this.getDragData.createDelegate(this);
2361         }
2362         if (this.dropable) {
2363             this.dropZone = new Roo.dd.DropZone(this.el.select('.card-body',true).first() , {
2364                 containerScroll: true,
2365                 ddGroup: this.drop_group || 'default_card_drag_group'
2366             });
2367             this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
2368             this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
2369             this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
2370             this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
2371             this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
2372         }
2373         
2374         if (this.collapsable) {
2375             this.el.select('.card-header',true).on('click', this.onToggleCollapse, this);
2376         }
2377         if (this.rotateable) {
2378             this.el.select('.card-header',true).on('click', this.onToggleRotate, this);
2379         }
2380         this.collapsableEl = this.el.select('.roo-collapsable',true).first();
2381          
2382         this.footerEl = this.el.select('.card-footer',true).first();
2383         this.collapsableToggleEl = this.el.select('.roo-collapse-toggle',true).first();
2384         this.headerContainerEl = this.el.select('.roo-card-header-ctr',true).first();
2385         this.headerEl = this.el.select('.card-header',true).first();
2386         
2387         if (this.rotated) {
2388             this.el.addClass('roo-card-rotated');
2389             this.fireEvent('rotate', this, true);
2390         }
2391         this.header_imageEl = this.el.select('.card-img-top',true).first(); 
2392         this.header_imageEl.on('load', this.onHeaderImageLoad, this );
2393         
2394     },
2395     getDragData : function(e)
2396     {
2397         var target = this.getEl();
2398         if (target) {
2399             //this.handleSelection(e);
2400             
2401             var dragData = {
2402                 source: this,
2403                 copy: false,
2404                 nodes: this.getEl(),
2405                 records: []
2406             };
2407             
2408             
2409             dragData.ddel = target.dom ;    // the div element
2410             Roo.log(target.getWidth( ));
2411             dragData.ddel.style.width = target.getWidth() + 'px';
2412             
2413             return dragData;
2414         }
2415         return false;
2416     },
2417     /**
2418     *    Part of the Roo.dd.DropZone interface. If no target node is found, the
2419     *    whole Element becomes the target, and this causes the drop gesture to append.
2420     *
2421     *    Returns an object:
2422     *     {
2423            
2424            position : 'below' or 'above'
2425            card  : relateive to card OBJECT (or true for no cards listed)
2426            items_n : relative to nth item in list
2427            card_n : relative to  nth card in list
2428     }
2429     *
2430     *    
2431     */
2432     getTargetFromEvent : function(e, dragged_card_el)
2433     {
2434         var target = e.getTarget();
2435         while ((target !== null) && (target.parentNode != this.containerEl.dom)) {
2436             target = target.parentNode;
2437         }
2438         
2439         var ret = {
2440             position: '',
2441             cards : [],
2442             card_n : -1,
2443             items_n : -1,
2444             card : false 
2445         };
2446         
2447         //Roo.log([ 'target' , target ? target.id : '--nothing--']);
2448         // see if target is one of the 'cards'...
2449         
2450         
2451         //Roo.log(this.items.length);
2452         var pos = false;
2453         
2454         var last_card_n = 0;
2455         var cards_len  = 0;
2456         for (var i = 0;i< this.items.length;i++) {
2457             
2458             if (!this.items[i].el.hasClass('card')) {
2459                  continue;
2460             }
2461             pos = this.getDropPoint(e, this.items[i].el.dom);
2462             
2463             cards_len = ret.cards.length;
2464             //Roo.log(this.items[i].el.dom.id);
2465             ret.cards.push(this.items[i]);
2466             last_card_n  = i;
2467             if (ret.card_n < 0 && pos == 'above') {
2468                 ret.position = cards_len > 0 ? 'below' : pos;
2469                 ret.items_n = i > 0 ? i - 1 : 0;
2470                 ret.card_n  = cards_len  > 0 ? cards_len - 1 : 0;
2471                 ret.card = ret.cards[ret.card_n];
2472             }
2473         }
2474         if (!ret.cards.length) {
2475             ret.card = true;
2476             ret.position = 'below';
2477             ret.items_n;
2478             return ret;
2479         }
2480         // could not find a card.. stick it at the end..
2481         if (ret.card_n < 0) {
2482             ret.card_n = last_card_n;
2483             ret.card = ret.cards[last_card_n];
2484             ret.items_n = this.items.indexOf(ret.cards[last_card_n]);
2485             ret.position = 'below';
2486         }
2487         
2488         if (this.items[ret.items_n].el == dragged_card_el) {
2489             return false;
2490         }
2491         
2492         if (ret.position == 'below') {
2493             var card_after = ret.card_n+1 == ret.cards.length ? false : ret.cards[ret.card_n+1];
2494             
2495             if (card_after  && card_after.el == dragged_card_el) {
2496                 return false;
2497             }
2498             return ret;
2499         }
2500         
2501         // its's after ..
2502         var card_before = ret.card_n > 0 ? ret.cards[ret.card_n-1] : false;
2503         
2504         if (card_before  && card_before.el == dragged_card_el) {
2505             return false;
2506         }
2507         
2508         return ret;
2509     },
2510     
2511     onNodeEnter : function(n, dd, e, data){
2512         return false;
2513     },
2514     onNodeOver : function(n, dd, e, data)
2515     {
2516        
2517         var target_info = this.getTargetFromEvent(e,data.source.el);
2518         if (target_info === false) {
2519             this.dropPlaceHolder('hide');
2520             return false;
2521         }
2522         Roo.log(['getTargetFromEvent', target_info ]);
2523         
2524         
2525         if (this.fireEvent('cardover', this, [ data ]) === false) {
2526             return false;
2527         }
2528         
2529         this.dropPlaceHolder('show', target_info,data);
2530         
2531         return false; 
2532     },
2533     onNodeOut : function(n, dd, e, data){
2534         this.dropPlaceHolder('hide');
2535      
2536     },
2537     onNodeDrop : function(n, dd, e, data)
2538     {
2539         
2540         // call drop - return false if
2541         
2542         // this could actually fail - if the Network drops..
2543         // we will ignore this at present..- client should probably reload
2544         // the whole set of cards if stuff like that fails.
2545         
2546         
2547         var info = this.getTargetFromEvent(e,data.source.el);
2548         if (info === false) {
2549             return false;
2550         }
2551         this.dropPlaceHolder('hide');
2552   
2553           
2554     
2555         this.acceptCard(data.source, info.position, info.card, info.items_n);
2556         return true;
2557          
2558     },
2559     firstChildCard : function()
2560     {
2561         for (var i = 0;i< this.items.length;i++) {
2562             
2563             if (!this.items[i].el.hasClass('card')) {
2564                  continue;
2565             }
2566             return this.items[i];
2567         }
2568         return this.items.length ? this.items[this.items.length-1] : false; // don't try and put stuff after the cards...
2569     },
2570     /**
2571      * accept card
2572      *
2573      * -        card.acceptCard(move_card, info.position, info.card, info.items_n);
2574      */
2575     acceptCard : function(move_card,  position, next_to_card )
2576     {
2577         if (this.fireEvent("drop", this, move_card, position, next_to_card) === false) {
2578             return false;
2579         }
2580         
2581         var to_items_n = next_to_card ? this.items.indexOf(next_to_card) : 0;
2582         
2583         move_card.parent().removeCard(move_card);
2584         
2585         
2586         var dom = move_card.el.dom;
2587         dom.style.width = ''; // clear with - which is set by drag.
2588         
2589         if (next_to_card !== false && next_to_card !== true && next_to_card.el.dom.parentNode) {
2590             var cardel = next_to_card.el.dom;
2591             
2592             if (position == 'above' ) {
2593                 cardel.parentNode.insertBefore(dom, cardel);
2594             } else if (cardel.nextSibling) {
2595                 cardel.parentNode.insertBefore(dom,cardel.nextSibling);
2596             } else {
2597                 cardel.parentNode.append(dom);
2598             }
2599         } else {
2600             // card container???
2601             this.containerEl.dom.append(dom);
2602         }
2603         
2604         //FIXME HANDLE card = true 
2605         
2606         // add this to the correct place in items.
2607         
2608         // remove Card from items.
2609         
2610        
2611         if (this.items.length) {
2612             var nitems = [];
2613             //Roo.log([info.items_n, info.position, this.items.length]);
2614             for (var i =0; i < this.items.length; i++) {
2615                 if (i == to_items_n && position == 'above') {
2616                     nitems.push(move_card);
2617                 }
2618                 nitems.push(this.items[i]);
2619                 if (i == to_items_n && position == 'below') {
2620                     nitems.push(move_card);
2621                 }
2622             }
2623             this.items = nitems;
2624             Roo.log(this.items);
2625         } else {
2626             this.items.push(move_card);
2627         }
2628         
2629         move_card.parentId = this.id;
2630         
2631         return true;
2632         
2633         
2634     },
2635     removeCard : function(c)
2636     {
2637         this.items = this.items.filter(function(e) { return e != c });
2638  
2639         var dom = c.el.dom;
2640         dom.parentNode.removeChild(dom);
2641         dom.style.width = ''; // clear with - which is set by drag.
2642         c.parentId = false;
2643         
2644     },
2645     
2646     /**    Decide whether to drop above or below a View node. */
2647     getDropPoint : function(e, n, dd)
2648     {
2649         if (dd) {
2650              return false;
2651         }
2652         if (n == this.containerEl.dom) {
2653             return "above";
2654         }
2655         var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
2656         var c = t + (b - t) / 2;
2657         var y = Roo.lib.Event.getPageY(e);
2658         if(y <= c) {
2659             return "above";
2660         }else{
2661             return "below";
2662         }
2663     },
2664     onToggleCollapse : function(e)
2665         {
2666         if (this.collapsed) {
2667             this.el.select('.roo-collapse-toggle').removeClass('collapsed');
2668             this.collapsableEl.addClass('show');
2669             this.collapsed = false;
2670             return;
2671         }
2672         this.el.select('.roo-collapse-toggle').addClass('collapsed');
2673         this.collapsableEl.removeClass('show');
2674         this.collapsed = true;
2675         
2676     
2677     },
2678     
2679     onToggleRotate : function(e)
2680     {
2681         this.collapsableEl.removeClass('show');
2682         this.footerEl.removeClass('d-none');
2683         this.el.removeClass('roo-card-rotated');
2684         this.el.removeClass('d-none');
2685         if (this.rotated) {
2686             
2687             this.collapsableEl.addClass('show');
2688             this.rotated = false;
2689             this.fireEvent('rotate', this, this.rotated);
2690             return;
2691         }
2692         this.el.addClass('roo-card-rotated');
2693         this.footerEl.addClass('d-none');
2694         this.el.select('.roo-collapsable').removeClass('show');
2695         
2696         this.rotated = true;
2697         this.fireEvent('rotate', this, this.rotated);
2698     
2699     },
2700     
2701     dropPlaceHolder: function (action, info, data)
2702     {
2703         if (this.dropEl === false) {
2704             this.dropEl = Roo.DomHelper.append(this.containerEl, {
2705             cls : 'd-none'
2706             },true);
2707         }
2708         this.dropEl.removeClass(['d-none', 'd-block']);        
2709         if (action == 'hide') {
2710             
2711             this.dropEl.addClass('d-none');
2712             return;
2713         }
2714         // FIXME - info.card == true!!!
2715         this.dropEl.dom.parentNode.removeChild(this.dropEl.dom);
2716         
2717         if (info.card !== true) {
2718             var cardel = info.card.el.dom;
2719             
2720             if (info.position == 'above') {
2721                 cardel.parentNode.insertBefore(this.dropEl.dom, cardel);
2722             } else if (cardel.nextSibling) {
2723                 cardel.parentNode.insertBefore(this.dropEl.dom,cardel.nextSibling);
2724             } else {
2725                 cardel.parentNode.append(this.dropEl.dom);
2726             }
2727         } else {
2728             // card container???
2729             this.containerEl.dom.append(this.dropEl.dom);
2730         }
2731         
2732         this.dropEl.addClass('d-block roo-card-dropzone');
2733         
2734         this.dropEl.setHeight( Roo.get(data.ddel).getHeight() );
2735         
2736         
2737     
2738     
2739     
2740     },
2741     setHeaderText: function(html)
2742     {
2743         this.header = html;
2744         if (this.headerContainerEl) {
2745             this.headerContainerEl.dom.innerHTML = html;
2746         }
2747     },
2748     onHeaderImageLoad : function(ev, he)
2749     {
2750         if (!this.header_image_fit_square) {
2751             return;
2752         }
2753         
2754         var hw = he.naturalHeight / he.naturalWidth;
2755         // wide image = < 0
2756         // tall image = > 1
2757         //var w = he.dom.naturalWidth;
2758         var ww = he.width;
2759         he.style.left =  0;
2760         he.style.position =  'relative';
2761         if (hw > 1) {
2762             var nw = (ww * (1/hw));
2763             Roo.get(he).setSize( ww * (1/hw),  ww);
2764             he.style.left =  ((ww - nw)/ 2) + 'px';
2765             he.style.position =  'relative';
2766         }
2767
2768     }
2769
2770     
2771 });
2772
2773 /*
2774  * - LGPL
2775  *
2776  * Card header - holder for the card header elements.
2777  * 
2778  */
2779
2780 /**
2781  * @class Roo.bootstrap.CardHeader
2782  * @extends Roo.bootstrap.Element
2783  * @parent Roo.bootstrap.Card
2784  * @children Roo.bootstrap.Component
2785  * Bootstrap CardHeader class
2786  * @constructor
2787  * Create a new Card Header - that you can embed children into
2788  * @param {Object} config The config object
2789  */
2790
2791 Roo.bootstrap.CardHeader = function(config){
2792     Roo.bootstrap.CardHeader.superclass.constructor.call(this, config);
2793 };
2794
2795 Roo.extend(Roo.bootstrap.CardHeader, Roo.bootstrap.Element,  {
2796     
2797     
2798     container_method : 'getCardHeader' 
2799     
2800      
2801     
2802     
2803    
2804 });
2805
2806  
2807
2808  /*
2809  * - LGPL
2810  *
2811  * Card footer - holder for the card footer elements.
2812  * 
2813  */
2814
2815 /**
2816  * @class Roo.bootstrap.CardFooter
2817  * @extends Roo.bootstrap.Element
2818  * @parent Roo.bootstrap.Card
2819  * @children Roo.bootstrap.Component
2820  * Bootstrap CardFooter class
2821  * 
2822  * @constructor
2823  * Create a new Card Footer - that you can embed children into
2824  * @param {Object} config The config object
2825  */
2826
2827 Roo.bootstrap.CardFooter = function(config){
2828     Roo.bootstrap.CardFooter.superclass.constructor.call(this, config);
2829 };
2830
2831 Roo.extend(Roo.bootstrap.CardFooter, Roo.bootstrap.Element,  {
2832     
2833     
2834     container_method : 'getCardFooter' 
2835     
2836      
2837     
2838     
2839    
2840 });
2841
2842  
2843
2844  /*
2845  * - LGPL
2846  *
2847  * Card header - holder for the card header elements.
2848  * 
2849  */
2850
2851 /**
2852  * @class Roo.bootstrap.CardImageTop
2853  * @extends Roo.bootstrap.Element
2854  * @parent Roo.bootstrap.Card
2855  * @children Roo.bootstrap.Component
2856  * Bootstrap CardImageTop class
2857  * 
2858  * @constructor
2859  * Create a new Card Image Top container
2860  * @param {Object} config The config object
2861  */
2862
2863 Roo.bootstrap.CardImageTop = function(config){
2864     Roo.bootstrap.CardImageTop.superclass.constructor.call(this, config);
2865 };
2866
2867 Roo.extend(Roo.bootstrap.CardImageTop, Roo.bootstrap.Element,  {
2868     
2869    
2870     container_method : 'getCardImageTop' 
2871     
2872      
2873     
2874    
2875 });
2876
2877  
2878
2879  
2880 /*
2881 * Licence: LGPL
2882 */
2883
2884 /**
2885  * @class Roo.bootstrap.ButtonUploader
2886  * @extends Roo.bootstrap.Button
2887  * Bootstrap Button Uploader class - it's a button which when you add files to it
2888  *
2889  * 
2890  * @cfg {Number} errorTimeout default 3000
2891  * @cfg {Array}  images  an array of ?? Img objects ??? when loading existing files..
2892  * @cfg {Array}  html The button text.
2893  * @cfg {Boolean}  multiple (default true) Should the upload allow multiple files to be uploaded.
2894  *
2895  * @constructor
2896  * Create a new CardUploader
2897  * @param {Object} config The config object
2898  */
2899
2900 Roo.bootstrap.ButtonUploader = function(config){
2901     
2902  
2903     
2904     Roo.bootstrap.ButtonUploader.superclass.constructor.call(this, config);
2905     
2906      
2907      this.addEvents({
2908          // raw events
2909         /**
2910          * @event beforeselect
2911          * When button is pressed, before show upload files dialog is shown
2912          * @param {Roo.bootstrap.UploaderButton} this
2913          *
2914          */
2915         'beforeselect' : true,
2916          /**
2917          * @event fired when files have been selected, 
2918          * When a the download link is clicked
2919          * @param {Roo.bootstrap.UploaderButton} this
2920          * @param {Array} Array of files that have been uploaded
2921          */
2922         'uploaded' : true
2923         
2924     });
2925 };
2926  
2927 Roo.extend(Roo.bootstrap.ButtonUploader, Roo.bootstrap.Button,  {
2928     
2929      
2930     errorTimeout : 3000,
2931      
2932     images : false,
2933    
2934     fileCollection : false,
2935     allowBlank : true,
2936     
2937     multiple : true,
2938     
2939     getAutoCreate : function()
2940     {
2941        
2942         
2943         return  {
2944             cls :'div' ,
2945             cn : [
2946                 Roo.bootstrap.Button.prototype.getAutoCreate.call(this) 
2947             ]
2948         };
2949            
2950          
2951     },
2952      
2953    
2954     initEvents : function()
2955     {
2956         
2957         Roo.bootstrap.Button.prototype.initEvents.call(this);
2958         
2959         
2960         
2961         
2962         
2963         this.urlAPI = (window.createObjectURL && window) || 
2964                                 (window.URL && URL.revokeObjectURL && URL) || 
2965                                 (window.webkitURL && webkitURL);
2966                         
2967         var im = {
2968             tag: 'input',
2969             type : 'file',
2970             cls : 'd-none  roo-card-upload-selector' 
2971           
2972         };
2973         if (this.multiple) {
2974             im.multiple = 'multiple';
2975         }
2976         this.selectorEl = Roo.get(document.body).createChild(im); // so it does not capture click event for navitem.
2977        
2978         //this.selectorEl = this.el.select('.roo-card-upload-selector', true).first();
2979         
2980         this.selectorEl.on('change', this.onFileSelected, this);
2981          
2982          
2983        
2984     },
2985     
2986    
2987     onClick : function(e)
2988     {
2989         e.preventDefault();
2990         
2991         if ( this.fireEvent('beforeselect', this) === false) {
2992             return;
2993         }
2994          
2995         this.selectorEl.dom.click();
2996          
2997     },
2998     
2999     onFileSelected : function(e)
3000     {
3001         e.preventDefault();
3002         
3003         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
3004             return;
3005         }
3006         var files = Array.prototype.slice.call(this.selectorEl.dom.files);
3007         this.selectorEl.dom.value  = '';// hopefully reset..
3008         
3009         this.fireEvent('uploaded', this,  files );
3010         
3011     },
3012     
3013        
3014    
3015     
3016     /**
3017      * addCard - add an Attachment to the uploader
3018      * @param data - the data about the image to upload
3019      *
3020      * {
3021           id : 123
3022           title : "Title of file",
3023           is_uploaded : false,
3024           src : "http://.....",
3025           srcfile : { the File upload object },
3026           mimetype : file.type,
3027           preview : false,
3028           is_deleted : 0
3029           .. any other data...
3030         }
3031      *
3032      * 
3033     */
3034      
3035     reset: function()
3036     {
3037          
3038          this.selectorEl
3039     } 
3040     
3041     
3042     
3043     
3044 });
3045  /*
3046  * - LGPL
3047  *
3048  * image
3049  * 
3050  */
3051
3052
3053 /**
3054  * @class Roo.bootstrap.Img
3055  * @extends Roo.bootstrap.Component
3056  * Bootstrap Img class
3057  * @cfg {Boolean} imgResponsive false | true
3058  * @cfg {String} border rounded | circle | thumbnail
3059  * @cfg {String} src image source
3060  * @cfg {String} alt image alternative text
3061  * @cfg {String} href a tag href
3062  * @cfg {String} target (_self|_blank|_parent|_top)target for a href.
3063  * @cfg {String} xsUrl xs image source
3064  * @cfg {String} smUrl sm image source
3065  * @cfg {String} mdUrl md image source
3066  * @cfg {String} lgUrl lg image source
3067  * @cfg {Boolean} backgroundContain (use style background and contain image in content)
3068  * 
3069  * @constructor
3070  * Create a new Input
3071  * @param {Object} config The config object
3072  */
3073
3074 Roo.bootstrap.Img = function(config){
3075     Roo.bootstrap.Img.superclass.constructor.call(this, config);
3076     
3077     this.addEvents({
3078         // img events
3079         /**
3080          * @event click
3081          * The img click event for the img.
3082          * @param {Roo.EventObject} e
3083          */
3084         "click" : true,
3085         /**
3086          * @event load
3087          * The when any image loads
3088          * @param {Roo.EventObject} e
3089          */
3090         "load" : true
3091     });
3092 };
3093
3094 Roo.extend(Roo.bootstrap.Img, Roo.bootstrap.Component,  {
3095     
3096     imgResponsive: true,
3097     border: '',
3098     src: 'data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=',
3099     href: false,
3100     target: false,
3101     xsUrl: '',
3102     smUrl: '',
3103     mdUrl: '',
3104     lgUrl: '',
3105     backgroundContain : false,
3106
3107     getAutoCreate : function()
3108     {   
3109         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
3110             return this.createSingleImg();
3111         }
3112         
3113         var cfg = {
3114             tag: 'div',
3115             cls: 'roo-image-responsive-group',
3116             cn: []
3117         };
3118         var _this = this;
3119         
3120         Roo.each(['xs', 'sm', 'md', 'lg'], function(size){
3121             
3122             if(!_this[size + 'Url']){
3123                 return;
3124             }
3125             
3126             var img = {
3127                 tag: 'img',
3128                 cls: (_this.imgResponsive) ? 'img-responsive' : '',
3129                 html: _this.html || cfg.html,
3130                 src: _this[size + 'Url']
3131             };
3132             
3133             img.cls += ' roo-image-responsive-' + size;
3134             
3135             var s = ['xs', 'sm', 'md', 'lg'];
3136             
3137             s.splice(s.indexOf(size), 1);
3138             
3139             Roo.each(s, function(ss){
3140                 img.cls += ' hidden-' + ss;
3141             });
3142             
3143             if (['rounded','circle','thumbnail'].indexOf(_this.border)>-1) {
3144                 cfg.cls += ' img-' + _this.border;
3145             }
3146             
3147             if(_this.alt){
3148                 cfg.alt = _this.alt;
3149             }
3150             
3151             if(_this.href){
3152                 var a = {
3153                     tag: 'a',
3154                     href: _this.href,
3155                     cn: [
3156                         img
3157                     ]
3158                 };
3159
3160                 if(this.target){
3161                     a.target = _this.target;
3162                 }
3163             }
3164             
3165             cfg.cn.push((_this.href) ? a : img);
3166             
3167         });
3168         
3169         return cfg;
3170     },
3171     
3172     createSingleImg : function()
3173     {
3174         var cfg = {
3175             tag: 'img',
3176             cls: (this.imgResponsive) ? 'img-responsive' : '',
3177             html : null,
3178             src : Roo.BLANK_IMAGE_URL  // just incase src get's set to undefined?!?
3179         };
3180         
3181         if (this.backgroundContain) {
3182             cfg.cls += ' background-contain';
3183         }
3184         
3185         cfg.html = this.html || cfg.html;
3186         
3187         if (this.backgroundContain) {
3188             cfg.style="background-image: url(" + this.src + ')';
3189         } else {
3190             cfg.src = this.src || cfg.src;
3191         }
3192         
3193         if (['rounded','circle','thumbnail'].indexOf(this.border)>-1) {
3194             cfg.cls += ' img-' + this.border;
3195         }
3196         
3197         if(this.alt){
3198             cfg.alt = this.alt;
3199         }
3200         
3201         if(this.href){
3202             var a = {
3203                 tag: 'a',
3204                 href: this.href,
3205                 cn: [
3206                     cfg
3207                 ]
3208             };
3209             
3210             if(this.target){
3211                 a.target = this.target;
3212             }
3213             
3214         }
3215         
3216         return (this.href) ? a : cfg;
3217     },
3218     
3219     initEvents: function() 
3220     {
3221         if(!this.href){
3222             this.el.on('click', this.onClick, this);
3223         }
3224         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
3225             this.el.on('load', this.onImageLoad, this);
3226         } else {
3227             // not sure if this works.. not tested
3228             this.el.select('img', true).on('load', this.onImageLoad, this);
3229         }
3230         
3231     },
3232     
3233     onClick : function(e)
3234     {
3235         Roo.log('img onclick');
3236         this.fireEvent('click', this, e);
3237     },
3238     onImageLoad: function(e)
3239     {
3240         Roo.log('img load');
3241         this.fireEvent('load', this, e);
3242     },
3243     
3244     /**
3245      * Sets the url of the image - used to update it
3246      * @param {String} url the url of the image
3247      */
3248     
3249     setSrc : function(url)
3250     {
3251         this.src =  url;
3252         
3253         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
3254             if (this.backgroundContain) {
3255                 this.el.dom.style.backgroundImage =  'url(' + url + ')';
3256             } else {
3257                 this.el.dom.src =  url;
3258             }
3259             return;
3260         }
3261         
3262         this.el.select('img', true).first().dom.src =  url;
3263     }
3264     
3265     
3266    
3267 });
3268
3269  /*
3270  * - LGPL
3271  *
3272  * image
3273  * 
3274  */
3275
3276
3277 /**
3278  * @class Roo.bootstrap.Link
3279  * @extends Roo.bootstrap.Component
3280  * @children Roo.bootstrap.Component
3281  * Bootstrap Link Class (eg. '<a href>')
3282  
3283  * @cfg {String} alt image alternative text
3284  * @cfg {String} href a tag href
3285  * @cfg {String} target (_self|_blank|_parent|_top) target for a href.
3286  * @cfg {String} html the content of the link.
3287  * @cfg {String} anchor name for the anchor link
3288  * @cfg {String} fa - favicon
3289
3290  * @cfg {Boolean} preventDefault (true | false) default false
3291
3292  * 
3293  * @constructor
3294  * Create a new Input
3295  * @param {Object} config The config object
3296  */
3297
3298 Roo.bootstrap.Link = function(config){
3299     Roo.bootstrap.Link.superclass.constructor.call(this, config);
3300     
3301     this.addEvents({
3302         // img events
3303         /**
3304          * @event click
3305          * The img click event for the img.
3306          * @param {Roo.EventObject} e
3307          */
3308         "click" : true
3309     });
3310 };
3311
3312 Roo.extend(Roo.bootstrap.Link, Roo.bootstrap.Component,  {
3313     
3314     href: false,
3315     target: false,
3316     preventDefault: false,
3317     anchor : false,
3318     alt : false,
3319     fa: false,
3320
3321
3322     getAutoCreate : function()
3323     {
3324         var html = this.html || '';
3325         
3326         if (this.fa !== false) {
3327             html = '<i class="fa fa-' + this.fa + '"></i>';
3328         }
3329         var cfg = {
3330             tag: 'a'
3331         };
3332         // anchor's do not require html/href...
3333         if (this.anchor === false) {
3334             cfg.html = html;
3335             cfg.href = this.href || '#';
3336         } else {
3337             cfg.name = this.anchor;
3338             if (this.html !== false || this.fa !== false) {
3339                 cfg.html = html;
3340             }
3341             if (this.href !== false) {
3342                 cfg.href = this.href;
3343             }
3344         }
3345         
3346         if(this.alt !== false){
3347             cfg.alt = this.alt;
3348         }
3349         
3350         
3351         if(this.target !== false) {
3352             cfg.target = this.target;
3353         }
3354         
3355         return cfg;
3356     },
3357     
3358     initEvents: function() {
3359         
3360         if(!this.href || this.preventDefault){
3361             this.el.on('click', this.onClick, this);
3362         }
3363     },
3364     
3365     onClick : function(e)
3366     {
3367         if(this.preventDefault){
3368             e.preventDefault();
3369         }
3370         //Roo.log('img onclick');
3371         this.fireEvent('click', this, e);
3372     }
3373    
3374 });
3375
3376  /*
3377  * - LGPL
3378  *
3379  * header
3380  * 
3381  */
3382
3383 /**
3384  * @class Roo.bootstrap.Header
3385  * @extends Roo.bootstrap.Component
3386  * @children Roo.bootstrap.Component
3387  * Bootstrap Header class
3388  *
3389  * 
3390  * @cfg {String} html content of header
3391  * @cfg {Number} level (1|2|3|4|5|6) default 1
3392  * 
3393  * @constructor
3394  * Create a new Header
3395  * @param {Object} config The config object
3396  */
3397
3398
3399 Roo.bootstrap.Header  = function(config){
3400     Roo.bootstrap.Header.superclass.constructor.call(this, config);
3401 };
3402
3403 Roo.extend(Roo.bootstrap.Header, Roo.bootstrap.Component,  {
3404     
3405     //href : false,
3406     html : false,
3407     level : 1,
3408     
3409     
3410     
3411     getAutoCreate : function(){
3412         
3413         
3414         
3415         var cfg = {
3416             tag: 'h' + (1 *this.level),
3417             html: this.html || ''
3418         } ;
3419         
3420         return cfg;
3421     }
3422    
3423 });
3424
3425  
3426
3427  /**
3428  * @class Roo.bootstrap.MenuMgr
3429  * @licence LGPL
3430  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
3431  * @static
3432  */
3433 Roo.bootstrap.menu.Manager = function(){
3434    var menus, active, groups = {}, attached = false, lastShow = new Date();
3435
3436    // private - called when first menu is created
3437    function init(){
3438        menus = {};
3439        active = new Roo.util.MixedCollection();
3440        Roo.get(document).addKeyListener(27, function(){
3441            if(active.length > 0){
3442                hideAll();
3443            }
3444        });
3445    }
3446
3447    // private
3448    function hideAll(){
3449        if(active && active.length > 0){
3450            var c = active.clone();
3451            c.each(function(m){
3452                m.hide();
3453            });
3454        }
3455    }
3456
3457    // private
3458    function onHide(m){
3459        active.remove(m);
3460        if(active.length < 1){
3461            Roo.get(document).un("mouseup", onMouseDown);
3462             
3463            attached = false;
3464        }
3465    }
3466
3467    // private
3468    function onShow(m){
3469        var last = active.last();
3470        lastShow = new Date();
3471        active.add(m);
3472        if(!attached){
3473           Roo.get(document).on("mouseup", onMouseDown);
3474            
3475            attached = true;
3476        }
3477        if(m.parentMenu){
3478           //m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
3479           m.parentMenu.activeChild = m;
3480        }else if(last && last.isVisible()){
3481           //m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
3482        }
3483    }
3484
3485    // private
3486    function onBeforeHide(m){
3487        if(m.activeChild){
3488            m.activeChild.hide();
3489        }
3490        if(m.autoHideTimer){
3491            clearTimeout(m.autoHideTimer);
3492            delete m.autoHideTimer;
3493        }
3494    }
3495
3496    // private
3497    function onBeforeShow(m){
3498        var pm = m.parentMenu;
3499        if(!pm && !m.allowOtherMenus){
3500            hideAll();
3501        }else if(pm && pm.activeChild && active != m){
3502            pm.activeChild.hide();
3503        }
3504    }
3505
3506    // private this should really trigger on mouseup..
3507    function onMouseDown(e){
3508         Roo.log("on Mouse Up");
3509         
3510         if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".dropdown-menu") && !e.getTarget('.user-menu')){
3511             Roo.log("MenuManager hideAll");
3512             hideAll();
3513             e.stopEvent();
3514         }
3515         
3516         
3517    }
3518
3519    // private
3520    function onBeforeCheck(mi, state){
3521        if(state){
3522            var g = groups[mi.group];
3523            for(var i = 0, l = g.length; i < l; i++){
3524                if(g[i] != mi){
3525                    g[i].setChecked(false);
3526                }
3527            }
3528        }
3529    }
3530
3531    return {
3532
3533        /**
3534         * Hides all menus that are currently visible
3535         */
3536        hideAll : function(){
3537             hideAll();  
3538        },
3539
3540        // private
3541        register : function(menu){
3542            if(!menus){
3543                init();
3544            }
3545            menus[menu.id] = menu;
3546            menu.on("beforehide", onBeforeHide);
3547            menu.on("hide", onHide);
3548            menu.on("beforeshow", onBeforeShow);
3549            menu.on("show", onShow);
3550            var g = menu.group;
3551            if(g && menu.events["checkchange"]){
3552                if(!groups[g]){
3553                    groups[g] = [];
3554                }
3555                groups[g].push(menu);
3556                menu.on("checkchange", onCheck);
3557            }
3558        },
3559
3560         /**
3561          * Returns a {@link Roo.menu.Menu} object
3562          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
3563          * be used to generate and return a new Menu instance.
3564          */
3565        get : function(menu){
3566            if(typeof menu == "string"){ // menu id
3567                return menus[menu];
3568            }else if(menu.events){  // menu instance
3569                return menu;
3570            }
3571            /*else if(typeof menu.length == 'number'){ // array of menu items?
3572                return new Roo.bootstrap.Menu({items:menu});
3573            }else{ // otherwise, must be a config
3574                return new Roo.bootstrap.Menu(menu);
3575            }
3576            */
3577            return false;
3578        },
3579
3580        // private
3581        unregister : function(menu){
3582            delete menus[menu.id];
3583            menu.un("beforehide", onBeforeHide);
3584            menu.un("hide", onHide);
3585            menu.un("beforeshow", onBeforeShow);
3586            menu.un("show", onShow);
3587            var g = menu.group;
3588            if(g && menu.events["checkchange"]){
3589                groups[g].remove(menu);
3590                menu.un("checkchange", onCheck);
3591            }
3592        },
3593
3594        // private
3595        registerCheckable : function(menuItem){
3596            var g = menuItem.group;
3597            if(g){
3598                if(!groups[g]){
3599                    groups[g] = [];
3600                }
3601                groups[g].push(menuItem);
3602                menuItem.on("beforecheckchange", onBeforeCheck);
3603            }
3604        },
3605
3606        // private
3607        unregisterCheckable : function(menuItem){
3608            var g = menuItem.group;
3609            if(g){
3610                groups[g].remove(menuItem);
3611                menuItem.un("beforecheckchange", onBeforeCheck);
3612            }
3613        }
3614    };
3615 }(); 
3616 /**
3617  * @class Roo.bootstrap.menu.Menu
3618  * @extends Roo.bootstrap.Component
3619  * @licence LGPL
3620  * @children Roo.bootstrap.menu.Item Roo.bootstrap.menu.Separator
3621  * @parent none
3622  * Bootstrap Menu class - container for MenuItems - normally has to be added to a object that supports the menu property
3623  * 
3624  * @cfg {String} type (dropdown|treeview|submenu) type of menu
3625  * @cfg {bool} hidden  if the menu should be hidden when rendered.
3626  * @cfg {bool} stopEvent (true|false)  Stop event after trigger press (default true)
3627  * @cfg {bool} isLink (true|false)  the menu has link disable auto expand and collaspe (default false)
3628 * @cfg {bool} hideTrigger (true|false)  default false - hide the carret for trigger.
3629 * @cfg {String} align  default tl-bl? == below  - how the menu should be aligned. 
3630  
3631  * @constructor
3632  * Create a new Menu
3633  * @param {Object} config The config objectQ
3634  */
3635
3636
3637 Roo.bootstrap.menu.Menu = function(config){
3638     
3639     if (config.type == 'treeview') {
3640         // normally menu's are drawn attached to the document to handle layering etc..
3641         // however treeview (used by the docs menu is drawn into the parent element)
3642         this.container_method = 'getChildContainer'; 
3643     }
3644     
3645     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
3646     if (this.registerMenu && this.type != 'treeview')  {
3647         Roo.bootstrap.menu.Manager.register(this);
3648     }
3649     
3650     
3651     this.addEvents({
3652         /**
3653          * @event beforeshow
3654          * Fires before this menu is displayed (return false to block)
3655          * @param {Roo.menu.Menu} this
3656          */
3657         beforeshow : true,
3658         /**
3659          * @event beforehide
3660          * Fires before this menu is hidden (return false to block)
3661          * @param {Roo.menu.Menu} this
3662          */
3663         beforehide : true,
3664         /**
3665          * @event show
3666          * Fires after this menu is displayed
3667          * @param {Roo.menu.Menu} this
3668          */
3669         show : true,
3670         /**
3671          * @event hide
3672          * Fires after this menu is hidden
3673          * @param {Roo.menu.Menu} this
3674          */
3675         hide : true,
3676         /**
3677          * @event click
3678          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
3679          * @param {Roo.menu.Menu} this
3680          * @param {Roo.menu.Item} menuItem The menu item that was clicked
3681          * @param {Roo.EventObject} e
3682          */
3683         click : true,
3684         /**
3685          * @event mouseover
3686          * Fires when the mouse is hovering over this menu
3687          * @param {Roo.menu.Menu} this
3688          * @param {Roo.EventObject} e
3689          * @param {Roo.menu.Item} menuItem The menu item that was clicked
3690          */
3691         mouseover : true,
3692         /**
3693          * @event mouseout
3694          * Fires when the mouse exits this menu
3695          * @param {Roo.menu.Menu} this
3696          * @param {Roo.EventObject} e
3697          * @param {Roo.menu.Item} menuItem The menu item that was clicked
3698          */
3699         mouseout : true,
3700         /**
3701          * @event itemclick
3702          * Fires when a menu item contained in this menu is clicked
3703          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
3704          * @param {Roo.EventObject} e
3705          */
3706         itemclick: true
3707     });
3708     this.menuitems = new Roo.util.MixedCollection(false, function(o) { return o.el.id; });
3709 };
3710
3711 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
3712     
3713    /// html : false,
3714    
3715     triggerEl : false,  // is this set by component builder? -- it should really be fetched from parent()???
3716     type: false,
3717     /**
3718      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
3719      */
3720     registerMenu : true,
3721     
3722     menuItems :false, // stores the menu items..
3723     
3724     hidden:true,
3725         
3726     parentMenu : false,
3727     
3728     stopEvent : true,
3729     
3730     isLink : false,
3731     
3732     container_method : 'getDocumentBody', // so the menu is rendered on the body and zIndex works.
3733     
3734     hideTrigger : false,
3735     
3736     align : 'tl-bl?',
3737     
3738     
3739     getChildContainer : function() {
3740         return this.el;  
3741     },
3742     
3743     getAutoCreate : function(){
3744          
3745         //if (['right'].indexOf(this.align)!==-1) {
3746         //    cfg.cn[1].cls += ' pull-right'
3747         //}
3748          
3749         var cfg = {
3750             tag : 'ul',
3751             cls : 'dropdown-menu shadow' ,
3752             style : 'z-index:1000'
3753             
3754         };
3755         
3756         if (this.type === 'submenu') {
3757             cfg.cls = 'submenu active';
3758         }
3759         if (this.type === 'treeview') {
3760             cfg.cls = 'treeview-menu';
3761         }
3762         
3763         return cfg;
3764     },
3765     initEvents : function() {
3766         
3767        // Roo.log("ADD event");
3768        // Roo.log(this.triggerEl.dom);
3769         if (this.triggerEl) {
3770             
3771             this.triggerEl.on('click', this.onTriggerClick, this);
3772             
3773             this.triggerEl.on(Roo.isTouch ? 'touchstart' : 'mouseup', this.onTriggerPress, this);
3774             
3775             if (!this.hideTrigger) {
3776                 if (this.triggerEl.hasClass('nav-item') && this.triggerEl.select('.nav-link',true).length) {
3777                     // dropdown toggle on the 'a' in BS4?
3778                     this.triggerEl.select('.nav-link',true).first().addClass('dropdown-toggle');
3779                 } else {
3780                     this.triggerEl.addClass('dropdown-toggle');
3781                 }
3782             }
3783         }
3784         
3785         if (Roo.isTouch) {
3786             this.el.on('touchstart'  , this.onTouch, this);
3787         }
3788         this.el.on('click' , this.onClick, this);
3789
3790         this.el.on("mouseover", this.onMouseOver, this);
3791         this.el.on("mouseout", this.onMouseOut, this);
3792         
3793     },
3794     
3795     findTargetItem : function(e)
3796     {
3797         var t = e.getTarget(".dropdown-menu-item", this.el,  true);
3798         if(!t){
3799             return false;
3800         }
3801         //Roo.log(t);         Roo.log(t.id);
3802         if(t && t.id){
3803             //Roo.log(this.menuitems);
3804             return this.menuitems.get(t.id);
3805             
3806             //return this.items.get(t.menuItemId);
3807         }
3808         
3809         return false;
3810     },
3811     
3812     onTouch : function(e) 
3813     {
3814         Roo.log("menu.onTouch");
3815         //e.stopEvent(); this make the user popdown broken
3816         this.onClick(e);
3817     },
3818     
3819     onClick : function(e)
3820     {
3821         Roo.log("menu.onClick");
3822         
3823         var t = this.findTargetItem(e);
3824         if(!t || t.isContainer){
3825             return;
3826         }
3827         Roo.log(e);
3828         /*
3829         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
3830             if(t == this.activeItem && t.shouldDeactivate(e)){
3831                 this.activeItem.deactivate();
3832                 delete this.activeItem;
3833                 return;
3834             }
3835             if(t.canActivate){
3836                 this.setActiveItem(t, true);
3837             }
3838             return;
3839             
3840             
3841         }
3842         */
3843        
3844         Roo.log('pass click event');
3845         
3846         t.onClick(e);
3847         
3848         this.fireEvent("click", this, t, e);
3849         
3850         var _this = this;
3851         
3852         if(!t.href.length || t.href == '#'){
3853             (function() { _this.hide(); }).defer(100);
3854         }
3855         
3856     },
3857     
3858     onMouseOver : function(e){
3859         var t  = this.findTargetItem(e);
3860         //Roo.log(t);
3861         //if(t){
3862         //    if(t.canActivate && !t.disabled){
3863         //        this.setActiveItem(t, true);
3864         //    }
3865         //}
3866         
3867         this.fireEvent("mouseover", this, e, t);
3868     },
3869     isVisible : function(){
3870         return !this.hidden;
3871     },
3872     onMouseOut : function(e){
3873         var t  = this.findTargetItem(e);
3874         
3875         //if(t ){
3876         //    if(t == this.activeItem && t.shouldDeactivate(e)){
3877         //        this.activeItem.deactivate();
3878         //        delete this.activeItem;
3879         //    }
3880         //}
3881         this.fireEvent("mouseout", this, e, t);
3882     },
3883     
3884     
3885     /**
3886      * Displays this menu relative to another element
3887      * @param {String/HTMLElement/Roo.Element} element The element to align to
3888      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
3889      * the element (defaults to this.defaultAlign)
3890      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
3891      */
3892     show : function(el, pos, parentMenu)
3893     {
3894         if (false === this.fireEvent("beforeshow", this)) {
3895             Roo.log("show canceled");
3896             return;
3897         }
3898         this.parentMenu = parentMenu;
3899         if(!this.el){
3900             this.render();
3901         }
3902         this.el.addClass('show'); // show otherwise we do not know how big we are..
3903          
3904         var xy = this.el.getAlignToXY(el, pos);
3905         
3906         // bl-tl << left align  below
3907         // tl-bl << left align 
3908         
3909         if(this.el.getWidth() + xy[0] >= Roo.lib.Dom.getViewWidth()){
3910             // if it goes to far to the right.. -> align left.
3911             xy = this.el.getAlignToXY(el, this.align.replace('/l/g', 'r'))
3912         }
3913         if(xy[0] < 0){
3914             // was left align - go right?
3915             xy = this.el.getAlignToXY(el, this.align.replace('/r/g', 'l'))
3916         }
3917         
3918         // goes down the bottom
3919         if(this.el.getHeight() + xy[1] >= Roo.lib.Dom.getViewHeight() ||
3920            xy[1]  < 0 ){
3921             var a = this.align.replace('?', '').split('-');
3922             xy = this.el.getAlignToXY(el, a[1]  + '-' + a[0] + '?')
3923             
3924         }
3925         
3926         this.showAt(  xy , parentMenu, false);
3927     },
3928      /**
3929      * Displays this menu at a specific xy position
3930      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
3931      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
3932      */
3933     showAt : function(xy, parentMenu, /* private: */_e){
3934         this.parentMenu = parentMenu;
3935         if(!this.el){
3936             this.render();
3937         }
3938         if(_e !== false){
3939             this.fireEvent("beforeshow", this);
3940             //xy = this.el.adjustForConstraints(xy);
3941         }
3942         
3943         //this.el.show();
3944         this.hideMenuItems();
3945         this.hidden = false;
3946         if (this.triggerEl) {
3947             this.triggerEl.addClass('open');
3948         }
3949         
3950         this.el.addClass('show');
3951         
3952         
3953         
3954         // reassign x when hitting right
3955         
3956         // reassign y when hitting bottom
3957         
3958         // but the list may align on trigger left or trigger top... should it be a properity?
3959         
3960         if(this.el.getStyle('top') != 'auto' && this.el.getStyle('top').slice(-1) != "%"){
3961             this.el.setXY(xy);
3962         }
3963         
3964         this.focus();
3965         this.fireEvent("show", this);
3966     },
3967     
3968     focus : function(){
3969         return;
3970         if(!this.hidden){
3971             this.doFocus.defer(50, this);
3972         }
3973     },
3974
3975     doFocus : function(){
3976         if(!this.hidden){
3977             this.focusEl.focus();
3978         }
3979     },
3980
3981     /**
3982      * Hides this menu and optionally all parent menus
3983      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
3984      */
3985     hide : function(deep)
3986     {
3987         if (false === this.fireEvent("beforehide", this)) {
3988             Roo.log("hide canceled");
3989             return;
3990         }
3991         this.hideMenuItems();
3992         if(this.el && this.isVisible()){
3993            
3994             if(this.activeItem){
3995                 this.activeItem.deactivate();
3996                 this.activeItem = null;
3997             }
3998             if (this.triggerEl) {
3999                 this.triggerEl.removeClass('open');
4000             }
4001             
4002             this.el.removeClass('show');
4003             this.hidden = true;
4004             this.fireEvent("hide", this);
4005         }
4006         if(deep === true && this.parentMenu){
4007             this.parentMenu.hide(true);
4008         }
4009     },
4010     
4011     onTriggerClick : function(e)
4012     {
4013         Roo.log('trigger click');
4014         
4015         var target = e.getTarget();
4016         
4017         Roo.log(target.nodeName.toLowerCase());
4018         
4019         if(target.nodeName.toLowerCase() === 'i'){
4020             e.preventDefault();
4021         }
4022         
4023     },
4024     
4025     onTriggerPress  : function(e)
4026     {
4027         Roo.log('trigger press');
4028         //Roo.log(e.getTarget());
4029        // Roo.log(this.triggerEl.dom);
4030        
4031         // trigger only occurs on normal menu's -- if it's a treeview or dropdown... do not hide/show..
4032         var pel = Roo.get(e.getTarget());
4033         if (pel.findParent('.dropdown-menu') || pel.findParent('.treeview-menu') ) {
4034             Roo.log('is treeview or dropdown?');
4035             return;
4036         }
4037         
4038         if(e.getTarget().nodeName.toLowerCase() !== 'i' && this.isLink){
4039             return;
4040         }
4041         
4042         if (this.isVisible()) {
4043             Roo.log('hide');
4044             this.hide();
4045         } else {
4046             Roo.log('show');
4047             
4048             this.show(this.triggerEl, this.align, false);
4049         }
4050         
4051         if(this.stopEvent || e.getTarget().nodeName.toLowerCase() === 'i'){
4052             e.stopEvent();
4053         }
4054         
4055     },
4056        
4057     
4058     hideMenuItems : function()
4059     {
4060         Roo.log("hide Menu Items");
4061         if (!this.el) { 
4062             return;
4063         }
4064         
4065         this.el.select('.open',true).each(function(aa) {
4066             
4067             aa.removeClass('open');
4068          
4069         });
4070     },
4071     addxtypeChild : function (tree, cntr) {
4072         var comp= Roo.bootstrap.menu.Menu.superclass.addxtypeChild.call(this, tree, cntr);
4073           
4074         this.menuitems.add(comp);
4075         return comp;
4076
4077     },
4078     getEl : function()
4079     {
4080         Roo.log(this.el);
4081         return this.el;
4082     },
4083     
4084     clear : function()
4085     {
4086         this.getEl().dom.innerHTML = '';
4087         this.menuitems.clear();
4088     }
4089 });
4090
4091  
4092  /**
4093  * @class Roo.bootstrap.menu.Item
4094  * @extends Roo.bootstrap.Component
4095  * @children  Roo.bootstrap.Button Roo.bootstrap.ButtonUploader Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Container
4096  * @parent Roo.bootstrap.menu.Menu
4097  * @licence LGPL
4098  * Bootstrap MenuItem class
4099  * 
4100  * @cfg {String} html the menu label
4101  * @cfg {String} href the link
4102  * @cfg {Boolean} preventDefault do not trigger A href on clicks (default false).
4103  * @cfg {Boolean} isContainer is it a container - just returns a drop down item..
4104  * @cfg {Boolean} active  used on sidebars to highlight active itesm
4105  * @cfg {String} fa favicon to show on left of menu item.
4106  * @cfg {Roo.bootsrap.Menu} menu the child menu.
4107  * 
4108  * 
4109  * @constructor
4110  * Create a new MenuItem
4111  * @param {Object} config The config object
4112  */
4113
4114
4115 Roo.bootstrap.menu.Item = function(config){
4116     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
4117     this.addEvents({
4118         // raw events
4119         /**
4120          * @event click
4121          * The raw click event for the entire grid.
4122          * @param {Roo.bootstrap.menu.Item} this
4123          * @param {Roo.EventObject} e
4124          */
4125         "click" : true
4126     });
4127 };
4128
4129 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
4130     
4131     href : false,
4132     html : false,
4133     preventDefault: false,
4134     isContainer : false,
4135     active : false,
4136     fa: false,
4137     
4138     getAutoCreate : function(){
4139         
4140         if(this.isContainer){
4141             return {
4142                 tag: 'li',
4143                 cls: 'dropdown-menu-item '
4144             };
4145         }
4146         var ctag = {
4147             tag: 'span',
4148             html: 'Link'
4149         };
4150         
4151         var anc = {
4152             tag : 'a',
4153             cls : 'dropdown-item',
4154             href : '#',
4155             cn : [  ]
4156         };
4157         
4158         if (this.fa !== false) {
4159             anc.cn.push({
4160                 tag : 'i',
4161                 cls : 'fa fa-' + this.fa
4162             });
4163         }
4164         
4165         anc.cn.push(ctag);
4166         
4167         
4168         var cfg= {
4169             tag: 'li',
4170             cls: 'dropdown-menu-item',
4171             cn: [ anc ]
4172         };
4173         if (this.parent().type == 'treeview') {
4174             cfg.cls = 'treeview-menu';
4175         }
4176         if (this.active) {
4177             cfg.cls += ' active';
4178         }
4179         
4180         
4181         
4182         anc.href = this.href || cfg.cn[0].href ;
4183         ctag.html = this.html || cfg.cn[0].html ;
4184         return cfg;
4185     },
4186     
4187     initEvents: function()
4188     {
4189         if (this.parent().type == 'treeview') {
4190             this.el.select('a').on('click', this.onClick, this);
4191         }
4192         
4193         if (this.menu) {
4194             this.menu.parentType = this.xtype;
4195             this.menu.triggerEl = this.el;
4196             this.menu = this.addxtype(Roo.apply({}, this.menu));
4197         }
4198         
4199     },
4200     onClick : function(e)
4201     {
4202         //Roo.log('item on click ');
4203         
4204         if(this.href === false || this.preventDefault){
4205             e.preventDefault();
4206         }
4207         //this.parent().hideMenuItems();
4208         
4209         this.fireEvent('click', this, e);
4210     },
4211     getEl : function()
4212     {
4213         return this.el;
4214     } 
4215 });
4216
4217  
4218
4219  
4220
4221   
4222 /**
4223  * @class Roo.bootstrap.menu.Separator
4224  * @extends Roo.bootstrap.Component
4225  * @licence LGPL
4226  * @parent Roo.bootstrap.menu.Menu
4227  * Bootstrap Separator class
4228  * 
4229  * @constructor
4230  * Create a new Separator
4231  * @param {Object} config The config object
4232  */
4233
4234
4235 Roo.bootstrap.menu.Separator = function(config){
4236     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
4237 };
4238
4239 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
4240     
4241     getAutoCreate : function(){
4242         var cfg = {
4243             tag : 'li',
4244             cls: 'dropdown-divider divider'
4245         };
4246         
4247         return cfg;
4248     }
4249    
4250 });
4251
4252  
4253
4254  
4255 /*
4256 * Licence: LGPL
4257 */
4258
4259 /**
4260  * @class Roo.bootstrap.Modal
4261  * @extends Roo.bootstrap.Component
4262  * @parent none builder
4263  * @children Roo.bootstrap.Component
4264  * Bootstrap Modal class
4265  * @cfg {String} title Title of dialog
4266  * @cfg {String} html - the body of the dialog (for simple ones) - you can also use template..
4267  * @cfg {Roo.Template} tmpl - a template with variables. to use it, add a handler in show:method  adn
4268  * @cfg {Boolean} specificTitle default false
4269  * @cfg {Roo.bootstrap.Button} buttons[] Array of buttons or standard button set..
4270  * @cfg {String} buttonPosition (left|right|center) default right (DEPRICATED) - use mr-auto on buttons to put them on the left
4271  * @cfg {Boolean} animate default true
4272  * @cfg {Boolean} allow_close default true
4273  * @cfg {Boolean} fitwindow default false
4274  * @cfg {Boolean} bodyOverflow should the body element have overflow auto added default false
4275  * @cfg {Number} width fixed width - usefull for chrome extension only really.
4276  * @cfg {Number} height fixed height - usefull for chrome extension only really.
4277  * @cfg {String} size (sm|lg|xl) default empty
4278  * @cfg {Number} max_width set the max width of modal
4279  * @cfg {Boolean} editableTitle can the title be edited
4280
4281  *
4282  *
4283  * @constructor
4284  * Create a new Modal Dialog
4285  * @param {Object} config The config object
4286  */
4287
4288 Roo.bootstrap.Modal = function(config){
4289     Roo.bootstrap.Modal.superclass.constructor.call(this, config);
4290     this.addEvents({
4291         // raw events
4292         /**
4293          * @event btnclick
4294          * The raw btnclick event for the button
4295          * @param {Roo.EventObject} e
4296          */
4297         "btnclick" : true,
4298         /**
4299          * @event resize
4300          * Fire when dialog resize
4301          * @param {Roo.bootstrap.Modal} this
4302          * @param {Roo.EventObject} e
4303          */
4304         "resize" : true,
4305         /**
4306          * @event titlechanged
4307          * Fire when the editable title has been changed
4308          * @param {Roo.bootstrap.Modal} this
4309          * @param {Roo.EventObject} value
4310          */
4311         "titlechanged" : true 
4312         
4313     });
4314     this.buttons = this.buttons || [];
4315
4316     if (this.tmpl) {
4317         this.tmpl = Roo.factory(this.tmpl);
4318     }
4319
4320 };
4321
4322 Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
4323
4324     title : 'test dialog',
4325
4326     buttons : false,
4327
4328     // set on load...
4329
4330     html: false,
4331
4332     tmp: false,
4333
4334     specificTitle: false,
4335
4336     buttonPosition: 'right',
4337
4338     allow_close : true,
4339
4340     animate : true,
4341
4342     fitwindow: false,
4343     
4344      // private
4345     dialogEl: false,
4346     bodyEl:  false,
4347     footerEl:  false,
4348     titleEl:  false,
4349     closeEl:  false,
4350
4351     size: '',
4352     
4353     max_width: 0,
4354     
4355     max_height: 0,
4356     
4357     fit_content: false,
4358     editableTitle  : false,
4359
4360     onRender : function(ct, position)
4361     {
4362         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
4363
4364         if(!this.el){
4365             var cfg = Roo.apply({},  this.getAutoCreate());
4366             cfg.id = Roo.id();
4367             //if(!cfg.name){
4368             //    cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
4369             //}
4370             //if (!cfg.name.length) {
4371             //    delete cfg.name;
4372            // }
4373             if (this.cls) {
4374                 cfg.cls += ' ' + this.cls;
4375             }
4376             if (this.style) {
4377                 cfg.style = this.style;
4378             }
4379             this.el = Roo.get(document.body).createChild(cfg, position);
4380         }
4381         //var type = this.el.dom.type;
4382
4383
4384         if(this.tabIndex !== undefined){
4385             this.el.dom.setAttribute('tabIndex', this.tabIndex);
4386         }
4387
4388         this.dialogEl = this.el.select('.modal-dialog',true).first();
4389         this.bodyEl = this.el.select('.modal-body',true).first();
4390         this.closeEl = this.el.select('.modal-header .close', true).first();
4391         this.headerEl = this.el.select('.modal-header',true).first();
4392         this.titleEl = this.el.select('.modal-title',true).first();
4393         this.footerEl = this.el.select('.modal-footer',true).first();
4394
4395         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
4396         
4397         //this.el.addClass("x-dlg-modal");
4398
4399         if (this.buttons.length) {
4400             Roo.each(this.buttons, function(bb) {
4401                 var b = Roo.apply({}, bb);
4402                 b.xns = b.xns || Roo.bootstrap;
4403                 b.xtype = b.xtype || 'Button';
4404                 if (typeof(b.listeners) == 'undefined') {
4405                     b.listeners = { click : this.onButtonClick.createDelegate(this)  };
4406                 }
4407
4408                 var btn = Roo.factory(b);
4409
4410                 btn.render(this.getButtonContainer());
4411
4412             },this);
4413         }
4414         // render the children.
4415         var nitems = [];
4416
4417         if(typeof(this.items) != 'undefined'){
4418             var items = this.items;
4419             delete this.items;
4420
4421             for(var i =0;i < items.length;i++) {
4422                 // we force children not to montor widnow resize  - as we do that for them.
4423                 items[i].monitorWindowResize = false;
4424                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
4425             }
4426         }
4427
4428         this.items = nitems;
4429
4430         // where are these used - they used to be body/close/footer
4431
4432
4433         this.initEvents();
4434         //this.el.addClass([this.fieldClass, this.cls]);
4435
4436     },
4437
4438     getAutoCreate : function()
4439     {
4440         // we will default to modal-body-overflow - might need to remove or make optional later.
4441         var bdy = {
4442                 cls : 'modal-body ' + (this.bodyOverflow ? 'overflow-auto' : ''), 
4443                 html : this.html || ''
4444         };
4445
4446         var title = {
4447             tag: 'h5',
4448             cls : 'modal-title',
4449             html : this.title
4450         };
4451
4452         if(this.specificTitle){ // WTF is this?
4453             title = this.title;
4454         }
4455
4456         var header = [];
4457         if (this.allow_close && Roo.bootstrap.version == 3) {
4458             header.push({
4459                 tag: 'button',
4460                 cls : 'close',
4461                 html : '&times'
4462             });
4463         }
4464
4465         header.push(title);
4466
4467         if (this.editableTitle) {
4468             header.push({
4469                 cls: 'form-control roo-editable-title d-none',
4470                 tag: 'input',
4471                 type: 'text'
4472             });
4473         }
4474         
4475         if (this.allow_close && Roo.bootstrap.version == 4) {
4476             header.push({
4477                 tag: 'button',
4478                 cls : 'close',
4479                 html : '&times'
4480             });
4481         }
4482         
4483         var size = '';
4484
4485         if(this.size.length){
4486             size = 'modal-' + this.size;
4487         }
4488         
4489         var footer = Roo.bootstrap.version == 3 ?
4490             {
4491                 cls : 'modal-footer',
4492                 cn : [
4493                     {
4494                         tag: 'div',
4495                         cls: 'btn-' + this.buttonPosition
4496                     }
4497                 ]
4498
4499             } :
4500             {  // BS4 uses mr-auto on left buttons....
4501                 cls : 'modal-footer'
4502             };
4503
4504             
4505
4506         
4507         
4508         var modal = {
4509             cls: "modal",
4510              cn : [
4511                 {
4512                     cls: "modal-dialog " + size,
4513                     cn : [
4514                         {
4515                             cls : "modal-content",
4516                             cn : [
4517                                 {
4518                                     cls : 'modal-header',
4519                                     cn : header
4520                                 },
4521                                 bdy,
4522                                 footer
4523                             ]
4524
4525                         }
4526                     ]
4527
4528                 }
4529             ]
4530         };
4531
4532         if(this.animate){
4533             modal.cls += ' fade';
4534         }
4535
4536         return modal;
4537
4538     },
4539     getChildContainer : function() {
4540
4541          return this.bodyEl;
4542
4543     },
4544     getButtonContainer : function() {
4545         
4546          return Roo.bootstrap.version == 4 ?
4547             this.el.select('.modal-footer',true).first()
4548             : this.el.select('.modal-footer div',true).first();
4549
4550     },
4551     
4552     closeClick : function()
4553     {
4554         this.hide();
4555     },
4556     
4557     initEvents : function()
4558     {
4559         if (this.allow_close) {
4560             this.closeEl.on('click', this.closeClick, this);
4561         }
4562         Roo.EventManager.onWindowResize(this.resize, this, true);
4563         if (this.editableTitle) {
4564             this.headerEditEl =  this.headerEl.select('.form-control',true).first();
4565             this.headerEl.on('click', function() { this.toggleHeaderInput(true) } , this);
4566             this.headerEditEl.on('keyup', function(e) {
4567                     if([  e.RETURN , e.TAB , e.ESC ].indexOf(e.keyCode) > -1) {
4568                         this.toggleHeaderInput(false)
4569                     }
4570                 }, this);
4571             this.headerEditEl.on('blur', function(e) {
4572                 this.toggleHeaderInput(false)
4573             },this);
4574         }
4575
4576     },
4577   
4578
4579     resize : function()
4580     {
4581         this.maskEl.setSize(
4582             Roo.lib.Dom.getViewWidth(true),
4583             Roo.lib.Dom.getViewHeight(true)
4584         );
4585         
4586         if (this.fitwindow) {
4587             
4588            this.dialogEl.setStyle( { 'max-width' : '100%' });
4589             this.setSize(
4590                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
4591                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
4592             );
4593             return;
4594         }
4595         
4596         if(this.max_width !== 0) {
4597             
4598             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
4599             
4600             if(this.height) {
4601                 this.setSize(w, this.height);
4602                 return;
4603             }
4604             
4605             if(this.max_height) {
4606                 this.setSize(w,Math.min(
4607                     this.max_height,
4608                     Roo.lib.Dom.getViewportHeight(true) - 60
4609                 ));
4610                 
4611                 return;
4612             }
4613             
4614             if(!this.fit_content) {
4615                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
4616                 return;
4617             }
4618             
4619             this.setSize(w, Math.min(
4620                 60 +
4621                 this.headerEl.getHeight() + 
4622                 this.footerEl.getHeight() + 
4623                 this.getChildHeight(this.bodyEl.dom.childNodes),
4624                 Roo.lib.Dom.getViewportHeight(true) - 60)
4625             );
4626         }
4627         
4628     },
4629
4630     setSize : function(w,h)
4631     {
4632         if (!w && !h) {
4633             return;
4634         }
4635         
4636         this.resizeTo(w,h);
4637         // any layout/border etc.. resize..
4638         (function () {
4639             this.items.forEach( function(e) {
4640                 e.layout ? e.layout() : false;
4641
4642             });
4643         }).defer(100,this);
4644         
4645     },
4646
4647     show : function() {
4648
4649         if (!this.rendered) {
4650             this.render();
4651         }
4652         this.toggleHeaderInput(false);
4653         //this.el.setStyle('display', 'block');
4654         this.el.removeClass('hideing');
4655         this.el.dom.style.display='block';
4656         
4657         Roo.get(document.body).addClass('modal-open');
4658  
4659         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
4660             
4661             (function(){
4662                 this.el.addClass('show');
4663                 this.el.addClass('in');
4664             }).defer(50, this);
4665         }else{
4666             this.el.addClass('show');
4667             this.el.addClass('in');
4668         }
4669
4670         // not sure how we can show data in here..
4671         //if (this.tmpl) {
4672         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
4673         //}
4674
4675         Roo.get(document.body).addClass("x-body-masked");
4676         
4677         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
4678         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
4679         this.maskEl.dom.style.display = 'block';
4680         this.maskEl.addClass('show');
4681         
4682         
4683         this.resize();
4684         
4685         this.fireEvent('show', this);
4686
4687         // set zindex here - otherwise it appears to be ignored...
4688         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
4689         
4690         
4691         // this is for children that are... layout.Border 
4692         (function () {
4693             this.items.forEach( function(e) {
4694                 e.layout ? e.layout() : false;
4695
4696             });
4697         }).defer(100,this);
4698
4699     },
4700     hide : function()
4701     {
4702         if(this.fireEvent("beforehide", this) !== false){
4703             
4704             this.maskEl.removeClass('show');
4705             
4706             this.maskEl.dom.style.display = '';
4707             Roo.get(document.body).removeClass("x-body-masked");
4708             this.el.removeClass('in');
4709             this.el.select('.modal-dialog', true).first().setStyle('transform','');
4710
4711             if(this.animate){ // why
4712                 this.el.addClass('hideing');
4713                 this.el.removeClass('show');
4714                 (function(){
4715                     if (!this.el.hasClass('hideing')) {
4716                         return; // it's been shown again...
4717                     }
4718                     
4719                     this.el.dom.style.display='';
4720
4721                     Roo.get(document.body).removeClass('modal-open');
4722                     this.el.removeClass('hideing');
4723                 }).defer(150,this);
4724                 
4725             }else{
4726                 this.el.removeClass('show');
4727                 this.el.dom.style.display='';
4728                 Roo.get(document.body).removeClass('modal-open');
4729
4730             }
4731             this.fireEvent('hide', this);
4732         }
4733     },
4734     isVisible : function()
4735     {
4736         
4737         return this.el.hasClass('show') && !this.el.hasClass('hideing');
4738         
4739     },
4740
4741     addButton : function(str, cb)
4742     {
4743
4744
4745         var b = Roo.apply({}, { html : str } );
4746         b.xns = b.xns || Roo.bootstrap;
4747         b.xtype = b.xtype || 'Button';
4748         if (typeof(b.listeners) == 'undefined') {
4749             b.listeners = { click : cb.createDelegate(this)  };
4750         }
4751
4752         var btn = Roo.factory(b);
4753
4754         btn.render(this.getButtonContainer());
4755
4756         return btn;
4757
4758     },
4759
4760     setDefaultButton : function(btn)
4761     {
4762         //this.el.select('.modal-footer').()
4763     },
4764
4765     resizeTo: function(w,h)
4766     {
4767         this.dialogEl.setWidth(w);
4768         
4769         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 60; // dialog margin-bottom: 30  
4770
4771         this.bodyEl.setHeight(h - diff);
4772         
4773         this.fireEvent('resize', this);
4774     },
4775     
4776     setContentSize  : function(w, h)
4777     {
4778
4779     },
4780     onButtonClick: function(btn,e)
4781     {
4782         //Roo.log([a,b,c]);
4783         this.fireEvent('btnclick', btn.name, e);
4784     },
4785      /**
4786      * Set the title of the Dialog
4787      * @param {String} str new Title
4788      */
4789     setTitle: function(str) {
4790         this.titleEl.dom.innerHTML = str;
4791         this.title = str;
4792     },
4793     /**
4794      * Set the body of the Dialog
4795      * @param {String} str new Title
4796      */
4797     setBody: function(str) {
4798         this.bodyEl.dom.innerHTML = str;
4799     },
4800     /**
4801      * Set the body of the Dialog using the template
4802      * @param {Obj} data - apply this data to the template and replace the body contents.
4803      */
4804     applyBody: function(obj)
4805     {
4806         if (!this.tmpl) {
4807             Roo.log("Error - using apply Body without a template");
4808             //code
4809         }
4810         this.tmpl.overwrite(this.bodyEl, obj);
4811     },
4812     
4813     getChildHeight : function(child_nodes)
4814     {
4815         if(
4816             !child_nodes ||
4817             child_nodes.length == 0
4818         ) {
4819             return 0;
4820         }
4821         
4822         var child_height = 0;
4823         
4824         for(var i = 0; i < child_nodes.length; i++) {
4825             
4826             /*
4827             * for modal with tabs...
4828             if(child_nodes[i].classList.contains('roo-layout-panel')) {
4829                 
4830                 var layout_childs = child_nodes[i].childNodes;
4831                 
4832                 for(var j = 0; j < layout_childs.length; j++) {
4833                     
4834                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
4835                         
4836                         var layout_body_childs = layout_childs[j].childNodes;
4837                         
4838                         for(var k = 0; k < layout_body_childs.length; k++) {
4839                             
4840                             if(layout_body_childs[k].classList.contains('navbar')) {
4841                                 child_height += layout_body_childs[k].offsetHeight;
4842                                 continue;
4843                             }
4844                             
4845                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
4846                                 
4847                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
4848                                 
4849                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
4850                                     
4851                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
4852                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
4853                                         continue;
4854                                     }
4855                                     
4856                                 }
4857                                 
4858                             }
4859                             
4860                         }
4861                     }
4862                 }
4863                 continue;
4864             }
4865             */
4866             
4867             child_height += child_nodes[i].offsetHeight;
4868             // Roo.log(child_nodes[i].offsetHeight);
4869         }
4870         
4871         return child_height;
4872     },
4873     toggleHeaderInput : function(is_edit)
4874     {
4875         if (!this.editableTitle) {
4876             return; // not editable.
4877         }
4878         if (is_edit && this.is_header_editing) {
4879             return; // already editing..
4880         }
4881         if (is_edit) {
4882     
4883             this.headerEditEl.dom.value = this.title;
4884             this.headerEditEl.removeClass('d-none');
4885             this.headerEditEl.dom.focus();
4886             this.titleEl.addClass('d-none');
4887             
4888             this.is_header_editing = true;
4889             return
4890         }
4891         // flip back to not editing.
4892         this.title = this.headerEditEl.dom.value;
4893         this.headerEditEl.addClass('d-none');
4894         this.titleEl.removeClass('d-none');
4895         this.titleEl.dom.innerHTML = String.format('{0}', this.title);
4896         this.is_header_editing = false;
4897         this.fireEvent('titlechanged', this, this.title);
4898     
4899             
4900         
4901     }
4902
4903 });
4904
4905
4906 Roo.apply(Roo.bootstrap.Modal,  {
4907     /**
4908          * Button config that displays a single OK button
4909          * @type Object
4910          */
4911         OK :  [{
4912             name : 'ok',
4913             weight : 'primary',
4914             html : 'OK'
4915         }],
4916         /**
4917          * Button config that displays Yes and No buttons
4918          * @type Object
4919          */
4920         YESNO : [
4921             {
4922                 name  : 'no',
4923                 html : 'No'
4924             },
4925             {
4926                 name  :'yes',
4927                 weight : 'primary',
4928                 html : 'Yes'
4929             }
4930         ],
4931
4932         /**
4933          * Button config that displays OK and Cancel buttons
4934          * @type Object
4935          */
4936         OKCANCEL : [
4937             {
4938                name : 'cancel',
4939                 html : 'Cancel'
4940             },
4941             {
4942                 name : 'ok',
4943                 weight : 'primary',
4944                 html : 'OK'
4945             }
4946         ],
4947         /**
4948          * Button config that displays Yes, No and Cancel buttons
4949          * @type Object
4950          */
4951         YESNOCANCEL : [
4952             {
4953                 name : 'yes',
4954                 weight : 'primary',
4955                 html : 'Yes'
4956             },
4957             {
4958                 name : 'no',
4959                 html : 'No'
4960             },
4961             {
4962                 name : 'cancel',
4963                 html : 'Cancel'
4964             }
4965         ],
4966         
4967         zIndex : 10001
4968 });
4969
4970 /*
4971  * - LGPL
4972  *
4973  * messagebox - can be used as a replace
4974  * 
4975  */
4976 /**
4977  * @class Roo.MessageBox
4978  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
4979  * Example usage:
4980  *<pre><code>
4981 // Basic alert:
4982 Roo.Msg.alert('Status', 'Changes saved successfully.');
4983
4984 // Prompt for user data:
4985 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
4986     if (btn == 'ok'){
4987         // process text value...
4988     }
4989 });
4990
4991 // Show a dialog using config options:
4992 Roo.Msg.show({
4993    title:'Save Changes?',
4994    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
4995    buttons: Roo.Msg.YESNOCANCEL,
4996    fn: processResult,
4997    animEl: 'elId'
4998 });
4999 </code></pre>
5000  * @static
5001  */
5002 Roo.bootstrap.MessageBox = function(){
5003     var dlg, opt, mask, waitTimer;
5004     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
5005     var buttons, activeTextEl, bwidth;
5006
5007     
5008     // private
5009     var handleButton = function(button){
5010         dlg.hide();
5011         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
5012     };
5013
5014     // private
5015     var handleHide = function(){
5016         if(opt && opt.cls){
5017             dlg.el.removeClass(opt.cls);
5018         }
5019         //if(waitTimer){
5020         //    Roo.TaskMgr.stop(waitTimer);
5021         //    waitTimer = null;
5022         //}
5023     };
5024
5025     // private
5026     var updateButtons = function(b){
5027         var width = 0;
5028         if(!b){
5029             buttons["ok"].hide();
5030             buttons["cancel"].hide();
5031             buttons["yes"].hide();
5032             buttons["no"].hide();
5033             dlg.footerEl.hide();
5034             
5035             return width;
5036         }
5037         dlg.footerEl.show();
5038         for(var k in buttons){
5039             if(typeof buttons[k] != "function"){
5040                 if(b[k]){
5041                     buttons[k].show();
5042                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.bootstrap.MessageBox.buttonText[k]);
5043                     width += buttons[k].el.getWidth()+15;
5044                 }else{
5045                     buttons[k].hide();
5046                 }
5047             }
5048         }
5049         return width;
5050     };
5051
5052     // private
5053     var handleEsc = function(d, k, e){
5054         if(opt && opt.closable !== false){
5055             dlg.hide();
5056         }
5057         if(e){
5058             e.stopEvent();
5059         }
5060     };
5061
5062     return {
5063         /**
5064          * Returns a reference to the underlying {@link Roo.BasicDialog} element
5065          * @return {Roo.BasicDialog} The BasicDialog element
5066          */
5067         getDialog : function(){
5068            if(!dlg){
5069                 dlg = new Roo.bootstrap.Modal( {
5070                     //draggable: true,
5071                     //resizable:false,
5072                     //constraintoviewport:false,
5073                     //fixedcenter:true,
5074                     //collapsible : false,
5075                     //shim:true,
5076                     //modal: true,
5077                 //    width: 'auto',
5078                   //  height:100,
5079                     //buttonAlign:"center",
5080                     closeClick : function(){
5081                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
5082                             handleButton("no");
5083                         }else{
5084                             handleButton("cancel");
5085                         }
5086                     }
5087                 });
5088                 dlg.render();
5089                 dlg.on("hide", handleHide);
5090                 mask = dlg.mask;
5091                 //dlg.addKeyListener(27, handleEsc);
5092                 buttons = {};
5093                 this.buttons = buttons;
5094                 var bt = this.buttonText;
5095                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
5096                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
5097                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
5098                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
5099                 //Roo.log(buttons);
5100                 bodyEl = dlg.bodyEl.createChild({
5101
5102                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" />' +
5103                         '<textarea class="roo-mb-textarea"></textarea>' +
5104                         '<div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
5105                 });
5106                 msgEl = bodyEl.dom.firstChild;
5107                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
5108                 textboxEl.enableDisplayMode();
5109                 textboxEl.addKeyListener([10,13], function(){
5110                     if(dlg.isVisible() && opt && opt.buttons){
5111                         if(opt.buttons.ok){
5112                             handleButton("ok");
5113                         }else if(opt.buttons.yes){
5114                             handleButton("yes");
5115                         }
5116                     }
5117                 });
5118                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
5119                 textareaEl.enableDisplayMode();
5120                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
5121                 progressEl.enableDisplayMode();
5122                 
5123                 // This is supposed to be the progessElement.. but I think it's controlling the height of everything..
5124                 var pf = progressEl.dom.firstChild;
5125                 if (pf) {
5126                     pp = Roo.get(pf.firstChild);
5127                     pp.setHeight(pf.offsetHeight);
5128                 }
5129                 
5130             }
5131             return dlg;
5132         },
5133
5134         /**
5135          * Updates the message box body text
5136          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
5137          * the XHTML-compliant non-breaking space character '&amp;#160;')
5138          * @return {Roo.MessageBox} This message box
5139          */
5140         updateText : function(text)
5141         {
5142             if(!dlg.isVisible() && !opt.width){
5143                 dlg.dialogEl.setStyle({ 'max-width' : this.maxWidth});
5144                 // dlg.resizeTo(this.maxWidth, 100); // forcing the height breaks long alerts()
5145             }
5146             msgEl.innerHTML = text || '&#160;';
5147       
5148             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
5149             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
5150             var w = Math.max(
5151                     Math.min(opt.width || cw , this.maxWidth), 
5152                     Math.max(opt.minWidth || this.minWidth, bwidth)
5153             );
5154             if(opt.prompt){
5155                 activeTextEl.setWidth(w);
5156             }
5157             if(dlg.isVisible()){
5158                 dlg.fixedcenter = false;
5159             }
5160             // to big, make it scroll. = But as usual stupid IE does not support
5161             // !important..
5162             
5163             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
5164                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
5165                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
5166             } else {
5167                 bodyEl.dom.style.height = '';
5168                 bodyEl.dom.style.overflowY = '';
5169             }
5170             if (cw > w) {
5171                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
5172             } else {
5173                 bodyEl.dom.style.overflowX = '';
5174             }
5175             
5176             dlg.setContentSize(w, bodyEl.getHeight());
5177             if(dlg.isVisible()){
5178                 dlg.fixedcenter = true;
5179             }
5180             return this;
5181         },
5182
5183         /**
5184          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
5185          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
5186          * @param {Number} value Any number between 0 and 1 (e.g., .5)
5187          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
5188          * @return {Roo.MessageBox} This message box
5189          */
5190         updateProgress : function(value, text){
5191             if(text){
5192                 this.updateText(text);
5193             }
5194             
5195             if (pp) { // weird bug on my firefox - for some reason this is not defined
5196                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
5197                 pp.setHeight(Math.floor(progressEl.dom.firstChild.offsetHeight));
5198             }
5199             return this;
5200         },        
5201
5202         /**
5203          * Returns true if the message box is currently displayed
5204          * @return {Boolean} True if the message box is visible, else false
5205          */
5206         isVisible : function(){
5207             return dlg && dlg.isVisible();  
5208         },
5209
5210         /**
5211          * Hides the message box if it is displayed
5212          */
5213         hide : function(){
5214             if(this.isVisible()){
5215                 dlg.hide();
5216             }  
5217         },
5218
5219         /**
5220          * Displays a new message box, or reinitializes an existing message box, based on the config options
5221          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
5222          * The following config object properties are supported:
5223          * <pre>
5224 Property    Type             Description
5225 ----------  ---------------  ------------------------------------------------------------------------------------
5226 animEl            String/Element   An id or Element from which the message box should animate as it opens and
5227                                    closes (defaults to undefined)
5228 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
5229                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
5230 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
5231                                    progress and wait dialogs will ignore this property and always hide the
5232                                    close button as they can only be closed programmatically.
5233 cls               String           A custom CSS class to apply to the message box element
5234 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
5235                                    displayed (defaults to 75)
5236 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
5237                                    function will be btn (the name of the button that was clicked, if applicable,
5238                                    e.g. "ok"), and text (the value of the active text field, if applicable).
5239                                    Progress and wait dialogs will ignore this option since they do not respond to
5240                                    user actions and can only be closed programmatically, so any required function
5241                                    should be called by the same code after it closes the dialog.
5242 icon              String           A CSS class that provides a background image to be used as an icon for
5243                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
5244 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
5245 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
5246 modal             Boolean          False to allow user interaction with the page while the message box is
5247                                    displayed (defaults to true)
5248 msg               String           A string that will replace the existing message box body text (defaults
5249                                    to the XHTML-compliant non-breaking space character '&#160;')
5250 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
5251 progress          Boolean          True to display a progress bar (defaults to false)
5252 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
5253 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
5254 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
5255 title             String           The title text
5256 value             String           The string value to set into the active textbox element if displayed
5257 wait              Boolean          True to display a progress bar (defaults to false)
5258 width             Number           The width of the dialog in pixels
5259 </pre>
5260          *
5261          * Example usage:
5262          * <pre><code>
5263 Roo.Msg.show({
5264    title: 'Address',
5265    msg: 'Please enter your address:',
5266    width: 300,
5267    buttons: Roo.MessageBox.OKCANCEL,
5268    multiline: true,
5269    fn: saveAddress,
5270    animEl: 'addAddressBtn'
5271 });
5272 </code></pre>
5273          * @param {Object} config Configuration options
5274          * @return {Roo.MessageBox} This message box
5275          */
5276         show : function(options)
5277         {
5278             
5279             // this causes nightmares if you show one dialog after another
5280             // especially on callbacks..
5281              
5282             if(this.isVisible()){
5283                 
5284                 this.hide();
5285                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
5286                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
5287                 Roo.log("New Dialog Message:" +  options.msg )
5288                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
5289                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
5290                 
5291             }
5292             var d = this.getDialog();
5293             opt = options;
5294             d.setTitle(opt.title || "&#160;");
5295             d.closeEl.setDisplayed(opt.closable !== false);
5296             activeTextEl = textboxEl;
5297             opt.prompt = opt.prompt || (opt.multiline ? true : false);
5298             if(opt.prompt){
5299                 if(opt.multiline){
5300                     textboxEl.hide();
5301                     textareaEl.show();
5302                     textareaEl.setHeight(typeof opt.multiline == "number" ?
5303                         opt.multiline : this.defaultTextHeight);
5304                     activeTextEl = textareaEl;
5305                 }else{
5306                     textboxEl.show();
5307                     textareaEl.hide();
5308                 }
5309             }else{
5310                 textboxEl.hide();
5311                 textareaEl.hide();
5312             }
5313             progressEl.setDisplayed(opt.progress === true);
5314             if (opt.progress) {
5315                 d.animate = false; // do not animate progress, as it may not have finished animating before we close it..
5316             }
5317             this.updateProgress(0);
5318             activeTextEl.dom.value = opt.value || "";
5319             if(opt.prompt){
5320                 dlg.setDefaultButton(activeTextEl);
5321             }else{
5322                 var bs = opt.buttons;
5323                 var db = null;
5324                 if(bs && bs.ok){
5325                     db = buttons["ok"];
5326                 }else if(bs && bs.yes){
5327                     db = buttons["yes"];
5328                 }
5329                 dlg.setDefaultButton(db);
5330             }
5331             bwidth = updateButtons(opt.buttons);
5332             this.updateText(opt.msg);
5333             if(opt.cls){
5334                 d.el.addClass(opt.cls);
5335             }
5336             d.proxyDrag = opt.proxyDrag === true;
5337             d.modal = opt.modal !== false;
5338             d.mask = opt.modal !== false ? mask : false;
5339             if(!d.isVisible()){
5340                 // force it to the end of the z-index stack so it gets a cursor in FF
5341                 document.body.appendChild(dlg.el.dom);
5342                 d.animateTarget = null;
5343                 d.show(options.animEl);
5344             }
5345             return this;
5346         },
5347
5348         /**
5349          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
5350          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
5351          * and closing the message box when the process is complete.
5352          * @param {String} title The title bar text
5353          * @param {String} msg The message box body text
5354          * @return {Roo.MessageBox} This message box
5355          */
5356         progress : function(title, msg){
5357             this.show({
5358                 title : title,
5359                 msg : msg,
5360                 buttons: false,
5361                 progress:true,
5362                 closable:false,
5363                 minWidth: this.minProgressWidth,
5364                 modal : true
5365             });
5366             return this;
5367         },
5368
5369         /**
5370          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
5371          * If a callback function is passed it will be called after the user clicks the button, and the
5372          * id of the button that was clicked will be passed as the only parameter to the callback
5373          * (could also be the top-right close button).
5374          * @param {String} title The title bar text
5375          * @param {String} msg The message box body text
5376          * @param {Function} fn (optional) The callback function invoked after the message box is closed
5377          * @param {Object} scope (optional) The scope of the callback function
5378          * @return {Roo.MessageBox} This message box
5379          */
5380         alert : function(title, msg, fn, scope)
5381         {
5382             this.show({
5383                 title : title,
5384                 msg : msg,
5385                 buttons: this.OK,
5386                 fn: fn,
5387                 closable : false,
5388                 scope : scope,
5389                 modal : true
5390             });
5391             return this;
5392         },
5393
5394         /**
5395          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
5396          * interaction while waiting for a long-running process to complete that does not have defined intervals.
5397          * You are responsible for closing the message box when the process is complete.
5398          * @param {String} msg The message box body text
5399          * @param {String} title (optional) The title bar text
5400          * @return {Roo.MessageBox} This message box
5401          */
5402         wait : function(msg, title){
5403             this.show({
5404                 title : title,
5405                 msg : msg,
5406                 buttons: false,
5407                 closable:false,
5408                 progress:true,
5409                 modal:true,
5410                 width:300,
5411                 wait:true
5412             });
5413             waitTimer = Roo.TaskMgr.start({
5414                 run: function(i){
5415                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
5416                 },
5417                 interval: 1000
5418             });
5419             return this;
5420         },
5421
5422         /**
5423          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
5424          * If a callback function is passed it will be called after the user clicks either button, and the id of the
5425          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
5426          * @param {String} title The title bar text
5427          * @param {String} msg The message box body text
5428          * @param {Function} fn (optional) The callback function invoked after the message box is closed
5429          * @param {Object} scope (optional) The scope of the callback function
5430          * @return {Roo.MessageBox} This message box
5431          */
5432         confirm : function(title, msg, fn, scope){
5433             this.show({
5434                 title : title,
5435                 msg : msg,
5436                 buttons: this.YESNO,
5437                 fn: fn,
5438                 scope : scope,
5439                 modal : true
5440             });
5441             return this;
5442         },
5443
5444         /**
5445          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
5446          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
5447          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
5448          * (could also be the top-right close button) and the text that was entered will be passed as the two
5449          * parameters to the callback.
5450          * @param {String} title The title bar text
5451          * @param {String} msg The message box body text
5452          * @param {Function} fn (optional) The callback function invoked after the message box is closed
5453          * @param {Object} scope (optional) The scope of the callback function
5454          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
5455          * property, or the height in pixels to create the textbox (defaults to false / single-line)
5456          * @return {Roo.MessageBox} This message box
5457          */
5458         prompt : function(title, msg, fn, scope, multiline){
5459             this.show({
5460                 title : title,
5461                 msg : msg,
5462                 buttons: this.OKCANCEL,
5463                 fn: fn,
5464                 minWidth:250,
5465                 scope : scope,
5466                 prompt:true,
5467                 multiline: multiline,
5468                 modal : true
5469             });
5470             return this;
5471         },
5472
5473         /**
5474          * Button config that displays a single OK button
5475          * @type Object
5476          */
5477         OK : {ok:true},
5478         /**
5479          * Button config that displays Yes and No buttons
5480          * @type Object
5481          */
5482         YESNO : {yes:true, no:true},
5483         /**
5484          * Button config that displays OK and Cancel buttons
5485          * @type Object
5486          */
5487         OKCANCEL : {ok:true, cancel:true},
5488         /**
5489          * Button config that displays Yes, No and Cancel buttons
5490          * @type Object
5491          */
5492         YESNOCANCEL : {yes:true, no:true, cancel:true},
5493
5494         /**
5495          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
5496          * @type Number
5497          */
5498         defaultTextHeight : 75,
5499         /**
5500          * The maximum width in pixels of the message box (defaults to 600)
5501          * @type Number
5502          */
5503         maxWidth : 600,
5504         /**
5505          * The minimum width in pixels of the message box (defaults to 100)
5506          * @type Number
5507          */
5508         minWidth : 100,
5509         /**
5510          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
5511          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
5512          * @type Number
5513          */
5514         minProgressWidth : 250,
5515         /**
5516          * An object containing the default button text strings that can be overriden for localized language support.
5517          * Supported properties are: ok, cancel, yes and no.
5518          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
5519          * @type Object
5520          */
5521         buttonText : {
5522             ok : "OK",
5523             cancel : "Cancel",
5524             yes : "Yes",
5525             no : "No"
5526         }
5527     };
5528 }();
5529
5530 /**
5531  * Shorthand for {@link Roo.MessageBox}
5532  */
5533 Roo.MessageBox = Roo.MessageBox || Roo.bootstrap.MessageBox;
5534 Roo.Msg = Roo.Msg || Roo.MessageBox;
5535 /*
5536  * - LGPL
5537  *
5538  * navbar
5539  * 
5540  */
5541
5542 /**
5543  * @class Roo.bootstrap.nav.Bar
5544  * @extends Roo.bootstrap.Component
5545  * @abstract
5546  * Bootstrap Navbar class
5547
5548  * @constructor
5549  * Create a new Navbar
5550  * @param {Object} config The config object
5551  */
5552
5553
5554 Roo.bootstrap.nav.Bar = function(config){
5555     Roo.bootstrap.nav.Bar.superclass.constructor.call(this, config);
5556     this.addEvents({
5557         // raw events
5558         /**
5559          * @event beforetoggle
5560          * Fire before toggle the menu
5561          * @param {Roo.EventObject} e
5562          */
5563         "beforetoggle" : true
5564     });
5565 };
5566
5567 Roo.extend(Roo.bootstrap.nav.Bar, Roo.bootstrap.Component,  {
5568     
5569     
5570    
5571     // private
5572     navItems : false,
5573     loadMask : false,
5574     
5575     
5576     getAutoCreate : function(){
5577         
5578         
5579         throw { message : "nav bar is now a abstract base class - use NavSimplebar / NavHeaderbar / NavSidebar etc..."};
5580         
5581     },
5582     
5583     initEvents :function ()
5584     {
5585         //Roo.log(this.el.select('.navbar-toggle',true));
5586         this.el.select('.navbar-toggle',true).on('click', this.onToggle , this);
5587         
5588         var mark = {
5589             tag: "div",
5590             cls:"x-dlg-mask"
5591         };
5592         
5593         this.maskEl = Roo.DomHelper.append(this.el, mark, true);
5594         
5595         var size = this.el.getSize();
5596         this.maskEl.setSize(size.width, size.height);
5597         this.maskEl.enableDisplayMode("block");
5598         this.maskEl.hide();
5599         
5600         if(this.loadMask){
5601             this.maskEl.show();
5602         }
5603     },
5604     
5605     
5606     getChildContainer : function()
5607     {
5608         if (this.el && this.el.select('.collapse').getCount()) {
5609             return this.el.select('.collapse',true).first();
5610         }
5611         
5612         return this.el;
5613     },
5614     
5615     mask : function()
5616     {
5617         this.maskEl.show();
5618     },
5619     
5620     unmask : function()
5621     {
5622         this.maskEl.hide();
5623     },
5624     onToggle : function()
5625     {
5626         
5627         if(this.fireEvent('beforetoggle', this) === false){
5628             return;
5629         }
5630         var ce = this.el.select('.navbar-collapse',true).first();
5631       
5632         if (!ce.hasClass('show')) {
5633            this.expand();
5634         } else {
5635             this.collapse();
5636         }
5637         
5638         
5639     
5640     },
5641     /**
5642      * Expand the navbar pulldown 
5643      */
5644     expand : function ()
5645     {
5646        
5647         var ce = this.el.select('.navbar-collapse',true).first();
5648         if (ce.hasClass('collapsing')) {
5649             return;
5650         }
5651         ce.dom.style.height = '';
5652                // show it...
5653         ce.addClass('in'); // old...
5654         ce.removeClass('collapse');
5655         ce.addClass('show');
5656         var h = ce.getHeight();
5657         Roo.log(h);
5658         ce.removeClass('show');
5659         // at this point we should be able to see it..
5660         ce.addClass('collapsing');
5661         
5662         ce.setHeight(0); // resize it ...
5663         ce.on('transitionend', function() {
5664             //Roo.log('done transition');
5665             ce.removeClass('collapsing');
5666             ce.addClass('show');
5667             ce.removeClass('collapse');
5668
5669             ce.dom.style.height = '';
5670         }, this, { single: true} );
5671         ce.setHeight(h);
5672         ce.dom.scrollTop = 0;
5673     },
5674     /**
5675      * Collapse the navbar pulldown 
5676      */
5677     collapse : function()
5678     {
5679          var ce = this.el.select('.navbar-collapse',true).first();
5680        
5681         if (ce.hasClass('collapsing') || ce.hasClass('collapse') ) {
5682             // it's collapsed or collapsing..
5683             return;
5684         }
5685         ce.removeClass('in'); // old...
5686         ce.setHeight(ce.getHeight());
5687         ce.removeClass('show');
5688         ce.addClass('collapsing');
5689         
5690         ce.on('transitionend', function() {
5691             ce.dom.style.height = '';
5692             ce.removeClass('collapsing');
5693             ce.addClass('collapse');
5694         }, this, { single: true} );
5695         ce.setHeight(0);
5696     }
5697     
5698     
5699     
5700 });
5701
5702
5703
5704  
5705
5706  /*
5707  * - LGPL
5708  *
5709  * navbar
5710  * 
5711  */
5712
5713 /**
5714  * @class Roo.bootstrap.nav.Simplebar
5715  * @extends Roo.bootstrap.nav.Bar
5716  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container Roo.bootstrap.form.Form Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Link
5717  * Bootstrap Sidebar class
5718  *
5719  * @cfg {Boolean} inverse is inverted color
5720  * 
5721  * @cfg {String} type (nav | pills | tabs)
5722  * @cfg {Boolean} arrangement stacked | justified
5723  * @cfg {String} align (left | right) alignment
5724  * 
5725  * @cfg {Boolean} main (true|false) main nav bar? default false
5726  * @cfg {Boolean} loadMask (true|false) loadMask on the bar
5727  * 
5728  * @cfg {String} tag (header|footer|nav|div) default is nav 
5729
5730  * @cfg {String} weight (light|primary|secondary|success|danger|warning|info|dark|white) default is light.
5731  * 
5732  * 
5733  * @constructor
5734  * Create a new Sidebar
5735  * @param {Object} config The config object
5736  */
5737
5738
5739 Roo.bootstrap.nav.Simplebar = function(config){
5740     Roo.bootstrap.nav.Simplebar.superclass.constructor.call(this, config);
5741 };
5742
5743 Roo.extend(Roo.bootstrap.nav.Simplebar, Roo.bootstrap.nav.Bar,  {
5744     
5745     inverse: false,
5746     
5747     type: false,
5748     arrangement: '',
5749     align : false,
5750     
5751     weight : 'light',
5752     
5753     main : false,
5754     
5755     
5756     tag : false,
5757     
5758     
5759     getAutoCreate : function(){
5760         
5761         
5762         var cfg = {
5763             tag : this.tag || 'div',
5764             cls : 'navbar roo-navbar-simple' //navbar-expand-lg ??
5765         };
5766         if (['light','white'].indexOf(this.weight) > -1) {
5767             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
5768         }
5769         cfg.cls += ' bg-' + this.weight;
5770         
5771         if (this.inverse) {
5772             cfg.cls += ' navbar-inverse';
5773             
5774         }
5775         
5776         // i'm not actually sure these are really used - normally we add a navGroup to a navbar
5777         
5778         if (Roo.bootstrap.version == 4 && this.xtype == 'NavSimplebar') {
5779             return cfg;
5780         }
5781         
5782         
5783     
5784         
5785         cfg.cn = [
5786             {
5787                 cls: 'nav nav-' + this.xtype,
5788                 tag : 'ul'
5789             }
5790         ];
5791         
5792          
5793         this.type = this.type || 'nav';
5794         if (['tabs','pills'].indexOf(this.type) != -1) {
5795             cfg.cn[0].cls += ' nav-' + this.type
5796         
5797         
5798         } else {
5799             if (this.type!=='nav') {
5800                 Roo.log('nav type must be nav/tabs/pills')
5801             }
5802             cfg.cn[0].cls += ' navbar-nav'
5803         }
5804         
5805         
5806         
5807         
5808         if (['stacked','justified'].indexOf(this.arrangement) != -1) {
5809             cfg.cn[0].cls += ' nav-' + this.arrangement;
5810         }
5811         
5812         
5813         if (this.align === 'right') {
5814             cfg.cn[0].cls += ' navbar-right';
5815         }
5816         
5817         
5818         
5819         
5820         return cfg;
5821     
5822         
5823     }
5824     
5825     
5826     
5827 });
5828
5829
5830
5831  
5832
5833  
5834        /*
5835  * - LGPL
5836  *
5837  * navbar
5838  * navbar-fixed-top
5839  * navbar-expand-md  fixed-top 
5840  */
5841
5842 /**
5843  * @class Roo.bootstrap.nav.Headerbar
5844  * @extends Roo.bootstrap.nav.Simplebar
5845  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container Roo.bootstrap.form.Form Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Link
5846  * Bootstrap Sidebar class
5847  *
5848  * @cfg {String} brand what is brand
5849  * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
5850  * @cfg {String} brand_href href of the brand
5851  * @cfg {Boolean} srButton generate the (screen reader / mobile) sr-only button   default true
5852  * @cfg {Boolean} autohide a top nav bar header that hides on scroll.
5853  * @cfg {Boolean} desktopCenter should the header be centered on desktop using a container class
5854  * @cfg {Roo.bootstrap.Row} mobilerow - a row to display on mobile only..
5855  * 
5856  * @constructor
5857  * Create a new Sidebar
5858  * @param {Object} config The config object
5859  */
5860
5861
5862 Roo.bootstrap.nav.Headerbar = function(config){
5863     Roo.bootstrap.nav.Headerbar.superclass.constructor.call(this, config);
5864       
5865 };
5866
5867 Roo.extend(Roo.bootstrap.nav.Headerbar, Roo.bootstrap.nav.Simplebar,  {
5868     
5869     position: '',
5870     brand: '',
5871     brand_href: false,
5872     srButton : true,
5873     autohide : false,
5874     desktopCenter : false,
5875    
5876     
5877     getAutoCreate : function(){
5878         
5879         var   cfg = {
5880             tag: this.nav || 'nav',
5881             cls: 'navbar navbar-expand-md',
5882             role: 'navigation',
5883             cn: []
5884         };
5885         
5886         var cn = cfg.cn;
5887         if (this.desktopCenter) {
5888             cn.push({cls : 'container', cn : []});
5889             cn = cn[0].cn;
5890         }
5891         
5892         if(this.srButton){
5893             var btn = {
5894                 tag: 'button',
5895                 type: 'button',
5896                 cls: 'navbar-toggle navbar-toggler',
5897                 'data-toggle': 'collapse',
5898                 cn: [
5899                     {
5900                         tag: 'span',
5901                         cls: 'sr-only',
5902                         html: 'Toggle navigation'
5903                     },
5904                     {
5905                         tag: 'span',
5906                         cls: 'icon-bar navbar-toggler-icon'
5907                     },
5908                     {
5909                         tag: 'span',
5910                         cls: 'icon-bar'
5911                     },
5912                     {
5913                         tag: 'span',
5914                         cls: 'icon-bar'
5915                     }
5916                 ]
5917             };
5918             
5919             cn.push( Roo.bootstrap.version == 4 ? btn : {
5920                 tag: 'div',
5921                 cls: 'navbar-header',
5922                 cn: [
5923                     btn
5924                 ]
5925             });
5926         }
5927         
5928         cn.push({
5929             tag: 'div',
5930             cls: Roo.bootstrap.version == 4  ? 'nav flex-row roo-navbar-collapse collapse navbar-collapse' : 'collapse navbar-collapse roo-navbar-collapse',
5931             cn : []
5932         });
5933         
5934         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
5935         
5936         if (['light','white'].indexOf(this.weight) > -1) {
5937             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
5938         }
5939         cfg.cls += ' bg-' + this.weight;
5940         
5941         
5942         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
5943             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
5944             
5945             // tag can override this..
5946             
5947             cfg.tag = this.tag || (this.position  == 'fixed-bottom' ? 'footer' : 'header');
5948         }
5949         
5950         if (this.brand !== '') {
5951             var cp =  Roo.bootstrap.version == 4 ? cn : cn[0].cn;
5952             cp.unshift({ // changed from push ?? BS4 needs it at the start? - does this break or exsiting?
5953                 tag: 'a',
5954                 href: this.brand_href ? this.brand_href : '#',
5955                 cls: 'navbar-brand',
5956                 cn: [
5957                 this.brand
5958                 ]
5959             });
5960         }
5961         
5962         if(this.main){
5963             cfg.cls += ' main-nav';
5964         }
5965         
5966         
5967         return cfg;
5968
5969         
5970     },
5971     getHeaderChildContainer : function()
5972     {
5973         if (this.srButton && this.el.select('.navbar-header').getCount()) {
5974             return this.el.select('.navbar-header',true).first();
5975         }
5976         
5977         return this.getChildContainer();
5978     },
5979     
5980     getChildContainer : function()
5981     {
5982          
5983         return this.el.select('.roo-navbar-collapse',true).first();
5984          
5985         
5986     },
5987     
5988     initEvents : function()
5989     {
5990         Roo.bootstrap.nav.Headerbar.superclass.initEvents.call(this);
5991         
5992         if (this.autohide) {
5993             
5994             var prevScroll = 0;
5995             var ft = this.el;
5996             
5997             Roo.get(document).on('scroll',function(e) {
5998                 var ns = Roo.get(document).getScroll().top;
5999                 var os = prevScroll;
6000                 prevScroll = ns;
6001                 
6002                 if(ns > os){
6003                     ft.removeClass('slideDown');
6004                     ft.addClass('slideUp');
6005                     return;
6006                 }
6007                 ft.removeClass('slideUp');
6008                 ft.addClass('slideDown');
6009                  
6010               
6011           },this);
6012         }
6013     }    
6014     
6015 });
6016
6017
6018
6019  
6020
6021  /*
6022  * - LGPL
6023  *
6024  * navbar
6025  * 
6026  */
6027
6028 /**
6029  * @class Roo.bootstrap.nav.Sidebar
6030  * @extends Roo.bootstrap.nav.Bar
6031  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container Roo.bootstrap.form.Form Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Link
6032  * Bootstrap Sidebar class
6033  * 
6034  * @constructor
6035  * Create a new Sidebar
6036  * @param {Object} config The config object
6037  */
6038
6039
6040 Roo.bootstrap.nav.Sidebar = function(config){
6041     Roo.bootstrap.nav.Sidebar.superclass.constructor.call(this, config);
6042 };
6043
6044 Roo.extend(Roo.bootstrap.nav.Sidebar, Roo.bootstrap.nav.Bar,  {
6045     
6046     sidebar : true, // used by Navbar Item and NavbarGroup at present...
6047     
6048     getAutoCreate : function(){
6049         
6050         
6051         return  {
6052             tag: 'div',
6053             cls: 'sidebar sidebar-nav'
6054         };
6055     
6056         
6057     }
6058     
6059     
6060     
6061 });
6062
6063
6064
6065  
6066
6067  /*
6068  * - LGPL
6069  *
6070  * nav group
6071  * 
6072  */
6073
6074 /**
6075  * @class Roo.bootstrap.nav.Group
6076  * @extends Roo.bootstrap.Component
6077  * @children Roo.bootstrap.nav.Item
6078  * Bootstrap NavGroup class
6079  * @cfg {String} align (left|right)
6080  * @cfg {Boolean} inverse
6081  * @cfg {String} type (nav|pills|tab) default nav
6082  * @cfg {String} navId - reference Id for navbar.
6083  * @cfg {Boolean} pilltype default true (turn to off to disable active toggle)
6084  * 
6085  * @constructor
6086  * Create a new nav group
6087  * @param {Object} config The config object
6088  */
6089
6090 Roo.bootstrap.nav.Group = function(config){
6091     Roo.bootstrap.nav.Group.superclass.constructor.call(this, config);
6092     this.navItems = [];
6093    
6094     Roo.bootstrap.nav.Group.register(this);
6095      this.addEvents({
6096         /**
6097              * @event changed
6098              * Fires when the active item changes
6099              * @param {Roo.bootstrap.nav.Group} this
6100              * @param {Roo.bootstrap.Navbar.Item} selected The item selected
6101              * @param {Roo.bootstrap.Navbar.Item} prev The previously selected item 
6102          */
6103         'changed': true
6104      });
6105     
6106 };
6107
6108 Roo.extend(Roo.bootstrap.nav.Group, Roo.bootstrap.Component,  {
6109     
6110     align: '',
6111     inverse: false,
6112     form: false,
6113     type: 'nav',
6114     navId : '',
6115     // private
6116     pilltype : true,
6117     
6118     navItems : false, 
6119     
6120     getAutoCreate : function()
6121     {
6122         var cfg = Roo.apply({}, Roo.bootstrap.nav.Group.superclass.getAutoCreate.call(this));
6123         
6124         cfg = {
6125             tag : 'ul',
6126             cls: 'nav' 
6127         };
6128         if (Roo.bootstrap.version == 4) {
6129             if (['tabs','pills'].indexOf(this.type) != -1) {
6130                 cfg.cls += ' nav-' + this.type; 
6131             } else {
6132                 // trying to remove so header bar can right align top?
6133                 if (this.parent() && this.parent().xtype != 'NavHeaderbar') {
6134                     // do not use on header bar... 
6135                     cfg.cls += ' navbar-nav';
6136                 }
6137             }
6138             
6139         } else {
6140             if (['tabs','pills'].indexOf(this.type) != -1) {
6141                 cfg.cls += ' nav-' + this.type
6142             } else {
6143                 if (this.type !== 'nav') {
6144                     Roo.log('nav type must be nav/tabs/pills')
6145                 }
6146                 cfg.cls += ' navbar-nav'
6147             }
6148         }
6149         
6150         if (this.parent() && this.parent().sidebar) {
6151             cfg = {
6152                 tag: 'ul',
6153                 cls: 'dashboard-menu sidebar-menu'
6154             };
6155             
6156             return cfg;
6157         }
6158         
6159         if (this.form === true) {
6160             cfg = {
6161                 tag: 'form',
6162                 cls: 'navbar-form form-inline'
6163             };
6164             //nav navbar-right ml-md-auto
6165             if (this.align === 'right') {
6166                 cfg.cls += ' navbar-right ml-md-auto';
6167             } else {
6168                 cfg.cls += ' navbar-left';
6169             }
6170         }
6171         
6172         if (this.align === 'right') {
6173             cfg.cls += ' navbar-right ml-md-auto';
6174         } else {
6175             cfg.cls += ' mr-auto';
6176         }
6177         
6178         if (this.inverse) {
6179             cfg.cls += ' navbar-inverse';
6180             
6181         }
6182         
6183         
6184         return cfg;
6185     },
6186     /**
6187     * sets the active Navigation item
6188     * @param {Roo.bootstrap.nav.Item} the new current navitem
6189     */
6190     setActiveItem : function(item)
6191     {
6192         var prev = false;
6193         Roo.each(this.navItems, function(v){
6194             if (v == item) {
6195                 return ;
6196             }
6197             if (v.isActive()) {
6198                 v.setActive(false, true);
6199                 prev = v;
6200                 
6201             }
6202             
6203         });
6204
6205         item.setActive(true, true);
6206         this.fireEvent('changed', this, item, prev);
6207         
6208         
6209     },
6210     /**
6211     * gets the active Navigation item
6212     * @return {Roo.bootstrap.nav.Item} the current navitem
6213     */
6214     getActive : function()
6215     {
6216         
6217         var prev = false;
6218         Roo.each(this.navItems, function(v){
6219             
6220             if (v.isActive()) {
6221                 prev = v;
6222                 
6223             }
6224             
6225         });
6226         return prev;
6227     },
6228     
6229     indexOfNav : function()
6230     {
6231         
6232         var prev = false;
6233         Roo.each(this.navItems, function(v,i){
6234             
6235             if (v.isActive()) {
6236                 prev = i;
6237                 
6238             }
6239             
6240         });
6241         return prev;
6242     },
6243     /**
6244     * adds a Navigation item
6245     * @param {Roo.bootstrap.nav.Item} the navitem to add
6246     */
6247     addItem : function(cfg)
6248     {
6249         if (this.form && Roo.bootstrap.version == 4) {
6250             cfg.tag = 'div';
6251         }
6252         var cn = new Roo.bootstrap.nav.Item(cfg);
6253         this.register(cn);
6254         cn.parentId = this.id;
6255         cn.onRender(this.el, null);
6256         return cn;
6257     },
6258     /**
6259     * register a Navigation item
6260     * @param {Roo.bootstrap.nav.Item} the navitem to add
6261     */
6262     register : function(item)
6263     {
6264         this.navItems.push( item);
6265         item.navId = this.navId;
6266     
6267     },
6268     
6269     /**
6270     * clear all the Navigation item
6271     */
6272    
6273     clearAll : function()
6274     {
6275         this.navItems = [];
6276         this.el.dom.innerHTML = '';
6277     },
6278     
6279     getNavItem: function(tabId)
6280     {
6281         var ret = false;
6282         Roo.each(this.navItems, function(e) {
6283             if (e.tabId == tabId) {
6284                ret =  e;
6285                return false;
6286             }
6287             return true;
6288             
6289         });
6290         return ret;
6291     },
6292     
6293     setActiveNext : function()
6294     {
6295         var i = this.indexOfNav(this.getActive());
6296         if (i > this.navItems.length) {
6297             return;
6298         }
6299         this.setActiveItem(this.navItems[i+1]);
6300     },
6301     setActivePrev : function()
6302     {
6303         var i = this.indexOfNav(this.getActive());
6304         if (i  < 1) {
6305             return;
6306         }
6307         this.setActiveItem(this.navItems[i-1]);
6308     },
6309     clearWasActive : function(except) {
6310         Roo.each(this.navItems, function(e) {
6311             if (e.tabId != except.tabId && e.was_active) {
6312                e.was_active = false;
6313                return false;
6314             }
6315             return true;
6316             
6317         });
6318     },
6319     getWasActive : function ()
6320     {
6321         var r = false;
6322         Roo.each(this.navItems, function(e) {
6323             if (e.was_active) {
6324                r = e;
6325                return false;
6326             }
6327             return true;
6328             
6329         });
6330         return r;
6331     }
6332     
6333     
6334 });
6335
6336  
6337 Roo.apply(Roo.bootstrap.nav.Group, {
6338     
6339     groups: {},
6340      /**
6341     * register a Navigation Group
6342     * @param {Roo.bootstrap.nav.Group} the navgroup to add
6343     */
6344     register : function(navgrp)
6345     {
6346         this.groups[navgrp.navId] = navgrp;
6347         
6348     },
6349     /**
6350     * fetch a Navigation Group based on the navigation ID
6351     * @param {string} the navgroup to add
6352     * @returns {Roo.bootstrap.nav.Group} the navgroup 
6353     */
6354     get: function(navId) {
6355         if (typeof(this.groups[navId]) == 'undefined') {
6356             return false;
6357             //this.register(new Roo.bootstrap.nav.Group({ navId : navId }));
6358         }
6359         return this.groups[navId] ;
6360     }
6361     
6362     
6363     
6364 });
6365
6366  /**
6367  * @class Roo.bootstrap.nav.Item
6368  * @extends Roo.bootstrap.Component
6369  * @children Roo.bootstrap.Container Roo.bootstrap.Button
6370  * @parent Roo.bootstrap.nav.Group
6371  * @licence LGPL
6372  * Bootstrap Navbar.NavItem class
6373  * 
6374  * @cfg {String} href  link to
6375  * @cfg {String} button_weight (default|primary|secondary|success|info|warning|danger|link|light|dark) default none
6376  * @cfg {Boolean} button_outline show and outlined button
6377  * @cfg {String} html content of button
6378  * @cfg {String} badge text inside badge
6379  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
6380  * @cfg {String} glyphicon DEPRICATED - use fa
6381  * @cfg {String} icon DEPRICATED - use fa
6382  * @cfg {String} fa - Fontawsome icon name (can add stuff to it like fa-2x)
6383  * @cfg {Boolean} active Is item active
6384  * @cfg {Boolean} disabled Is item disabled
6385  * @cfg {String} linkcls  Link Class
6386  * @cfg {Boolean} preventDefault (true | false) default false
6387  * @cfg {String} tabId the tab that this item activates.
6388  * @cfg {String} tagtype (a|span) render as a href or span?
6389  * @cfg {Boolean} animateRef (true|false) link to element default false  
6390  * @cfg {Roo.bootstrap.menu.Menu} menu a Menu 
6391   
6392  * @constructor
6393  * Create a new Navbar Item
6394  * @param {Object} config The config object
6395  */
6396 Roo.bootstrap.nav.Item = function(config){
6397     Roo.bootstrap.nav.Item.superclass.constructor.call(this, config);
6398     this.addEvents({
6399         // raw events
6400         /**
6401          * @event click
6402          * The raw click event for the entire grid.
6403          * @param {Roo.EventObject} e
6404          */
6405         "click" : true,
6406          /**
6407             * @event changed
6408             * Fires when the active item active state changes
6409             * @param {Roo.bootstrap.nav.Item} this
6410             * @param {boolean} state the new state
6411              
6412          */
6413         'changed': true,
6414         /**
6415             * @event scrollto
6416             * Fires when scroll to element
6417             * @param {Roo.bootstrap.nav.Item} this
6418             * @param {Object} options
6419             * @param {Roo.EventObject} e
6420              
6421          */
6422         'scrollto': true
6423     });
6424    
6425 };
6426
6427 Roo.extend(Roo.bootstrap.nav.Item, Roo.bootstrap.Component,  {
6428     
6429     href: false,
6430     html: '',
6431     badge: '',
6432     icon: false,
6433     fa : false,
6434     glyphicon: false,
6435     active: false,
6436     preventDefault : false,
6437     tabId : false,
6438     tagtype : 'a',
6439     tag: 'li',
6440     disabled : false,
6441     animateRef : false,
6442     was_active : false,
6443     button_weight : '',
6444     button_outline : false,
6445     linkcls : '',
6446     navLink: false,
6447     
6448     getAutoCreate : function(){
6449          
6450         var cfg = {
6451             tag: this.tag,
6452             cls: 'nav-item'
6453         };
6454         
6455         cfg.cls =  typeof(cfg.cls) == 'undefined'  ? '' : cfg.cls;
6456         
6457         if (this.active) {
6458             cfg.cls +=  ' active' ;
6459         }
6460         if (this.disabled) {
6461             cfg.cls += ' disabled';
6462         }
6463         
6464         // BS4 only?
6465         if (this.button_weight.length) {
6466             cfg.tag = this.href ? 'a' : 'button';
6467             cfg.html = this.html || '';
6468             cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
6469             if (this.href) {
6470                 cfg.href = this.href;
6471             }
6472             if (this.fa) {
6473                 cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span class="nav-html">' + this.html + '</span>';
6474             } else {
6475                 cfg.cls += " nav-html";
6476             }
6477             
6478             // menu .. should add dropdown-menu class - so no need for carat..
6479             
6480             if (this.badge !== '') {
6481                  
6482                 cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
6483             }
6484             return cfg;
6485         }
6486         
6487         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
6488             cfg.cn = [
6489                 {
6490                     tag: this.tagtype,
6491                     href : this.href || "#",
6492                     html: this.html || '',
6493                     cls : ''
6494                 }
6495             ];
6496             if (this.tagtype == 'a') {
6497                 cfg.cn[0].cls = 'nav-link' +  (this.active ?  ' active'  : '') + ' ' + this.linkcls;
6498         
6499             }
6500             if (this.icon) {
6501                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span class="nav-html">' + cfg.cn[0].html + '</span>';
6502             } else  if (this.fa) {
6503                 cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span class="nav-html">' + cfg.cn[0].html + '</span>';
6504             } else if(this.glyphicon) {
6505                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
6506             } else {
6507                 cfg.cn[0].cls += " nav-html";
6508             }
6509             
6510             if (this.menu) {
6511                 cfg.cn[0].html += " <span class='caret'></span>";
6512              
6513             }
6514             
6515             if (this.badge !== '') {
6516                 cfg.cn[0].html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
6517             }
6518         }
6519         
6520         
6521         
6522         return cfg;
6523     },
6524     onRender : function(ct, position)
6525     {
6526        // Roo.log("Call onRender: " + this.xtype);
6527         if (Roo.bootstrap.version == 4 && ct.dom.type != 'ul') {
6528             this.tag = 'div';
6529         }
6530         
6531         var ret = Roo.bootstrap.nav.Item.superclass.onRender.call(this, ct, position);
6532         this.navLink = this.el.select('.nav-link',true).first();
6533         this.htmlEl = this.el.hasClass('nav-html') ? this.el : this.el.select('.nav-html',true).first();
6534         return ret;
6535     },
6536       
6537     
6538     initEvents: function() 
6539     {
6540         if (typeof (this.menu) != 'undefined') {
6541             this.menu.parentType = this.xtype;
6542             this.menu.triggerEl = this.el;
6543             this.menu = this.addxtype(Roo.apply({}, this.menu));
6544         }
6545         
6546         this.el.on('click', this.onClick, this);
6547         
6548         //if(this.tagtype == 'span'){
6549         //    this.el.select('span',true).on('click', this.onClick, this);
6550         //}
6551        
6552         // at this point parent should be available..
6553         this.parent().register(this);
6554     },
6555     
6556     onClick : function(e)
6557     {
6558         if (e.getTarget('.dropdown-menu-item')) {
6559             // did you click on a menu itemm.... - then don't trigger onclick..
6560             return;
6561         }
6562         
6563         if(
6564                 this.preventDefault ||
6565                                 this.href === false ||
6566                 this.href === '#' 
6567         ){
6568             //Roo.log("NavItem - prevent Default?");
6569             e.preventDefault();
6570         }
6571         
6572         if (this.disabled) {
6573             return;
6574         }
6575         
6576         var tg = Roo.bootstrap.TabGroup.get(this.navId);
6577         if (tg && tg.transition) {
6578             Roo.log("waiting for the transitionend");
6579             return;
6580         }
6581         
6582         
6583         
6584         //Roo.log("fire event clicked");
6585         if(this.fireEvent('click', this, e) === false){
6586             return;
6587         };
6588         
6589         if(this.tagtype == 'span'){
6590             return;
6591         }
6592         
6593         //Roo.log(this.href);
6594         var ael = this.el.select('a',true).first();
6595         //Roo.log(ael);
6596         
6597         if(ael && this.animateRef && this.href.indexOf('#') > -1){
6598             //Roo.log(["test:",ael.dom.href.split("#")[0], document.location.toString().split("#")[0]]);
6599             if (ael.dom.href.split("#")[0] != document.location.toString().split("#")[0]) {
6600                 return; // ignore... - it's a 'hash' to another page.
6601             }
6602             Roo.log("NavItem - prevent Default?");
6603             e.preventDefault();
6604             this.scrollToElement(e);
6605         }
6606         
6607         
6608         var p =  this.parent();
6609    
6610         if (['tabs','pills'].indexOf(p.type)!==-1 && p.pilltype) {
6611             if (typeof(p.setActiveItem) !== 'undefined') {
6612                 p.setActiveItem(this);
6613             }
6614         }
6615         
6616         // if parent is a navbarheader....- and link is probably a '#' page ref.. then remove the expanded menu.
6617         if (p.parentType == 'NavHeaderbar' && !this.menu) {
6618             // remove the collapsed menu expand...
6619             p.parent().el.select('.roo-navbar-collapse',true).removeClass('in');  
6620         }
6621     },
6622     
6623     isActive: function () {
6624         return this.active
6625     },
6626     setActive : function(state, fire, is_was_active)
6627     {
6628         if (this.active && !state && this.navId) {
6629             this.was_active = true;
6630             var nv = Roo.bootstrap.nav.Group.get(this.navId);
6631             if (nv) {
6632                 nv.clearWasActive(this);
6633             }
6634             
6635         }
6636         this.active = state;
6637         
6638         if (!state ) {
6639             this.el.removeClass('active');
6640             this.navLink ? this.navLink.removeClass('active') : false;
6641         } else if (!this.el.hasClass('active')) {
6642             
6643             this.el.addClass('active');
6644             if (Roo.bootstrap.version == 4 && this.navLink ) {
6645                 this.navLink.addClass('active');
6646             }
6647             
6648         }
6649         if (fire) {
6650             this.fireEvent('changed', this, state);
6651         }
6652         
6653         // show a panel if it's registered and related..
6654         
6655         if (!this.navId || !this.tabId || !state || is_was_active) {
6656             return;
6657         }
6658         
6659         var tg = Roo.bootstrap.TabGroup.get(this.navId);
6660         if (!tg) {
6661             return;
6662         }
6663         var pan = tg.getPanelByName(this.tabId);
6664         if (!pan) {
6665             return;
6666         }
6667         // if we can not flip to new panel - go back to old nav highlight..
6668         if (false == tg.showPanel(pan)) {
6669             var nv = Roo.bootstrap.nav.Group.get(this.navId);
6670             if (nv) {
6671                 var onav = nv.getWasActive();
6672                 if (onav) {
6673                     onav.setActive(true, false, true);
6674                 }
6675             }
6676             
6677         }
6678         
6679         
6680         
6681     },
6682      // this should not be here...
6683     setDisabled : function(state)
6684     {
6685         this.disabled = state;
6686         if (!state ) {
6687             this.el.removeClass('disabled');
6688         } else if (!this.el.hasClass('disabled')) {
6689             this.el.addClass('disabled');
6690         }
6691         
6692     },
6693     
6694     /**
6695      * Fetch the element to display the tooltip on.
6696      * @return {Roo.Element} defaults to this.el
6697      */
6698     tooltipEl : function()
6699     {
6700         return this.el; //this.tagtype  == 'a' ? this.el  : this.el.select('' + this.tagtype + '', true).first();
6701     },
6702     
6703     scrollToElement : function(e)
6704     {
6705         var c = document.body;
6706         
6707         /*
6708          * Firefox / IE places the overflow at the html level, unless specifically styled to behave differently.
6709          */
6710         if(Roo.isFirefox || Roo.isIE || Roo.isIE11){
6711             c = document.documentElement;
6712         }
6713         
6714         var target = Roo.get(c).select('a[name=' + this.href.split('#')[1] +']', true).first();
6715         
6716         if(!target){
6717             return;
6718         }
6719
6720         var o = target.calcOffsetsTo(c);
6721         
6722         var options = {
6723             target : target,
6724             value : o[1]
6725         };
6726         
6727         this.fireEvent('scrollto', this, options, e);
6728         
6729         Roo.get(c).scrollTo('top', options.value, true);
6730         
6731         return;
6732     },
6733     /**
6734      * Set the HTML (text content) of the item
6735      * @param {string} html  content for the nav item
6736      */
6737     setHtml : function(html)
6738     {
6739         this.html = html;
6740         this.htmlEl.dom.innerHTML = html;
6741         
6742     } 
6743 });
6744  
6745
6746  /*
6747  * - LGPL
6748  *
6749  * sidebar item
6750  *
6751  *  li
6752  *    <span> icon </span>
6753  *    <span> text </span>
6754  *    <span>badge </span>
6755  */
6756
6757 /**
6758  * @class Roo.bootstrap.nav.SidebarItem
6759  * @extends Roo.bootstrap.nav.Item
6760  * Bootstrap Navbar.NavSidebarItem class
6761  * 
6762  * {String} badgeWeight (default|primary|success|info|warning|danger)the extra classes for the badge
6763  * {Boolean} open is the menu open
6764  * {Boolean} buttonView use button as the tigger el rather that a (default false)
6765  * {String} buttonWeight (default|primary|success|info|warning|danger)the extra classes for the button
6766  * {String} buttonSize (sm|md|lg)the extra classes for the button
6767  * {Boolean} showArrow show arrow next to the text (default true)
6768  * @constructor
6769  * Create a new Navbar Button
6770  * @param {Object} config The config object
6771  */
6772 Roo.bootstrap.nav.SidebarItem = function(config){
6773     Roo.bootstrap.nav.SidebarItem.superclass.constructor.call(this, config);
6774     this.addEvents({
6775         // raw events
6776         /**
6777          * @event click
6778          * The raw click event for the entire grid.
6779          * @param {Roo.EventObject} e
6780          */
6781         "click" : true,
6782          /**
6783             * @event changed
6784             * Fires when the active item active state changes
6785             * @param {Roo.bootstrap.nav.SidebarItem} this
6786             * @param {boolean} state the new state
6787              
6788          */
6789         'changed': true
6790     });
6791    
6792 };
6793
6794 Roo.extend(Roo.bootstrap.nav.SidebarItem, Roo.bootstrap.nav.Item,  {
6795     
6796     badgeWeight : 'default',
6797     
6798     open: false,
6799     
6800     buttonView : false,
6801     
6802     buttonWeight : 'default',
6803     
6804     buttonSize : 'md',
6805     
6806     showArrow : true,
6807     
6808     getAutoCreate : function(){
6809         
6810         
6811         var a = {
6812                 tag: 'a',
6813                 href : this.href || '#',
6814                 cls: '',
6815                 html : '',
6816                 cn : []
6817         };
6818         
6819         if(this.buttonView){
6820             a = {
6821                 tag: 'button',
6822                 href : this.href || '#',
6823                 cls: 'btn btn-' + this.buttonWeight + ' btn-' + this.buttonSize + 'roo-button-dropdown-toggle',
6824                 html : this.html,
6825                 cn : []
6826             };
6827         }
6828         
6829         var cfg = {
6830             tag: 'li',
6831             cls: '',
6832             cn: [ a ]
6833         };
6834         
6835         if (this.active) {
6836             cfg.cls += ' active';
6837         }
6838         
6839         if (this.disabled) {
6840             cfg.cls += ' disabled';
6841         }
6842         if (this.open) {
6843             cfg.cls += ' open x-open';
6844         }
6845         // left icon..
6846         if (this.glyphicon || this.icon) {
6847             var c = this.glyphicon  ? ('glyphicon glyphicon-'+this.glyphicon)  : this.icon;
6848             a.cn.push({ tag : 'i', cls : c }) ;
6849         }
6850         
6851         if(!this.buttonView){
6852             var span = {
6853                 tag: 'span',
6854                 html : this.html || ''
6855             };
6856
6857             a.cn.push(span);
6858             
6859         }
6860         
6861         if (this.badge !== '') {
6862             a.cn.push({ tag: 'span',  cls : 'badge pull-right badge-' + this.badgeWeight, html: this.badge }); 
6863         }
6864         
6865         if (this.menu) {
6866             
6867             if(this.showArrow){
6868                 a.cn.push({ tag : 'i', cls : 'glyphicon glyphicon-chevron-down pull-right'});
6869             }
6870             
6871             a.cls += ' dropdown-toggle treeview' ;
6872         }
6873         
6874         return cfg;
6875     },
6876     
6877     initEvents : function()
6878     { 
6879         if (typeof (this.menu) != 'undefined') {
6880             this.menu.parentType = this.xtype;
6881             this.menu.triggerEl = this.el;
6882             this.menu = this.addxtype(Roo.apply({}, this.menu));
6883         }
6884         
6885         this.el.on('click', this.onClick, this);
6886         
6887         if(this.badge !== ''){
6888             this.badgeEl = this.el.select('.badge', true).first().setVisibilityMode(Roo.Element.DISPLAY);
6889         }
6890         
6891     },
6892     
6893     onClick : function(e)
6894     {
6895         if(this.disabled){
6896             e.preventDefault();
6897             return;
6898         }
6899         
6900         if(this.preventDefault){
6901             e.preventDefault();
6902         }
6903         
6904         this.fireEvent('click', this, e);
6905     },
6906     
6907     disable : function()
6908     {
6909         this.setDisabled(true);
6910     },
6911     
6912     enable : function()
6913     {
6914         this.setDisabled(false);
6915     },
6916     
6917     setDisabled : function(state)
6918     {
6919         if(this.disabled == state){
6920             return;
6921         }
6922         
6923         this.disabled = state;
6924         
6925         if (state) {
6926             this.el.addClass('disabled');
6927             return;
6928         }
6929         
6930         this.el.removeClass('disabled');
6931         
6932         return;
6933     },
6934     
6935     setActive : function(state)
6936     {
6937         if(this.active == state){
6938             return;
6939         }
6940         
6941         this.active = state;
6942         
6943         if (state) {
6944             this.el.addClass('active');
6945             return;
6946         }
6947         
6948         this.el.removeClass('active');
6949         
6950         return;
6951     },
6952     
6953     isActive: function () 
6954     {
6955         return this.active;
6956     },
6957     
6958     setBadge : function(str)
6959     {
6960         if(!this.badgeEl){
6961             return;
6962         }
6963         
6964         this.badgeEl.dom.innerHTML = str;
6965     }
6966     
6967    
6968      
6969  
6970 });
6971  
6972
6973  /*
6974  * - LGPL
6975  *
6976  * nav progress bar
6977  * 
6978  */
6979
6980 /**
6981  * @class Roo.bootstrap.nav.ProgressBar
6982  * @extends Roo.bootstrap.Component
6983  * @children Roo.bootstrap.nav.ProgressBarItem
6984  * Bootstrap NavProgressBar class
6985  * 
6986  * @constructor
6987  * Create a new nav progress bar - a bar indicating step along a process
6988  * @param {Object} config The config object
6989  */
6990
6991 Roo.bootstrap.nav.ProgressBar = function(config){
6992     Roo.bootstrap.nav.ProgressBar.superclass.constructor.call(this, config);
6993
6994     this.bullets = this.bullets || [];
6995    
6996 //    Roo.bootstrap.nav.ProgressBar.register(this);
6997      this.addEvents({
6998         /**
6999              * @event changed
7000              * Fires when the active item changes
7001              * @param {Roo.bootstrap.nav.ProgressBar} this
7002              * @param {Roo.bootstrap.nav.ProgressItem} selected The item selected
7003              * @param {Roo.bootstrap.nav.ProgressItem} prev The previously selected item 
7004          */
7005         'changed': true
7006      });
7007     
7008 };
7009
7010 Roo.extend(Roo.bootstrap.nav.ProgressBar, Roo.bootstrap.Component,  {
7011     /**
7012      * @cfg {Roo.bootstrap.nav.ProgressItem} NavProgressBar:bullets[]
7013      * Bullets for the Nav Progress bar for the toolbar
7014      */
7015     bullets : [],
7016     barItems : [],
7017     
7018     getAutoCreate : function()
7019     {
7020         var cfg = Roo.apply({}, Roo.bootstrap.nav.ProgressBar.superclass.getAutoCreate.call(this));
7021         
7022         cfg = {
7023             tag : 'div',
7024             cls : 'roo-navigation-bar-group',
7025             cn : [
7026                 {
7027                     tag : 'div',
7028                     cls : 'roo-navigation-top-bar'
7029                 },
7030                 {
7031                     tag : 'div',
7032                     cls : 'roo-navigation-bullets-bar',
7033                     cn : [
7034                         {
7035                             tag : 'ul',
7036                             cls : 'roo-navigation-bar'
7037                         }
7038                     ]
7039                 },
7040                 
7041                 {
7042                     tag : 'div',
7043                     cls : 'roo-navigation-bottom-bar'
7044                 }
7045             ]
7046             
7047         };
7048         
7049         return cfg;
7050         
7051     },
7052     
7053     initEvents: function() 
7054     {
7055         
7056     },
7057     
7058     onRender : function(ct, position) 
7059     {
7060         Roo.bootstrap.nav.ProgressBar.superclass.onRender.call(this, ct, position);
7061         
7062         if(this.bullets.length){
7063             Roo.each(this.bullets, function(b){
7064                this.addItem(b);
7065             }, this);
7066         }
7067         
7068         this.format();
7069         
7070     },
7071     
7072     addItem : function(cfg)
7073     {
7074         var item = new Roo.bootstrap.nav.ProgressItem(cfg);
7075         
7076         item.parentId = this.id;
7077         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
7078         
7079         if(cfg.html){
7080             var top = new Roo.bootstrap.Element({
7081                 tag : 'div',
7082                 cls : 'roo-navigation-bar-text'
7083             });
7084             
7085             var bottom = new Roo.bootstrap.Element({
7086                 tag : 'div',
7087                 cls : 'roo-navigation-bar-text'
7088             });
7089             
7090             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
7091             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
7092             
7093             var topText = new Roo.bootstrap.Element({
7094                 tag : 'span',
7095                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
7096             });
7097             
7098             var bottomText = new Roo.bootstrap.Element({
7099                 tag : 'span',
7100                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
7101             });
7102             
7103             topText.onRender(top.el, null);
7104             bottomText.onRender(bottom.el, null);
7105             
7106             item.topEl = top;
7107             item.bottomEl = bottom;
7108         }
7109         
7110         this.barItems.push(item);
7111         
7112         return item;
7113     },
7114     
7115     getActive : function()
7116     {
7117         var active = false;
7118         
7119         Roo.each(this.barItems, function(v){
7120             
7121             if (!v.isActive()) {
7122                 return;
7123             }
7124             
7125             active = v;
7126             return false;
7127             
7128         });
7129         
7130         return active;
7131     },
7132     
7133     setActiveItem : function(item)
7134     {
7135         var prev = false;
7136         
7137         Roo.each(this.barItems, function(v){
7138             if (v.rid == item.rid) {
7139                 return ;
7140             }
7141             
7142             if (v.isActive()) {
7143                 v.setActive(false);
7144                 prev = v;
7145             }
7146         });
7147
7148         item.setActive(true);
7149         
7150         this.fireEvent('changed', this, item, prev);
7151     },
7152     
7153     getBarItem: function(rid)
7154     {
7155         var ret = false;
7156         
7157         Roo.each(this.barItems, function(e) {
7158             if (e.rid != rid) {
7159                 return;
7160             }
7161             
7162             ret =  e;
7163             return false;
7164         });
7165         
7166         return ret;
7167     },
7168     
7169     indexOfItem : function(item)
7170     {
7171         var index = false;
7172         
7173         Roo.each(this.barItems, function(v, i){
7174             
7175             if (v.rid != item.rid) {
7176                 return;
7177             }
7178             
7179             index = i;
7180             return false
7181         });
7182         
7183         return index;
7184     },
7185     
7186     setActiveNext : function()
7187     {
7188         var i = this.indexOfItem(this.getActive());
7189         
7190         if (i > this.barItems.length) {
7191             return;
7192         }
7193         
7194         this.setActiveItem(this.barItems[i+1]);
7195     },
7196     
7197     setActivePrev : function()
7198     {
7199         var i = this.indexOfItem(this.getActive());
7200         
7201         if (i  < 1) {
7202             return;
7203         }
7204         
7205         this.setActiveItem(this.barItems[i-1]);
7206     },
7207     
7208     format : function()
7209     {
7210         if(!this.barItems.length){
7211             return;
7212         }
7213      
7214         var width = 100 / this.barItems.length;
7215         
7216         Roo.each(this.barItems, function(i){
7217             i.el.setStyle('width', width + '%');
7218             i.topEl.el.setStyle('width', width + '%');
7219             i.bottomEl.el.setStyle('width', width + '%');
7220         }, this);
7221         
7222     }
7223     
7224 });
7225 /*
7226  * - LGPL
7227  *
7228  * Nav Progress Item
7229  * 
7230  */
7231
7232 /**
7233  * @class Roo.bootstrap.nav.ProgressBarItem
7234  * @extends Roo.bootstrap.Component
7235  * Bootstrap NavProgressBarItem class
7236  * @cfg {String} rid the reference id
7237  * @cfg {Boolean} active (true|false) Is item active default false
7238  * @cfg {Boolean} disabled (true|false) Is item active default false
7239  * @cfg {String} html
7240  * @cfg {String} position (top|bottom) text position default bottom
7241  * @cfg {String} icon show icon instead of number
7242  * 
7243  * @constructor
7244  * Create a new NavProgressBarItem
7245  * @param {Object} config The config object
7246  */
7247 Roo.bootstrap.nav.ProgressBarItem = function(config){
7248     Roo.bootstrap.nav.ProgressBarItem.superclass.constructor.call(this, config);
7249     this.addEvents({
7250         // raw events
7251         /**
7252          * @event click
7253          * The raw click event for the entire grid.
7254          * @param {Roo.bootstrap.nav.ProgressBarItem} this
7255          * @param {Roo.EventObject} e
7256          */
7257         "click" : true
7258     });
7259    
7260 };
7261
7262 Roo.extend(Roo.bootstrap.nav.ProgressBarItem, Roo.bootstrap.Component,  {
7263     
7264     rid : '',
7265     active : false,
7266     disabled : false,
7267     html : '',
7268     position : 'bottom',
7269     icon : false,
7270     
7271     getAutoCreate : function()
7272     {
7273         var iconCls = 'roo-navigation-bar-item-icon';
7274         
7275         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
7276         
7277         var cfg = {
7278             tag: 'li',
7279             cls: 'roo-navigation-bar-item',
7280             cn : [
7281                 {
7282                     tag : 'i',
7283                     cls : iconCls
7284                 }
7285             ]
7286         };
7287         
7288         if(this.active){
7289             cfg.cls += ' active';
7290         }
7291         if(this.disabled){
7292             cfg.cls += ' disabled';
7293         }
7294         
7295         return cfg;
7296     },
7297     
7298     disable : function()
7299     {
7300         this.setDisabled(true);
7301     },
7302     
7303     enable : function()
7304     {
7305         this.setDisabled(false);
7306     },
7307     
7308     initEvents: function() 
7309     {
7310         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
7311         
7312         this.iconEl.on('click', this.onClick, this);
7313     },
7314     
7315     onClick : function(e)
7316     {
7317         e.preventDefault();
7318         
7319         if(this.disabled){
7320             return;
7321         }
7322         
7323         if(this.fireEvent('click', this, e) === false){
7324             return;
7325         };
7326         
7327         this.parent().setActiveItem(this);
7328     },
7329     
7330     isActive: function () 
7331     {
7332         return this.active;
7333     },
7334     
7335     setActive : function(state)
7336     {
7337         if(this.active == state){
7338             return;
7339         }
7340         
7341         this.active = state;
7342         
7343         if (state) {
7344             this.el.addClass('active');
7345             return;
7346         }
7347         
7348         this.el.removeClass('active');
7349         
7350         return;
7351     },
7352     
7353     setDisabled : function(state)
7354     {
7355         if(this.disabled == state){
7356             return;
7357         }
7358         
7359         this.disabled = state;
7360         
7361         if (state) {
7362             this.el.addClass('disabled');
7363             return;
7364         }
7365         
7366         this.el.removeClass('disabled');
7367     },
7368     
7369     tooltipEl : function()
7370     {
7371         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
7372     }
7373 });
7374  
7375
7376  /*
7377  * - LGPL
7378  *
7379  *  Breadcrumb Nav
7380  * 
7381  */
7382 Roo.namespace('Roo.bootstrap.breadcrumb');
7383
7384
7385 /**
7386  * @class Roo.bootstrap.breadcrumb.Nav
7387  * @extends Roo.bootstrap.Component
7388  * Bootstrap Breadcrumb Nav Class
7389  *  
7390  * @children Roo.bootstrap.breadcrumb.Item
7391  * 
7392  * @constructor
7393  * Create a new breadcrumb.Nav
7394  * @param {Object} config The config object
7395  */
7396
7397
7398 Roo.bootstrap.breadcrumb.Nav = function(config){
7399     Roo.bootstrap.breadcrumb.Nav.superclass.constructor.call(this, config);
7400     
7401     
7402 };
7403
7404 Roo.extend(Roo.bootstrap.breadcrumb.Nav, Roo.bootstrap.Component,  {
7405     
7406     getAutoCreate : function()
7407     {
7408
7409         var cfg = {
7410             tag: 'nav',
7411             cn : [
7412                 {
7413                     tag : 'ol',
7414                     cls : 'breadcrumb'
7415                 }
7416             ]
7417             
7418         };
7419           
7420         return cfg;
7421     },
7422     
7423     initEvents: function()
7424     {
7425         this.olEl = this.el.select('ol',true).first();    
7426     },
7427     getChildContainer : function()
7428     {
7429         return this.olEl;  
7430     }
7431     
7432 });
7433
7434  /*
7435  * - LGPL
7436  *
7437  *  Breadcrumb Item
7438  * 
7439  */
7440
7441
7442 /**
7443  * @class Roo.bootstrap.breadcrumb.Nav
7444  * @extends Roo.bootstrap.Component
7445  * @children Roo.bootstrap.Component
7446  * @parent Roo.bootstrap.breadcrumb.Nav
7447  * Bootstrap Breadcrumb Nav Class
7448  *  
7449  * 
7450  * @cfg {String} html the content of the link.
7451  * @cfg {String} href where it links to if '#' is used the link will be handled by onClick.
7452  * @cfg {Boolean} active is it active
7453
7454  * 
7455  * @constructor
7456  * Create a new breadcrumb.Nav
7457  * @param {Object} config The config object
7458  */
7459
7460 Roo.bootstrap.breadcrumb.Item = function(config){
7461     Roo.bootstrap.breadcrumb.Item.superclass.constructor.call(this, config);
7462     this.addEvents({
7463         // img events
7464         /**
7465          * @event click
7466          * The img click event for the img.
7467          * @param {Roo.EventObject} e
7468          */
7469         "click" : true
7470     });
7471     
7472 };
7473
7474 Roo.extend(Roo.bootstrap.breadcrumb.Item, Roo.bootstrap.Component,  {
7475     
7476     href: false,
7477     html : '',
7478     
7479     getAutoCreate : function()
7480     {
7481
7482         var cfg = {
7483             tag: 'li',
7484             cls : 'breadcrumb-item' + (this.active ? ' active' : '')
7485         };
7486         if (this.href !== false) {
7487             cfg.cn = [{
7488                 tag : 'a',
7489                 href : this.href,
7490                 html : this.html
7491             }];
7492         } else {
7493             cfg.html = this.html;
7494         }
7495         
7496         return cfg;
7497     },
7498     
7499     initEvents: function()
7500     {
7501         if (this.href) {
7502             this.el.select('a', true).first().on('click',this.onClick, this)
7503         }
7504         
7505     },
7506     onClick : function(e)
7507     {
7508         e.preventDefault();
7509         this.fireEvent('click',this,  e);
7510     }
7511     
7512 });
7513
7514  /*
7515  * - LGPL
7516  *
7517  * row
7518  * 
7519  */
7520
7521 /**
7522  * @class Roo.bootstrap.Row
7523  * @extends Roo.bootstrap.Component
7524  * @children Roo.bootstrap.Component
7525  * Bootstrap Row class (contains columns...)
7526  * 
7527  * @constructor
7528  * Create a new Row
7529  * @param {Object} config The config object
7530  */
7531
7532 Roo.bootstrap.Row = function(config){
7533     Roo.bootstrap.Row.superclass.constructor.call(this, config);
7534 };
7535
7536 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
7537     
7538     getAutoCreate : function(){
7539        return {
7540             cls: 'row clearfix'
7541        };
7542     }
7543     
7544     
7545 });
7546
7547  
7548
7549  /*
7550  * - LGPL
7551  *
7552  * pagination
7553  * 
7554  */
7555
7556 /**
7557  * @class Roo.bootstrap.Pagination
7558  * @extends Roo.bootstrap.Component
7559  * @children Roo.bootstrap.Pagination
7560  * Bootstrap Pagination class
7561  * 
7562  * @cfg {String} size (xs|sm|md|lg|xl)
7563  * @cfg {Boolean} inverse 
7564  * 
7565  * @constructor
7566  * Create a new Pagination
7567  * @param {Object} config The config object
7568  */
7569
7570 Roo.bootstrap.Pagination = function(config){
7571     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
7572 };
7573
7574 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
7575     
7576     cls: false,
7577     size: false,
7578     inverse: false,
7579     
7580     getAutoCreate : function(){
7581         var cfg = {
7582             tag: 'ul',
7583                 cls: 'pagination'
7584         };
7585         if (this.inverse) {
7586             cfg.cls += ' inverse';
7587         }
7588         if (this.html) {
7589             cfg.html=this.html;
7590         }
7591         if (this.cls) {
7592             cfg.cls += " " + this.cls;
7593         }
7594         return cfg;
7595     }
7596    
7597 });
7598
7599  
7600
7601  /*
7602  * - LGPL
7603  *
7604  * Pagination item
7605  * 
7606  */
7607
7608
7609 /**
7610  * @class Roo.bootstrap.PaginationItem
7611  * @extends Roo.bootstrap.Component
7612  * Bootstrap PaginationItem class
7613  * @cfg {String} html text
7614  * @cfg {String} href the link
7615  * @cfg {Boolean} preventDefault (true | false) default true
7616  * @cfg {Boolean} active (true | false) default false
7617  * @cfg {Boolean} disabled default false
7618  * 
7619  * 
7620  * @constructor
7621  * Create a new PaginationItem
7622  * @param {Object} config The config object
7623  */
7624
7625
7626 Roo.bootstrap.PaginationItem = function(config){
7627     Roo.bootstrap.PaginationItem.superclass.constructor.call(this, config);
7628     this.addEvents({
7629         // raw events
7630         /**
7631          * @event click
7632          * The raw click event for the entire grid.
7633          * @param {Roo.EventObject} e
7634          */
7635         "click" : true
7636     });
7637 };
7638
7639 Roo.extend(Roo.bootstrap.PaginationItem, Roo.bootstrap.Component,  {
7640     
7641     href : false,
7642     html : false,
7643     preventDefault: true,
7644     active : false,
7645     cls : false,
7646     disabled: false,
7647     
7648     getAutoCreate : function(){
7649         var cfg= {
7650             tag: 'li',
7651             cn: [
7652                 {
7653                     tag : 'a',
7654                     href : this.href ? this.href : '#',
7655                     html : this.html ? this.html : ''
7656                 }
7657             ]
7658         };
7659         
7660         if(this.cls){
7661             cfg.cls = this.cls;
7662         }
7663         
7664         if(this.disabled){
7665             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' disabled' : 'disabled';
7666         }
7667         
7668         if(this.active){
7669             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' active' : 'active';
7670         }
7671         
7672         return cfg;
7673     },
7674     
7675     initEvents: function() {
7676         
7677         this.el.on('click', this.onClick, this);
7678         
7679     },
7680     onClick : function(e)
7681     {
7682         Roo.log('PaginationItem on click ');
7683         if(this.preventDefault){
7684             e.preventDefault();
7685         }
7686         
7687         if(this.disabled){
7688             return;
7689         }
7690         
7691         this.fireEvent('click', this, e);
7692     }
7693    
7694 });
7695
7696  
7697
7698  /*
7699  * - LGPL
7700  *
7701  * slider
7702  * 
7703  */
7704
7705
7706 /**
7707  * @class Roo.bootstrap.Slider
7708  * @extends Roo.bootstrap.Component
7709  * Bootstrap Slider class
7710  *    
7711  * @constructor
7712  * Create a new Slider
7713  * @param {Object} config The config object
7714  */
7715
7716 Roo.bootstrap.Slider = function(config){
7717     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
7718 };
7719
7720 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
7721     
7722     getAutoCreate : function(){
7723         
7724         var cfg = {
7725             tag: 'div',
7726             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
7727             cn: [
7728                 {
7729                     tag: 'a',
7730                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
7731                 }
7732             ]
7733         };
7734         
7735         return cfg;
7736     }
7737    
7738 });
7739
7740  /*
7741  * Based on:
7742  * Ext JS Library 1.1.1
7743  * Copyright(c) 2006-2007, Ext JS, LLC.
7744  *
7745  * Originally Released Under LGPL - original licence link has changed is not relivant.
7746  *
7747  * Fork - LGPL
7748  * <script type="text/javascript">
7749  */
7750  /**
7751  * @extends Roo.dd.DDProxy
7752  * @class Roo.grid.SplitDragZone
7753  * Support for Column Header resizing
7754  * @constructor
7755  * @param {Object} config
7756  */
7757 // private
7758 // This is a support class used internally by the Grid components
7759 Roo.grid.SplitDragZone = function(grid, hd, hd2){
7760     this.grid = grid;
7761     this.view = grid.getView();
7762     this.proxy = this.view.resizeProxy;
7763     Roo.grid.SplitDragZone.superclass.constructor.call(
7764         this,
7765         hd, // ID
7766         "gridSplitters" + this.grid.getGridEl().id, // SGROUP
7767         {  // CONFIG
7768             dragElId : Roo.id(this.proxy.dom),
7769             resizeFrame:false
7770         }
7771     );
7772     
7773     this.setHandleElId(Roo.id(hd));
7774     if (hd2 !== false) {
7775         this.setOuterHandleElId(Roo.id(hd2));
7776     }
7777     
7778     this.scroll = false;
7779 };
7780 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
7781     fly: Roo.Element.fly,
7782
7783     b4StartDrag : function(x, y){
7784         this.view.headersDisabled = true;
7785         var h = this.view.mainWrap ? this.view.mainWrap.getHeight() : (
7786                     this.view.headEl.getHeight() + this.view.bodyEl.getHeight()
7787         );
7788         this.proxy.setHeight(h);
7789         
7790         // for old system colWidth really stored the actual width?
7791         // in bootstrap we tried using xs/ms/etc.. to do % sizing?
7792         // which in reality did not work.. - it worked only for fixed sizes
7793         // for resizable we need to use actual sizes.
7794         var w = this.cm.getColumnWidth(this.cellIndex);
7795         if (!this.view.mainWrap) {
7796             // bootstrap.
7797             w = this.view.getHeaderIndex(this.cellIndex).getWidth();
7798         }
7799         
7800         
7801         
7802         // this was w-this.grid.minColumnWidth;
7803         // doesnt really make sense? - w = thie curren width or the rendered one?
7804         var minw = Math.max(w-this.grid.minColumnWidth, 0);
7805         this.resetConstraints();
7806         this.setXConstraint(minw, 1000);
7807         this.setYConstraint(0, 0);
7808         this.minX = x - minw;
7809         this.maxX = x + 1000;
7810         this.startPos = x;
7811         if (!this.view.mainWrap) { // this is Bootstrap code..
7812             this.getDragEl().style.display='block';
7813         }
7814         
7815         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
7816     },
7817
7818
7819     handleMouseDown : function(e){
7820         ev = Roo.EventObject.setEvent(e);
7821         var t = this.fly(ev.getTarget());
7822         if(t.hasClass("x-grid-split")){
7823             this.cellIndex = this.view.getCellIndex(t.dom);
7824             this.split = t.dom;
7825             this.cm = this.grid.colModel;
7826             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
7827                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
7828             }
7829         }
7830     },
7831
7832     endDrag : function(e){
7833         this.view.headersDisabled = false;
7834         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
7835         var diff = endX - this.startPos;
7836         // 
7837         var w = this.cm.getColumnWidth(this.cellIndex);
7838         if (!this.view.mainWrap) {
7839             w = 0;
7840         }
7841         this.view.onColumnSplitterMoved(this.cellIndex, w+diff);
7842     },
7843
7844     autoOffset : function(){
7845         this.setDelta(0,0);
7846     }
7847 });/*
7848  * Based on:
7849  * Ext JS Library 1.1.1
7850  * Copyright(c) 2006-2007, Ext JS, LLC.
7851  *
7852  * Originally Released Under LGPL - original licence link has changed is not relivant.
7853  *
7854  * Fork - LGPL
7855  * <script type="text/javascript">
7856  */
7857
7858 /**
7859  * @class Roo.grid.AbstractSelectionModel
7860  * @extends Roo.util.Observable
7861  * @abstract
7862  * Abstract base class for grid SelectionModels.  It provides the interface that should be
7863  * implemented by descendant classes.  This class should not be directly instantiated.
7864  * @constructor
7865  */
7866 Roo.grid.AbstractSelectionModel = function(){
7867     this.locked = false;
7868     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
7869 };
7870
7871 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
7872     /** @ignore Called by the grid automatically. Do not call directly. */
7873     init : function(grid){
7874         this.grid = grid;
7875         this.initEvents();
7876     },
7877
7878     /**
7879      * Locks the selections.
7880      */
7881     lock : function(){
7882         this.locked = true;
7883     },
7884
7885     /**
7886      * Unlocks the selections.
7887      */
7888     unlock : function(){
7889         this.locked = false;
7890     },
7891
7892     /**
7893      * Returns true if the selections are locked.
7894      * @return {Boolean}
7895      */
7896     isLocked : function(){
7897         return this.locked;
7898     }
7899 });/*
7900  * Based on:
7901  * Ext JS Library 1.1.1
7902  * Copyright(c) 2006-2007, Ext JS, LLC.
7903  *
7904  * Originally Released Under LGPL - original licence link has changed is not relivant.
7905  *
7906  * Fork - LGPL
7907  * <script type="text/javascript">
7908  */
7909 /**
7910  * @extends Roo.grid.AbstractSelectionModel
7911  * @class Roo.grid.RowSelectionModel
7912  * The default SelectionModel used by {@link Roo.grid.Grid}.
7913  * It supports multiple selections and keyboard selection/navigation. 
7914  * @constructor
7915  * @param {Object} config
7916  */
7917 Roo.grid.RowSelectionModel = function(config){
7918     Roo.apply(this, config);
7919     this.selections = new Roo.util.MixedCollection(false, function(o){
7920         return o.id;
7921     });
7922
7923     this.last = false;
7924     this.lastActive = false;
7925
7926     this.addEvents({
7927         /**
7928         * @event selectionchange
7929         * Fires when the selection changes
7930         * @param {SelectionModel} this
7931         */
7932        "selectionchange" : true,
7933        /**
7934         * @event afterselectionchange
7935         * Fires after the selection changes (eg. by key press or clicking)
7936         * @param {SelectionModel} this
7937         */
7938        "afterselectionchange" : true,
7939        /**
7940         * @event beforerowselect
7941         * Fires when a row is selected being selected, return false to cancel.
7942         * @param {SelectionModel} this
7943         * @param {Number} rowIndex The selected index
7944         * @param {Boolean} keepExisting False if other selections will be cleared
7945         */
7946        "beforerowselect" : true,
7947        /**
7948         * @event rowselect
7949         * Fires when a row is selected.
7950         * @param {SelectionModel} this
7951         * @param {Number} rowIndex The selected index
7952         * @param {Roo.data.Record} r The record
7953         */
7954        "rowselect" : true,
7955        /**
7956         * @event rowdeselect
7957         * Fires when a row is deselected.
7958         * @param {SelectionModel} this
7959         * @param {Number} rowIndex The selected index
7960         */
7961         "rowdeselect" : true
7962     });
7963     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
7964     this.locked = false;
7965 };
7966
7967 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
7968     /**
7969      * @cfg {Boolean} singleSelect
7970      * True to allow selection of only one row at a time (defaults to false)
7971      */
7972     singleSelect : false,
7973
7974     // private
7975     initEvents : function(){
7976
7977         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
7978             this.grid.on("mousedown", this.handleMouseDown, this);
7979         }else{ // allow click to work like normal
7980             this.grid.on("rowclick", this.handleDragableRowClick, this);
7981         }
7982         // bootstrap does not have a view..
7983         var view = this.grid.view ? this.grid.view : this.grid;
7984         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
7985             "up" : function(e){
7986                 if(!e.shiftKey){
7987                     this.selectPrevious(e.shiftKey);
7988                 }else if(this.last !== false && this.lastActive !== false){
7989                     var last = this.last;
7990                     this.selectRange(this.last,  this.lastActive-1);
7991                     view.focusRow(this.lastActive);
7992                     if(last !== false){
7993                         this.last = last;
7994                     }
7995                 }else{
7996                     this.selectFirstRow();
7997                 }
7998                 this.fireEvent("afterselectionchange", this);
7999             },
8000             "down" : function(e){
8001                 if(!e.shiftKey){
8002                     this.selectNext(e.shiftKey);
8003                 }else if(this.last !== false && this.lastActive !== false){
8004                     var last = this.last;
8005                     this.selectRange(this.last,  this.lastActive+1);
8006                     view.focusRow(this.lastActive);
8007                     if(last !== false){
8008                         this.last = last;
8009                     }
8010                 }else{
8011                     this.selectFirstRow();
8012                 }
8013                 this.fireEvent("afterselectionchange", this);
8014             },
8015             scope: this
8016         });
8017
8018          
8019         view.on("refresh", this.onRefresh, this);
8020         view.on("rowupdated", this.onRowUpdated, this);
8021         view.on("rowremoved", this.onRemove, this);
8022     },
8023
8024     // private
8025     onRefresh : function(){
8026         var ds = this.grid.ds, i, v = this.grid.view;
8027         var s = this.selections;
8028         s.each(function(r){
8029             if((i = ds.indexOfId(r.id)) != -1){
8030                 v.onRowSelect(i);
8031                 s.add(ds.getAt(i)); // updating the selection relate data
8032             }else{
8033                 s.remove(r);
8034             }
8035         });
8036     },
8037
8038     // private
8039     onRemove : function(v, index, r){
8040         this.selections.remove(r);
8041     },
8042
8043     // private
8044     onRowUpdated : function(v, index, r){
8045         if(this.isSelected(r)){
8046             v.onRowSelect(index);
8047         }
8048     },
8049
8050     /**
8051      * Select records.
8052      * @param {Array} records The records to select
8053      * @param {Boolean} keepExisting (optional) True to keep existing selections
8054      */
8055     selectRecords : function(records, keepExisting){
8056         if(!keepExisting){
8057             this.clearSelections();
8058         }
8059         var ds = this.grid.ds;
8060         for(var i = 0, len = records.length; i < len; i++){
8061             this.selectRow(ds.indexOf(records[i]), true);
8062         }
8063     },
8064
8065     /**
8066      * Gets the number of selected rows.
8067      * @return {Number}
8068      */
8069     getCount : function(){
8070         return this.selections.length;
8071     },
8072
8073     /**
8074      * Selects the first row in the grid.
8075      */
8076     selectFirstRow : function(){
8077         this.selectRow(0);
8078     },
8079
8080     /**
8081      * Select the last row.
8082      * @param {Boolean} keepExisting (optional) True to keep existing selections
8083      */
8084     selectLastRow : function(keepExisting){
8085         this.selectRow(this.grid.ds.getCount() - 1, keepExisting);
8086     },
8087
8088     /**
8089      * Selects the row immediately following the last selected row.
8090      * @param {Boolean} keepExisting (optional) True to keep existing selections
8091      */
8092     selectNext : function(keepExisting){
8093         if(this.last !== false && (this.last+1) < this.grid.ds.getCount()){
8094             this.selectRow(this.last+1, keepExisting);
8095             var view = this.grid.view ? this.grid.view : this.grid;
8096             view.focusRow(this.last);
8097         }
8098     },
8099
8100     /**
8101      * Selects the row that precedes the last selected row.
8102      * @param {Boolean} keepExisting (optional) True to keep existing selections
8103      */
8104     selectPrevious : function(keepExisting){
8105         if(this.last){
8106             this.selectRow(this.last-1, keepExisting);
8107             var view = this.grid.view ? this.grid.view : this.grid;
8108             view.focusRow(this.last);
8109         }
8110     },
8111
8112     /**
8113      * Returns the selected records
8114      * @return {Array} Array of selected records
8115      */
8116     getSelections : function(){
8117         return [].concat(this.selections.items);
8118     },
8119
8120     /**
8121      * Returns the first selected record.
8122      * @return {Record}
8123      */
8124     getSelected : function(){
8125         return this.selections.itemAt(0);
8126     },
8127
8128
8129     /**
8130      * Clears all selections.
8131      */
8132     clearSelections : function(fast){
8133         if(this.locked) {
8134             return;
8135         }
8136         if(fast !== true){
8137             var ds = this.grid.ds;
8138             var s = this.selections;
8139             s.each(function(r){
8140                 this.deselectRow(ds.indexOfId(r.id));
8141             }, this);
8142             s.clear();
8143         }else{
8144             this.selections.clear();
8145         }
8146         this.last = false;
8147     },
8148
8149
8150     /**
8151      * Selects all rows.
8152      */
8153     selectAll : function(){
8154         if(this.locked) {
8155             return;
8156         }
8157         this.selections.clear();
8158         for(var i = 0, len = this.grid.ds.getCount(); i < len; i++){
8159             this.selectRow(i, true);
8160         }
8161     },
8162
8163     /**
8164      * Returns True if there is a selection.
8165      * @return {Boolean}
8166      */
8167     hasSelection : function(){
8168         return this.selections.length > 0;
8169     },
8170
8171     /**
8172      * Returns True if the specified row is selected.
8173      * @param {Number/Record} record The record or index of the record to check
8174      * @return {Boolean}
8175      */
8176     isSelected : function(index){
8177         var r = typeof index == "number" ? this.grid.ds.getAt(index) : index;
8178         return (r && this.selections.key(r.id) ? true : false);
8179     },
8180
8181     /**
8182      * Returns True if the specified record id is selected.
8183      * @param {String} id The id of record to check
8184      * @return {Boolean}
8185      */
8186     isIdSelected : function(id){
8187         return (this.selections.key(id) ? true : false);
8188     },
8189
8190     // private
8191     handleMouseDown : function(e, t)
8192     {
8193         var view = this.grid.view ? this.grid.view : this.grid;
8194         var rowIndex;
8195         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
8196             return;
8197         };
8198         if(e.shiftKey && this.last !== false){
8199             var last = this.last;
8200             this.selectRange(last, rowIndex, e.ctrlKey);
8201             this.last = last; // reset the last
8202             view.focusRow(rowIndex);
8203         }else{
8204             var isSelected = this.isSelected(rowIndex);
8205             if(e.button !== 0 && isSelected){
8206                 view.focusRow(rowIndex);
8207             }else if(e.ctrlKey && isSelected){
8208                 this.deselectRow(rowIndex);
8209             }else if(!isSelected){
8210                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
8211                 view.focusRow(rowIndex);
8212             }
8213         }
8214         this.fireEvent("afterselectionchange", this);
8215     },
8216     // private
8217     handleDragableRowClick :  function(grid, rowIndex, e) 
8218     {
8219         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
8220             this.selectRow(rowIndex, false);
8221             var view = this.grid.view ? this.grid.view : this.grid;
8222             view.focusRow(rowIndex);
8223              this.fireEvent("afterselectionchange", this);
8224         }
8225     },
8226     
8227     /**
8228      * Selects multiple rows.
8229      * @param {Array} rows Array of the indexes of the row to select
8230      * @param {Boolean} keepExisting (optional) True to keep existing selections
8231      */
8232     selectRows : function(rows, keepExisting){
8233         if(!keepExisting){
8234             this.clearSelections();
8235         }
8236         for(var i = 0, len = rows.length; i < len; i++){
8237             this.selectRow(rows[i], true);
8238         }
8239     },
8240
8241     /**
8242      * Selects a range of rows. All rows in between startRow and endRow are also selected.
8243      * @param {Number} startRow The index of the first row in the range
8244      * @param {Number} endRow The index of the last row in the range
8245      * @param {Boolean} keepExisting (optional) True to retain existing selections
8246      */
8247     selectRange : function(startRow, endRow, keepExisting){
8248         if(this.locked) {
8249             return;
8250         }
8251         if(!keepExisting){
8252             this.clearSelections();
8253         }
8254         if(startRow <= endRow){
8255             for(var i = startRow; i <= endRow; i++){
8256                 this.selectRow(i, true);
8257             }
8258         }else{
8259             for(var i = startRow; i >= endRow; i--){
8260                 this.selectRow(i, true);
8261             }
8262         }
8263     },
8264
8265     /**
8266      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
8267      * @param {Number} startRow The index of the first row in the range
8268      * @param {Number} endRow The index of the last row in the range
8269      */
8270     deselectRange : function(startRow, endRow, preventViewNotify){
8271         if(this.locked) {
8272             return;
8273         }
8274         for(var i = startRow; i <= endRow; i++){
8275             this.deselectRow(i, preventViewNotify);
8276         }
8277     },
8278
8279     /**
8280      * Selects a row.
8281      * @param {Number} row The index of the row to select
8282      * @param {Boolean} keepExisting (optional) True to keep existing selections
8283      */
8284     selectRow : function(index, keepExisting, preventViewNotify){
8285         if(this.locked || (index < 0 || index >= this.grid.ds.getCount())) {
8286             return;
8287         }
8288         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
8289             if(!keepExisting || this.singleSelect){
8290                 this.clearSelections();
8291             }
8292             var r = this.grid.ds.getAt(index);
8293             this.selections.add(r);
8294             this.last = this.lastActive = index;
8295             if(!preventViewNotify){
8296                 var view = this.grid.view ? this.grid.view : this.grid;
8297                 view.onRowSelect(index);
8298             }
8299             this.fireEvent("rowselect", this, index, r);
8300             this.fireEvent("selectionchange", this);
8301         }
8302     },
8303
8304     /**
8305      * Deselects a row.
8306      * @param {Number} row The index of the row to deselect
8307      */
8308     deselectRow : function(index, preventViewNotify){
8309         if(this.locked) {
8310             return;
8311         }
8312         if(this.last == index){
8313             this.last = false;
8314         }
8315         if(this.lastActive == index){
8316             this.lastActive = false;
8317         }
8318         var r = this.grid.ds.getAt(index);
8319         this.selections.remove(r);
8320         if(!preventViewNotify){
8321             var view = this.grid.view ? this.grid.view : this.grid;
8322             view.onRowDeselect(index);
8323         }
8324         this.fireEvent("rowdeselect", this, index);
8325         this.fireEvent("selectionchange", this);
8326     },
8327
8328     // private
8329     restoreLast : function(){
8330         if(this._last){
8331             this.last = this._last;
8332         }
8333     },
8334
8335     // private
8336     acceptsNav : function(row, col, cm){
8337         return !cm.isHidden(col) && cm.isCellEditable(col, row);
8338     },
8339
8340     // private
8341     onEditorKey : function(field, e){
8342         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
8343         if(k == e.TAB){
8344             e.stopEvent();
8345             ed.completeEdit();
8346             if(e.shiftKey){
8347                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
8348             }else{
8349                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
8350             }
8351         }else if(k == e.ENTER && !e.ctrlKey){
8352             e.stopEvent();
8353             ed.completeEdit();
8354             if(e.shiftKey){
8355                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
8356             }else{
8357                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
8358             }
8359         }else if(k == e.ESC){
8360             ed.cancelEdit();
8361         }
8362         if(newCell){
8363             g.startEditing(newCell[0], newCell[1]);
8364         }
8365     }
8366 });/*
8367  * Based on:
8368  * Ext JS Library 1.1.1
8369  * Copyright(c) 2006-2007, Ext JS, LLC.
8370  *
8371  * Originally Released Under LGPL - original licence link has changed is not relivant.
8372  *
8373  * Fork - LGPL
8374  * <script type="text/javascript">
8375  */
8376  
8377
8378 /**
8379  * @class Roo.grid.ColumnModel
8380  * @extends Roo.util.Observable
8381  * This is the default implementation of a ColumnModel used by the Grid. It defines
8382  * the columns in the grid.
8383  * <br>Usage:<br>
8384  <pre><code>
8385  var colModel = new Roo.grid.ColumnModel([
8386         {header: "Ticker", width: 60, sortable: true, locked: true},
8387         {header: "Company Name", width: 150, sortable: true},
8388         {header: "Market Cap.", width: 100, sortable: true},
8389         {header: "$ Sales", width: 100, sortable: true, renderer: money},
8390         {header: "Employees", width: 100, sortable: true, resizable: false}
8391  ]);
8392  </code></pre>
8393  * <p>
8394  
8395  * The config options listed for this class are options which may appear in each
8396  * individual column definition.
8397  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
8398  * @constructor
8399  * @param {Object} config An Array of column config objects. See this class's
8400  * config objects for details.
8401 */
8402 Roo.grid.ColumnModel = function(config){
8403         /**
8404      * The config passed into the constructor
8405      */
8406     this.config = []; //config;
8407     this.lookup = {};
8408
8409     // if no id, create one
8410     // if the column does not have a dataIndex mapping,
8411     // map it to the order it is in the config
8412     for(var i = 0, len = config.length; i < len; i++){
8413         this.addColumn(config[i]);
8414         
8415     }
8416
8417     /**
8418      * The width of columns which have no width specified (defaults to 100)
8419      * @type Number
8420      */
8421     this.defaultWidth = 100;
8422
8423     /**
8424      * Default sortable of columns which have no sortable specified (defaults to false)
8425      * @type Boolean
8426      */
8427     this.defaultSortable = false;
8428
8429     this.addEvents({
8430         /**
8431              * @event widthchange
8432              * Fires when the width of a column changes.
8433              * @param {ColumnModel} this
8434              * @param {Number} columnIndex The column index
8435              * @param {Number} newWidth The new width
8436              */
8437             "widthchange": true,
8438         /**
8439              * @event headerchange
8440              * Fires when the text of a header changes.
8441              * @param {ColumnModel} this
8442              * @param {Number} columnIndex The column index
8443              * @param {Number} newText The new header text
8444              */
8445             "headerchange": true,
8446         /**
8447              * @event hiddenchange
8448              * Fires when a column is hidden or "unhidden".
8449              * @param {ColumnModel} this
8450              * @param {Number} columnIndex The column index
8451              * @param {Boolean} hidden true if hidden, false otherwise
8452              */
8453             "hiddenchange": true,
8454             /**
8455          * @event columnmoved
8456          * Fires when a column is moved.
8457          * @param {ColumnModel} this
8458          * @param {Number} oldIndex
8459          * @param {Number} newIndex
8460          */
8461         "columnmoved" : true,
8462         /**
8463          * @event columlockchange
8464          * Fires when a column's locked state is changed
8465          * @param {ColumnModel} this
8466          * @param {Number} colIndex
8467          * @param {Boolean} locked true if locked
8468          */
8469         "columnlockchange" : true
8470     });
8471     Roo.grid.ColumnModel.superclass.constructor.call(this);
8472 };
8473 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
8474     /**
8475      * @cfg {String} header [required] The header text to display in the Grid view.
8476      */
8477         /**
8478      * @cfg {String} xsHeader Header at Bootsrap Extra Small width (default for all)
8479      */
8480         /**
8481      * @cfg {String} smHeader Header at Bootsrap Small width
8482      */
8483         /**
8484      * @cfg {String} mdHeader Header at Bootsrap Medium width
8485      */
8486         /**
8487      * @cfg {String} lgHeader Header at Bootsrap Large width
8488      */
8489         /**
8490      * @cfg {String} xlHeader Header at Bootsrap extra Large width
8491      */
8492     /**
8493      * @cfg {String} dataIndex  The name of the field in the grid's {@link Roo.data.Store}'s
8494      * {@link Roo.data.Record} definition from which to draw the column's value. If not
8495      * specified, the column's index is used as an index into the Record's data Array.
8496      */
8497     /**
8498      * @cfg {Number} width  The initial width in pixels of the column. Using this
8499      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
8500      */
8501     /**
8502      * @cfg {Boolean} sortable True if sorting is to be allowed on this column.
8503      * Defaults to the value of the {@link #defaultSortable} property.
8504      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
8505      */
8506     /**
8507      * @cfg {Boolean} locked  True to lock the column in place while scrolling the Grid.  Defaults to false.
8508      */
8509     /**
8510      * @cfg {Boolean} fixed  True if the column width cannot be changed.  Defaults to false.
8511      */
8512     /**
8513      * @cfg {Boolean} resizable  False to disable column resizing. Defaults to true.
8514      */
8515     /**
8516      * @cfg {Boolean} hidden  True to hide the column. Defaults to false.
8517      */
8518     /**
8519      * @cfg {Function} renderer A function used to generate HTML markup for a cell
8520      * given the cell's data value. See {@link #setRenderer}. If not specified, the
8521      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
8522      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
8523      */
8524        /**
8525      * @cfg {Roo.grid.GridEditor} editor  For grid editors - returns the grid editor 
8526      */
8527     /**
8528      * @cfg {String} align (left|right) Set the CSS text-align property of the column.  Defaults to undefined (left).
8529      */
8530     /**
8531      * @cfg {String} valign (top|bottom|middle) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined (middle)
8532      */
8533     /**
8534      * @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)
8535      */
8536     /**
8537      * @cfg {String} tooltip mouse over tooltip text
8538      */
8539     /**
8540      * @cfg {Number} xs  can be '0' for hidden at this size (number less than 12)
8541      */
8542     /**
8543      * @cfg {Number} sm can be '0' for hidden at this size (number less than 12)
8544      */
8545     /**
8546      * @cfg {Number} md can be '0' for hidden at this size (number less than 12)
8547      */
8548     /**
8549      * @cfg {Number} lg   can be '0' for hidden at this size (number less than 12)
8550      */
8551         /**
8552      * @cfg {Number} xl   can be '0' for hidden at this size (number less than 12)
8553      */
8554     /**
8555      * Returns the id of the column at the specified index.
8556      * @param {Number} index The column index
8557      * @return {String} the id
8558      */
8559     getColumnId : function(index){
8560         return this.config[index].id;
8561     },
8562
8563     /**
8564      * Returns the column for a specified id.
8565      * @param {String} id The column id
8566      * @return {Object} the column
8567      */
8568     getColumnById : function(id){
8569         return this.lookup[id];
8570     },
8571
8572     
8573     /**
8574      * Returns the column Object for a specified dataIndex.
8575      * @param {String} dataIndex The column dataIndex
8576      * @return {Object|Boolean} the column or false if not found
8577      */
8578     getColumnByDataIndex: function(dataIndex){
8579         var index = this.findColumnIndex(dataIndex);
8580         return index > -1 ? this.config[index] : false;
8581     },
8582     
8583     /**
8584      * Returns the index for a specified column id.
8585      * @param {String} id The column id
8586      * @return {Number} the index, or -1 if not found
8587      */
8588     getIndexById : function(id){
8589         for(var i = 0, len = this.config.length; i < len; i++){
8590             if(this.config[i].id == id){
8591                 return i;
8592             }
8593         }
8594         return -1;
8595     },
8596     
8597     /**
8598      * Returns the index for a specified column dataIndex.
8599      * @param {String} dataIndex The column dataIndex
8600      * @return {Number} the index, or -1 if not found
8601      */
8602     
8603     findColumnIndex : function(dataIndex){
8604         for(var i = 0, len = this.config.length; i < len; i++){
8605             if(this.config[i].dataIndex == dataIndex){
8606                 return i;
8607             }
8608         }
8609         return -1;
8610     },
8611     
8612     
8613     moveColumn : function(oldIndex, newIndex){
8614         var c = this.config[oldIndex];
8615         this.config.splice(oldIndex, 1);
8616         this.config.splice(newIndex, 0, c);
8617         this.dataMap = null;
8618         this.fireEvent("columnmoved", this, oldIndex, newIndex);
8619     },
8620
8621     isLocked : function(colIndex){
8622         return this.config[colIndex].locked === true;
8623     },
8624
8625     setLocked : function(colIndex, value, suppressEvent){
8626         if(this.isLocked(colIndex) == value){
8627             return;
8628         }
8629         this.config[colIndex].locked = value;
8630         if(!suppressEvent){
8631             this.fireEvent("columnlockchange", this, colIndex, value);
8632         }
8633     },
8634
8635     getTotalLockedWidth : function(){
8636         var totalWidth = 0;
8637         for(var i = 0; i < this.config.length; i++){
8638             if(this.isLocked(i) && !this.isHidden(i)){
8639                 this.totalWidth += this.getColumnWidth(i);
8640             }
8641         }
8642         return totalWidth;
8643     },
8644
8645     getLockedCount : function(){
8646         for(var i = 0, len = this.config.length; i < len; i++){
8647             if(!this.isLocked(i)){
8648                 return i;
8649             }
8650         }
8651         
8652         return this.config.length;
8653     },
8654
8655     /**
8656      * Returns the number of columns.
8657      * @return {Number}
8658      */
8659     getColumnCount : function(visibleOnly){
8660         if(visibleOnly === true){
8661             var c = 0;
8662             for(var i = 0, len = this.config.length; i < len; i++){
8663                 if(!this.isHidden(i)){
8664                     c++;
8665                 }
8666             }
8667             return c;
8668         }
8669         return this.config.length;
8670     },
8671
8672     /**
8673      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
8674      * @param {Function} fn
8675      * @param {Object} scope (optional)
8676      * @return {Array} result
8677      */
8678     getColumnsBy : function(fn, scope){
8679         var r = [];
8680         for(var i = 0, len = this.config.length; i < len; i++){
8681             var c = this.config[i];
8682             if(fn.call(scope||this, c, i) === true){
8683                 r[r.length] = c;
8684             }
8685         }
8686         return r;
8687     },
8688
8689     /**
8690      * Returns true if the specified column is sortable.
8691      * @param {Number} col The column index
8692      * @return {Boolean}
8693      */
8694     isSortable : function(col){
8695         if(typeof this.config[col].sortable == "undefined"){
8696             return this.defaultSortable;
8697         }
8698         return this.config[col].sortable;
8699     },
8700
8701     /**
8702      * Returns the rendering (formatting) function defined for the column.
8703      * @param {Number} col The column index.
8704      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
8705      */
8706     getRenderer : function(col){
8707         if(!this.config[col].renderer){
8708             return Roo.grid.ColumnModel.defaultRenderer;
8709         }
8710         return this.config[col].renderer;
8711     },
8712
8713     /**
8714      * Sets the rendering (formatting) function for a column.
8715      * @param {Number} col The column index
8716      * @param {Function} fn The function to use to process the cell's raw data
8717      * to return HTML markup for the grid view. The render function is called with
8718      * the following parameters:<ul>
8719      * <li>Data value.</li>
8720      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
8721      * <li>css A CSS style string to apply to the table cell.</li>
8722      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
8723      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
8724      * <li>Row index</li>
8725      * <li>Column index</li>
8726      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
8727      */
8728     setRenderer : function(col, fn){
8729         this.config[col].renderer = fn;
8730     },
8731
8732     /**
8733      * Returns the width for the specified column.
8734      * @param {Number} col The column index
8735      * @param (optional) {String} gridSize bootstrap width size.
8736      * @return {Number}
8737      */
8738     getColumnWidth : function(col, gridSize)
8739         {
8740                 var cfg = this.config[col];
8741                 
8742                 if (typeof(gridSize) == 'undefined') {
8743                         return cfg.width * 1 || this.defaultWidth;
8744                 }
8745                 if (gridSize === false) { // if we set it..
8746                         return cfg.width || false;
8747                 }
8748                 var sizes = ['xl', 'lg', 'md', 'sm', 'xs'];
8749                 
8750                 for(var i = sizes.indexOf(gridSize); i < sizes.length; i++) {
8751                         if (typeof(cfg[ sizes[i] ] ) == 'undefined') {
8752                                 continue;
8753                         }
8754                         return cfg[ sizes[i] ];
8755                 }
8756                 return 1;
8757                 
8758     },
8759
8760     /**
8761      * Sets the width for a column.
8762      * @param {Number} col The column index
8763      * @param {Number} width The new width
8764      */
8765     setColumnWidth : function(col, width, suppressEvent){
8766         this.config[col].width = width;
8767         this.totalWidth = null;
8768         if(!suppressEvent){
8769              this.fireEvent("widthchange", this, col, width);
8770         }
8771     },
8772
8773     /**
8774      * Returns the total width of all columns.
8775      * @param {Boolean} includeHidden True to include hidden column widths
8776      * @return {Number}
8777      */
8778     getTotalWidth : function(includeHidden){
8779         if(!this.totalWidth){
8780             this.totalWidth = 0;
8781             for(var i = 0, len = this.config.length; i < len; i++){
8782                 if(includeHidden || !this.isHidden(i)){
8783                     this.totalWidth += this.getColumnWidth(i);
8784                 }
8785             }
8786         }
8787         return this.totalWidth;
8788     },
8789
8790     /**
8791      * Returns the header for the specified column.
8792      * @param {Number} col The column index
8793      * @return {String}
8794      */
8795     getColumnHeader : function(col){
8796         return this.config[col].header;
8797     },
8798
8799     /**
8800      * Sets the header for a column.
8801      * @param {Number} col The column index
8802      * @param {String} header The new header
8803      */
8804     setColumnHeader : function(col, header){
8805         this.config[col].header = header;
8806         this.fireEvent("headerchange", this, col, header);
8807     },
8808
8809     /**
8810      * Returns the tooltip for the specified column.
8811      * @param {Number} col The column index
8812      * @return {String}
8813      */
8814     getColumnTooltip : function(col){
8815             return this.config[col].tooltip;
8816     },
8817     /**
8818      * Sets the tooltip for a column.
8819      * @param {Number} col The column index
8820      * @param {String} tooltip The new tooltip
8821      */
8822     setColumnTooltip : function(col, tooltip){
8823             this.config[col].tooltip = tooltip;
8824     },
8825
8826     /**
8827      * Returns the dataIndex for the specified column.
8828      * @param {Number} col The column index
8829      * @return {Number}
8830      */
8831     getDataIndex : function(col){
8832         return this.config[col].dataIndex;
8833     },
8834
8835     /**
8836      * Sets the dataIndex for a column.
8837      * @param {Number} col The column index
8838      * @param {Number} dataIndex The new dataIndex
8839      */
8840     setDataIndex : function(col, dataIndex){
8841         this.config[col].dataIndex = dataIndex;
8842     },
8843
8844     
8845     
8846     /**
8847      * Returns true if the cell is editable.
8848      * @param {Number} colIndex The column index
8849      * @param {Number} rowIndex The row index - this is nto actually used..?
8850      * @return {Boolean}
8851      */
8852     isCellEditable : function(colIndex, rowIndex){
8853         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
8854     },
8855
8856     /**
8857      * Returns the editor defined for the cell/column.
8858      * return false or null to disable editing.
8859      * @param {Number} colIndex The column index
8860      * @param {Number} rowIndex The row index
8861      * @return {Object}
8862      */
8863     getCellEditor : function(colIndex, rowIndex){
8864         return this.config[colIndex].editor;
8865     },
8866
8867     /**
8868      * Sets if a column is editable.
8869      * @param {Number} col The column index
8870      * @param {Boolean} editable True if the column is editable
8871      */
8872     setEditable : function(col, editable){
8873         this.config[col].editable = editable;
8874     },
8875
8876
8877     /**
8878      * Returns true if the column is hidden.
8879      * @param {Number} colIndex The column index
8880      * @return {Boolean}
8881      */
8882     isHidden : function(colIndex){
8883         return this.config[colIndex].hidden;
8884     },
8885
8886
8887     /**
8888      * Returns true if the column width cannot be changed
8889      */
8890     isFixed : function(colIndex){
8891         return this.config[colIndex].fixed;
8892     },
8893
8894     /**
8895      * Returns true if the column can be resized
8896      * @return {Boolean}
8897      */
8898     isResizable : function(colIndex){
8899         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
8900     },
8901     /**
8902      * Sets if a column is hidden.
8903      * @param {Number} colIndex The column index
8904      * @param {Boolean} hidden True if the column is hidden
8905      */
8906     setHidden : function(colIndex, hidden){
8907         this.config[colIndex].hidden = hidden;
8908         this.totalWidth = null;
8909         this.fireEvent("hiddenchange", this, colIndex, hidden);
8910     },
8911
8912     /**
8913      * Sets the editor for a column.
8914      * @param {Number} col The column index
8915      * @param {Object} editor The editor object
8916      */
8917     setEditor : function(col, editor){
8918         this.config[col].editor = editor;
8919     },
8920     /**
8921      * Add a column (experimental...) - defaults to adding to the end..
8922      * @param {Object} config 
8923     */
8924     addColumn : function(c)
8925     {
8926     
8927         var i = this.config.length;
8928         this.config[i] = c;
8929         
8930         if(typeof c.dataIndex == "undefined"){
8931             c.dataIndex = i;
8932         }
8933         if(typeof c.renderer == "string"){
8934             c.renderer = Roo.util.Format[c.renderer];
8935         }
8936         if(typeof c.id == "undefined"){
8937             c.id = Roo.id();
8938         }
8939         if(c.editor && c.editor.xtype){
8940             c.editor  = Roo.factory(c.editor, Roo.grid);
8941         }
8942         if(c.editor && c.editor.isFormField){
8943             c.editor = new Roo.grid.GridEditor(c.editor);
8944         }
8945         this.lookup[c.id] = c;
8946     }
8947     
8948 });
8949
8950 Roo.grid.ColumnModel.defaultRenderer = function(value)
8951 {
8952     if(typeof value == "object") {
8953         return value;
8954     }
8955         if(typeof value == "string" && value.length < 1){
8956             return "&#160;";
8957         }
8958     
8959         return String.format("{0}", value);
8960 };
8961
8962 // Alias for backwards compatibility
8963 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
8964 /*
8965  * Based on:
8966  * Ext JS Library 1.1.1
8967  * Copyright(c) 2006-2007, Ext JS, LLC.
8968  *
8969  * Originally Released Under LGPL - original licence link has changed is not relivant.
8970  *
8971  * Fork - LGPL
8972  * <script type="text/javascript">
8973  */
8974  
8975 /**
8976  * @class Roo.LoadMask
8977  * A simple utility class for generically masking elements while loading data.  If the element being masked has
8978  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
8979  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
8980  * element's UpdateManager load indicator and will be destroyed after the initial load.
8981  * @constructor
8982  * Create a new LoadMask
8983  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
8984  * @param {Object} config The config object
8985  */
8986 Roo.LoadMask = function(el, config){
8987     this.el = Roo.get(el);
8988     Roo.apply(this, config);
8989     if(this.store){
8990         this.store.on('beforeload', this.onBeforeLoad, this);
8991         this.store.on('load', this.onLoad, this);
8992         this.store.on('loadexception', this.onLoadException, this);
8993         this.removeMask = false;
8994     }else{
8995         var um = this.el.getUpdateManager();
8996         um.showLoadIndicator = false; // disable the default indicator
8997         um.on('beforeupdate', this.onBeforeLoad, this);
8998         um.on('update', this.onLoad, this);
8999         um.on('failure', this.onLoad, this);
9000         this.removeMask = true;
9001     }
9002 };
9003
9004 Roo.LoadMask.prototype = {
9005     /**
9006      * @cfg {Boolean} removeMask
9007      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
9008      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
9009      */
9010     removeMask : false,
9011     /**
9012      * @cfg {String} msg
9013      * The text to display in a centered loading message box (defaults to 'Loading...')
9014      */
9015     msg : 'Loading...',
9016     /**
9017      * @cfg {String} msgCls
9018      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
9019      */
9020     msgCls : 'x-mask-loading',
9021
9022     /**
9023      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
9024      * @type Boolean
9025      */
9026     disabled: false,
9027
9028     /**
9029      * Disables the mask to prevent it from being displayed
9030      */
9031     disable : function(){
9032        this.disabled = true;
9033     },
9034
9035     /**
9036      * Enables the mask so that it can be displayed
9037      */
9038     enable : function(){
9039         this.disabled = false;
9040     },
9041     
9042     onLoadException : function()
9043     {
9044         Roo.log(arguments);
9045         
9046         if (typeof(arguments[3]) != 'undefined') {
9047             Roo.MessageBox.alert("Error loading",arguments[3]);
9048         } 
9049         /*
9050         try {
9051             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
9052                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
9053             }   
9054         } catch(e) {
9055             
9056         }
9057         */
9058     
9059         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
9060     },
9061     // private
9062     onLoad : function()
9063     {
9064         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
9065     },
9066
9067     // private
9068     onBeforeLoad : function(){
9069         if(!this.disabled){
9070             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
9071         }
9072     },
9073
9074     // private
9075     destroy : function(){
9076         if(this.store){
9077             this.store.un('beforeload', this.onBeforeLoad, this);
9078             this.store.un('load', this.onLoad, this);
9079             this.store.un('loadexception', this.onLoadException, this);
9080         }else{
9081             var um = this.el.getUpdateManager();
9082             um.un('beforeupdate', this.onBeforeLoad, this);
9083             um.un('update', this.onLoad, this);
9084             um.un('failure', this.onLoad, this);
9085         }
9086     }
9087 };/**
9088  * @class Roo.bootstrap.Table
9089  * @licence LGBL
9090  * @extends Roo.bootstrap.Component
9091  * @children Roo.bootstrap.TableBody
9092  * Bootstrap Table class.  This class represents the primary interface of a component based grid control.
9093  * Similar to Roo.grid.Grid
9094  * <pre><code>
9095  var table = Roo.factory({
9096     xtype : 'Table',
9097     xns : Roo.bootstrap,
9098     autoSizeColumns: true,
9099     
9100     
9101     store : {
9102         xtype : 'Store',
9103         xns : Roo.data,
9104         remoteSort : true,
9105         sortInfo : { direction : 'ASC', field: 'name' },
9106         proxy : {
9107            xtype : 'HttpProxy',
9108            xns : Roo.data,
9109            method : 'GET',
9110            url : 'https://example.com/some.data.url.json'
9111         },
9112         reader : {
9113            xtype : 'JsonReader',
9114            xns : Roo.data,
9115            fields : [ 'id', 'name', whatever' ],
9116            id : 'id',
9117            root : 'data'
9118         }
9119     },
9120     cm : [
9121         {
9122             xtype : 'ColumnModel',
9123             xns : Roo.grid,
9124             align : 'center',
9125             cursor : 'pointer',
9126             dataIndex : 'is_in_group',
9127             header : "Name",
9128             sortable : true,
9129             renderer : function(v, x , r) {  
9130             
9131                 return String.format("{0}", v)
9132             }
9133             width : 3
9134         } // more columns..
9135     ],
9136     selModel : {
9137         xtype : 'RowSelectionModel',
9138         xns : Roo.bootstrap.Table
9139         // you can add listeners to catch selection change here....
9140     }
9141      
9142
9143  });
9144  // set any options
9145  grid.render(Roo.get("some-div"));
9146 </code></pre>
9147
9148 Currently the Table  uses multiple headers to try and handle XL / Medium etc... styling
9149
9150
9151
9152  *
9153  * @cfg {Roo.grid.AbstractSelectionModel} sm The selection model to use (cell selection is not supported yet)
9154  * @cfg {Roo.data.Store} store The data store to use
9155  * @cfg {Roo.grid.ColumnModel} cm[] A column for the grid.
9156  * 
9157  * @cfg {String} cls table class
9158  *
9159  *
9160  * @cfg {string} empty_results  Text to display for no results 
9161  * @cfg {boolean} striped Should the rows be alternative striped
9162  * @cfg {boolean} bordered Add borders to the table
9163  * @cfg {boolean} hover Add hover highlighting
9164  * @cfg {boolean} condensed Format condensed
9165  * @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,
9166  *                also adds table-responsive (see bootstrap docs for details)
9167  * @cfg {Boolean} loadMask (true|false) default false
9168  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
9169  * @cfg {Boolean} footerRow (true|false) generate tfoot with columns of values, default false
9170  * @cfg {Boolean} headerShow (true|false) generate thead, default true
9171  * @cfg {Boolean} rowSelection (true|false) default false
9172  * @cfg {Boolean} cellSelection (true|false) default false
9173  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header (with resizable columns)
9174  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
9175  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
9176  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
9177  * @cfg {Boolean} enableColumnResize default true if columns can be resized = needs scrollBody to be set to work (drag/drop)
9178  * @cfg {Boolean} disableAutoSize disable autoSize() and initCSS()
9179  *
9180  * 
9181  * @cfg {Number} minColumnWidth default 50 pixels minimum column width 
9182  * 
9183  * @constructor
9184  * Create a new Table
9185  * @param {Object} config The config object
9186  */
9187
9188 Roo.bootstrap.Table = function(config)
9189 {
9190     Roo.bootstrap.Table.superclass.constructor.call(this, config);
9191      
9192     // BC...
9193     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
9194     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
9195     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
9196     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
9197     
9198     this.view = this; // compat with grid.
9199     
9200     this.sm = this.sm || {xtype: 'RowSelectionModel'};
9201     if (this.sm) {
9202         this.sm.grid = this;
9203         this.selModel = Roo.factory(this.sm, Roo.grid);
9204         this.sm = this.selModel;
9205         this.sm.xmodule = this.xmodule || false;
9206     }
9207     
9208     if (this.cm && typeof(this.cm.config) == 'undefined') {
9209         this.colModel = new Roo.grid.ColumnModel(this.cm);
9210         this.cm = this.colModel;
9211         this.cm.xmodule = this.xmodule || false;
9212     }
9213     if (this.store) {
9214         this.store= Roo.factory(this.store, Roo.data);
9215         this.ds = this.store;
9216         this.ds.xmodule = this.xmodule || false;
9217          
9218     }
9219     if (this.footer && this.store) {
9220         this.footer.dataSource = this.ds;
9221         this.footer = Roo.factory(this.footer);
9222     }
9223     
9224     /** @private */
9225     this.addEvents({
9226         /**
9227          * @event cellclick
9228          * Fires when a cell is clicked
9229          * @param {Roo.bootstrap.Table} this
9230          * @param {Roo.Element} el
9231          * @param {Number} rowIndex
9232          * @param {Number} columnIndex
9233          * @param {Roo.EventObject} e
9234          */
9235         "cellclick" : true,
9236         /**
9237          * @event celldblclick
9238          * Fires when a cell is double clicked
9239          * @param {Roo.bootstrap.Table} this
9240          * @param {Roo.Element} el
9241          * @param {Number} rowIndex
9242          * @param {Number} columnIndex
9243          * @param {Roo.EventObject} e
9244          */
9245         "celldblclick" : true,
9246         /**
9247          * @event rowclick
9248          * Fires when a row is clicked
9249          * @param {Roo.bootstrap.Table} this
9250          * @param {Roo.Element} el
9251          * @param {Number} rowIndex
9252          * @param {Roo.EventObject} e
9253          */
9254         "rowclick" : true,
9255         /**
9256          * @event rowdblclick
9257          * Fires when a row is double clicked
9258          * @param {Roo.bootstrap.Table} this
9259          * @param {Roo.Element} el
9260          * @param {Number} rowIndex
9261          * @param {Roo.EventObject} e
9262          */
9263         "rowdblclick" : true,
9264         /**
9265          * @event mouseover
9266          * Fires when a mouseover occur
9267          * @param {Roo.bootstrap.Table} this
9268          * @param {Roo.Element} el
9269          * @param {Number} rowIndex
9270          * @param {Number} columnIndex
9271          * @param {Roo.EventObject} e
9272          */
9273         "mouseover" : true,
9274         /**
9275          * @event mouseout
9276          * Fires when a mouseout occur
9277          * @param {Roo.bootstrap.Table} this
9278          * @param {Roo.Element} el
9279          * @param {Number} rowIndex
9280          * @param {Number} columnIndex
9281          * @param {Roo.EventObject} e
9282          */
9283         "mouseout" : true,
9284         /**
9285          * @event rowclass
9286          * Fires when a row is rendered, so you can change add a style to it.
9287          * @param {Roo.bootstrap.Table} this
9288          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
9289          */
9290         'rowclass' : true,
9291           /**
9292          * @event rowsrendered
9293          * Fires when all the  rows have been rendered
9294          * @param {Roo.bootstrap.Table} this
9295          */
9296         'rowsrendered' : true,
9297         /**
9298          * @event contextmenu
9299          * The raw contextmenu event for the entire grid.
9300          * @param {Roo.EventObject} e
9301          */
9302         "contextmenu" : true,
9303         /**
9304          * @event rowcontextmenu
9305          * Fires when a row is right clicked
9306          * @param {Roo.bootstrap.Table} this
9307          * @param {Number} rowIndex
9308          * @param {Roo.EventObject} e
9309          */
9310         "rowcontextmenu" : true,
9311         /**
9312          * @event cellcontextmenu
9313          * Fires when a cell is right clicked
9314          * @param {Roo.bootstrap.Table} this
9315          * @param {Number} rowIndex
9316          * @param {Number} cellIndex
9317          * @param {Roo.EventObject} e
9318          */
9319          "cellcontextmenu" : true,
9320          /**
9321          * @event headercontextmenu
9322          * Fires when a header is right clicked
9323          * @param {Roo.bootstrap.Table} this
9324          * @param {Number} columnIndex
9325          * @param {Roo.EventObject} e
9326          */
9327         "headercontextmenu" : true,
9328         /**
9329          * @event mousedown
9330          * The raw mousedown event for the entire grid.
9331          * @param {Roo.EventObject} e
9332          */
9333         "mousedown" : true
9334         
9335     });
9336 };
9337
9338 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
9339     
9340     cls: false,
9341     
9342     empty_results : '',
9343     striped : false,
9344     scrollBody : false,
9345     bordered: false,
9346     hover:  false,
9347     condensed : false,
9348     responsive : false,
9349     sm : false,
9350     cm : false,
9351     store : false,
9352     loadMask : false,
9353     footerShow : true,
9354     footerRow : false,
9355     headerShow : true,
9356     enableColumnResize: true,
9357     disableAutoSize: false,
9358   
9359     rowSelection : false,
9360     cellSelection : false,
9361     layout : false,
9362
9363     minColumnWidth : 50,
9364     
9365     // Roo.Element - the tbody
9366     bodyEl: false,  // <tbody> Roo.Element - thead element    
9367     headEl: false,  // <thead> Roo.Element - thead element
9368     resizeProxy : false, // proxy element for dragging?
9369
9370
9371     
9372     container: false, // used by gridpanel...
9373     
9374     lazyLoad : false,
9375     
9376     CSS : Roo.util.CSS,
9377     
9378     auto_hide_footer : false,
9379     
9380     view: false, // actually points to this..
9381     
9382     getAutoCreate : function()
9383     {
9384         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
9385         
9386         cfg = {
9387             tag: 'table',
9388             cls : 'table', 
9389             cn : []
9390         };
9391         // this get's auto added by panel.Grid
9392         if (this.scrollBody) {
9393             cfg.cls += ' table-body-fixed';
9394         }    
9395         if (this.striped) {
9396             cfg.cls += ' table-striped';
9397         }
9398         
9399         if (this.hover) {
9400             cfg.cls += ' table-hover';
9401         }
9402         if (this.bordered) {
9403             cfg.cls += ' table-bordered';
9404         }
9405         if (this.condensed) {
9406             cfg.cls += ' table-condensed';
9407         }
9408         
9409         if (this.responsive) {
9410             cfg.cls += ' table-responsive';
9411         }
9412         
9413         if (this.cls) {
9414             cfg.cls+=  ' ' +this.cls;
9415         }
9416         
9417         
9418         
9419         if (this.layout) {
9420             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
9421         }
9422         
9423         if(this.store || this.cm){
9424             if(this.headerShow){
9425                 cfg.cn.push(this.renderHeader());
9426             }
9427             
9428             cfg.cn.push(this.renderBody());
9429             
9430             if(this.footerShow || this.footerRow){
9431                 cfg.cn.push(this.renderFooter());
9432             }
9433
9434             // where does this come from?
9435             //cfg.cls+=  ' TableGrid';
9436         }
9437         
9438         return { cn : [ cfg ] };
9439     },
9440     
9441     initEvents : function()
9442     {   
9443         if(!this.store || !this.cm){
9444             return;
9445         }
9446         if (this.selModel) {
9447             this.selModel.initEvents();
9448         }
9449         
9450         
9451         //Roo.log('initEvents with ds!!!!');
9452         
9453         this.bodyEl = this.el.select('tbody', true).first();
9454         this.headEl = this.el.select('thead', true).first();
9455         this.mainFoot = this.el.select('tfoot', true).first();
9456         
9457         
9458         
9459         
9460         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
9461             e.on('click', this.sort, this);
9462         }, this);
9463         
9464         
9465         // why is this done????? = it breaks dialogs??
9466         //this.parent().el.setStyle('position', 'relative');
9467         
9468         
9469         if (this.footer) {
9470             this.footer.parentId = this.id;
9471             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
9472             
9473             if(this.lazyLoad){
9474                 this.el.select('tfoot tr td').first().addClass('hide');
9475             }
9476         } 
9477         
9478         if(this.loadMask) {
9479             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
9480         }
9481         
9482         this.store.on('load', this.onLoad, this);
9483         this.store.on('beforeload', this.onBeforeLoad, this);
9484         this.store.on('update', this.onUpdate, this);
9485         this.store.on('add', this.onAdd, this);
9486         this.store.on("clear", this.clear, this);
9487         
9488         this.el.on("contextmenu", this.onContextMenu, this);
9489         
9490         
9491         this.cm.on("headerchange", this.onHeaderChange, this);
9492         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
9493
9494  //?? does bodyEl get replaced on render?
9495         this.bodyEl.on("click", this.onClick, this);
9496         this.bodyEl.on("dblclick", this.onDblClick, this);        
9497         this.bodyEl.on('scroll', this.onBodyScroll, this);
9498
9499         // guessing mainbody will work - this relays usually caught by selmodel at present.
9500         this.relayEvents(this.bodyEl, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
9501   
9502   
9503         this.resizeProxy = Roo.get(document.body).createChild({ cls:"x-grid-resize-proxy", html: '&#160;' });
9504         
9505   
9506         if(this.headEl && this.enableColumnResize !== false && Roo.grid.SplitDragZone){
9507             new Roo.grid.SplitDragZone(this, this.headEl.dom, false); // not sure what 'lockedHd is for this implementation..)
9508         }
9509         
9510         this.initCSS();
9511     },
9512     // Compatibility with grid - we implement all the view features at present.
9513     getView : function()
9514     {
9515         return this;
9516     },
9517     
9518     initCSS : function()
9519     {
9520         if(this.disableAutoSize) {
9521             return;
9522         }
9523         
9524         var cm = this.cm, styles = [];
9525         this.CSS.removeStyleSheet(this.id + '-cssrules');
9526         var headHeight = this.headEl ? this.headEl.dom.clientHeight : 0;
9527         // we can honour xs/sm/md/xl  as widths...
9528         // we first have to decide what widht we are currently at...
9529         var sz = Roo.getGridSize();
9530         
9531         var total = 0;
9532         var last = -1;
9533         var cols = []; // visable cols.
9534         var total_abs = 0;
9535         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
9536             var w = cm.getColumnWidth(i, false);
9537             if(cm.isHidden(i)){
9538                 cols.push( { rel : false, abs : 0 });
9539                 continue;
9540             }
9541             if (w !== false) {
9542                 cols.push( { rel : false, abs : w });
9543                 total_abs += w;
9544                 last = i; // not really..
9545                 continue;
9546             }
9547             var w = cm.getColumnWidth(i, sz);
9548             if (w > 0) {
9549                 last = i
9550             }
9551             total += w;
9552             cols.push( { rel : w, abs : false });
9553         }
9554         
9555         var avail = this.bodyEl.dom.clientWidth - total_abs;
9556         
9557         var unitWidth = Math.floor(avail / total);
9558         var rem = avail - (unitWidth * total);
9559         
9560         var hidden, width, pos = 0 , splithide , left;
9561         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
9562             
9563             hidden = 'display:none;';
9564             left = '';
9565             width  = 'width:0px;';
9566             splithide = '';
9567             if(!cm.isHidden(i)){
9568                 hidden = '';
9569                 
9570                 
9571                 // we can honour xs/sm/md/xl ?
9572                 var w = cols[i].rel == false ? cols[i].abs : (cols[i].rel * unitWidth);
9573                 if (w===0) {
9574                     hidden = 'display:none;';
9575                 }
9576                 // width should return a small number...
9577                 if (i == last) {
9578                     w+=rem; // add the remaining with..
9579                 }
9580                 pos += w;
9581                 left = "left:" + (pos -4) + "px;";
9582                 width = "width:" + w+ "px;";
9583                 
9584             }
9585             if (this.responsive) {
9586                 width = '';
9587                 left = '';
9588                 hidden = cm.isHidden(i) ? 'display:none;' : '';
9589                 splithide = 'display: none;';
9590             }
9591             
9592             styles.push( '#' , this.id , ' .x-col-' , i, " {", cm.config[i].css, width, hidden, "}\n" );
9593             if (this.headEl) {
9594                 if (i == last) {
9595                     splithide = 'display:none;';
9596                 }
9597                 
9598                 styles.push('#' , this.id , ' .x-hcol-' , i, " { ", width, hidden," }\n",
9599                             '#' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', (headHeight - 4), "px;}\n",
9600                             // this is the popover version..
9601                             '.popover-inner #' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', 100, "%;}\n"
9602                 );
9603             }
9604             
9605         }
9606         //Roo.log(styles.join(''));
9607         this.CSS.createStyleSheet( styles.join(''), this.id + '-cssrules');
9608         
9609     },
9610     
9611     
9612     
9613     onContextMenu : function(e, t)
9614     {
9615         this.processEvent("contextmenu", e);
9616     },
9617     
9618     processEvent : function(name, e)
9619     {
9620         if (name != 'touchstart' ) {
9621             this.fireEvent(name, e);    
9622         }
9623         
9624         var t = e.getTarget();
9625         
9626         var cell = Roo.get(t);
9627         
9628         if(!cell){
9629             return;
9630         }
9631         
9632         if(cell.findParent('tfoot', false, true)){
9633             return;
9634         }
9635         
9636         if(cell.findParent('thead', false, true)){
9637             
9638             if(e.getTarget().nodeName.toLowerCase() != 'th'){
9639                 cell = Roo.get(t).findParent('th', false, true);
9640                 if (!cell) {
9641                     Roo.log("failed to find th in thead?");
9642                     Roo.log(e.getTarget());
9643                     return;
9644                 }
9645             }
9646             
9647             var cellIndex = cell.dom.cellIndex;
9648             
9649             var ename = name == 'touchstart' ? 'click' : name;
9650             this.fireEvent("header" + ename, this, cellIndex, e);
9651             
9652             return;
9653         }
9654         
9655         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9656             cell = Roo.get(t).findParent('td', false, true);
9657             if (!cell) {
9658                 Roo.log("failed to find th in tbody?");
9659                 Roo.log(e.getTarget());
9660                 return;
9661             }
9662         }
9663         
9664         var row = cell.findParent('tr', false, true);
9665         var cellIndex = cell.dom.cellIndex;
9666         var rowIndex = row.dom.rowIndex - 1;
9667         
9668         if(row !== false){
9669             
9670             this.fireEvent("row" + name, this, rowIndex, e);
9671             
9672             if(cell !== false){
9673             
9674                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
9675             }
9676         }
9677         
9678     },
9679     
9680     onMouseover : function(e, el)
9681     {
9682         var cell = Roo.get(el);
9683         
9684         if(!cell){
9685             return;
9686         }
9687         
9688         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9689             cell = cell.findParent('td', false, true);
9690         }
9691         
9692         var row = cell.findParent('tr', false, true);
9693         var cellIndex = cell.dom.cellIndex;
9694         var rowIndex = row.dom.rowIndex - 1; // start from 0
9695         
9696         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
9697         
9698     },
9699     
9700     onMouseout : function(e, el)
9701     {
9702         var cell = Roo.get(el);
9703         
9704         if(!cell){
9705             return;
9706         }
9707         
9708         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9709             cell = cell.findParent('td', false, true);
9710         }
9711         
9712         var row = cell.findParent('tr', false, true);
9713         var cellIndex = cell.dom.cellIndex;
9714         var rowIndex = row.dom.rowIndex - 1; // start from 0
9715         
9716         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
9717         
9718     },
9719     
9720     onClick : function(e, el)
9721     {
9722         var cell = Roo.get(el);
9723         
9724         if(!cell || (!this.cellSelection && !this.rowSelection)){
9725             return;
9726         }
9727         
9728         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9729             cell = cell.findParent('td', false, true);
9730         }
9731         
9732         if(!cell || typeof(cell) == 'undefined'){
9733             return;
9734         }
9735         
9736         var row = cell.findParent('tr', false, true);
9737         
9738         if(!row || typeof(row) == 'undefined'){
9739             return;
9740         }
9741         
9742         var cellIndex = cell.dom.cellIndex;
9743         var rowIndex = this.getRowIndex(row);
9744         
9745         // why??? - should these not be based on SelectionModel?
9746         //if(this.cellSelection){
9747             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
9748         //}
9749         
9750         //if(this.rowSelection){
9751             this.fireEvent('rowclick', this, row, rowIndex, e);
9752         //}
9753          
9754     },
9755         
9756     onDblClick : function(e,el)
9757     {
9758         var cell = Roo.get(el);
9759         
9760         if(!cell || (!this.cellSelection && !this.rowSelection)){
9761             return;
9762         }
9763         
9764         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9765             cell = cell.findParent('td', false, true);
9766         }
9767         
9768         if(!cell || typeof(cell) == 'undefined'){
9769             return;
9770         }
9771         
9772         var row = cell.findParent('tr', false, true);
9773         
9774         if(!row || typeof(row) == 'undefined'){
9775             return;
9776         }
9777         
9778         var cellIndex = cell.dom.cellIndex;
9779         var rowIndex = this.getRowIndex(row);
9780         
9781         if(this.cellSelection){
9782             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
9783         }
9784         
9785         if(this.rowSelection){
9786             this.fireEvent('rowdblclick', this, row, rowIndex, e);
9787         }
9788     },
9789     findRowIndex : function(el)
9790     {
9791         var cell = Roo.get(el);
9792         if(!cell) {
9793             return false;
9794         }
9795         var row = cell.findParent('tr', false, true);
9796         
9797         if(!row || typeof(row) == 'undefined'){
9798             return false;
9799         }
9800         return this.getRowIndex(row);
9801     },
9802     sort : function(e,el)
9803     {
9804         var col = Roo.get(el);
9805         
9806         if(!col.hasClass('sortable')){
9807             return;
9808         }
9809         
9810         var sort = col.attr('sort');
9811         var dir = 'ASC';
9812         
9813         if(col.select('i', true).first().hasClass('fa-arrow-up')){
9814             dir = 'DESC';
9815         }
9816         
9817         this.store.sortInfo = {field : sort, direction : dir};
9818         
9819         if (this.footer) {
9820             Roo.log("calling footer first");
9821             this.footer.onClick('first');
9822         } else {
9823         
9824             this.store.load({ params : { start : 0 } });
9825         }
9826     },
9827     
9828     renderHeader : function()
9829     {
9830         var header = {
9831             tag: 'thead',
9832             cn : []
9833         };
9834         
9835         var cm = this.cm;
9836         this.totalWidth = 0;
9837         
9838         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
9839             
9840             var config = cm.config[i];
9841             
9842             var c = {
9843                 tag: 'th',
9844                 cls : 'x-hcol-' + i,
9845                 style : '',
9846                 
9847                 html: cm.getColumnHeader(i)
9848             };
9849             
9850             var tooltip = cm.getColumnTooltip(i);
9851             if (tooltip) {
9852                 c.tooltip = tooltip;
9853             }
9854             
9855             
9856             var hh = '';
9857             
9858             if(typeof(config.sortable) != 'undefined' && config.sortable){
9859                 c.cls += ' sortable';
9860                 c.html = '<i class="fa"></i>' + c.html;
9861             }
9862             
9863             // could use BS4 hidden-..-down 
9864             
9865             if(typeof(config.lgHeader) != 'undefined'){
9866                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
9867             }
9868             
9869             if(typeof(config.mdHeader) != 'undefined'){
9870                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
9871             }
9872             
9873             if(typeof(config.smHeader) != 'undefined'){
9874                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
9875             }
9876             
9877             if(typeof(config.xsHeader) != 'undefined'){
9878                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
9879             }
9880             
9881             if(hh.length){
9882                 c.html = hh;
9883             }
9884             
9885             if(typeof(config.tooltip) != 'undefined'){
9886                 c.tooltip = config.tooltip;
9887             }
9888             
9889             if(typeof(config.colspan) != 'undefined'){
9890                 c.colspan = config.colspan;
9891             }
9892             
9893             // hidden is handled by CSS now
9894             
9895             if(typeof(config.dataIndex) != 'undefined'){
9896                 c.sort = config.dataIndex;
9897             }
9898             
9899            
9900             
9901             if(typeof(config.align) != 'undefined' && config.align.length){
9902                 c.style += ' text-align:' + config.align + ';';
9903             }
9904             
9905             /* width is done in CSS
9906              *if(typeof(config.width) != 'undefined'){
9907                 c.style += ' width:' + config.width + 'px;';
9908                 this.totalWidth += config.width;
9909             } else {
9910                 this.totalWidth += 100; // assume minimum of 100 per column?
9911             }
9912             */
9913             
9914             if(typeof(config.cls) != 'undefined'){
9915                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
9916             }
9917             // this is the bit that doesnt reall work at all...
9918             
9919             if (this.responsive) {
9920                  
9921             
9922                 ['xs','sm','md','lg'].map(function(size){
9923                     
9924                     if(typeof(config[size]) == 'undefined'){
9925                         return;
9926                     }
9927                      
9928                     if (!config[size]) { // 0 = hidden
9929                         // BS 4 '0' is treated as hide that column and below.
9930                         c.cls += ' hidden-' + size + ' hidden' + size + '-down';
9931                         return;
9932                     }
9933                     
9934                     c.cls += ' col-' + size + '-' + config[size] + (
9935                         size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
9936                     );
9937                     
9938                     
9939                 });
9940             }
9941             // at the end?
9942             
9943             c.html +=' <span class="x-grid-split x-grid-split-' + i + '"></span>';
9944             
9945             
9946             
9947             
9948             header.cn.push(c)
9949         }
9950         
9951         return header;
9952     },
9953     
9954     renderBody : function()
9955     {
9956         var body = {
9957             tag: 'tbody',
9958             cn : [
9959                 {
9960                     tag: 'tr',
9961                     cn : [
9962                         {
9963                             tag : 'td',
9964                             colspan :  this.cm.getColumnCount()
9965                         }
9966                     ]
9967                 }
9968             ]
9969         };
9970         
9971         return body;
9972     },
9973     
9974     renderFooter : function()
9975     {
9976         var footer = {
9977             tag: 'tfoot',
9978             cn : [
9979                 {
9980                     tag: 'tr',
9981                     cn : [
9982                         {
9983                             tag : 'td',
9984                             colspan :  this.cm.getColumnCount()
9985                         }
9986                     ]
9987                 }
9988             ]
9989         };
9990         
9991         return footer;
9992     },
9993     
9994     onLoad : function()
9995     {
9996 //        Roo.log('ds onload');
9997         this.clear();
9998         
9999         var _this = this;
10000         var cm = this.cm;
10001         var ds = this.store;
10002         
10003         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
10004             e.select('i', true).removeClass(['fa-arrow-up', 'fa-arrow-down']);
10005             if (_this.store.sortInfo) {
10006                     
10007                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
10008                     e.select('i', true).addClass(['fa-arrow-up']);
10009                 }
10010                 
10011                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
10012                     e.select('i', true).addClass(['fa-arrow-down']);
10013                 }
10014             }
10015         });
10016         
10017         var tbody =  this.bodyEl;
10018               
10019         if(ds.getCount() > 0){
10020             ds.data.each(function(d,rowIndex){
10021                 var row =  this.renderRow(cm, ds, rowIndex);
10022                 
10023                 tbody.createChild(row);
10024                 
10025                 var _this = this;
10026                 
10027                 if(row.cellObjects.length){
10028                     Roo.each(row.cellObjects, function(r){
10029                         _this.renderCellObject(r);
10030                     })
10031                 }
10032                 
10033             }, this);
10034         } else if (this.empty_results.length) {
10035             this.el.mask(this.empty_results, 'no-spinner');
10036         }
10037         
10038         var tfoot = this.el.select('tfoot', true).first();
10039         
10040         if(this.footerShow && !this.footerRow && this.auto_hide_footer && this.mainFoot){
10041             
10042             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
10043             
10044             var total = this.ds.getTotalCount();
10045             
10046             if(this.footer.pageSize < total){
10047                 this.mainFoot.show();
10048             }
10049         }
10050
10051         if(!this.footerShow && this.footerRow) {
10052
10053             var tr = {
10054                 tag : 'tr',
10055                 cn : []
10056             };
10057
10058             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
10059                 var footer = typeof(cm.config[i].footer) == "function" ? cm.config[i].footer(ds, cm.config[i]) : cm.config[i].footer;
10060                 var td = {
10061                     tag: 'td',
10062                     cls : ' x-fcol-' + i,
10063                     html: footer
10064                 };
10065
10066                 tr.cn.push(td);
10067                 
10068             }
10069             
10070             tfoot.dom.innerHTML = '';
10071
10072             tfoot.createChild(tr);
10073         }
10074         
10075         Roo.each(this.el.select('tbody td', true).elements, function(e){
10076             e.on('mouseover', _this.onMouseover, _this);
10077         });
10078         
10079         Roo.each(this.el.select('tbody td', true).elements, function(e){
10080             e.on('mouseout', _this.onMouseout, _this);
10081         });
10082         this.fireEvent('rowsrendered', this);
10083         
10084         this.autoSize();
10085         
10086         this.initCSS(); /// resize cols
10087
10088         
10089     },
10090     
10091     
10092     onUpdate : function(ds,record)
10093     {
10094         this.refreshRow(record);
10095         this.autoSize();
10096     },
10097     
10098     onRemove : function(ds, record, index, isUpdate){
10099         if(isUpdate !== true){
10100             this.fireEvent("beforerowremoved", this, index, record);
10101         }
10102         var bt = this.bodyEl.dom;
10103         
10104         var rows = this.el.select('tbody > tr', true).elements;
10105         
10106         if(typeof(rows[index]) != 'undefined'){
10107             bt.removeChild(rows[index].dom);
10108         }
10109         
10110 //        if(bt.rows[index]){
10111 //            bt.removeChild(bt.rows[index]);
10112 //        }
10113         
10114         if(isUpdate !== true){
10115             //this.stripeRows(index);
10116             //this.syncRowHeights(index, index);
10117             //this.layout();
10118             this.fireEvent("rowremoved", this, index, record);
10119         }
10120     },
10121     
10122     onAdd : function(ds, records, rowIndex)
10123     {
10124         //Roo.log('on Add called');
10125         // - note this does not handle multiple adding very well..
10126         var bt = this.bodyEl.dom;
10127         for (var i =0 ; i < records.length;i++) {
10128             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
10129             //Roo.log(records[i]);
10130             //Roo.log(this.store.getAt(rowIndex+i));
10131             this.insertRow(this.store, rowIndex + i, false);
10132             return;
10133         }
10134         
10135     },
10136     
10137     
10138     refreshRow : function(record){
10139         var ds = this.store, index;
10140         if(typeof record == 'number'){
10141             index = record;
10142             record = ds.getAt(index);
10143         }else{
10144             index = ds.indexOf(record);
10145             if (index < 0) {
10146                 return; // should not happen - but seems to 
10147             }
10148         }
10149         this.insertRow(ds, index, true);
10150         this.autoSize();
10151         this.onRemove(ds, record, index+1, true);
10152         this.autoSize();
10153         //this.syncRowHeights(index, index);
10154         //this.layout();
10155         this.fireEvent("rowupdated", this, index, record);
10156     },
10157     // private - called by RowSelection
10158     onRowSelect : function(rowIndex){
10159         var row = this.getRowDom(rowIndex);
10160         row.addClass(['bg-info','info']);
10161     },
10162     // private - called by RowSelection
10163     onRowDeselect : function(rowIndex)
10164     {
10165         if (rowIndex < 0) {
10166             return;
10167         }
10168         var row = this.getRowDom(rowIndex);
10169         row.removeClass(['bg-info','info']);
10170     },
10171       /**
10172      * Focuses the specified row.
10173      * @param {Number} row The row index
10174      */
10175     focusRow : function(row)
10176     {
10177         //Roo.log('GridView.focusRow');
10178         var x = this.bodyEl.dom.scrollLeft;
10179         this.focusCell(row, 0, false);
10180         this.bodyEl.dom.scrollLeft = x;
10181
10182     },
10183      /**
10184      * Focuses the specified cell.
10185      * @param {Number} row The row index
10186      * @param {Number} col The column index
10187      * @param {Boolean} hscroll false to disable horizontal scrolling
10188      */
10189     focusCell : function(row, col, hscroll)
10190     {
10191         //Roo.log('GridView.focusCell');
10192         var el = this.ensureVisible(row, col, hscroll);
10193         // not sure what focusEL achives = it's a <a> pos relative 
10194         //this.focusEl.alignTo(el, "tl-tl");
10195         //if(Roo.isGecko){
10196         //    this.focusEl.focus();
10197         //}else{
10198         //    this.focusEl.focus.defer(1, this.focusEl);
10199         //}
10200     },
10201     
10202      /**
10203      * Scrolls the specified cell into view
10204      * @param {Number} row The row index
10205      * @param {Number} col The column index
10206      * @param {Boolean} hscroll false to disable horizontal scrolling
10207      */
10208     ensureVisible : function(row, col, hscroll)
10209     {
10210         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
10211         //return null; //disable for testing.
10212         if(typeof row != "number"){
10213             row = row.rowIndex;
10214         }
10215         if(row < 0 && row >= this.ds.getCount()){
10216             return  null;
10217         }
10218         col = (col !== undefined ? col : 0);
10219         var cm = this.cm;
10220         while(cm.isHidden(col)){
10221             col++;
10222         }
10223
10224         var el = this.getCellDom(row, col);
10225         if(!el){
10226             return null;
10227         }
10228         var c = this.bodyEl.dom;
10229
10230         var ctop = parseInt(el.offsetTop, 10);
10231         var cleft = parseInt(el.offsetLeft, 10);
10232         var cbot = ctop + el.offsetHeight;
10233         var cright = cleft + el.offsetWidth;
10234
10235         //var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
10236         var ch = 0; //?? header is not withing the area?
10237         var stop = parseInt(c.scrollTop, 10);
10238         var sleft = parseInt(c.scrollLeft, 10);
10239         var sbot = stop + ch;
10240         var sright = sleft + c.clientWidth;
10241         /*
10242         Roo.log('GridView.ensureVisible:' +
10243                 ' ctop:' + ctop +
10244                 ' c.clientHeight:' + c.clientHeight +
10245                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
10246                 ' stop:' + stop +
10247                 ' cbot:' + cbot +
10248                 ' sbot:' + sbot +
10249                 ' ch:' + ch  
10250                 );
10251         */
10252         if(ctop < stop){
10253             c.scrollTop = ctop;
10254             //Roo.log("set scrolltop to ctop DISABLE?");
10255         }else if(cbot > sbot){
10256             //Roo.log("set scrolltop to cbot-ch");
10257             c.scrollTop = cbot-ch;
10258         }
10259
10260         if(hscroll !== false){
10261             if(cleft < sleft){
10262                 c.scrollLeft = cleft;
10263             }else if(cright > sright){
10264                 c.scrollLeft = cright-c.clientWidth;
10265             }
10266         }
10267
10268         return el;
10269     },
10270     
10271     
10272     insertRow : function(dm, rowIndex, isUpdate){
10273         
10274         if(!isUpdate){
10275             this.fireEvent("beforerowsinserted", this, rowIndex);
10276         }
10277             //var s = this.getScrollState();
10278         var row = this.renderRow(this.cm, this.store, rowIndex);
10279         // insert before rowIndex..
10280         var e = this.bodyEl.createChild(row,this.getRowDom(rowIndex));
10281         
10282         var _this = this;
10283                 
10284         if(row.cellObjects.length){
10285             Roo.each(row.cellObjects, function(r){
10286                 _this.renderCellObject(r);
10287             })
10288         }
10289             
10290         if(!isUpdate){
10291             this.fireEvent("rowsinserted", this, rowIndex);
10292             //this.syncRowHeights(firstRow, lastRow);
10293             //this.stripeRows(firstRow);
10294             //this.layout();
10295         }
10296         
10297     },
10298     
10299     
10300     getRowDom : function(rowIndex)
10301     {
10302         var rows = this.el.select('tbody > tr', true).elements;
10303         
10304         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
10305         
10306     },
10307     getCellDom : function(rowIndex, colIndex)
10308     {
10309         var row = this.getRowDom(rowIndex);
10310         if (row === false) {
10311             return false;
10312         }
10313         var cols = row.select('td', true).elements;
10314         return (typeof(cols[colIndex]) == 'undefined') ? false : cols[colIndex];
10315         
10316     },
10317     
10318     // returns the object tree for a tr..
10319   
10320     
10321     renderRow : function(cm, ds, rowIndex) 
10322     {
10323         var d = ds.getAt(rowIndex);
10324         
10325         var row = {
10326             tag : 'tr',
10327             cls : 'x-row-' + rowIndex,
10328             cn : []
10329         };
10330             
10331         var cellObjects = [];
10332         
10333         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
10334             var config = cm.config[i];
10335             
10336             var renderer = cm.getRenderer(i);
10337             var value = '';
10338             var id = false;
10339             
10340             if(typeof(renderer) !== 'undefined'){
10341                 value = renderer.call(config, d.data[cm.getDataIndex(i)], false, d);
10342             }
10343             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
10344             // and are rendered into the cells after the row is rendered - using the id for the element.
10345             
10346             if(typeof(value) === 'object'){
10347                 id = Roo.id();
10348                 cellObjects.push({
10349                     container : id,
10350                     cfg : value 
10351                 })
10352             }
10353             
10354             var rowcfg = {
10355                 record: d,
10356                 rowIndex : rowIndex,
10357                 colIndex : i,
10358                 rowClass : ''
10359             };
10360
10361             this.fireEvent('rowclass', this, rowcfg);
10362             
10363             var td = {
10364                 tag: 'td',
10365                 // this might end up displaying HTML?
10366                 // this is too messy... - better to only do it on columsn you know are going to be too long
10367                 //tooltip : (typeof(value) === 'object') ? '' : value,
10368                 cls : rowcfg.rowClass + ' x-col-' + i,
10369                 style: '',
10370                 html: (typeof(value) === 'object') ? '' : value
10371             };
10372             
10373             if (id) {
10374                 td.id = id;
10375             }
10376             
10377             if(typeof(config.colspan) != 'undefined'){
10378                 td.colspan = config.colspan;
10379             }
10380             
10381             
10382             
10383             if(typeof(config.align) != 'undefined' && config.align.length){
10384                 td.style += ' text-align:' + config.align + ';';
10385             }
10386             if(typeof(config.valign) != 'undefined' && config.valign.length){
10387                 td.style += ' vertical-align:' + config.valign + ';';
10388             }
10389             /*
10390             if(typeof(config.width) != 'undefined'){
10391                 td.style += ' width:' +  config.width + 'px;';
10392             }
10393             */
10394             
10395             if(typeof(config.cursor) != 'undefined'){
10396                 td.style += ' cursor:' +  config.cursor + ';';
10397             }
10398             
10399             if(typeof(config.cls) != 'undefined'){
10400                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
10401             }
10402             if (this.responsive) {
10403                 ['xs','sm','md','lg'].map(function(size){
10404                     
10405                     if(typeof(config[size]) == 'undefined'){
10406                         return;
10407                     }
10408                     
10409                     
10410                       
10411                     if (!config[size]) { // 0 = hidden
10412                         // BS 4 '0' is treated as hide that column and below.
10413                         td.cls += ' hidden-' + size + ' hidden' + size + '-down';
10414                         return;
10415                     }
10416                     
10417                     td.cls += ' col-' + size + '-' + config[size] + (
10418                         size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
10419                     );
10420                      
10421     
10422                 });
10423             }
10424             row.cn.push(td);
10425            
10426         }
10427         
10428         row.cellObjects = cellObjects;
10429         
10430         return row;
10431           
10432     },
10433     
10434     
10435     
10436     onBeforeLoad : function()
10437     {
10438         this.el.unmask(); // if needed.
10439     },
10440      /**
10441      * Remove all rows
10442      */
10443     clear : function()
10444     {
10445         this.el.select('tbody', true).first().dom.innerHTML = '';
10446     },
10447     /**
10448      * Show or hide a row.
10449      * @param {Number} rowIndex to show or hide
10450      * @param {Boolean} state hide
10451      */
10452     setRowVisibility : function(rowIndex, state)
10453     {
10454         var bt = this.bodyEl.dom;
10455         
10456         var rows = this.el.select('tbody > tr', true).elements;
10457         
10458         if(typeof(rows[rowIndex]) == 'undefined'){
10459             return;
10460         }
10461         rows[rowIndex][ state ? 'removeClass' : 'addClass']('d-none');
10462         
10463     },
10464     
10465     
10466     getSelectionModel : function(){
10467         if(!this.selModel){
10468             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
10469         }
10470         return this.selModel;
10471     },
10472     /*
10473      * Render the Roo.bootstrap object from renderder
10474      */
10475     renderCellObject : function(r)
10476     {
10477         var _this = this;
10478         
10479         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
10480         
10481         var t = r.cfg.render(r.container);
10482         
10483         if(r.cfg.cn){
10484             Roo.each(r.cfg.cn, function(c){
10485                 var child = {
10486                     container: t.getChildContainer(),
10487                     cfg: c
10488                 };
10489                 _this.renderCellObject(child);
10490             })
10491         }
10492     },
10493     /**
10494      * get the Row Index from a dom element.
10495      * @param {Roo.Element} row The row to look for
10496      * @returns {Number} the row
10497      */
10498     getRowIndex : function(row)
10499     {
10500         var rowIndex = -1;
10501         
10502         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
10503             if(el != row){
10504                 return;
10505             }
10506             
10507             rowIndex = index;
10508         });
10509         
10510         return rowIndex;
10511     },
10512     /**
10513      * get the header TH element for columnIndex
10514      * @param {Number} columnIndex
10515      * @returns {Roo.Element}
10516      */
10517     getHeaderIndex: function(colIndex)
10518     {
10519         var cols = this.headEl.select('th', true).elements;
10520         return cols[colIndex]; 
10521     },
10522     /**
10523      * get the Column Index from a dom element. (using regex on x-hcol-{colid})
10524      * @param {domElement} cell to look for
10525      * @returns {Number} the column
10526      */
10527     getCellIndex : function(cell)
10528     {
10529         var id = String(cell.className).match(Roo.bootstrap.Table.cellRE);
10530         if(id){
10531             return parseInt(id[1], 10);
10532         }
10533         return 0;
10534     },
10535      /**
10536      * Returns the grid's underlying element = used by panel.Grid
10537      * @return {Element} The element
10538      */
10539     getGridEl : function(){
10540         return this.el;
10541     },
10542      /**
10543      * Forces a resize - used by panel.Grid
10544      * @return {Element} The element
10545      */
10546     autoSize : function()
10547     {
10548         if(this.disableAutoSize) {
10549             return;
10550         }
10551         //var ctr = Roo.get(this.container.dom.parentElement);
10552         var ctr = Roo.get(this.el.dom);
10553         
10554         var thd = this.getGridEl().select('thead',true).first();
10555         var tbd = this.getGridEl().select('tbody', true).first();
10556         var tfd = this.getGridEl().select('tfoot', true).first();
10557         
10558         var cw = ctr.getWidth();
10559         this.getGridEl().select('tfoot tr, tfoot  td',true).setWidth(cw);
10560         
10561         if (tbd) {
10562             
10563             tbd.setWidth(ctr.getWidth());
10564             // if the body has a max height - and then scrolls - we should perhaps set up the height here
10565             // this needs fixing for various usage - currently only hydra job advers I think..
10566             //tdb.setHeight(
10567             //        ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
10568             //); 
10569             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
10570             cw -= barsize;
10571         }
10572         cw = Math.max(cw, this.totalWidth);
10573         this.getGridEl().select('tbody tr',true).setWidth(cw);
10574         this.initCSS();
10575         
10576         // resize 'expandable coloumn?
10577         
10578         return; // we doe not have a view in this design..
10579         
10580     },
10581     onBodyScroll: function()
10582     {
10583         //Roo.log("body scrolled');" + this.bodyEl.dom.scrollLeft);
10584         if(this.headEl){
10585             this.headEl.setStyle({
10586                 'position' : 'relative',
10587                 'left': (-1* this.bodyEl.dom.scrollLeft) + 'px'
10588             });
10589         }
10590         
10591         if(this.lazyLoad){
10592             
10593             var scrollHeight = this.bodyEl.dom.scrollHeight;
10594             
10595             var scrollTop = Math.ceil(this.bodyEl.getScroll().top);
10596             
10597             var height = this.bodyEl.getHeight();
10598             
10599             if(scrollHeight - height == scrollTop) {
10600                 
10601                 var total = this.ds.getTotalCount();
10602                 
10603                 if(this.footer.cursor + this.footer.pageSize < total){
10604                     
10605                     this.footer.ds.load({
10606                         params : {
10607                             start : this.footer.cursor + this.footer.pageSize,
10608                             limit : this.footer.pageSize
10609                         },
10610                         add : true
10611                     });
10612                 }
10613             }
10614             
10615         }
10616     },
10617     onColumnSplitterMoved : function(i, diff)
10618     {
10619         this.userResized = true;
10620         
10621         var cm = this.colModel;
10622         
10623         var w = this.getHeaderIndex(i).getWidth() + diff;
10624         
10625         
10626         cm.setColumnWidth(i, w, true);
10627         this.initCSS();
10628         //var cid = cm.getColumnId(i); << not used in this version?
10629        /* Roo.log(['#' + this.id + ' .x-col-' + i, "width", w + "px"]);
10630         
10631         this.CSS.updateRule( '#' + this.id + ' .x-col-' + i, "width", w + "px");
10632         this.CSS.updateRule('#' + this.id + ' .x-hcol-' + i, "width", w + "px");
10633         this.CSS.updateRule('#' + this.id + ' .x-grid-split-' + i, "left", w + "px");
10634 */
10635         //this.updateSplitters();
10636         //this.layout(); << ??
10637         this.fireEvent("columnresize", i, w);
10638     },
10639     onHeaderChange : function()
10640     {
10641         var header = this.renderHeader();
10642         var table = this.el.select('table', true).first();
10643         
10644         this.headEl.remove();
10645         this.headEl = table.createChild(header, this.bodyEl, false);
10646         
10647         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
10648             e.on('click', this.sort, this);
10649         }, this);
10650         
10651         if(this.enableColumnResize !== false && Roo.grid.SplitDragZone){
10652             new Roo.grid.SplitDragZone(this, this.headEl.dom, false); // not sure what 'lockedHd is for this implementation..)
10653         }
10654         
10655     },
10656     
10657     onHiddenChange : function(colModel, colIndex, hidden)
10658     {
10659         /*
10660         this.cm.setHidden()
10661         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
10662         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
10663         
10664         this.CSS.updateRule(thSelector, "display", "");
10665         this.CSS.updateRule(tdSelector, "display", "");
10666         
10667         if(hidden){
10668             this.CSS.updateRule(thSelector, "display", "none");
10669             this.CSS.updateRule(tdSelector, "display", "none");
10670         }
10671         */
10672         // onload calls initCSS()
10673         this.onHeaderChange();
10674         this.onLoad();
10675     },
10676     
10677     setColumnWidth: function(col_index, width)
10678     {
10679         // width = "md-2 xs-2..."
10680         if(!this.colModel.config[col_index]) {
10681             return;
10682         }
10683         
10684         var w = width.split(" ");
10685         
10686         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
10687         
10688         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
10689         
10690         
10691         for(var j = 0; j < w.length; j++) {
10692             
10693             if(!w[j]) {
10694                 continue;
10695             }
10696             
10697             var size_cls = w[j].split("-");
10698             
10699             if(!Number.isInteger(size_cls[1] * 1)) {
10700                 continue;
10701             }
10702             
10703             if(!this.colModel.config[col_index][size_cls[0]]) {
10704                 continue;
10705             }
10706             
10707             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
10708                 continue;
10709             }
10710             
10711             h_row[0].classList.replace(
10712                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
10713                 "col-"+size_cls[0]+"-"+size_cls[1]
10714             );
10715             
10716             for(var i = 0; i < rows.length; i++) {
10717                 
10718                 var size_cls = w[j].split("-");
10719                 
10720                 if(!Number.isInteger(size_cls[1] * 1)) {
10721                     continue;
10722                 }
10723                 
10724                 if(!this.colModel.config[col_index][size_cls[0]]) {
10725                     continue;
10726                 }
10727                 
10728                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
10729                     continue;
10730                 }
10731                 
10732                 rows[i].classList.replace(
10733                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
10734                     "col-"+size_cls[0]+"-"+size_cls[1]
10735                 );
10736             }
10737             
10738             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
10739         }
10740     }
10741 });
10742
10743 // currently only used to find the split on drag.. 
10744 Roo.bootstrap.Table.cellRE = /(?:.*?)x-grid-(?:hd|cell|split)-([\d]+)(?:.*?)/;
10745
10746 /**
10747  * @depricated
10748 */
10749 Roo.bootstrap.Table.AbstractSelectionModel = Roo.grid.AbstractSelectionModel;
10750 Roo.bootstrap.Table.RowSelectionModel = Roo.grid.RowSelectionModel;
10751 /*
10752  * - LGPL
10753  *
10754  * table cell
10755  * 
10756  */
10757
10758 /**
10759  * @class Roo.bootstrap.TableCell
10760  * @extends Roo.bootstrap.Component
10761  * @children Roo.bootstrap.Component
10762  * @parent Roo.bootstrap.TableRow
10763  * Bootstrap TableCell class
10764  * 
10765  * @cfg {String} html cell contain text
10766  * @cfg {String} cls cell class
10767  * @cfg {String} tag cell tag (td|th) default td
10768  * @cfg {String} abbr Specifies an abbreviated version of the content in a cell
10769  * @cfg {String} align Aligns the content in a cell
10770  * @cfg {String} axis Categorizes cells
10771  * @cfg {String} bgcolor Specifies the background color of a cell
10772  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
10773  * @cfg {Number} colspan Specifies the number of columns a cell should span
10774  * @cfg {String} headers Specifies one or more header cells a cell is related to
10775  * @cfg {Number} height Sets the height of a cell
10776  * @cfg {String} nowrap Specifies that the content inside a cell should not wrap
10777  * @cfg {Number} rowspan Sets the number of rows a cell should span
10778  * @cfg {String} scope Defines a way to associate header cells and data cells in a table
10779  * @cfg {String} valign Vertical aligns the content in a cell
10780  * @cfg {Number} width Specifies the width of a cell
10781  * 
10782  * @constructor
10783  * Create a new TableCell
10784  * @param {Object} config The config object
10785  */
10786
10787 Roo.bootstrap.TableCell = function(config){
10788     Roo.bootstrap.TableCell.superclass.constructor.call(this, config);
10789 };
10790
10791 Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
10792     
10793     html: false,
10794     cls: false,
10795     tag: false,
10796     abbr: false,
10797     align: false,
10798     axis: false,
10799     bgcolor: false,
10800     charoff: false,
10801     colspan: false,
10802     headers: false,
10803     height: false,
10804     nowrap: false,
10805     rowspan: false,
10806     scope: false,
10807     valign: false,
10808     width: false,
10809     
10810     
10811     getAutoCreate : function(){
10812         var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this));
10813         
10814         cfg = {
10815             tag: 'td'
10816         };
10817         
10818         if(this.tag){
10819             cfg.tag = this.tag;
10820         }
10821         
10822         if (this.html) {
10823             cfg.html=this.html
10824         }
10825         if (this.cls) {
10826             cfg.cls=this.cls
10827         }
10828         if (this.abbr) {
10829             cfg.abbr=this.abbr
10830         }
10831         if (this.align) {
10832             cfg.align=this.align
10833         }
10834         if (this.axis) {
10835             cfg.axis=this.axis
10836         }
10837         if (this.bgcolor) {
10838             cfg.bgcolor=this.bgcolor
10839         }
10840         if (this.charoff) {
10841             cfg.charoff=this.charoff
10842         }
10843         if (this.colspan) {
10844             cfg.colspan=this.colspan
10845         }
10846         if (this.headers) {
10847             cfg.headers=this.headers
10848         }
10849         if (this.height) {
10850             cfg.height=this.height
10851         }
10852         if (this.nowrap) {
10853             cfg.nowrap=this.nowrap
10854         }
10855         if (this.rowspan) {
10856             cfg.rowspan=this.rowspan
10857         }
10858         if (this.scope) {
10859             cfg.scope=this.scope
10860         }
10861         if (this.valign) {
10862             cfg.valign=this.valign
10863         }
10864         if (this.width) {
10865             cfg.width=this.width
10866         }
10867         
10868         
10869         return cfg;
10870     }
10871    
10872 });
10873
10874  
10875
10876  /*
10877  * - LGPL
10878  *
10879  * table row
10880  * 
10881  */
10882
10883 /**
10884  * @class Roo.bootstrap.TableRow
10885  * @extends Roo.bootstrap.Component
10886  * @children Roo.bootstrap.TableCell
10887  * @parent Roo.bootstrap.TableBody
10888  * Bootstrap TableRow class
10889  * @cfg {String} cls row class
10890  * @cfg {String} align Aligns the content in a table row
10891  * @cfg {String} bgcolor Specifies a background color for a table row
10892  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
10893  * @cfg {String} valign Vertical aligns the content in a table row
10894  * 
10895  * @constructor
10896  * Create a new TableRow
10897  * @param {Object} config The config object
10898  */
10899
10900 Roo.bootstrap.TableRow = function(config){
10901     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
10902 };
10903
10904 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
10905     
10906     cls: false,
10907     align: false,
10908     bgcolor: false,
10909     charoff: false,
10910     valign: false,
10911     
10912     getAutoCreate : function(){
10913         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
10914         
10915         cfg = {
10916             tag: 'tr'
10917         };
10918             
10919         if(this.cls){
10920             cfg.cls = this.cls;
10921         }
10922         if(this.align){
10923             cfg.align = this.align;
10924         }
10925         if(this.bgcolor){
10926             cfg.bgcolor = this.bgcolor;
10927         }
10928         if(this.charoff){
10929             cfg.charoff = this.charoff;
10930         }
10931         if(this.valign){
10932             cfg.valign = this.valign;
10933         }
10934         
10935         return cfg;
10936     }
10937    
10938 });
10939
10940  
10941
10942  /*
10943  * - LGPL
10944  *
10945  * table body
10946  * 
10947  */
10948
10949 /**
10950  * @class Roo.bootstrap.TableBody
10951  * @extends Roo.bootstrap.Component
10952  * @children Roo.bootstrap.TableRow
10953  * @parent Roo.bootstrap.Table
10954  * Bootstrap TableBody class
10955  * @cfg {String} cls element class
10956  * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
10957  * @cfg {String} align Aligns the content inside the element
10958  * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
10959  * @cfg {String} valign Vertical aligns the content inside the <tbody> element
10960  * 
10961  * @constructor
10962  * Create a new TableBody
10963  * @param {Object} config The config object
10964  */
10965
10966 Roo.bootstrap.TableBody = function(config){
10967     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
10968 };
10969
10970 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
10971     
10972     cls: false,
10973     tag: false,
10974     align: false,
10975     charoff: false,
10976     valign: false,
10977     
10978     getAutoCreate : function(){
10979         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
10980         
10981         cfg = {
10982             tag: 'tbody'
10983         };
10984             
10985         if (this.cls) {
10986             cfg.cls=this.cls
10987         }
10988         if(this.tag){
10989             cfg.tag = this.tag;
10990         }
10991         
10992         if(this.align){
10993             cfg.align = this.align;
10994         }
10995         if(this.charoff){
10996             cfg.charoff = this.charoff;
10997         }
10998         if(this.valign){
10999             cfg.valign = this.valign;
11000         }
11001         
11002         return cfg;
11003     }
11004     
11005     
11006 //    initEvents : function()
11007 //    {
11008 //        
11009 //        if(!this.store){
11010 //            return;
11011 //        }
11012 //        
11013 //        this.store = Roo.factory(this.store, Roo.data);
11014 //        this.store.on('load', this.onLoad, this);
11015 //        
11016 //        this.store.load();
11017 //        
11018 //    },
11019 //    
11020 //    onLoad: function () 
11021 //    {   
11022 //        this.fireEvent('load', this);
11023 //    }
11024 //    
11025 //   
11026 });
11027
11028  
11029
11030  /*
11031  * Based on:
11032  * Ext JS Library 1.1.1
11033  * Copyright(c) 2006-2007, Ext JS, LLC.
11034  *
11035  * Originally Released Under LGPL - original licence link has changed is not relivant.
11036  *
11037  * Fork - LGPL
11038  * <script type="text/javascript">
11039  */
11040
11041 // as we use this in bootstrap.
11042 Roo.namespace('Roo.form');
11043  /**
11044  * @class Roo.form.Action
11045  * Internal Class used to handle form actions
11046  * @constructor
11047  * @param {Roo.form.BasicForm} el The form element or its id
11048  * @param {Object} config Configuration options
11049  */
11050
11051  
11052  
11053 // define the action interface
11054 Roo.form.Action = function(form, options){
11055     this.form = form;
11056     this.options = options || {};
11057 };
11058 /**
11059  * Client Validation Failed
11060  * @const 
11061  */
11062 Roo.form.Action.CLIENT_INVALID = 'client';
11063 /**
11064  * Server Validation Failed
11065  * @const 
11066  */
11067 Roo.form.Action.SERVER_INVALID = 'server';
11068  /**
11069  * Connect to Server Failed
11070  * @const 
11071  */
11072 Roo.form.Action.CONNECT_FAILURE = 'connect';
11073 /**
11074  * Reading Data from Server Failed
11075  * @const 
11076  */
11077 Roo.form.Action.LOAD_FAILURE = 'load';
11078
11079 Roo.form.Action.prototype = {
11080     type : 'default',
11081     failureType : undefined,
11082     response : undefined,
11083     result : undefined,
11084
11085     // interface method
11086     run : function(options){
11087
11088     },
11089
11090     // interface method
11091     success : function(response){
11092
11093     },
11094
11095     // interface method
11096     handleResponse : function(response){
11097
11098     },
11099
11100     // default connection failure
11101     failure : function(response){
11102         
11103         this.response = response;
11104         this.failureType = Roo.form.Action.CONNECT_FAILURE;
11105         this.form.afterAction(this, false);
11106     },
11107
11108     processResponse : function(response){
11109         this.response = response;
11110         if(!response.responseText){
11111             return true;
11112         }
11113         this.result = this.handleResponse(response);
11114         return this.result;
11115     },
11116
11117     // utility functions used internally
11118     getUrl : function(appendParams){
11119         var url = this.options.url || this.form.url || this.form.el.dom.action;
11120         if(appendParams){
11121             var p = this.getParams();
11122             if(p){
11123                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11124             }
11125         }
11126         return url;
11127     },
11128
11129     getMethod : function(){
11130         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
11131     },
11132
11133     getParams : function(){
11134         var bp = this.form.baseParams;
11135         var p = this.options.params;
11136         if(p){
11137             if(typeof p == "object"){
11138                 p = Roo.urlEncode(Roo.applyIf(p, bp));
11139             }else if(typeof p == 'string' && bp){
11140                 p += '&' + Roo.urlEncode(bp);
11141             }
11142         }else if(bp){
11143             p = Roo.urlEncode(bp);
11144         }
11145         return p;
11146     },
11147
11148     createCallback : function(){
11149         return {
11150             success: this.success,
11151             failure: this.failure,
11152             scope: this,
11153             timeout: (this.form.timeout*1000),
11154             upload: this.form.fileUpload ? this.success : undefined
11155         };
11156     }
11157 };
11158
11159 Roo.form.Action.Submit = function(form, options){
11160     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
11161 };
11162
11163 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
11164     type : 'submit',
11165
11166     haveProgress : false,
11167     uploadComplete : false,
11168     
11169     // uploadProgress indicator.
11170     uploadProgress : function()
11171     {
11172         if (!this.form.progressUrl) {
11173             return;
11174         }
11175         
11176         if (!this.haveProgress) {
11177             Roo.MessageBox.progress("Uploading", "Uploading");
11178         }
11179         if (this.uploadComplete) {
11180            Roo.MessageBox.hide();
11181            return;
11182         }
11183         
11184         this.haveProgress = true;
11185    
11186         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
11187         
11188         var c = new Roo.data.Connection();
11189         c.request({
11190             url : this.form.progressUrl,
11191             params: {
11192                 id : uid
11193             },
11194             method: 'GET',
11195             success : function(req){
11196                //console.log(data);
11197                 var rdata = false;
11198                 var edata;
11199                 try  {
11200                    rdata = Roo.decode(req.responseText)
11201                 } catch (e) {
11202                     Roo.log("Invalid data from server..");
11203                     Roo.log(edata);
11204                     return;
11205                 }
11206                 if (!rdata || !rdata.success) {
11207                     Roo.log(rdata);
11208                     Roo.MessageBox.alert(Roo.encode(rdata));
11209                     return;
11210                 }
11211                 var data = rdata.data;
11212                 
11213                 if (this.uploadComplete) {
11214                    Roo.MessageBox.hide();
11215                    return;
11216                 }
11217                    
11218                 if (data){
11219                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
11220                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
11221                     );
11222                 }
11223                 this.uploadProgress.defer(2000,this);
11224             },
11225        
11226             failure: function(data) {
11227                 Roo.log('progress url failed ');
11228                 Roo.log(data);
11229             },
11230             scope : this
11231         });
11232            
11233     },
11234     
11235     
11236     run : function()
11237     {
11238         // run get Values on the form, so it syncs any secondary forms.
11239         this.form.getValues();
11240         
11241         var o = this.options;
11242         var method = this.getMethod();
11243         var isPost = method == 'POST';
11244         if(o.clientValidation === false || this.form.isValid()){
11245             
11246             if (this.form.progressUrl) {
11247                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
11248                     (new Date() * 1) + '' + Math.random());
11249                     
11250             } 
11251             
11252             
11253             Roo.Ajax.request(Roo.apply(this.createCallback(), {
11254                 form:this.form.el.dom,
11255                 url:this.getUrl(!isPost),
11256                 method: method,
11257                 params:isPost ? this.getParams() : null,
11258                 isUpload: this.form.fileUpload,
11259                 formData : this.form.formData
11260             }));
11261             
11262             this.uploadProgress();
11263
11264         }else if (o.clientValidation !== false){ // client validation failed
11265             this.failureType = Roo.form.Action.CLIENT_INVALID;
11266             this.form.afterAction(this, false);
11267         }
11268     },
11269
11270     success : function(response)
11271     {
11272         this.uploadComplete= true;
11273         if (this.haveProgress) {
11274             Roo.MessageBox.hide();
11275         }
11276         
11277         
11278         var result = this.processResponse(response);
11279         if(result === true || result.success){
11280             this.form.afterAction(this, true);
11281             return;
11282         }
11283         if(result.errors){
11284             this.form.markInvalid(result.errors);
11285             this.failureType = Roo.form.Action.SERVER_INVALID;
11286         }
11287         this.form.afterAction(this, false);
11288     },
11289     failure : function(response)
11290     {
11291         this.uploadComplete= true;
11292         if (this.haveProgress) {
11293             Roo.MessageBox.hide();
11294         }
11295         
11296         this.response = response;
11297         this.failureType = Roo.form.Action.CONNECT_FAILURE;
11298         this.form.afterAction(this, false);
11299     },
11300     
11301     handleResponse : function(response){
11302         if(this.form.errorReader){
11303             var rs = this.form.errorReader.read(response);
11304             var errors = [];
11305             if(rs.records){
11306                 for(var i = 0, len = rs.records.length; i < len; i++) {
11307                     var r = rs.records[i];
11308                     errors[i] = r.data;
11309                 }
11310             }
11311             if(errors.length < 1){
11312                 errors = null;
11313             }
11314             return {
11315                 success : rs.success,
11316                 errors : errors
11317             };
11318         }
11319         var ret = false;
11320         try {
11321             var rt = response.responseText;
11322             if (rt.match(/^\<!--\[CDATA\[/)) {
11323                 rt = rt.replace(/^\<!--\[CDATA\[/,'');
11324                 rt = rt.replace(/\]\]--\>$/,'');
11325             }
11326             
11327             ret = Roo.decode(rt);
11328         } catch (e) {
11329             ret = {
11330                 success: false,
11331                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
11332                 errors : []
11333             };
11334         }
11335         return ret;
11336         
11337     }
11338 });
11339
11340
11341 Roo.form.Action.Load = function(form, options){
11342     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
11343     this.reader = this.form.reader;
11344 };
11345
11346 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
11347     type : 'load',
11348
11349     run : function(){
11350         
11351         Roo.Ajax.request(Roo.apply(
11352                 this.createCallback(), {
11353                     method:this.getMethod(),
11354                     url:this.getUrl(false),
11355                     params:this.getParams()
11356         }));
11357     },
11358
11359     success : function(response){
11360         
11361         var result = this.processResponse(response);
11362         if(result === true || !result.success || !result.data){
11363             this.failureType = Roo.form.Action.LOAD_FAILURE;
11364             this.form.afterAction(this, false);
11365             return;
11366         }
11367         this.form.clearInvalid();
11368         this.form.setValues(result.data);
11369         this.form.afterAction(this, true);
11370     },
11371
11372     handleResponse : function(response){
11373         if(this.form.reader){
11374             var rs = this.form.reader.read(response);
11375             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
11376             return {
11377                 success : rs.success,
11378                 data : data
11379             };
11380         }
11381         return Roo.decode(response.responseText);
11382     }
11383 });
11384
11385 Roo.form.Action.ACTION_TYPES = {
11386     'load' : Roo.form.Action.Load,
11387     'submit' : Roo.form.Action.Submit
11388 };/*
11389  * - LGPL
11390  *
11391  * form
11392  *
11393  */
11394
11395 /**
11396  * @class Roo.bootstrap.form.Form
11397  * @extends Roo.bootstrap.Component
11398  * @children Roo.bootstrap.Component
11399  * Bootstrap Form class
11400  * @cfg {String} method  GET | POST (default POST)
11401  * @cfg {String} labelAlign top | left (default top)
11402  * @cfg {String} align left  | right - for navbars
11403  * @cfg {Boolean} loadMask load mask when submit (default true)
11404
11405  *
11406  * @constructor
11407  * Create a new Form
11408  * @param {Object} config The config object
11409  */
11410
11411
11412 Roo.bootstrap.form.Form = function(config){
11413     
11414     Roo.bootstrap.form.Form.superclass.constructor.call(this, config);
11415     
11416     Roo.bootstrap.form.Form.popover.apply();
11417     
11418     this.addEvents({
11419         /**
11420          * @event clientvalidation
11421          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
11422          * @param {Form} this
11423          * @param {Boolean} valid true if the form has passed client-side validation
11424          */
11425         clientvalidation: true,
11426         /**
11427          * @event beforeaction
11428          * Fires before any action is performed. Return false to cancel the action.
11429          * @param {Form} this
11430          * @param {Action} action The action to be performed
11431          */
11432         beforeaction: true,
11433         /**
11434          * @event actionfailed
11435          * Fires when an action fails.
11436          * @param {Form} this
11437          * @param {Action} action The action that failed
11438          */
11439         actionfailed : true,
11440         /**
11441          * @event actioncomplete
11442          * Fires when an action is completed.
11443          * @param {Form} this
11444          * @param {Action} action The action that completed
11445          */
11446         actioncomplete : true
11447     });
11448 };
11449
11450 Roo.extend(Roo.bootstrap.form.Form, Roo.bootstrap.Component,  {
11451
11452      /**
11453      * @cfg {String} method
11454      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
11455      */
11456     method : 'POST',
11457     /**
11458      * @cfg {String} url
11459      * The URL to use for form actions if one isn't supplied in the action options.
11460      */
11461     /**
11462      * @cfg {Boolean} fileUpload
11463      * Set to true if this form is a file upload.
11464      */
11465
11466     /**
11467      * @cfg {Object} baseParams
11468      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
11469      */
11470
11471     /**
11472      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
11473      */
11474     timeout: 30,
11475     /**
11476      * @cfg {Sting} align (left|right) for navbar forms
11477      */
11478     align : 'left',
11479
11480     // private
11481     activeAction : null,
11482
11483     /**
11484      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
11485      * element by passing it or its id or mask the form itself by passing in true.
11486      * @type Mixed
11487      */
11488     waitMsgTarget : false,
11489
11490     loadMask : true,
11491     
11492     /**
11493      * @cfg {Boolean} errorMask (true|false) default false
11494      */
11495     errorMask : false,
11496     
11497     /**
11498      * @cfg {Number} maskOffset Default 100
11499      */
11500     maskOffset : 100,
11501     
11502     /**
11503      * @cfg {Boolean} maskBody
11504      */
11505     maskBody : false,
11506
11507     getAutoCreate : function(){
11508
11509         var cfg = {
11510             tag: 'form',
11511             method : this.method || 'POST',
11512             id : this.id || Roo.id(),
11513             cls : ''
11514         };
11515         if (this.parent().xtype.match(/^Nav/)) {
11516             cfg.cls = 'navbar-form form-inline navbar-' + this.align;
11517
11518         }
11519
11520         if (this.labelAlign == 'left' ) {
11521             cfg.cls += ' form-horizontal';
11522         }
11523
11524
11525         return cfg;
11526     },
11527     initEvents : function()
11528     {
11529         this.el.on('submit', this.onSubmit, this);
11530         // this was added as random key presses on the form where triggering form submit.
11531         this.el.on('keypress', function(e) {
11532             if (e.getCharCode() != 13) {
11533                 return true;
11534             }
11535             // we might need to allow it for textareas.. and some other items.
11536             // check e.getTarget().
11537
11538             if(e.getTarget().nodeName.toLowerCase() === 'textarea'){
11539                 return true;
11540             }
11541
11542             Roo.log("keypress blocked");
11543
11544             e.preventDefault();
11545             return false;
11546         });
11547         
11548     },
11549     // private
11550     onSubmit : function(e){
11551         e.stopEvent();
11552     },
11553
11554      /**
11555      * Returns true if client-side validation on the form is successful.
11556      * @return Boolean
11557      */
11558     isValid : function(){
11559         var items = this.getItems();
11560         var valid = true;
11561         var target = false;
11562         
11563         items.each(function(f){
11564             
11565             if(f.validate()){
11566                 return;
11567             }
11568             
11569             Roo.log('invalid field: ' + f.name);
11570             
11571             valid = false;
11572
11573             if(!target && f.el.isVisible(true)){
11574                 target = f;
11575             }
11576            
11577         });
11578         
11579         if(this.errorMask && !valid){
11580             Roo.bootstrap.form.Form.popover.mask(this, target);
11581         }
11582         
11583         return valid;
11584     },
11585     
11586     /**
11587      * Returns true if any fields in this form have changed since their original load.
11588      * @return Boolean
11589      */
11590     isDirty : function(){
11591         var dirty = false;
11592         var items = this.getItems();
11593         items.each(function(f){
11594            if(f.isDirty()){
11595                dirty = true;
11596                return false;
11597            }
11598            return true;
11599         });
11600         return dirty;
11601     },
11602      /**
11603      * Performs a predefined action (submit or load) or custom actions you define on this form.
11604      * @param {String} actionName The name of the action type
11605      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
11606      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
11607      * accept other config options):
11608      * <pre>
11609 Property          Type             Description
11610 ----------------  ---------------  ----------------------------------------------------------------------------------
11611 url               String           The url for the action (defaults to the form's url)
11612 method            String           The form method to use (defaults to the form's method, or POST if not defined)
11613 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
11614 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
11615                                    validate the form on the client (defaults to false)
11616      * </pre>
11617      * @return {BasicForm} this
11618      */
11619     doAction : function(action, options){
11620         if(typeof action == 'string'){
11621             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
11622         }
11623         if(this.fireEvent('beforeaction', this, action) !== false){
11624             this.beforeAction(action);
11625             action.run.defer(100, action);
11626         }
11627         return this;
11628     },
11629
11630     // private
11631     beforeAction : function(action){
11632         var o = action.options;
11633         
11634         if(this.loadMask){
11635             
11636             if(this.maskBody){
11637                 Roo.get(document.body).mask(o.waitMsg || "Sending", 'x-mask-loading')
11638             } else {
11639                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
11640             }
11641         }
11642         // not really supported yet.. ??
11643
11644         //if(this.waitMsgTarget === true){
11645         //  this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
11646         //}else if(this.waitMsgTarget){
11647         //    this.waitMsgTarget = Roo.get(this.waitMsgTarget);
11648         //    this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
11649         //}else {
11650         //    Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
11651        // }
11652
11653     },
11654
11655     // private
11656     afterAction : function(action, success){
11657         this.activeAction = null;
11658         var o = action.options;
11659
11660         if(this.loadMask){
11661             
11662             if(this.maskBody){
11663                 Roo.get(document.body).unmask();
11664             } else {
11665                 this.el.unmask();
11666             }
11667         }
11668         
11669         //if(this.waitMsgTarget === true){
11670 //            this.el.unmask();
11671         //}else if(this.waitMsgTarget){
11672         //    this.waitMsgTarget.unmask();
11673         //}else{
11674         //    Roo.MessageBox.updateProgress(1);
11675         //    Roo.MessageBox.hide();
11676        // }
11677         //
11678         if(success){
11679             if(o.reset){
11680                 this.reset();
11681             }
11682             Roo.callback(o.success, o.scope, [this, action]);
11683             this.fireEvent('actioncomplete', this, action);
11684
11685         }else{
11686
11687             // failure condition..
11688             // we have a scenario where updates need confirming.
11689             // eg. if a locking scenario exists..
11690             // we look for { errors : { needs_confirm : true }} in the response.
11691             if (
11692                 (typeof(action.result) != 'undefined')  &&
11693                 (typeof(action.result.errors) != 'undefined')  &&
11694                 (typeof(action.result.errors.needs_confirm) != 'undefined')
11695            ){
11696                 var _t = this;
11697                 Roo.log("not supported yet");
11698                  /*
11699
11700                 Roo.MessageBox.confirm(
11701                     "Change requires confirmation",
11702                     action.result.errorMsg,
11703                     function(r) {
11704                         if (r != 'yes') {
11705                             return;
11706                         }
11707                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
11708                     }
11709
11710                 );
11711                 */
11712
11713
11714                 return;
11715             }
11716
11717             Roo.callback(o.failure, o.scope, [this, action]);
11718             // show an error message if no failed handler is set..
11719             if (!this.hasListener('actionfailed')) {
11720                 Roo.log("need to add dialog support");
11721                 /*
11722                 Roo.MessageBox.alert("Error",
11723                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
11724                         action.result.errorMsg :
11725                         "Saving Failed, please check your entries or try again"
11726                 );
11727                 */
11728             }
11729
11730             this.fireEvent('actionfailed', this, action);
11731         }
11732
11733     },
11734     /**
11735      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
11736      * @param {String} id The value to search for
11737      * @return Field
11738      */
11739     findField : function(id){
11740         var items = this.getItems();
11741         var field = items.get(id);
11742         if(!field){
11743              items.each(function(f){
11744                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
11745                     field = f;
11746                     return false;
11747                 }
11748                 return true;
11749             });
11750         }
11751         return field || null;
11752     },
11753      /**
11754      * Mark fields in this form invalid in bulk.
11755      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
11756      * @return {BasicForm} this
11757      */
11758     markInvalid : function(errors){
11759         if(errors instanceof Array){
11760             for(var i = 0, len = errors.length; i < len; i++){
11761                 var fieldError = errors[i];
11762                 var f = this.findField(fieldError.id);
11763                 if(f){
11764                     f.markInvalid(fieldError.msg);
11765                 }
11766             }
11767         }else{
11768             var field, id;
11769             for(id in errors){
11770                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
11771                     field.markInvalid(errors[id]);
11772                 }
11773             }
11774         }
11775         //Roo.each(this.childForms || [], function (f) {
11776         //    f.markInvalid(errors);
11777         //});
11778
11779         return this;
11780     },
11781
11782     /**
11783      * Set values for fields in this form in bulk.
11784      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
11785      * @return {BasicForm} this
11786      */
11787     setValues : function(values){
11788         if(values instanceof Array){ // array of objects
11789             for(var i = 0, len = values.length; i < len; i++){
11790                 var v = values[i];
11791                 var f = this.findField(v.id);
11792                 if(f){
11793                     f.setValue(v.value);
11794                     if(this.trackResetOnLoad){
11795                         f.originalValue = f.getValue();
11796                     }
11797                 }
11798             }
11799         }else{ // object hash
11800             var field, id;
11801             for(id in values){
11802                 if(typeof values[id] != 'function' && (field = this.findField(id))){
11803
11804                     if (field.setFromData &&
11805                         field.valueField &&
11806                         field.displayField &&
11807                         // combos' with local stores can
11808                         // be queried via setValue()
11809                         // to set their value..
11810                         (field.store && !field.store.isLocal)
11811                         ) {
11812                         // it's a combo
11813                         var sd = { };
11814                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
11815                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
11816                         field.setFromData(sd);
11817
11818                     } else if(field.setFromData && (field.store && !field.store.isLocal)) {
11819                         
11820                         field.setFromData(values);
11821                         
11822                     } else {
11823                         field.setValue(values[id]);
11824                     }
11825
11826
11827                     if(this.trackResetOnLoad){
11828                         field.originalValue = field.getValue();
11829                     }
11830                 }
11831             }
11832         }
11833
11834         //Roo.each(this.childForms || [], function (f) {
11835         //    f.setValues(values);
11836         //});
11837
11838         return this;
11839     },
11840
11841     /**
11842      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
11843      * they are returned as an array.
11844      * @param {Boolean} asString
11845      * @return {Object}
11846      */
11847     getValues : function(asString){
11848         //if (this.childForms) {
11849             // copy values from the child forms
11850         //    Roo.each(this.childForms, function (f) {
11851         //        this.setValues(f.getValues());
11852         //    }, this);
11853         //}
11854
11855
11856
11857         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
11858         if(asString === true){
11859             return fs;
11860         }
11861         return Roo.urlDecode(fs);
11862     },
11863
11864     /**
11865      * Returns the fields in this form as an object with key/value pairs.
11866      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
11867      * @return {Object}
11868      */
11869     getFieldValues : function(with_hidden)
11870     {
11871         var items = this.getItems();
11872         var ret = {};
11873         items.each(function(f){
11874             
11875             if (!f.getName()) {
11876                 return;
11877             }
11878             
11879             var v = f.getValue();
11880             
11881             if (f.inputType =='radio') {
11882                 if (typeof(ret[f.getName()]) == 'undefined') {
11883                     ret[f.getName()] = ''; // empty..
11884                 }
11885
11886                 if (!f.el.dom.checked) {
11887                     return;
11888
11889                 }
11890                 v = f.el.dom.value;
11891
11892             }
11893             
11894             if(f.xtype == 'MoneyField'){
11895                 ret[f.currencyName] = f.getCurrency();
11896             }
11897
11898             // not sure if this supported any more..
11899             if ((typeof(v) == 'object') && f.getRawValue) {
11900                 v = f.getRawValue() ; // dates..
11901             }
11902             // combo boxes where name != hiddenName...
11903             if (f.name !== false && f.name != '' && f.name != f.getName()) {
11904                 ret[f.name] = f.getRawValue();
11905             }
11906             ret[f.getName()] = v;
11907         });
11908
11909         return ret;
11910     },
11911
11912     /**
11913      * Clears all invalid messages in this form.
11914      * @return {BasicForm} this
11915      */
11916     clearInvalid : function(){
11917         var items = this.getItems();
11918
11919         items.each(function(f){
11920            f.clearInvalid();
11921         });
11922
11923         return this;
11924     },
11925
11926     /**
11927      * Resets this form.
11928      * @return {BasicForm} this
11929      */
11930     reset : function(){
11931         var items = this.getItems();
11932         items.each(function(f){
11933             f.reset();
11934         });
11935
11936         Roo.each(this.childForms || [], function (f) {
11937             f.reset();
11938         });
11939
11940
11941         return this;
11942     },
11943     
11944     getItems : function()
11945     {
11946         var r=new Roo.util.MixedCollection(false, function(o){
11947             return o.id || (o.id = Roo.id());
11948         });
11949         var iter = function(el) {
11950             if (el.inputEl) {
11951                 r.add(el);
11952             }
11953             if (!el.items) {
11954                 return;
11955             }
11956             Roo.each(el.items,function(e) {
11957                 iter(e);
11958             });
11959         };
11960
11961         iter(this);
11962         return r;
11963     },
11964     
11965     hideFields : function(items)
11966     {
11967         Roo.each(items, function(i){
11968             
11969             var f = this.findField(i);
11970             
11971             if(!f){
11972                 return;
11973             }
11974             
11975             f.hide();
11976             
11977         }, this);
11978     },
11979     
11980     showFields : function(items)
11981     {
11982         Roo.each(items, function(i){
11983             
11984             var f = this.findField(i);
11985             
11986             if(!f){
11987                 return;
11988             }
11989             
11990             f.show();
11991             
11992         }, this);
11993     }
11994
11995 });
11996
11997 Roo.apply(Roo.bootstrap.form.Form, {
11998     
11999     popover : {
12000         
12001         padding : 5,
12002         
12003         isApplied : false,
12004         
12005         isMasked : false,
12006         
12007         form : false,
12008         
12009         target : false,
12010         
12011         toolTip : false,
12012         
12013         intervalID : false,
12014         
12015         maskEl : false,
12016         
12017         apply : function()
12018         {
12019             if(this.isApplied){
12020                 return;
12021             }
12022             
12023             this.maskEl = {
12024                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
12025                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
12026                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
12027                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
12028             };
12029             
12030             this.maskEl.top.enableDisplayMode("block");
12031             this.maskEl.left.enableDisplayMode("block");
12032             this.maskEl.bottom.enableDisplayMode("block");
12033             this.maskEl.right.enableDisplayMode("block");
12034             
12035             this.toolTip = new Roo.bootstrap.Tooltip({
12036                 cls : 'roo-form-error-popover',
12037                 alignment : {
12038                     'left' : ['r-l', [-2,0], 'right'],
12039                     'right' : ['l-r', [2,0], 'left'],
12040                     'bottom' : ['tl-bl', [0,2], 'top'],
12041                     'top' : [ 'bl-tl', [0,-2], 'bottom']
12042                 }
12043             });
12044             
12045             this.toolTip.render(Roo.get(document.body));
12046
12047             this.toolTip.el.enableDisplayMode("block");
12048             
12049             Roo.get(document.body).on('click', function(){
12050                 this.unmask();
12051             }, this);
12052             
12053             Roo.get(document.body).on('touchstart', function(){
12054                 this.unmask();
12055             }, this);
12056             
12057             this.isApplied = true
12058         },
12059         
12060         mask : function(form, target)
12061         {
12062             this.form = form;
12063             
12064             this.target = target;
12065             
12066             if(!this.form.errorMask || !target.el){
12067                 return;
12068             }
12069             
12070             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.modal', 100, true) || Roo.get(document.body);
12071             
12072             Roo.log(scrollable);
12073             
12074             var ot = this.target.el.calcOffsetsTo(scrollable);
12075             
12076             var scrollTo = ot[1] - this.form.maskOffset;
12077             
12078             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
12079             
12080             scrollable.scrollTo('top', scrollTo);
12081             
12082             var box = this.target.el.getBox();
12083             Roo.log(box);
12084             var zIndex = Roo.bootstrap.Modal.zIndex++;
12085
12086             
12087             this.maskEl.top.setStyle('position', 'absolute');
12088             this.maskEl.top.setStyle('z-index', zIndex);
12089             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
12090             this.maskEl.top.setLeft(0);
12091             this.maskEl.top.setTop(0);
12092             this.maskEl.top.show();
12093             
12094             this.maskEl.left.setStyle('position', 'absolute');
12095             this.maskEl.left.setStyle('z-index', zIndex);
12096             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
12097             this.maskEl.left.setLeft(0);
12098             this.maskEl.left.setTop(box.y - this.padding);
12099             this.maskEl.left.show();
12100
12101             this.maskEl.bottom.setStyle('position', 'absolute');
12102             this.maskEl.bottom.setStyle('z-index', zIndex);
12103             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
12104             this.maskEl.bottom.setLeft(0);
12105             this.maskEl.bottom.setTop(box.bottom + this.padding);
12106             this.maskEl.bottom.show();
12107
12108             this.maskEl.right.setStyle('position', 'absolute');
12109             this.maskEl.right.setStyle('z-index', zIndex);
12110             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
12111             this.maskEl.right.setLeft(box.right + this.padding);
12112             this.maskEl.right.setTop(box.y - this.padding);
12113             this.maskEl.right.show();
12114
12115             this.toolTip.bindEl = this.target.el;
12116
12117             this.toolTip.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
12118
12119             var tip = this.target.blankText;
12120
12121             if(this.target.getValue() !== '' ) {
12122                 
12123                 if (this.target.invalidText.length) {
12124                     tip = this.target.invalidText;
12125                 } else if (this.target.regexText.length){
12126                     tip = this.target.regexText;
12127                 }
12128             }
12129
12130             this.toolTip.show(tip);
12131
12132             this.intervalID = window.setInterval(function() {
12133                 Roo.bootstrap.form.Form.popover.unmask();
12134             }, 10000);
12135
12136             window.onwheel = function(){ return false;};
12137             
12138             (function(){ this.isMasked = true; }).defer(500, this);
12139             
12140         },
12141         
12142         unmask : function()
12143         {
12144             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
12145                 return;
12146             }
12147             
12148             this.maskEl.top.setStyle('position', 'absolute');
12149             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
12150             this.maskEl.top.hide();
12151
12152             this.maskEl.left.setStyle('position', 'absolute');
12153             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
12154             this.maskEl.left.hide();
12155
12156             this.maskEl.bottom.setStyle('position', 'absolute');
12157             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
12158             this.maskEl.bottom.hide();
12159
12160             this.maskEl.right.setStyle('position', 'absolute');
12161             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
12162             this.maskEl.right.hide();
12163             
12164             this.toolTip.hide();
12165             
12166             this.toolTip.el.hide();
12167             
12168             window.onwheel = function(){ return true;};
12169             
12170             if(this.intervalID){
12171                 window.clearInterval(this.intervalID);
12172                 this.intervalID = false;
12173             }
12174             
12175             this.isMasked = false;
12176             
12177         }
12178         
12179     }
12180     
12181 });
12182
12183 /*
12184  * Based on:
12185  * Ext JS Library 1.1.1
12186  * Copyright(c) 2006-2007, Ext JS, LLC.
12187  *
12188  * Originally Released Under LGPL - original licence link has changed is not relivant.
12189  *
12190  * Fork - LGPL
12191  * <script type="text/javascript">
12192  */
12193 /**
12194  * @class Roo.form.VTypes
12195  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
12196  * @static
12197  */
12198 Roo.form.VTypes = function(){
12199     // closure these in so they are only created once.
12200     var alpha = /^[a-zA-Z_]+$/;
12201     var alphanum = /^[a-zA-Z0-9_]+$/;
12202     var email = /^([\w'-]+)(\.[\w'-]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
12203     var url = /^(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
12204     var urlWeb = /^((https?):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
12205
12206     // All these messages and functions are configurable
12207     return {
12208         /**
12209          * The function used to validate email addresses
12210          * @param {String} value The email address
12211          */
12212         email : function(v){
12213             return email.test(v);
12214         },
12215         /**
12216          * The error text to display when the email validation function returns false
12217          * @type String
12218          */
12219         emailText : 'This field should be an e-mail address in the format "user@domain.com"',
12220         /**
12221          * The keystroke filter mask to be applied on email input
12222          * @type RegExp
12223          */
12224         emailMask : /[a-z0-9_\.\-@]/i,
12225
12226         /**
12227          * The function used to validate URLs
12228          * @param {String} value The URL
12229          */
12230         url : function(v){
12231             return url.test(v);
12232         },
12233         /**
12234          * The funciton used to validate URLs (only allow schemes 'https' and 'http')
12235          * @param {String} v The URL
12236          */
12237         urlWeb : function(v) {
12238             return urlWeb.test(v);
12239         },
12240         /**
12241          * The error text to display when the url validation function returns false
12242          * @type String
12243          */
12244         urlText : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
12245         
12246         /**
12247          * The function used to validate alpha values
12248          * @param {String} value The value
12249          */
12250         alpha : function(v){
12251             return alpha.test(v);
12252         },
12253         /**
12254          * The error text to display when the alpha validation function returns false
12255          * @type String
12256          */
12257         alphaText : 'This field should only contain letters and _',
12258         /**
12259          * The keystroke filter mask to be applied on alpha input
12260          * @type RegExp
12261          */
12262         alphaMask : /[a-z_]/i,
12263
12264         /**
12265          * The function used to validate alphanumeric values
12266          * @param {String} value The value
12267          */
12268         alphanum : function(v){
12269             return alphanum.test(v);
12270         },
12271         /**
12272          * The error text to display when the alphanumeric validation function returns false
12273          * @type String
12274          */
12275         alphanumText : 'This field should only contain letters, numbers and _',
12276         /**
12277          * The keystroke filter mask to be applied on alphanumeric input
12278          * @type RegExp
12279          */
12280         alphanumMask : /[a-z0-9_]/i
12281     };
12282 }();/*
12283  * - LGPL
12284  *
12285  * Input
12286  * 
12287  */
12288
12289 /**
12290  * @class Roo.bootstrap.form.Input
12291  * @extends Roo.bootstrap.Component
12292  * Bootstrap Input class
12293  * @cfg {Boolean} disabled is it disabled
12294  * @cfg {String} inputType (button|checkbox|email|file|hidden|image|number|password|radio|range|reset|search|submit|text)  
12295  * @cfg {String} name name of the input
12296  * @cfg {string} fieldLabel - the label associated
12297  * @cfg {string} placeholder - placeholder to put in text.
12298  * @cfg {string} before - input group add on before
12299  * @cfg {string} after - input group add on after
12300  * @cfg {string} size - (lg|sm) or leave empty..
12301  * @cfg {Number} xs colspan out of 12 for mobile-sized screens
12302  * @cfg {Number} sm colspan out of 12 for tablet-sized screens
12303  * @cfg {Number} md colspan out of 12 for computer-sized screens
12304  * @cfg {Number} lg colspan out of 12 for large computer-sized screens
12305  * @cfg {string} value default value of the input
12306  * @cfg {Number} labelWidth set the width of label 
12307  * @cfg {Number} labellg set the width of label (1-12)
12308  * @cfg {Number} labelmd set the width of label (1-12)
12309  * @cfg {Number} labelsm set the width of label (1-12)
12310  * @cfg {Number} labelxs set the width of label (1-12)
12311  * @cfg {String} labelAlign (top|left)
12312  * @cfg {Boolean} readOnly Specifies that the field should be read-only
12313  * @cfg {String} autocomplete - default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en
12314  * @cfg {String} indicatorpos (left|right) default left
12315  * @cfg {String} capture (user|camera) use for file input only. (default empty)
12316  * @cfg {String} accept (image|video|audio) use for file input only. (default empty)
12317  * @cfg {Boolean} preventMark Do not show tick or cross if error/success
12318  * @cfg {Roo.bootstrap.Button} before Button to show before
12319  * @cfg {Roo.bootstrap.Button} afterButton to show before
12320  * @cfg {String} align (left|center|right) Default left
12321  * @cfg {Boolean} forceFeedback (true|false) Default false
12322  * 
12323  * @constructor
12324  * Create a new Input
12325  * @param {Object} config The config object
12326  */
12327
12328 Roo.bootstrap.form.Input = function(config){
12329     
12330     Roo.bootstrap.form.Input.superclass.constructor.call(this, config);
12331     
12332     this.addEvents({
12333         /**
12334          * @event focus
12335          * Fires when this field receives input focus.
12336          * @param {Roo.form.Field} this
12337          */
12338         focus : true,
12339         /**
12340          * @event blur
12341          * Fires when this field loses input focus.
12342          * @param {Roo.form.Field} this
12343          */
12344         blur : true,
12345         /**
12346          * @event specialkey
12347          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
12348          * {@link Roo.EventObject#getKey} to determine which key was pressed.
12349          * @param {Roo.form.Field} this
12350          * @param {Roo.EventObject} e The event object
12351          */
12352         specialkey : true,
12353         /**
12354          * @event change
12355          * Fires just before the field blurs if the field value has changed.
12356          * @param {Roo.form.Field} this
12357          * @param {Mixed} newValue The new value
12358          * @param {Mixed} oldValue The original value
12359          */
12360         change : true,
12361         /**
12362          * @event invalid
12363          * Fires after the field has been marked as invalid.
12364          * @param {Roo.form.Field} this
12365          * @param {String} msg The validation message
12366          */
12367         invalid : true,
12368         /**
12369          * @event valid
12370          * Fires after the field has been validated with no errors.
12371          * @param {Roo.form.Field} this
12372          */
12373         valid : true,
12374          /**
12375          * @event keyup
12376          * Fires after the key up
12377          * @param {Roo.form.Field} this
12378          * @param {Roo.EventObject}  e The event Object
12379          */
12380         keyup : true,
12381         /**
12382          * @event paste
12383          * Fires after the user pastes into input
12384          * @param {Roo.form.Field} this
12385          * @param {Roo.EventObject}  e The event Object
12386          */
12387         paste : true
12388     });
12389 };
12390
12391 Roo.extend(Roo.bootstrap.form.Input, Roo.bootstrap.Component,  {
12392      /**
12393      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
12394       automatic validation (defaults to "keyup").
12395      */
12396     validationEvent : "keyup",
12397      /**
12398      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
12399      */
12400     validateOnBlur : true,
12401     /**
12402      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
12403      */
12404     validationDelay : 250,
12405      /**
12406      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
12407      */
12408     focusClass : "x-form-focus",  // not needed???
12409     
12410        
12411     /**
12412      * @cfg {String} invalidClass DEPRICATED - code uses BS4 - is-valid / is-invalid
12413      */
12414     invalidClass : "has-warning",
12415     
12416     /**
12417      * @cfg {String} validClass DEPRICATED - code uses BS4 - is-valid / is-invalid
12418      */
12419     validClass : "has-success",
12420     
12421     /**
12422      * @cfg {Boolean} hasFeedback (true|false) default true
12423      */
12424     hasFeedback : true,
12425     
12426     /**
12427      * @cfg {String} invalidFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
12428      */
12429     invalidFeedbackClass : "glyphicon-warning-sign",
12430     
12431     /**
12432      * @cfg {String} validFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
12433      */
12434     validFeedbackClass : "glyphicon-ok",
12435     
12436     /**
12437      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
12438      */
12439     selectOnFocus : false,
12440     
12441      /**
12442      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
12443      */
12444     maskRe : null,
12445        /**
12446      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
12447      */
12448     vtype : null,
12449     
12450       /**
12451      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
12452      */
12453     disableKeyFilter : false,
12454     
12455        /**
12456      * @cfg {Boolean} disabled True to disable the field (defaults to false).
12457      */
12458     disabled : false,
12459      /**
12460      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
12461      */
12462     allowBlank : true,
12463     /**
12464      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
12465      */
12466     blankText : "Please complete this mandatory field",
12467     
12468      /**
12469      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
12470      */
12471     minLength : 0,
12472     /**
12473      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
12474      */
12475     maxLength : Number.MAX_VALUE,
12476     /**
12477      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
12478      */
12479     minLengthText : "The minimum length for this field is {0}",
12480     /**
12481      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
12482      */
12483     maxLengthText : "The maximum length for this field is {0}",
12484   
12485     
12486     /**
12487      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
12488      * If available, this function will be called only after the basic validators all return true, and will be passed the
12489      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
12490      */
12491     validator : null,
12492     /**
12493      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
12494      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
12495      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
12496      */
12497     regex : null,
12498     /**
12499      * @cfg {String} regexText -- Depricated - use Invalid Text
12500      */
12501     regexText : "",
12502     
12503     /**
12504      * @cfg {String} invalidText The error text to display if {@link #validator} test fails during validation (defaults to "")
12505      */
12506     invalidText : "",
12507     
12508     
12509     
12510     autocomplete: false,
12511     
12512     
12513     fieldLabel : '',
12514     inputType : 'text',
12515     
12516     name : false,
12517     placeholder: false,
12518     before : false,
12519     after : false,
12520     size : false,
12521     hasFocus : false,
12522     preventMark: false,
12523     isFormField : true,
12524     value : '',
12525     labelWidth : 2,
12526     labelAlign : false,
12527     readOnly : false,
12528     align : false,
12529     formatedValue : false,
12530     forceFeedback : false,
12531     
12532     indicatorpos : 'left',
12533     
12534     labellg : 0,
12535     labelmd : 0,
12536     labelsm : 0,
12537     labelxs : 0,
12538     
12539     capture : '',
12540     accept : '',
12541     
12542     parentLabelAlign : function()
12543     {
12544         var parent = this;
12545         while (parent.parent()) {
12546             parent = parent.parent();
12547             if (typeof(parent.labelAlign) !='undefined') {
12548                 return parent.labelAlign;
12549             }
12550         }
12551         return 'left';
12552         
12553     },
12554     
12555     getAutoCreate : function()
12556     {
12557         
12558         var id = Roo.id();
12559         
12560         var cfg = {};
12561         
12562         if(this.inputType != 'hidden'){
12563             cfg.cls = 'form-group' //input-group
12564         }
12565         
12566         var input =  {
12567             tag: 'input',
12568             id : id,
12569             type : this.inputType,
12570             value : this.value,
12571             cls : 'form-control',
12572             placeholder : this.placeholder || '',
12573             autocomplete : this.autocomplete || 'new-password'
12574         };
12575         if (this.inputType == 'file') {
12576             input.style = 'overflow:hidden'; // why not in CSS?
12577         }
12578         
12579         if(this.capture.length){
12580             input.capture = this.capture;
12581         }
12582         
12583         if(this.accept.length){
12584             input.accept = this.accept + "/*";
12585         }
12586         
12587         if(this.align){
12588             input.style = (typeof(input.style) == 'undefined') ? ('text-align:' + this.align) : (input.style + 'text-align:' + this.align);
12589         }
12590         
12591         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
12592             input.maxLength = this.maxLength;
12593         }
12594         
12595         if (this.disabled) {
12596             input.disabled=true;
12597         }
12598         
12599         if (this.readOnly) {
12600             input.readonly=true;
12601         }
12602         
12603         if (this.name) {
12604             input.name = this.name;
12605         }
12606         
12607         if (this.size) {
12608             input.cls += ' input-' + this.size;
12609         }
12610         
12611         var settings=this;
12612         ['xs','sm','md','lg'].map(function(size){
12613             if (settings[size]) {
12614                 cfg.cls += ' col-' + size + '-' + settings[size];
12615             }
12616         });
12617         
12618         var inputblock = input;
12619         
12620         var feedback = {
12621             tag: 'span',
12622             cls: 'glyphicon form-control-feedback'
12623         };
12624             
12625         if(this.hasFeedback && this.inputType != 'hidden'){
12626             
12627             inputblock = {
12628                 cls : 'has-feedback',
12629                 cn :  [
12630                     input,
12631                     feedback
12632                 ] 
12633             };  
12634         }
12635         
12636         if (this.before || this.after) {
12637             
12638             inputblock = {
12639                 cls : 'input-group',
12640                 cn :  [] 
12641             };
12642             
12643             if (this.before && typeof(this.before) == 'string') {
12644                 
12645                 inputblock.cn.push({
12646                     tag :'span',
12647                     cls : 'roo-input-before input-group-addon input-group-prepend input-group-text',
12648                     html : this.before
12649                 });
12650             }
12651             if (this.before && typeof(this.before) == 'object') {
12652                 this.before = Roo.factory(this.before);
12653                 
12654                 inputblock.cn.push({
12655                     tag :'span',
12656                     cls : 'roo-input-before input-group-prepend   input-group-' +
12657                         (this.before.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
12658                 });
12659             }
12660             
12661             inputblock.cn.push(input);
12662             
12663             if (this.after && typeof(this.after) == 'string') {
12664                 inputblock.cn.push({
12665                     tag :'span',
12666                     cls : 'roo-input-after input-group-append input-group-text input-group-addon',
12667                     html : this.after
12668                 });
12669             }
12670             if (this.after && typeof(this.after) == 'object') {
12671                 this.after = Roo.factory(this.after);
12672                 
12673                 inputblock.cn.push({
12674                     tag :'span',
12675                     cls : 'roo-input-after input-group-append  input-group-' +
12676                         (this.after.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
12677                 });
12678             }
12679             
12680             if(this.hasFeedback && this.inputType != 'hidden'){
12681                 inputblock.cls += ' has-feedback';
12682                 inputblock.cn.push(feedback);
12683             }
12684         };
12685         
12686         
12687         
12688         cfg = this.getAutoCreateLabel( cfg, inputblock );
12689         
12690        
12691          
12692         
12693         if (this.parentType === 'Navbar' &&  this.parent().bar) {
12694            cfg.cls += ' navbar-form';
12695         }
12696         
12697         if (this.parentType === 'NavGroup' && !(Roo.bootstrap.version == 4 && this.parent().form)) {
12698             // on BS4 we do this only if not form 
12699             cfg.cls += ' navbar-form';
12700             cfg.tag = 'li';
12701         }
12702         
12703         return cfg;
12704         
12705     },
12706     /**
12707      * autocreate the label - also used by textara... ?? and others?
12708      */
12709     getAutoCreateLabel : function( cfg, inputblock )
12710     {
12711         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
12712        
12713         var indicator = {
12714             tag : 'i',
12715             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
12716             tooltip : 'This field is required'
12717         };
12718         if (this.allowBlank ) {
12719             indicator.style = this.allowBlank ? ' display:none' : '';
12720         }
12721         if (align ==='left' && this.fieldLabel.length) {
12722             
12723             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
12724             
12725             cfg.cn = [
12726                 indicator,
12727                 {
12728                     tag: 'label',
12729                     'for' :  id,
12730                     cls : 'control-label col-form-label',
12731                     html : this.fieldLabel
12732
12733                 },
12734                 {
12735                     cls : "", 
12736                     cn: [
12737                         inputblock
12738                     ]
12739                 }
12740             ];
12741             
12742             var labelCfg = cfg.cn[1];
12743             var contentCfg = cfg.cn[2];
12744             
12745             if(this.indicatorpos == 'right'){
12746                 cfg.cn = [
12747                     {
12748                         tag: 'label',
12749                         'for' :  id,
12750                         cls : 'control-label col-form-label',
12751                         cn : [
12752                             {
12753                                 tag : 'span',
12754                                 html : this.fieldLabel
12755                             },
12756                             indicator
12757                         ]
12758                     },
12759                     {
12760                         cls : "",
12761                         cn: [
12762                             inputblock
12763                         ]
12764                     }
12765
12766                 ];
12767                 
12768                 labelCfg = cfg.cn[0];
12769                 contentCfg = cfg.cn[1];
12770             
12771             }
12772             
12773             if(this.labelWidth > 12){
12774                 labelCfg.style = "width: " + this.labelWidth + 'px';
12775             }
12776             
12777             if(this.labelWidth < 13 && this.labelmd == 0){
12778                 this.labellg = this.labellg > 0 ? this.labellg : this.labelWidth;
12779             }
12780             
12781             if(this.labellg > 0){
12782                 labelCfg.cls += ' col-lg-' + this.labellg;
12783                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
12784             }
12785             
12786             if(this.labelmd > 0){
12787                 labelCfg.cls += ' col-md-' + this.labelmd;
12788                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
12789             }
12790             
12791             if(this.labelsm > 0){
12792                 labelCfg.cls += ' col-sm-' + this.labelsm;
12793                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
12794             }
12795             
12796             if(this.labelxs > 0){
12797                 labelCfg.cls += ' col-xs-' + this.labelxs;
12798                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
12799             }
12800             
12801             
12802         } else if ( this.fieldLabel.length) {
12803                 
12804             
12805             
12806             cfg.cn = [
12807                 {
12808                     tag : 'i',
12809                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
12810                     tooltip : 'This field is required',
12811                     style : this.allowBlank ? ' display:none' : '' 
12812                 },
12813                 {
12814                     tag: 'label',
12815                    //cls : 'input-group-addon',
12816                     html : this.fieldLabel
12817
12818                 },
12819
12820                inputblock
12821
12822            ];
12823            
12824            if(this.indicatorpos == 'right'){
12825        
12826                 cfg.cn = [
12827                     {
12828                         tag: 'label',
12829                        //cls : 'input-group-addon',
12830                         html : this.fieldLabel
12831
12832                     },
12833                     {
12834                         tag : 'i',
12835                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
12836                         tooltip : 'This field is required',
12837                         style : this.allowBlank ? ' display:none' : '' 
12838                     },
12839
12840                    inputblock
12841
12842                ];
12843
12844             }
12845
12846         } else {
12847             
12848             cfg.cn = [
12849
12850                     inputblock
12851
12852             ];
12853                 
12854                 
12855         };
12856         return cfg;
12857     },
12858     
12859     
12860     /**
12861      * return the real input element.
12862      */
12863     inputEl: function ()
12864     {
12865         return this.el.select('input.form-control',true).first();
12866     },
12867     
12868     tooltipEl : function()
12869     {
12870         return this.inputEl();
12871     },
12872     
12873     indicatorEl : function()
12874     {
12875         if (Roo.bootstrap.version == 4) {
12876             return false; // not enabled in v4 yet.
12877         }
12878         
12879         var indicator = this.el.select('i.roo-required-indicator',true).first();
12880         
12881         if(!indicator){
12882             return false;
12883         }
12884         
12885         return indicator;
12886         
12887     },
12888     
12889     setDisabled : function(v)
12890     {
12891         var i  = this.inputEl().dom;
12892         if (!v) {
12893             i.removeAttribute('disabled');
12894             return;
12895             
12896         }
12897         i.setAttribute('disabled','true');
12898     },
12899     initEvents : function()
12900     {
12901           
12902         this.inputEl().on("keydown" , this.fireKey,  this);
12903         this.inputEl().on("focus", this.onFocus,  this);
12904         this.inputEl().on("blur", this.onBlur,  this);
12905         
12906         this.inputEl().relayEvent('keyup', this);
12907         this.inputEl().relayEvent('paste', this);
12908         
12909         this.indicator = this.indicatorEl();
12910         
12911         if(this.indicator){
12912             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible'); // changed from invisible??? - 
12913         }
12914  
12915         // reference to original value for reset
12916         this.originalValue = this.getValue();
12917         //Roo.form.TextField.superclass.initEvents.call(this);
12918         if(this.validationEvent == 'keyup'){
12919             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
12920             this.inputEl().on('keyup', this.filterValidation, this);
12921         }
12922         else if(this.validationEvent !== false){
12923             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
12924         }
12925         
12926         if(this.selectOnFocus){
12927             this.on("focus", this.preFocus, this);
12928             
12929         }
12930         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
12931             this.inputEl().on("keypress", this.filterKeys, this);
12932         } else {
12933             this.inputEl().relayEvent('keypress', this);
12934         }
12935        /* if(this.grow){
12936             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
12937             this.el.on("click", this.autoSize,  this);
12938         }
12939         */
12940         if(this.inputEl().is('input[type=password]') && Roo.isSafari){
12941             this.inputEl().on('keydown', this.SafariOnKeyDown, this);
12942         }
12943         
12944         if (typeof(this.before) == 'object') {
12945             this.before.render(this.el.select('.roo-input-before',true).first());
12946         }
12947         if (typeof(this.after) == 'object') {
12948             this.after.render(this.el.select('.roo-input-after',true).first());
12949         }
12950         
12951         this.inputEl().on('change', this.onChange, this);
12952
12953         if(this.hasFeedback && this.inputType != 'hidden'){
12954             
12955             var feedback = this.el.select('.form-control-feedback', true).first();
12956
12957             if(feedback) {
12958                 feedback.hide();
12959             }
12960         }
12961         
12962     },
12963     filterValidation : function(e){
12964         if(!e.isNavKeyPress()){
12965             this.validationTask.delay(this.validationDelay);
12966         }
12967     },
12968      /**
12969      * Validates the field value
12970      * @return {Boolean} True if the value is valid, else false
12971      */
12972     validate : function(){
12973         //if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
12974         if(this.disabled || this.validateValue(this.getRawValue())){
12975             this.markValid();
12976             return true;
12977         }
12978         
12979         this.markInvalid();
12980         return false;
12981     },
12982     
12983     
12984     /**
12985      * Validates a value according to the field's validation rules and marks the field as invalid
12986      * if the validation fails
12987      * @param {Mixed} value The value to validate
12988      * @return {Boolean} True if the value is valid, else false
12989      */
12990     validateValue : function(value)
12991     {
12992         if(this.getVisibilityEl().hasClass('hidden')){
12993             return true;
12994         }
12995         
12996         if(value.length < 1)  { // if it's blank
12997             if(this.allowBlank){
12998                 return true;
12999             }
13000             return false;
13001         }
13002         
13003         if(value.length < this.minLength){
13004             return false;
13005         }
13006         if(value.length > this.maxLength){
13007             return false;
13008         }
13009         if(this.vtype){
13010             var vt = Roo.form.VTypes;
13011             if(!vt[this.vtype](value, this)){
13012                 return false;
13013             }
13014         }
13015         if(typeof this.validator == "function"){
13016             var msg = this.validator(value);
13017             if (typeof(msg) == 'string') {
13018                 this.invalidText = msg;
13019             }
13020             if(msg !== true){
13021                 return false;
13022             }
13023         }
13024         
13025         if(this.regex && !this.regex.test(value)){
13026             return false;
13027         }
13028         
13029         return true;
13030     },
13031     
13032      // private
13033     fireKey : function(e){
13034         //Roo.log('field ' + e.getKey());
13035         if(e.isNavKeyPress()){
13036             this.fireEvent("specialkey", this, e);
13037         }
13038     },
13039     focus : function (selectText){
13040         if(this.rendered){
13041             this.inputEl().focus();
13042             if(selectText === true){
13043                 this.inputEl().dom.select();
13044             }
13045         }
13046         return this;
13047     } ,
13048     
13049     onFocus : function(){
13050         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
13051            // this.el.addClass(this.focusClass);
13052         }
13053         if(!this.hasFocus){
13054             this.hasFocus = true;
13055             this.startValue = this.getValue();
13056             this.fireEvent("focus", this);
13057         }
13058     },
13059     
13060     beforeBlur : Roo.emptyFn,
13061
13062     
13063     // private
13064     onBlur : function(){
13065         this.beforeBlur();
13066         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
13067             //this.el.removeClass(this.focusClass);
13068         }
13069         this.hasFocus = false;
13070         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
13071             this.validate();
13072         }
13073         var v = this.getValue();
13074         if(String(v) !== String(this.startValue)){
13075             this.fireEvent('change', this, v, this.startValue);
13076         }
13077         this.fireEvent("blur", this);
13078     },
13079     
13080     onChange : function(e)
13081     {
13082         var v = this.getValue();
13083         if(String(v) !== String(this.startValue)){
13084             this.fireEvent('change', this, v, this.startValue);
13085         }
13086         
13087     },
13088     
13089     /**
13090      * Resets the current field value to the originally loaded value and clears any validation messages
13091      */
13092     reset : function(){
13093         this.setValue(this.originalValue);
13094         // this.validate();
13095         this.el.removeClass([this.invalidClass, this.validClass]);
13096         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13097
13098         if(this.hasFeedback && this.inputType != 'hidden'){
13099             
13100             var feedback = this.el.select('.form-control-feedback', true).first();
13101             
13102             if(feedback){
13103                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13104                 feedback.update('');
13105                 feedback.hide();
13106             }
13107             
13108         }
13109     },
13110      /**
13111      * Returns the name of the field
13112      * @return {Mixed} name The name field
13113      */
13114     getName: function(){
13115         return this.name;
13116     },
13117      /**
13118      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
13119      * @return {Mixed} value The field value
13120      */
13121     getValue : function(){
13122         var v = this.inputEl().getValue();
13123         return v;
13124     },
13125     /**
13126      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
13127      * @return {Mixed} value The field value
13128      */
13129     getRawValue : function(){
13130         var v = this.inputEl().getValue();
13131         
13132         return v;
13133     },
13134     
13135     /**
13136      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
13137      * @param {Mixed} value The value to set
13138      */
13139     setRawValue : function(v){
13140         return this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
13141     },
13142     
13143     selectText : function(start, end){
13144         var v = this.getRawValue();
13145         if(v.length > 0){
13146             start = start === undefined ? 0 : start;
13147             end = end === undefined ? v.length : end;
13148             var d = this.inputEl().dom;
13149             if(d.setSelectionRange){
13150                 d.setSelectionRange(start, end);
13151             }else if(d.createTextRange){
13152                 var range = d.createTextRange();
13153                 range.moveStart("character", start);
13154                 range.moveEnd("character", v.length-end);
13155                 range.select();
13156             }
13157         }
13158     },
13159     
13160     /**
13161      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
13162      * @param {Mixed} value The value to set
13163      */
13164     setValue : function(v){
13165         this.value = v;
13166         if(this.rendered){
13167             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
13168             this.validate();
13169         }
13170     },
13171     
13172     /*
13173     processValue : function(value){
13174         if(this.stripCharsRe){
13175             var newValue = value.replace(this.stripCharsRe, '');
13176             if(newValue !== value){
13177                 this.setRawValue(newValue);
13178                 return newValue;
13179             }
13180         }
13181         return value;
13182     },
13183   */
13184     preFocus : function(){
13185         
13186         if(this.selectOnFocus){
13187             this.inputEl().dom.select();
13188         }
13189     },
13190     filterKeys : function(e){
13191         var k = e.getKey();
13192         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
13193             return;
13194         }
13195         var c = e.getCharCode(), cc = String.fromCharCode(c);
13196         if(Roo.isIE && (e.isSpecialKey() || !cc)){
13197             return;
13198         }
13199         if(!this.maskRe.test(cc)){
13200             e.stopEvent();
13201         }
13202     },
13203      /**
13204      * Clear any invalid styles/messages for this field
13205      */
13206     clearInvalid : function(){
13207         
13208         if(!this.el || this.preventMark){ // not rendered
13209             return;
13210         }
13211         
13212         
13213         this.inputEl().removeClass([this.invalidClass, 'is-invalid']);
13214         
13215         if(this.hasFeedback && this.inputType != 'hidden'){
13216             
13217             var feedback = this.el.select('.form-control-feedback', true).first();
13218             
13219             if(feedback){
13220                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
13221
13222                 feedback.update('');
13223                 feedback.hide();
13224             }
13225             
13226         }
13227         
13228         if(this.indicator){
13229             this.indicator.removeClass('visible');
13230             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
13231         }
13232         
13233         this.fireEvent('valid', this);
13234     },
13235     
13236      /**
13237      * Mark this field as valid
13238      */
13239     markValid : function()
13240     {   
13241         if(!this.el  || this.preventMark){ // not rendered...
13242             return;
13243         }
13244         
13245         this.el.removeClass([this.invalidClass, this.validClass]);
13246         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13247
13248         var feedback = this.el.select('.form-control-feedback', true).first();
13249             
13250         if(feedback){
13251             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13252             feedback.update('');
13253             feedback.hide();
13254         }
13255         
13256         if(this.indicator){
13257             this.indicator.removeClass('visible');
13258             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
13259         }
13260         
13261         if(this.disabled){
13262             return;
13263         }
13264         
13265            
13266         if(this.allowBlank && !this.getRawValue().length){
13267             return;
13268         }
13269         if (Roo.bootstrap.version == 3) {
13270             this.el.addClass(this.validClass);
13271         } else {
13272             this.inputEl().addClass('is-valid');
13273         }
13274
13275         if(this.hasFeedback && this.inputType != 'hidden'){
13276             
13277             var feedback = this.el.select('.form-control-feedback', true).first();
13278             
13279             if(feedback){
13280                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13281                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
13282             }
13283             
13284         }
13285         
13286         this.fireEvent('valid', this);
13287     },
13288     
13289      /**
13290      * Mark this field as invalid
13291      * @param {String} msg The validation message
13292      */
13293     markInvalid : function(msg)
13294     {
13295         if(!this.el  || this.preventMark){ // not rendered
13296             return;
13297         }
13298         
13299         this.el.removeClass([this.invalidClass, this.validClass]);
13300         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13301         
13302         var feedback = this.el.select('.form-control-feedback', true).first();
13303             
13304         if(feedback){
13305             this.el.select('.form-control-feedback', true).first().removeClass(
13306                     [this.invalidFeedbackClass, this.validFeedbackClass]);
13307             feedback.update('');
13308             feedback.hide();
13309         }
13310
13311         if(this.disabled){
13312             return;
13313         }
13314         
13315         if(this.allowBlank && !this.getRawValue().length){
13316             return;
13317         }
13318         
13319         if(this.indicator){
13320             this.indicator.removeClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
13321             this.indicator.addClass('visible');
13322         }
13323         if (Roo.bootstrap.version == 3) {
13324             this.el.addClass(this.invalidClass);
13325         } else {
13326             this.inputEl().addClass('is-invalid');
13327         }
13328         
13329         
13330         
13331         if(this.hasFeedback && this.inputType != 'hidden'){
13332             
13333             var feedback = this.el.select('.form-control-feedback', true).first();
13334             
13335             if(feedback){
13336                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13337                 
13338                 this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
13339
13340                 feedback.update(typeof(msg) == 'undefined' ? this.invalidText : msg);
13341
13342                 if(!this.allowBlank && !this.getRawValue().length){
13343                     feedback.update(this.blankText);
13344                 }
13345
13346                 if(feedback.dom.innerHTML) {
13347                     feedback.show();
13348                 }
13349                 
13350             }
13351             
13352         }
13353         
13354         this.fireEvent('invalid', this, msg);
13355     },
13356     // private
13357     SafariOnKeyDown : function(event)
13358     {
13359         // this is a workaround for a password hang bug on chrome/ webkit.
13360         if (this.inputEl().dom.type != 'password') {
13361             return;
13362         }
13363         
13364         var isSelectAll = false;
13365         
13366         if(this.inputEl().dom.selectionEnd > 0){
13367             isSelectAll = (this.inputEl().dom.selectionEnd - this.inputEl().dom.selectionStart - this.getValue().length == 0) ? true : false;
13368         }
13369         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
13370             event.preventDefault();
13371             this.setValue('');
13372             return;
13373         }
13374         
13375         if(isSelectAll  && event.getCharCode() > 31 && !event.ctrlKey) { // not backspace and delete key (or ctrl-v)
13376             
13377             event.preventDefault();
13378             // this is very hacky as keydown always get's upper case.
13379             //
13380             var cc = String.fromCharCode(event.getCharCode());
13381             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
13382             
13383         }
13384     },
13385     adjustWidth : function(tag, w){
13386         tag = tag.toLowerCase();
13387         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
13388             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
13389                 if(tag == 'input'){
13390                     return w + 2;
13391                 }
13392                 if(tag == 'textarea'){
13393                     return w-2;
13394                 }
13395             }else if(Roo.isOpera){
13396                 if(tag == 'input'){
13397                     return w + 2;
13398                 }
13399                 if(tag == 'textarea'){
13400                     return w-2;
13401                 }
13402             }
13403         }
13404         return w;
13405     },
13406     
13407     setFieldLabel : function(v)
13408     {
13409         if(!this.rendered){
13410             return;
13411         }
13412         
13413         if(this.indicatorEl()){
13414             var ar = this.el.select('label > span',true);
13415             
13416             if (ar.elements.length) {
13417                 this.el.select('label > span',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
13418                 this.fieldLabel = v;
13419                 return;
13420             }
13421             
13422             var br = this.el.select('label',true);
13423             
13424             if(br.elements.length) {
13425                 this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
13426                 this.fieldLabel = v;
13427                 return;
13428             }
13429             
13430             Roo.log('Cannot Found any of label > span || label in input');
13431             return;
13432         }
13433         
13434         this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
13435         this.fieldLabel = v;
13436         
13437         
13438     }
13439 });
13440
13441  
13442 /*
13443  * - LGPL
13444  *
13445  * Input
13446  * 
13447  */
13448
13449 /**
13450  * @class Roo.bootstrap.form.TextArea
13451  * @extends Roo.bootstrap.form.Input
13452  * Bootstrap TextArea class
13453  * @cfg {Number} cols Specifies the visible width of a text area
13454  * @cfg {Number} rows Specifies the visible number of lines in a text area
13455  * @cfg {string} wrap (soft|hard)Specifies how the text in a text area is to be wrapped when submitted in a form
13456  * @cfg {string} resize (none|both|horizontal|vertical|inherit|initial)
13457  * @cfg {string} html text
13458  * 
13459  * @constructor
13460  * Create a new TextArea
13461  * @param {Object} config The config object
13462  */
13463
13464 Roo.bootstrap.form.TextArea = function(config){
13465     Roo.bootstrap.form.TextArea.superclass.constructor.call(this, config);
13466    
13467 };
13468
13469 Roo.extend(Roo.bootstrap.form.TextArea, Roo.bootstrap.form.Input,  {
13470      
13471     cols : false,
13472     rows : 5,
13473     readOnly : false,
13474     warp : 'soft',
13475     resize : false,
13476     value: false,
13477     html: false,
13478     
13479     getAutoCreate : function(){
13480         
13481         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
13482         
13483         var id = Roo.id();
13484         
13485         var cfg = {};
13486         
13487         if(this.inputType != 'hidden'){
13488             cfg.cls = 'form-group' //input-group
13489         }
13490         
13491         var input =  {
13492             tag: 'textarea',
13493             id : id,
13494             warp : this.warp,
13495             rows : this.rows,
13496             value : this.value || '',
13497             html: this.html || '',
13498             cls : 'form-control',
13499             placeholder : this.placeholder || '' 
13500             
13501         };
13502         
13503         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
13504             input.maxLength = this.maxLength;
13505         }
13506         
13507         if(this.resize){
13508             input.style = (typeof(input.style) == 'undefined') ? 'resize:' + this.resize : input.style + 'resize:' + this.resize;
13509         }
13510         
13511         if(this.cols){
13512             input.cols = this.cols;
13513         }
13514         
13515         if (this.readOnly) {
13516             input.readonly = true;
13517         }
13518         
13519         if (this.name) {
13520             input.name = this.name;
13521         }
13522         
13523         if (this.size) {
13524             input.cls = (typeof(input.cls) == 'undefined') ? 'input-' + this.size : input.cls + ' input-' + this.size;
13525         }
13526         
13527         var settings=this;
13528         ['xs','sm','md','lg'].map(function(size){
13529             if (settings[size]) {
13530                 cfg.cls += ' col-' + size + '-' + settings[size];
13531             }
13532         });
13533         
13534         var inputblock = input;
13535         
13536         if(this.hasFeedback){
13537             
13538             var feedback = {
13539                 tag: 'span',
13540                 cls: 'glyphicon form-control-feedback'
13541             };
13542
13543             inputblock = {
13544                 cls : 'has-feedback',
13545                 cn :  [
13546                     input,
13547                     feedback
13548                 ] 
13549             };  
13550         }
13551         
13552         
13553         if (this.before || this.after) {
13554             
13555             inputblock = {
13556                 cls : 'input-group',
13557                 cn :  [] 
13558             };
13559             if (this.before) {
13560                 inputblock.cn.push({
13561                     tag :'span',
13562                     cls : 'input-group-addon',
13563                     html : this.before
13564                 });
13565             }
13566             
13567             inputblock.cn.push(input);
13568             
13569             if(this.hasFeedback){
13570                 inputblock.cls += ' has-feedback';
13571                 inputblock.cn.push(feedback);
13572             }
13573             
13574             if (this.after) {
13575                 inputblock.cn.push({
13576                     tag :'span',
13577                     cls : 'input-group-addon',
13578                     html : this.after
13579                 });
13580             }
13581             
13582         }
13583         
13584         
13585         cfg = this.getAutoCreateLabel( cfg, inputblock );
13586
13587          
13588         
13589         if (this.disabled) {
13590             input.disabled=true;
13591         }
13592         
13593         return cfg;
13594         
13595     },
13596     /**
13597      * return the real textarea element.
13598      */
13599     inputEl: function ()
13600     {
13601         return this.el.select('textarea.form-control',true).first();
13602     },
13603     
13604     /**
13605      * Clear any invalid styles/messages for this field
13606      */
13607     clearInvalid : function()
13608     {
13609         
13610         if(!this.el || this.preventMark){ // not rendered
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         this.el.removeClass( this.validClass);
13621         this.inputEl().removeClass('is-invalid');
13622          
13623         if(this.hasFeedback && this.inputType != 'hidden'){
13624             
13625             var feedback = this.el.select('.form-control-feedback', true).first();
13626             
13627             if(feedback){
13628                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
13629
13630                 feedback.update('');
13631                 feedback.hide();
13632             }
13633             
13634         }
13635         
13636         this.fireEvent('valid', this);
13637     },
13638     
13639      /**
13640      * Mark this field as valid
13641      */
13642     markValid : function()
13643     {
13644         if(!this.el  || this.preventMark){ // not rendered
13645             return;
13646         }
13647         
13648         this.el.removeClass([this.invalidClass, this.validClass]);
13649         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13650         
13651         var feedback = this.el.select('.form-control-feedback', true).first();
13652             
13653         if(feedback){
13654             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13655             feedback.update('');
13656             feedback.hide();
13657         }
13658
13659         if(this.disabled || this.allowBlank){
13660             return;
13661         }
13662         
13663         var label = this.el.select('label', true).first();
13664         var icon = this.el.select('i.fa-star', true).first();
13665         
13666         //if(label && icon){
13667         //    icon.remove();
13668         //}
13669         if (Roo.bootstrap.version == 3) {
13670             this.el.addClass(this.validClass);
13671         } else {
13672             this.inputEl().addClass('is-valid');
13673         }
13674         
13675         
13676         if(this.hasFeedback && this.inputType != 'hidden'){
13677             
13678             var feedback = this.el.select('.form-control-feedback', true).first();
13679             
13680             if(feedback){
13681                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13682                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
13683             }
13684             
13685         }
13686         
13687         this.fireEvent('valid', this);
13688     },
13689     
13690      /**
13691      * Mark this field as invalid
13692      * @param {String} msg The validation message
13693      */
13694     markInvalid : function(msg)
13695     {
13696         if(!this.el  || this.preventMark){ // not rendered
13697             return;
13698         }
13699         
13700         this.el.removeClass([this.invalidClass, this.validClass]);
13701         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13702         
13703         var feedback = this.el.select('.form-control-feedback', true).first();
13704             
13705         if(feedback){
13706             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13707             feedback.update('');
13708             feedback.hide();
13709         }
13710
13711         if(this.disabled){
13712             return;
13713         }
13714         
13715         var label = this.el.select('label', true).first();
13716         //var icon = this.el.select('i.fa-star', true).first();
13717         
13718         //if(!this.getValue().length && label && !icon){
13719           /*  this.el.createChild({
13720                 tag : 'i',
13721                 cls : 'text-danger fa fa-lg fa-star',
13722                 tooltip : 'This field is required',
13723                 style : 'margin-right:5px;'
13724             }, label, true);
13725             */
13726         //}
13727         
13728         if (Roo.bootstrap.version == 3) {
13729             this.el.addClass(this.invalidClass);
13730         } else {
13731             this.inputEl().addClass('is-invalid');
13732         }
13733         
13734         // fixme ... this may be depricated need to test..
13735         if(this.hasFeedback && this.inputType != 'hidden'){
13736             
13737             var feedback = this.el.select('.form-control-feedback', true).first();
13738             
13739             if(feedback){
13740                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13741                 
13742                 this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
13743
13744                 feedback.update(this.invalidText);
13745
13746                 if(!this.allowBlank && !this.getRawValue().length){
13747                     feedback.update(this.blankText);
13748                 }
13749
13750                 if(feedback.dom.innerHTML) {
13751                     feedback.show();
13752                 }
13753                 
13754             }
13755             
13756         }
13757         
13758         this.fireEvent('invalid', this, msg);
13759     }
13760 });
13761
13762  
13763 /*
13764  * - LGPL
13765  *
13766  * trigger field - base class for combo..
13767  * 
13768  */
13769  
13770 /**
13771  * @class Roo.bootstrap.form.TriggerField
13772  * @extends Roo.bootstrap.form.Input
13773  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
13774  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
13775  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
13776  * for which you can provide a custom implementation.  For example:
13777  * <pre><code>
13778 var trigger = new Roo.bootstrap.form.TriggerField();
13779 trigger.onTriggerClick = myTriggerFn;
13780 trigger.applyTo('my-field');
13781 </code></pre>
13782  *
13783  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
13784  * {@link Roo.bootstrap.form.DateField} and {@link Roo.bootstrap.form.ComboBox} are perfect examples of this.
13785  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
13786  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
13787  * @cfg {String} caret (search|calendar) BS3 only - carat fa name
13788
13789  * @constructor
13790  * Create a new TriggerField.
13791  * @param {Object} config Configuration options (valid {@Roo.bootstrap.form.Input} config options will also be applied
13792  * to the base TextField)
13793  */
13794 Roo.bootstrap.form.TriggerField = function(config){
13795     this.mimicing = false;
13796     Roo.bootstrap.form.TriggerField.superclass.constructor.call(this, config);
13797 };
13798
13799 Roo.extend(Roo.bootstrap.form.TriggerField, Roo.bootstrap.form.Input,  {
13800     /**
13801      * @cfg {String} triggerClass A CSS class to apply to the trigger
13802      */
13803      /**
13804      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
13805      */
13806     hideTrigger:false,
13807
13808     /**
13809      * @cfg {Boolean} removable (true|false) special filter default false
13810      */
13811     removable : false,
13812     
13813     /** @cfg {Boolean} grow @hide */
13814     /** @cfg {Number} growMin @hide */
13815     /** @cfg {Number} growMax @hide */
13816
13817     /**
13818      * @hide 
13819      * @method
13820      */
13821     autoSize: Roo.emptyFn,
13822     // private
13823     monitorTab : true,
13824     // private
13825     deferHeight : true,
13826
13827     
13828     actionMode : 'wrap',
13829     
13830     caret : false,
13831     
13832     
13833     getAutoCreate : function(){
13834        
13835         var align = this.labelAlign || this.parentLabelAlign();
13836         
13837         var id = Roo.id();
13838         
13839         var cfg = {
13840             cls: 'form-group' //input-group
13841         };
13842         
13843         
13844         var input =  {
13845             tag: 'input',
13846             id : id,
13847             type : this.inputType,
13848             cls : 'form-control',
13849             autocomplete: 'new-password',
13850             placeholder : this.placeholder || '' 
13851             
13852         };
13853         if (this.name) {
13854             input.name = this.name;
13855         }
13856         if (this.size) {
13857             input.cls += ' input-' + this.size;
13858         }
13859         
13860         if (this.disabled) {
13861             input.disabled=true;
13862         }
13863         
13864         var inputblock = input;
13865         
13866         if(this.hasFeedback && !this.allowBlank){
13867             
13868             var feedback = {
13869                 tag: 'span',
13870                 cls: 'glyphicon form-control-feedback'
13871             };
13872             
13873             if(this.removable && !this.editable  ){
13874                 inputblock = {
13875                     cls : 'has-feedback',
13876                     cn :  [
13877                         inputblock,
13878                         {
13879                             tag: 'button',
13880                             html : 'x',
13881                             cls : 'roo-combo-removable-btn close'
13882                         },
13883                         feedback
13884                     ] 
13885                 };
13886             } else {
13887                 inputblock = {
13888                     cls : 'has-feedback',
13889                     cn :  [
13890                         inputblock,
13891                         feedback
13892                     ] 
13893                 };
13894             }
13895
13896         } else {
13897             if(this.removable && !this.editable ){
13898                 inputblock = {
13899                     cls : 'roo-removable',
13900                     cn :  [
13901                         inputblock,
13902                         {
13903                             tag: 'button',
13904                             html : 'x',
13905                             cls : 'roo-combo-removable-btn close'
13906                         }
13907                     ] 
13908                 };
13909             }
13910         }
13911         
13912         if (this.before || this.after) {
13913             
13914             inputblock = {
13915                 cls : 'input-group',
13916                 cn :  [] 
13917             };
13918             if (this.before) {
13919                 inputblock.cn.push({
13920                     tag :'span',
13921                     cls : 'input-group-addon input-group-prepend input-group-text',
13922                     html : this.before
13923                 });
13924             }
13925             
13926             inputblock.cn.push(input);
13927             
13928             if(this.hasFeedback && !this.allowBlank){
13929                 inputblock.cls += ' has-feedback';
13930                 inputblock.cn.push(feedback);
13931             }
13932             
13933             if (this.after) {
13934                 inputblock.cn.push({
13935                     tag :'span',
13936                     cls : 'input-group-addon input-group-append input-group-text',
13937                     html : this.after
13938                 });
13939             }
13940             
13941         };
13942         
13943       
13944         
13945         var ibwrap = inputblock;
13946         
13947         if(this.multiple){
13948             ibwrap = {
13949                 tag: 'ul',
13950                 cls: 'roo-select2-choices',
13951                 cn:[
13952                     {
13953                         tag: 'li',
13954                         cls: 'roo-select2-search-field',
13955                         cn: [
13956
13957                             inputblock
13958                         ]
13959                     }
13960                 ]
13961             };
13962                 
13963         }
13964         
13965         var combobox = {
13966             cls: 'roo-select2-container input-group',
13967             cn: [
13968                  {
13969                     tag: 'input',
13970                     type : 'hidden',
13971                     cls: 'form-hidden-field'
13972                 },
13973                 ibwrap
13974             ]
13975         };
13976         
13977         if(!this.multiple && this.showToggleBtn){
13978             
13979             var caret = {
13980                         tag: 'span',
13981                         cls: 'caret'
13982              };
13983             if (this.caret != false) {
13984                 caret = {
13985                      tag: 'i',
13986                      cls: 'fa fa-' + this.caret
13987                 };
13988                 
13989             }
13990             
13991             combobox.cn.push({
13992                 tag :'span',
13993                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
13994                 cn : [
13995                     Roo.bootstrap.version == 3 ? caret : '',
13996                     {
13997                         tag: 'span',
13998                         cls: 'combobox-clear',
13999                         cn  : [
14000                             {
14001                                 tag : 'i',
14002                                 cls: 'icon-remove'
14003                             }
14004                         ]
14005                     }
14006                 ]
14007
14008             })
14009         }
14010         
14011         if(this.multiple){
14012             combobox.cls += ' roo-select2-container-multi';
14013         }
14014          var indicator = {
14015             tag : 'i',
14016             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
14017             tooltip : 'This field is required'
14018         };
14019       
14020         if (this.allowBlank) {
14021             indicator = {
14022                 tag : 'i',
14023                 style : 'display:none'
14024             };
14025         }
14026          
14027         
14028         
14029         if (align ==='left' && this.fieldLabel.length) {
14030             
14031             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
14032
14033             cfg.cn = [
14034                 indicator,
14035                 {
14036                     tag: 'label',
14037                     'for' :  id,
14038                     cls : 'control-label',
14039                     html : this.fieldLabel
14040
14041                 },
14042                 {
14043                     cls : "", 
14044                     cn: [
14045                         combobox
14046                     ]
14047                 }
14048
14049             ];
14050             
14051             var labelCfg = cfg.cn[1];
14052             var contentCfg = cfg.cn[2];
14053             
14054             if(this.indicatorpos == 'right'){
14055                 cfg.cn = [
14056                     {
14057                         tag: 'label',
14058                         'for' :  id,
14059                         cls : 'control-label',
14060                         cn : [
14061                             {
14062                                 tag : 'span',
14063                                 html : this.fieldLabel
14064                             },
14065                             indicator
14066                         ]
14067                     },
14068                     {
14069                         cls : "", 
14070                         cn: [
14071                             combobox
14072                         ]
14073                     }
14074
14075                 ];
14076                 
14077                 labelCfg = cfg.cn[0];
14078                 contentCfg = cfg.cn[1];
14079             }
14080             
14081             if(this.labelWidth > 12){
14082                 labelCfg.style = "width: " + this.labelWidth + 'px';
14083             }
14084             
14085             if(this.labelWidth < 13 && this.labelmd == 0){
14086                 this.labelmd = this.labelWidth;
14087             }
14088             
14089             if(this.labellg > 0){
14090                 labelCfg.cls += ' col-lg-' + this.labellg;
14091                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
14092             }
14093             
14094             if(this.labelmd > 0){
14095                 labelCfg.cls += ' col-md-' + this.labelmd;
14096                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
14097             }
14098             
14099             if(this.labelsm > 0){
14100                 labelCfg.cls += ' col-sm-' + this.labelsm;
14101                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
14102             }
14103             
14104             if(this.labelxs > 0){
14105                 labelCfg.cls += ' col-xs-' + this.labelxs;
14106                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
14107             }
14108             
14109         } else if ( this.fieldLabel.length) {
14110 //                Roo.log(" label");
14111             cfg.cn = [
14112                 indicator,
14113                {
14114                    tag: 'label',
14115                    //cls : 'input-group-addon',
14116                    html : this.fieldLabel
14117
14118                },
14119
14120                combobox
14121
14122             ];
14123             
14124             if(this.indicatorpos == 'right'){
14125                 
14126                 cfg.cn = [
14127                     {
14128                        tag: 'label',
14129                        cn : [
14130                            {
14131                                tag : 'span',
14132                                html : this.fieldLabel
14133                            },
14134                            indicator
14135                        ]
14136
14137                     },
14138                     combobox
14139
14140                 ];
14141
14142             }
14143
14144         } else {
14145             
14146 //                Roo.log(" no label && no align");
14147                 cfg = combobox
14148                      
14149                 
14150         }
14151         
14152         var settings=this;
14153         ['xs','sm','md','lg'].map(function(size){
14154             if (settings[size]) {
14155                 cfg.cls += ' col-' + size + '-' + settings[size];
14156             }
14157         });
14158         
14159         return cfg;
14160         
14161     },
14162     
14163     
14164     
14165     // private
14166     onResize : function(w, h){
14167 //        Roo.bootstrap.form.TriggerField.superclass.onResize.apply(this, arguments);
14168 //        if(typeof w == 'number'){
14169 //            var x = w - this.trigger.getWidth();
14170 //            this.inputEl().setWidth(this.adjustWidth('input', x));
14171 //            this.trigger.setStyle('left', x+'px');
14172 //        }
14173     },
14174
14175     // private
14176     adjustSize : Roo.BoxComponent.prototype.adjustSize,
14177
14178     // private
14179     getResizeEl : function(){
14180         return this.inputEl();
14181     },
14182
14183     // private
14184     getPositionEl : function(){
14185         return this.inputEl();
14186     },
14187
14188     // private
14189     alignErrorIcon : function(){
14190         this.errorIcon.alignTo(this.inputEl(), 'tl-tr', [2, 0]);
14191     },
14192
14193     // private
14194     initEvents : function(){
14195         
14196         this.createList();
14197         
14198         Roo.bootstrap.form.TriggerField.superclass.initEvents.call(this);
14199         //this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
14200         if(!this.multiple && this.showToggleBtn){
14201             this.trigger = this.el.select('span.dropdown-toggle',true).first();
14202             if(this.hideTrigger){
14203                 this.trigger.setDisplayed(false);
14204             }
14205             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
14206         }
14207         
14208         if(this.multiple){
14209             this.inputEl().on("click", this.onTriggerClick, this, {preventDefault:true});
14210         }
14211         
14212         if(this.removable && !this.editable && !this.tickable){
14213             var close = this.closeTriggerEl();
14214             
14215             if(close){
14216                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
14217                 close.on('click', this.removeBtnClick, this, close);
14218             }
14219         }
14220         
14221         //this.trigger.addClassOnOver('x-form-trigger-over');
14222         //this.trigger.addClassOnClick('x-form-trigger-click');
14223         
14224         //if(!this.width){
14225         //    this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
14226         //}
14227     },
14228     
14229     closeTriggerEl : function()
14230     {
14231         var close = this.el.select('.roo-combo-removable-btn', true).first();
14232         return close ? close : false;
14233     },
14234     
14235     removeBtnClick : function(e, h, el)
14236     {
14237         e.preventDefault();
14238         
14239         if(this.fireEvent("remove", this) !== false){
14240             this.reset();
14241             this.fireEvent("afterremove", this)
14242         }
14243     },
14244     
14245     createList : function()
14246     {
14247         this.list = Roo.get(document.body).createChild({
14248             tag: Roo.bootstrap.version == 4 ? 'div' : 'ul',
14249             cls: 'typeahead typeahead-long dropdown-menu shadow',
14250             style: 'display:none'
14251         });
14252         
14253         this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';;
14254         
14255     },
14256
14257     // private
14258     initTrigger : function(){
14259        
14260     },
14261
14262     // private
14263     onDestroy : function(){
14264         if(this.trigger){
14265             this.trigger.removeAllListeners();
14266           //  this.trigger.remove();
14267         }
14268         //if(this.wrap){
14269         //    this.wrap.remove();
14270         //}
14271         Roo.bootstrap.form.TriggerField.superclass.onDestroy.call(this);
14272     },
14273
14274     // private
14275     onFocus : function(){
14276         Roo.bootstrap.form.TriggerField.superclass.onFocus.call(this);
14277         /*
14278         if(!this.mimicing){
14279             this.wrap.addClass('x-trigger-wrap-focus');
14280             this.mimicing = true;
14281             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
14282             if(this.monitorTab){
14283                 this.el.on("keydown", this.checkTab, this);
14284             }
14285         }
14286         */
14287     },
14288
14289     // private
14290     checkTab : function(e){
14291         if(e.getKey() == e.TAB){
14292             this.triggerBlur();
14293         }
14294     },
14295
14296     // private
14297     onBlur : function(){
14298         // do nothing
14299     },
14300
14301     // private
14302     mimicBlur : function(e, t){
14303         /*
14304         if(!this.wrap.contains(t) && this.validateBlur()){
14305             this.triggerBlur();
14306         }
14307         */
14308     },
14309
14310     // private
14311     triggerBlur : function(){
14312         this.mimicing = false;
14313         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
14314         if(this.monitorTab){
14315             this.el.un("keydown", this.checkTab, this);
14316         }
14317         //this.wrap.removeClass('x-trigger-wrap-focus');
14318         Roo.bootstrap.form.TriggerField.superclass.onBlur.call(this);
14319     },
14320
14321     // private
14322     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
14323     validateBlur : function(e, t){
14324         return true;
14325     },
14326
14327     // private
14328     onDisable : function(){
14329         this.inputEl().dom.disabled = true;
14330         //Roo.bootstrap.form.TriggerField.superclass.onDisable.call(this);
14331         //if(this.wrap){
14332         //    this.wrap.addClass('x-item-disabled');
14333         //}
14334     },
14335
14336     // private
14337     onEnable : function(){
14338         this.inputEl().dom.disabled = false;
14339         //Roo.bootstrap.form.TriggerField.superclass.onEnable.call(this);
14340         //if(this.wrap){
14341         //    this.el.removeClass('x-item-disabled');
14342         //}
14343     },
14344
14345     // private
14346     onShow : function(){
14347         var ae = this.getActionEl();
14348         
14349         if(ae){
14350             ae.dom.style.display = '';
14351             ae.dom.style.visibility = 'visible';
14352         }
14353     },
14354
14355     // private
14356     
14357     onHide : function(){
14358         var ae = this.getActionEl();
14359         ae.dom.style.display = 'none';
14360     },
14361
14362     /**
14363      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
14364      * by an implementing function.
14365      * @method
14366      * @param {EventObject} e
14367      */
14368     onTriggerClick : Roo.emptyFn
14369 });
14370  
14371 /*
14372 * Licence: LGPL
14373 */
14374
14375 /**
14376  * @class Roo.bootstrap.form.CardUploader
14377  * @extends Roo.bootstrap.Button
14378  * Bootstrap Card Uploader class - it's a button which when you add files to it, adds cards below with preview and the name...
14379  * @cfg {Number} errorTimeout default 3000
14380  * @cfg {Array}  images  an array of ?? Img objects ??? when loading existing files..
14381  * @cfg {Array}  html The button text.
14382
14383  *
14384  * @constructor
14385  * Create a new CardUploader
14386  * @param {Object} config The config object
14387  */
14388
14389 Roo.bootstrap.form.CardUploader = function(config){
14390     
14391  
14392     
14393     Roo.bootstrap.form.CardUploader.superclass.constructor.call(this, config);
14394     
14395     
14396     this.fileCollection   = new Roo.util.MixedCollection(false,function(r) {
14397         return r.data.id
14398      });
14399     
14400      this.addEvents({
14401          // raw events
14402         /**
14403          * @event preview
14404          * When a image is clicked on - and needs to display a slideshow or similar..
14405          * @param {Roo.bootstrap.Card} this
14406          * @param {Object} The image information data 
14407          *
14408          */
14409         'preview' : true,
14410          /**
14411          * @event download
14412          * When a the download link is clicked
14413          * @param {Roo.bootstrap.Card} this
14414          * @param {Object} The image information data  contains 
14415          */
14416         'download' : true
14417         
14418     });
14419 };
14420  
14421 Roo.extend(Roo.bootstrap.form.CardUploader, Roo.bootstrap.form.Input,  {
14422     
14423      
14424     errorTimeout : 3000,
14425      
14426     images : false,
14427    
14428     fileCollection : false,
14429     allowBlank : true,
14430     
14431     getAutoCreate : function()
14432     {
14433         
14434         var cfg =  {
14435             cls :'form-group' ,
14436             cn : [
14437                
14438                 {
14439                     tag: 'label',
14440                    //cls : 'input-group-addon',
14441                     html : this.fieldLabel
14442
14443                 },
14444
14445                 {
14446                     tag: 'input',
14447                     type : 'hidden',
14448                     name : this.name,
14449                     value : this.value,
14450                     cls : 'd-none  form-control'
14451                 },
14452                 
14453                 {
14454                     tag: 'input',
14455                     multiple : 'multiple',
14456                     type : 'file',
14457                     cls : 'd-none  roo-card-upload-selector'
14458                 },
14459                 
14460                 {
14461                     cls : 'roo-card-uploader-button-container w-100 mb-2'
14462                 },
14463                 {
14464                     cls : 'card-columns roo-card-uploader-container'
14465                 }
14466
14467             ]
14468         };
14469            
14470          
14471         return cfg;
14472     },
14473     
14474     getChildContainer : function() /// what children are added to.
14475     {
14476         return this.containerEl;
14477     },
14478    
14479     getButtonContainer : function() /// what children are added to.
14480     {
14481         return this.el.select(".roo-card-uploader-button-container").first();
14482     },
14483    
14484     initEvents : function()
14485     {
14486         
14487         Roo.bootstrap.form.Input.prototype.initEvents.call(this);
14488         
14489         var t = this;
14490         this.addxtype({
14491             xns: Roo.bootstrap,
14492
14493             xtype : 'Button',
14494             container_method : 'getButtonContainer' ,            
14495             html :  this.html, // fix changable?
14496             cls : 'w-100 ',
14497             listeners : {
14498                 'click' : function(btn, e) {
14499                     t.onClick(e);
14500                 }
14501             }
14502         });
14503         
14504         
14505         
14506         
14507         this.urlAPI = (window.createObjectURL && window) || 
14508                                 (window.URL && URL.revokeObjectURL && URL) || 
14509                                 (window.webkitURL && webkitURL);
14510                         
14511          
14512          
14513          
14514         this.selectorEl = this.el.select('.roo-card-upload-selector', true).first();
14515         
14516         this.selectorEl.on('change', this.onFileSelected, this);
14517         if (this.images) {
14518             var t = this;
14519             this.images.forEach(function(img) {
14520                 t.addCard(img)
14521             });
14522             this.images = false;
14523         }
14524         this.containerEl = this.el.select('.roo-card-uploader-container', true).first();
14525          
14526        
14527     },
14528     
14529    
14530     onClick : function(e)
14531     {
14532         e.preventDefault();
14533          
14534         this.selectorEl.dom.click();
14535          
14536     },
14537     
14538     onFileSelected : function(e)
14539     {
14540         e.preventDefault();
14541         
14542         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
14543             return;
14544         }
14545         
14546         Roo.each(this.selectorEl.dom.files, function(file){    
14547             this.addFile(file);
14548         }, this);
14549          
14550     },
14551     
14552       
14553     
14554       
14555     
14556     addFile : function(file)
14557     {
14558            
14559         if(typeof(file) === 'string'){
14560             throw "Add file by name?"; // should not happen
14561             return;
14562         }
14563         
14564         if(!file || !this.urlAPI){
14565             return;
14566         }
14567         
14568         // file;
14569         // file.type;
14570         
14571         var _this = this;
14572         
14573         
14574         var url = _this.urlAPI.createObjectURL( file);
14575            
14576         this.addCard({
14577             id : Roo.bootstrap.form.CardUploader.ID--,
14578             is_uploaded : false,
14579             src : url,
14580             srcfile : file,
14581             title : file.name,
14582             mimetype : file.type,
14583             preview : false,
14584             is_deleted : 0
14585         });
14586         
14587     },
14588     
14589     /**
14590      * addCard - add an Attachment to the uploader
14591      * @param data - the data about the image to upload
14592      *
14593      * {
14594           id : 123
14595           title : "Title of file",
14596           is_uploaded : false,
14597           src : "http://.....",
14598           srcfile : { the File upload object },
14599           mimetype : file.type,
14600           preview : false,
14601           is_deleted : 0
14602           .. any other data...
14603         }
14604      *
14605      * 
14606     */
14607     
14608     addCard : function (data)
14609     {
14610         // hidden input element?
14611         // if the file is not an image...
14612         //then we need to use something other that and header_image
14613         var t = this;
14614         //   remove.....
14615         var footer = [
14616             {
14617                 xns : Roo.bootstrap,
14618                 xtype : 'CardFooter',
14619                  items: [
14620                     {
14621                         xns : Roo.bootstrap,
14622                         xtype : 'Element',
14623                         cls : 'd-flex',
14624                         items : [
14625                             
14626                             {
14627                                 xns : Roo.bootstrap,
14628                                 xtype : 'Button',
14629                                 html : String.format("<small>{0}</small>", data.title),
14630                                 cls : 'col-10 text-left',
14631                                 size: 'sm',
14632                                 weight: 'link',
14633                                 fa : 'download',
14634                                 listeners : {
14635                                     click : function() {
14636                                      
14637                                         t.fireEvent( "download", t, data );
14638                                     }
14639                                 }
14640                             },
14641                           
14642                             {
14643                                 xns : Roo.bootstrap,
14644                                 xtype : 'Button',
14645                                 style: 'max-height: 28px; ',
14646                                 size : 'sm',
14647                                 weight: 'danger',
14648                                 cls : 'col-2',
14649                                 fa : 'times',
14650                                 listeners : {
14651                                     click : function() {
14652                                         t.removeCard(data.id)
14653                                     }
14654                                 }
14655                             }
14656                         ]
14657                     }
14658                     
14659                 ] 
14660             }
14661             
14662         ];
14663         
14664         var cn = this.addxtype(
14665             {
14666                  
14667                 xns : Roo.bootstrap,
14668                 xtype : 'Card',
14669                 closeable : true,
14670                 header : !data.mimetype.match(/image/) && !data.preview ? "Document": false,
14671                 header_image : data.mimetype.match(/image/) ? data.src  : data.preview,
14672                 header_image_fit_square: true, // fixme  - we probably need to use the 'Img' element to do stuff like this.
14673                 data : data,
14674                 html : false,
14675                  
14676                 items : footer,
14677                 initEvents : function() {
14678                     Roo.bootstrap.Card.prototype.initEvents.call(this);
14679                     var card = this;
14680                     this.imgEl = this.el.select('.card-img-top').first();
14681                     if (this.imgEl) {
14682                         this.imgEl.on('click', function() { t.fireEvent( "preview", t, data ); }, this);
14683                         this.imgEl.set({ 'pointer' : 'cursor' });
14684                                   
14685                     }
14686                     this.getCardFooter().addClass('p-1');
14687                     
14688                   
14689                 }
14690                 
14691             }
14692         );
14693         // dont' really need ot update items.
14694         // this.items.push(cn);
14695         this.fileCollection.add(cn);
14696         
14697         if (!data.srcfile) {
14698             this.updateInput();
14699             return;
14700         }
14701             
14702         var _t = this;
14703         var reader = new FileReader();
14704         reader.addEventListener("load", function() {  
14705             data.srcdata =  reader.result;
14706             _t.updateInput();
14707         });
14708         reader.readAsDataURL(data.srcfile);
14709         
14710         
14711         
14712     },
14713     removeCard : function(id)
14714     {
14715         
14716         var card  = this.fileCollection.get(id);
14717         card.data.is_deleted = 1;
14718         card.data.src = ''; /// delete the source - so it reduces size of not uploaded images etc.
14719         //this.fileCollection.remove(card);
14720         //this.items = this.items.filter(function(e) { return e != card });
14721         // dont' really need ot update items.
14722         card.el.dom.parentNode.removeChild(card.el.dom);
14723         this.updateInput();
14724
14725         
14726     },
14727     reset: function()
14728     {
14729         this.fileCollection.each(function(card) {
14730             if (card.el.dom && card.el.dom.parentNode) {
14731                 card.el.dom.parentNode.removeChild(card.el.dom);
14732             }
14733         });
14734         this.fileCollection.clear();
14735         this.updateInput();
14736     },
14737     
14738     updateInput : function()
14739     {
14740          var data = [];
14741         this.fileCollection.each(function(e) {
14742             data.push(e.data);
14743             
14744         });
14745         this.inputEl().dom.value = JSON.stringify(data);
14746         
14747         
14748         
14749     }
14750     
14751     
14752 });
14753
14754
14755 Roo.bootstrap.form.CardUploader.ID = -1;/**
14756  * 
14757  * @class Roo.bootstrap.form.MultiLineTag
14758  * @param {Object} config The config object
14759  * 
14760  */
14761
14762 Roo.bootstrap.form.MultiLineTag = function(config){
14763     Roo.bootstrap.form.MultiLineTag.superclass.constructor.call(this, config);
14764
14765     this.addEvents({
14766         /**
14767          * @event beforeload
14768          * Fires before a request is made for a new data object.  If the beforeload handler returns false
14769          * the load action will be canceled.
14770          * @param {Roo.boostrap.form.MultiLineTag} this
14771          * @param {Store} store
14772          * @param {Object} options The loading options that were specified (see {@link #load} for details)
14773          */
14774          beforeload : true
14775     });
14776 };
14777
14778 Roo.extend(Roo.bootstrap.form.MultiLineTag, Roo.bootstrap.form.Input,  {
14779     tagRows : [],
14780     minimumRow : 2,
14781
14782     // for combo box
14783     displayField : '',
14784     valueField : '',
14785     placeholder : '',
14786     queryParam : '',
14787     listWidth : 300,
14788     minChars : 2,
14789
14790     // for combo box store
14791     url : undefined,
14792     fields : [],
14793
14794
14795
14796     getAutoCreate : function()
14797     {
14798         var config = {
14799             cls : 'roo-multi-line-tag form-group'
14800         };
14801
14802         config = this.getAutoCreateLabel( config, {
14803             cls : 'roo-multi-line-tag-container'
14804         } );
14805
14806         return config;
14807     },
14808
14809     initEvents : function()
14810     {
14811         this.tagRows = [];
14812
14813         for (var i = 0; i < this.minimumRow; i++) {
14814             this.addTagRow();
14815         }
14816     },
14817
14818     addTagRow : function()
14819     {
14820         var _this = this; 
14821
14822         var comboBox = Roo.factory({
14823             xns: Roo.bootstrap.form,
14824             xtype : 'ComboBox',
14825             editable : true,
14826             triggerAction: 'all',
14827             minChars: _this.minChars,
14828             displayField: _this.displayField,
14829             valueField : _this.valueField,
14830             listWidth: _this.listWidth,
14831             placeholder : _this.placeholder,
14832             queryParam : _this.queryParam,
14833             store : {
14834                 xns : Roo.data,
14835                 xtype : 'Store',
14836                 listeners : {
14837                     beforeload : function(_self, options)
14838                     {
14839                         _this.fireEvent('beforeload', _this, _self, options);
14840                     }
14841                 },
14842                 proxy : {
14843                     xns : Roo.data,
14844                     xtype : 'HttpProxy',
14845                     method : 'GET',
14846                     url : _this.url
14847                 },
14848                 reader : {
14849                     xns : Roo.data,
14850                     xtype : 'JsonReader',
14851                     fields : _this.fields
14852                 }
14853             },
14854             listeners : {
14855                 'render' : function (_self) {
14856                     _self.inputEl().on('keyup', function(e) {
14857                         if(_this.shouldAutoAddTagRow()) {
14858                             _this.addTagRow();
14859                         }
14860                     });
14861                     _self.inputEl().on('change', function(e) {
14862                         _this.fireEvent('change', _this, _this.getValue(), false);
14863                         _this.showHideRemoveBtn();
14864
14865                     });
14866                 },
14867                 'select' : function(_self, record, index) {
14868                     _this.fireEvent('change', _this, _this.getValue(), false);
14869                 }
14870             }
14871         });
14872
14873         var button = Roo.factory({
14874             xns : Roo.bootstrap,
14875             xtype : 'Button',
14876             html : '-'
14877         });
14878
14879         var row = {
14880             xns : Roo.bootstrap,
14881             xtype : 'Row',
14882             items : [
14883                 comboBox,
14884                 button
14885             ],
14886             listeners : {
14887                 'render' : function (_self) {
14888                     this.inputCb = comboBox;
14889                     this.removeBtn = button;
14890
14891                     this.removeBtn.on('click', function() {
14892                         _this.removeTagRow(_self);
14893                         _this.fireEvent('change', _this, _this.getValue(), false);
14894                     });
14895                 }
14896             }
14897         };
14898         this.tagRows.push(this.addxtype(row));
14899
14900         _this.showHideRemoveBtn();
14901     },
14902
14903     // a new tags should be added automatically when all existing tags are not empty
14904     shouldAutoAddTagRow : function()
14905     {
14906         var ret = true;
14907
14908         Roo.each(this.tagRows, function(r) {
14909             if(r.inputCb.getRawValue() == '') {
14910                 ret = false;
14911             }
14912         });
14913
14914         return ret;
14915     },
14916
14917     removeTagRow : function(row)
14918     {
14919         row.destroy();
14920         this.tagRows.splice(this.tagRows.indexOf(row), 1);
14921         this.showHideRemoveBtn();
14922     },
14923
14924     // hide all remove buttons if there are {minimumRow} or less tags
14925     // hide the remove button for empty tag
14926     showHideRemoveBtn : function()
14927     {
14928         var _this = this;
14929         
14930         Roo.each(this.tagRows, function (r) {
14931
14932             r.removeBtn.show();
14933
14934             if(_this.tagRows.length <= _this.minimumRow || r.inputCb.getRawValue() == '') {
14935                 r.removeBtn.hide();
14936             }
14937         });
14938     },
14939
14940     getValue : function()
14941     {
14942         var _this = this;
14943         var tags = [];
14944         Roo.each(_this.tagRows, function(r) {
14945             var value = r.inputCb.getRawValue();
14946             if(value != '') {
14947                 var tag = {};
14948                 tag[_this.valueField] = r.inputCb.getRawValue();
14949                 tags.push(tag);
14950             }
14951         });
14952         
14953         return JSON.stringify(tags);
14954     },
14955
14956     setValue : function(json)
14957     {
14958
14959         // remove all old tags
14960         var oldTotal = this.tagRows.length;
14961
14962         for(var i = 0; i < oldTotal; i ++) {
14963             this.removeTagRow(this.tagRows[0]);
14964         }
14965
14966         // empty tag if invalid json
14967         var arr = [];
14968
14969         try {
14970             // set new tags
14971             arr = JSON.parse(json);
14972         }
14973         catch {}
14974
14975         for (var i = 0; i < arr.length; i ++) {
14976             this.addTagRow();
14977             this.tagRows[i].inputCb.setRawValue(arr[i][this.valueField]);
14978         }
14979
14980         // always add one extra empty tag
14981         this.addTagRow();
14982
14983         // add empty tags until there are {minimumRow} tags
14984         while(this.tagRows.length < this.minimumRow) {
14985             this.addTagRow();
14986         }
14987         
14988     },
14989
14990     getChildContainer : function()
14991     {
14992         return Roo.select('.roo-multi-line-tag-container', true).elements[0];
14993     }
14994 });/*
14995  * Based on:
14996  * Ext JS Library 1.1.1
14997  * Copyright(c) 2006-2007, Ext JS, LLC.
14998  *
14999  * Originally Released Under LGPL - original licence link has changed is not relivant.
15000  *
15001  * Fork - LGPL
15002  * <script type="text/javascript">
15003  */
15004
15005
15006 /**
15007  * @class Roo.data.SortTypes
15008  * @static
15009  * Defines the default sorting (casting?) comparison functions used when sorting data.
15010  */
15011 Roo.data.SortTypes = {
15012     /**
15013      * Default sort that does nothing
15014      * @param {Mixed} s The value being converted
15015      * @return {Mixed} The comparison value
15016      */
15017     none : function(s){
15018         return s;
15019     },
15020     
15021     /**
15022      * The regular expression used to strip tags
15023      * @type {RegExp}
15024      * @property
15025      */
15026     stripTagsRE : /<\/?[^>]+>/gi,
15027     
15028     /**
15029      * Strips all HTML tags to sort on text only
15030      * @param {Mixed} s The value being converted
15031      * @return {String} The comparison value
15032      */
15033     asText : function(s){
15034         return String(s).replace(this.stripTagsRE, "");
15035     },
15036     
15037     /**
15038      * Strips all HTML tags to sort on text only - Case insensitive
15039      * @param {Mixed} s The value being converted
15040      * @return {String} The comparison value
15041      */
15042     asUCText : function(s){
15043         return String(s).toUpperCase().replace(this.stripTagsRE, "");
15044     },
15045     
15046     /**
15047      * Case insensitive string
15048      * @param {Mixed} s The value being converted
15049      * @return {String} The comparison value
15050      */
15051     asUCString : function(s) {
15052         return String(s).toUpperCase();
15053     },
15054     
15055     /**
15056      * Date sorting
15057      * @param {Mixed} s The value being converted
15058      * @return {Number} The comparison value
15059      */
15060     asDate : function(s) {
15061         if(!s){
15062             return 0;
15063         }
15064         if(s instanceof Date){
15065             return s.getTime();
15066         }
15067         return Date.parse(String(s));
15068     },
15069     
15070     /**
15071      * Float sorting
15072      * @param {Mixed} s The value being converted
15073      * @return {Float} The comparison value
15074      */
15075     asFloat : function(s) {
15076         var val = parseFloat(String(s).replace(/,/g, ""));
15077         if(isNaN(val)) {
15078             val = 0;
15079         }
15080         return val;
15081     },
15082     
15083     /**
15084      * Integer sorting
15085      * @param {Mixed} s The value being converted
15086      * @return {Number} The comparison value
15087      */
15088     asInt : function(s) {
15089         var val = parseInt(String(s).replace(/,/g, ""));
15090         if(isNaN(val)) {
15091             val = 0;
15092         }
15093         return val;
15094     }
15095 };/*
15096  * Based on:
15097  * Ext JS Library 1.1.1
15098  * Copyright(c) 2006-2007, Ext JS, LLC.
15099  *
15100  * Originally Released Under LGPL - original licence link has changed is not relivant.
15101  *
15102  * Fork - LGPL
15103  * <script type="text/javascript">
15104  */
15105
15106 /**
15107 * @class Roo.data.Record
15108  * Instances of this class encapsulate both record <em>definition</em> information, and record
15109  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
15110  * to access Records cached in an {@link Roo.data.Store} object.<br>
15111  * <p>
15112  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
15113  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
15114  * objects.<br>
15115  * <p>
15116  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
15117  * @constructor
15118  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
15119  * {@link #create}. The parameters are the same.
15120  * @param {Array} data An associative Array of data values keyed by the field name.
15121  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
15122  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
15123  * not specified an integer id is generated.
15124  */
15125 Roo.data.Record = function(data, id){
15126     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
15127     this.data = data;
15128 };
15129
15130 /**
15131  * Generate a constructor for a specific record layout.
15132  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
15133  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
15134  * Each field definition object may contain the following properties: <ul>
15135  * <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,
15136  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
15137  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
15138  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
15139  * is being used, then this is a string containing the javascript expression to reference the data relative to 
15140  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
15141  * to the data item relative to the record element. If the mapping expression is the same as the field name,
15142  * this may be omitted.</p></li>
15143  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
15144  * <ul><li>auto (Default, implies no conversion)</li>
15145  * <li>string</li>
15146  * <li>int</li>
15147  * <li>float</li>
15148  * <li>boolean</li>
15149  * <li>date</li></ul></p></li>
15150  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
15151  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
15152  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
15153  * by the Reader into an object that will be stored in the Record. It is passed the
15154  * following parameters:<ul>
15155  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
15156  * </ul></p></li>
15157  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
15158  * </ul>
15159  * <br>usage:<br><pre><code>
15160 var TopicRecord = Roo.data.Record.create(
15161     {name: 'title', mapping: 'topic_title'},
15162     {name: 'author', mapping: 'username'},
15163     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
15164     {name: 'lastPost', mapping: 'post_time', type: 'date'},
15165     {name: 'lastPoster', mapping: 'user2'},
15166     {name: 'excerpt', mapping: 'post_text'}
15167 );
15168
15169 var myNewRecord = new TopicRecord({
15170     title: 'Do my job please',
15171     author: 'noobie',
15172     totalPosts: 1,
15173     lastPost: new Date(),
15174     lastPoster: 'Animal',
15175     excerpt: 'No way dude!'
15176 });
15177 myStore.add(myNewRecord);
15178 </code></pre>
15179  * @method create
15180  * @static
15181  */
15182 Roo.data.Record.create = function(o){
15183     var f = function(){
15184         f.superclass.constructor.apply(this, arguments);
15185     };
15186     Roo.extend(f, Roo.data.Record);
15187     var p = f.prototype;
15188     p.fields = new Roo.util.MixedCollection(false, function(field){
15189         return field.name;
15190     });
15191     for(var i = 0, len = o.length; i < len; i++){
15192         p.fields.add(new Roo.data.Field(o[i]));
15193     }
15194     f.getField = function(name){
15195         return p.fields.get(name);  
15196     };
15197     return f;
15198 };
15199
15200 Roo.data.Record.AUTO_ID = 1000;
15201 Roo.data.Record.EDIT = 'edit';
15202 Roo.data.Record.REJECT = 'reject';
15203 Roo.data.Record.COMMIT = 'commit';
15204
15205 Roo.data.Record.prototype = {
15206     /**
15207      * Readonly flag - true if this record has been modified.
15208      * @type Boolean
15209      */
15210     dirty : false,
15211     editing : false,
15212     error: null,
15213     modified: null,
15214
15215     // private
15216     join : function(store){
15217         this.store = store;
15218     },
15219
15220     /**
15221      * Set the named field to the specified value.
15222      * @param {String} name The name of the field to set.
15223      * @param {Object} value The value to set the field to.
15224      */
15225     set : function(name, value){
15226         if(this.data[name] == value){
15227             return;
15228         }
15229         this.dirty = true;
15230         if(!this.modified){
15231             this.modified = {};
15232         }
15233         if(typeof this.modified[name] == 'undefined'){
15234             this.modified[name] = this.data[name];
15235         }
15236         this.data[name] = value;
15237         if(!this.editing && this.store){
15238             this.store.afterEdit(this);
15239         }       
15240     },
15241
15242     /**
15243      * Get the value of the named field.
15244      * @param {String} name The name of the field to get the value of.
15245      * @return {Object} The value of the field.
15246      */
15247     get : function(name){
15248         return this.data[name]; 
15249     },
15250
15251     // private
15252     beginEdit : function(){
15253         this.editing = true;
15254         this.modified = {}; 
15255     },
15256
15257     // private
15258     cancelEdit : function(){
15259         this.editing = false;
15260         delete this.modified;
15261     },
15262
15263     // private
15264     endEdit : function(){
15265         this.editing = false;
15266         if(this.dirty && this.store){
15267             this.store.afterEdit(this);
15268         }
15269     },
15270
15271     /**
15272      * Usually called by the {@link Roo.data.Store} which owns the Record.
15273      * Rejects all changes made to the Record since either creation, or the last commit operation.
15274      * Modified fields are reverted to their original values.
15275      * <p>
15276      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
15277      * of reject operations.
15278      */
15279     reject : function(){
15280         var m = this.modified;
15281         for(var n in m){
15282             if(typeof m[n] != "function"){
15283                 this.data[n] = m[n];
15284             }
15285         }
15286         this.dirty = false;
15287         delete this.modified;
15288         this.editing = false;
15289         if(this.store){
15290             this.store.afterReject(this);
15291         }
15292     },
15293
15294     /**
15295      * Usually called by the {@link Roo.data.Store} which owns the Record.
15296      * Commits all changes made to the Record since either creation, or the last commit operation.
15297      * <p>
15298      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
15299      * of commit operations.
15300      */
15301     commit : function(){
15302         this.dirty = false;
15303         delete this.modified;
15304         this.editing = false;
15305         if(this.store){
15306             this.store.afterCommit(this);
15307         }
15308     },
15309
15310     // private
15311     hasError : function(){
15312         return this.error != null;
15313     },
15314
15315     // private
15316     clearError : function(){
15317         this.error = null;
15318     },
15319
15320     /**
15321      * Creates a copy of this record.
15322      * @param {String} id (optional) A new record id if you don't want to use this record's id
15323      * @return {Record}
15324      */
15325     copy : function(newId) {
15326         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
15327     }
15328 };/*
15329  * Based on:
15330  * Ext JS Library 1.1.1
15331  * Copyright(c) 2006-2007, Ext JS, LLC.
15332  *
15333  * Originally Released Under LGPL - original licence link has changed is not relivant.
15334  *
15335  * Fork - LGPL
15336  * <script type="text/javascript">
15337  */
15338
15339
15340
15341 /**
15342  * @class Roo.data.Store
15343  * @extends Roo.util.Observable
15344  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
15345  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
15346  * <p>
15347  * 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
15348  * has no knowledge of the format of the data returned by the Proxy.<br>
15349  * <p>
15350  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
15351  * instances from the data object. These records are cached and made available through accessor functions.
15352  * @constructor
15353  * Creates a new Store.
15354  * @param {Object} config A config object containing the objects needed for the Store to access data,
15355  * and read the data into Records.
15356  */
15357 Roo.data.Store = function(config){
15358     this.data = new Roo.util.MixedCollection(false);
15359     this.data.getKey = function(o){
15360         return o.id;
15361     };
15362     this.baseParams = {};
15363     // private
15364     this.paramNames = {
15365         "start" : "start",
15366         "limit" : "limit",
15367         "sort" : "sort",
15368         "dir" : "dir",
15369         "multisort" : "_multisort"
15370     };
15371
15372     if(config && config.data){
15373         this.inlineData = config.data;
15374         delete config.data;
15375     }
15376
15377     Roo.apply(this, config);
15378     
15379     if(this.reader){ // reader passed
15380         this.reader = Roo.factory(this.reader, Roo.data);
15381         this.reader.xmodule = this.xmodule || false;
15382         if(!this.recordType){
15383             this.recordType = this.reader.recordType;
15384         }
15385         if(this.reader.onMetaChange){
15386             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
15387         }
15388     }
15389
15390     if(this.recordType){
15391         this.fields = this.recordType.prototype.fields;
15392     }
15393     this.modified = [];
15394
15395     this.addEvents({
15396         /**
15397          * @event datachanged
15398          * Fires when the data cache has changed, and a widget which is using this Store
15399          * as a Record cache should refresh its view.
15400          * @param {Store} this
15401          */
15402         datachanged : true,
15403         /**
15404          * @event metachange
15405          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
15406          * @param {Store} this
15407          * @param {Object} meta The JSON metadata
15408          */
15409         metachange : true,
15410         /**
15411          * @event add
15412          * Fires when Records have been added to the Store
15413          * @param {Store} this
15414          * @param {Roo.data.Record[]} records The array of Records added
15415          * @param {Number} index The index at which the record(s) were added
15416          */
15417         add : true,
15418         /**
15419          * @event remove
15420          * Fires when a Record has been removed from the Store
15421          * @param {Store} this
15422          * @param {Roo.data.Record} record The Record that was removed
15423          * @param {Number} index The index at which the record was removed
15424          */
15425         remove : true,
15426         /**
15427          * @event update
15428          * Fires when a Record has been updated
15429          * @param {Store} this
15430          * @param {Roo.data.Record} record The Record that was updated
15431          * @param {String} operation The update operation being performed.  Value may be one of:
15432          * <pre><code>
15433  Roo.data.Record.EDIT
15434  Roo.data.Record.REJECT
15435  Roo.data.Record.COMMIT
15436          * </code></pre>
15437          */
15438         update : true,
15439         /**
15440          * @event clear
15441          * Fires when the data cache has been cleared.
15442          * @param {Store} this
15443          */
15444         clear : true,
15445         /**
15446          * @event beforeload
15447          * Fires before a request is made for a new data object.  If the beforeload handler returns false
15448          * the load action will be canceled.
15449          * @param {Store} this
15450          * @param {Object} options The loading options that were specified (see {@link #load} for details)
15451          */
15452         beforeload : true,
15453         /**
15454          * @event beforeloadadd
15455          * Fires after a new set of Records has been loaded.
15456          * @param {Store} this
15457          * @param {Roo.data.Record[]} records The Records that were loaded
15458          * @param {Object} options The loading options that were specified (see {@link #load} for details)
15459          */
15460         beforeloadadd : true,
15461         /**
15462          * @event load
15463          * Fires after a new set of Records has been loaded, before they are added to the store.
15464          * @param {Store} this
15465          * @param {Roo.data.Record[]} records The Records that were loaded
15466          * @param {Object} options The loading options that were specified (see {@link #load} for details)
15467          * @params {Object} return from reader
15468          */
15469         load : true,
15470         /**
15471          * @event loadexception
15472          * Fires if an exception occurs in the Proxy during loading.
15473          * Called with the signature of the Proxy's "loadexception" event.
15474          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
15475          * 
15476          * @param {Proxy} 
15477          * @param {Object} ret return data from JsonData.reader() - success, totalRecords, records
15478          * @param {Object} opts - load Options
15479          * @param {Object} jsonData from your request (normally this contains the Exception)
15480          */
15481         loadexception : true
15482     });
15483     
15484     if(this.proxy){
15485         this.proxy = Roo.factory(this.proxy, Roo.data);
15486         this.proxy.xmodule = this.xmodule || false;
15487         this.relayEvents(this.proxy,  ["loadexception"]);
15488     }
15489     this.sortToggle = {};
15490     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
15491
15492     Roo.data.Store.superclass.constructor.call(this);
15493
15494     if(this.inlineData){
15495         this.loadData(this.inlineData);
15496         delete this.inlineData;
15497     }
15498 };
15499
15500 Roo.extend(Roo.data.Store, Roo.util.Observable, {
15501      /**
15502     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
15503     * without a remote query - used by combo/forms at present.
15504     */
15505     
15506     /**
15507     * @cfg {Roo.data.DataProxy} proxy [required] The Proxy object which provides access to a data object.
15508     */
15509     /**
15510     * @cfg {Array} data Inline data to be loaded when the store is initialized.
15511     */
15512     /**
15513     * @cfg {Roo.data.DataReader} reader [required]  The Reader object which processes the data object and returns
15514     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
15515     */
15516     /**
15517     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
15518     * on any HTTP request
15519     */
15520     /**
15521     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
15522     */
15523     /**
15524     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
15525     */
15526     multiSort: false,
15527     /**
15528     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
15529     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
15530     */
15531     remoteSort : false,
15532
15533     /**
15534     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
15535      * loaded or when a record is removed. (defaults to false).
15536     */
15537     pruneModifiedRecords : false,
15538
15539     // private
15540     lastOptions : null,
15541
15542     /**
15543      * Add Records to the Store and fires the add event.
15544      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
15545      */
15546     add : function(records){
15547         records = [].concat(records);
15548         for(var i = 0, len = records.length; i < len; i++){
15549             records[i].join(this);
15550         }
15551         var index = this.data.length;
15552         this.data.addAll(records);
15553         this.fireEvent("add", this, records, index);
15554     },
15555
15556     /**
15557      * Remove a Record from the Store and fires the remove event.
15558      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
15559      */
15560     remove : function(record){
15561         var index = this.data.indexOf(record);
15562         this.data.removeAt(index);
15563  
15564         if(this.pruneModifiedRecords){
15565             this.modified.remove(record);
15566         }
15567         this.fireEvent("remove", this, record, index);
15568     },
15569
15570     /**
15571      * Remove all Records from the Store and fires the clear event.
15572      */
15573     removeAll : function(){
15574         this.data.clear();
15575         if(this.pruneModifiedRecords){
15576             this.modified = [];
15577         }
15578         this.fireEvent("clear", this);
15579     },
15580
15581     /**
15582      * Inserts Records to the Store at the given index and fires the add event.
15583      * @param {Number} index The start index at which to insert the passed Records.
15584      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
15585      */
15586     insert : function(index, records){
15587         records = [].concat(records);
15588         for(var i = 0, len = records.length; i < len; i++){
15589             this.data.insert(index, records[i]);
15590             records[i].join(this);
15591         }
15592         this.fireEvent("add", this, records, index);
15593     },
15594
15595     /**
15596      * Get the index within the cache of the passed Record.
15597      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
15598      * @return {Number} The index of the passed Record. Returns -1 if not found.
15599      */
15600     indexOf : function(record){
15601         return this.data.indexOf(record);
15602     },
15603
15604     /**
15605      * Get the index within the cache of the Record with the passed id.
15606      * @param {String} id The id of the Record to find.
15607      * @return {Number} The index of the Record. Returns -1 if not found.
15608      */
15609     indexOfId : function(id){
15610         return this.data.indexOfKey(id);
15611     },
15612
15613     /**
15614      * Get the Record with the specified id.
15615      * @param {String} id The id of the Record to find.
15616      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
15617      */
15618     getById : function(id){
15619         return this.data.key(id);
15620     },
15621
15622     /**
15623      * Get the Record at the specified index.
15624      * @param {Number} index The index of the Record to find.
15625      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
15626      */
15627     getAt : function(index){
15628         return this.data.itemAt(index);
15629     },
15630
15631     /**
15632      * Returns a range of Records between specified indices.
15633      * @param {Number} startIndex (optional) The starting index (defaults to 0)
15634      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
15635      * @return {Roo.data.Record[]} An array of Records
15636      */
15637     getRange : function(start, end){
15638         return this.data.getRange(start, end);
15639     },
15640
15641     // private
15642     storeOptions : function(o){
15643         o = Roo.apply({}, o);
15644         delete o.callback;
15645         delete o.scope;
15646         this.lastOptions = o;
15647     },
15648
15649     /**
15650      * Loads the Record cache from the configured Proxy using the configured Reader.
15651      * <p>
15652      * If using remote paging, then the first load call must specify the <em>start</em>
15653      * and <em>limit</em> properties in the options.params property to establish the initial
15654      * position within the dataset, and the number of Records to cache on each read from the Proxy.
15655      * <p>
15656      * <strong>It is important to note that for remote data sources, loading is asynchronous,
15657      * and this call will return before the new data has been loaded. Perform any post-processing
15658      * in a callback function, or in a "load" event handler.</strong>
15659      * <p>
15660      * @param {Object} options An object containing properties which control loading options:<ul>
15661      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
15662      * <li>params.data {Object} if you are using a MemoryProxy / JsonReader, use this as the data to load stuff..
15663      * <pre>
15664                 {
15665                     data : data,  // array of key=>value data like JsonReader
15666                     total : data.length,
15667                     success : true
15668                     
15669                 }
15670         </pre>
15671             }.</li>
15672      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
15673      * passed the following arguments:<ul>
15674      * <li>r : Roo.data.Record[]</li>
15675      * <li>options: Options object from the load call</li>
15676      * <li>success: Boolean success indicator</li></ul></li>
15677      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
15678      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
15679      * </ul>
15680      */
15681     load : function(options){
15682         options = options || {};
15683         if(this.fireEvent("beforeload", this, options) !== false){
15684             this.storeOptions(options);
15685             var p = Roo.apply(options.params || {}, this.baseParams);
15686             // if meta was not loaded from remote source.. try requesting it.
15687             if (!this.reader.metaFromRemote) {
15688                 p._requestMeta = 1;
15689             }
15690             if(this.sortInfo && this.remoteSort){
15691                 var pn = this.paramNames;
15692                 p[pn["sort"]] = this.sortInfo.field;
15693                 p[pn["dir"]] = this.sortInfo.direction;
15694             }
15695             if (this.multiSort) {
15696                 var pn = this.paramNames;
15697                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
15698             }
15699             
15700             this.proxy.load(p, this.reader, this.loadRecords, this, options);
15701         }
15702     },
15703
15704     /**
15705      * Reloads the Record cache from the configured Proxy using the configured Reader and
15706      * the options from the last load operation performed.
15707      * @param {Object} options (optional) An object containing properties which may override the options
15708      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
15709      * the most recently used options are reused).
15710      */
15711     reload : function(options){
15712         this.load(Roo.applyIf(options||{}, this.lastOptions));
15713     },
15714
15715     // private
15716     // Called as a callback by the Reader during a load operation.
15717     loadRecords : function(o, options, success){
15718          
15719         if(!o){
15720             if(success !== false){
15721                 this.fireEvent("load", this, [], options, o);
15722             }
15723             if(options.callback){
15724                 options.callback.call(options.scope || this, [], options, false);
15725             }
15726             return;
15727         }
15728         // if data returned failure - throw an exception.
15729         if (o.success === false) {
15730             // show a message if no listener is registered.
15731             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
15732                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
15733             }
15734             // loadmask wil be hooked into this..
15735             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
15736             return;
15737         }
15738         var r = o.records, t = o.totalRecords || r.length;
15739         
15740         this.fireEvent("beforeloadadd", this, r, options, o);
15741         
15742         if(!options || options.add !== true){
15743             if(this.pruneModifiedRecords){
15744                 this.modified = [];
15745             }
15746             for(var i = 0, len = r.length; i < len; i++){
15747                 r[i].join(this);
15748             }
15749             if(this.snapshot){
15750                 this.data = this.snapshot;
15751                 delete this.snapshot;
15752             }
15753             this.data.clear();
15754             this.data.addAll(r);
15755             this.totalLength = t;
15756             this.applySort();
15757             this.fireEvent("datachanged", this);
15758         }else{
15759             this.totalLength = Math.max(t, this.data.length+r.length);
15760             this.add(r);
15761         }
15762         
15763         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
15764                 
15765             var e = new Roo.data.Record({});
15766
15767             e.set(this.parent.displayField, this.parent.emptyTitle);
15768             e.set(this.parent.valueField, '');
15769
15770             this.insert(0, e);
15771         }
15772             
15773         this.fireEvent("load", this, r, options, o);
15774         if(options.callback){
15775             options.callback.call(options.scope || this, r, options, true);
15776         }
15777     },
15778
15779
15780     /**
15781      * Loads data from a passed data block. A Reader which understands the format of the data
15782      * must have been configured in the constructor.
15783      * @param {Object} data The data block from which to read the Records.  The format of the data expected
15784      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
15785      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
15786      */
15787     loadData : function(o, append){
15788         var r = this.reader.readRecords(o);
15789         this.loadRecords(r, {add: append}, true);
15790     },
15791     
15792      /**
15793      * using 'cn' the nested child reader read the child array into it's child stores.
15794      * @param {Object} rec The record with a 'children array
15795      */
15796     loadDataFromChildren : function(rec)
15797     {
15798         this.loadData(this.reader.toLoadData(rec));
15799     },
15800     
15801
15802     /**
15803      * Gets the number of cached records.
15804      * <p>
15805      * <em>If using paging, this may not be the total size of the dataset. If the data object
15806      * used by the Reader contains the dataset size, then the getTotalCount() function returns
15807      * the data set size</em>
15808      */
15809     getCount : function(){
15810         return this.data.length || 0;
15811     },
15812
15813     /**
15814      * Gets the total number of records in the dataset as returned by the server.
15815      * <p>
15816      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
15817      * the dataset size</em>
15818      */
15819     getTotalCount : function(){
15820         return this.totalLength || 0;
15821     },
15822
15823     /**
15824      * Returns the sort state of the Store as an object with two properties:
15825      * <pre><code>
15826  field {String} The name of the field by which the Records are sorted
15827  direction {String} The sort order, "ASC" or "DESC"
15828      * </code></pre>
15829      */
15830     getSortState : function(){
15831         return this.sortInfo;
15832     },
15833
15834     // private
15835     applySort : function(){
15836         if(this.sortInfo && !this.remoteSort){
15837             var s = this.sortInfo, f = s.field;
15838             var st = this.fields.get(f).sortType;
15839             var fn = function(r1, r2){
15840                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
15841                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
15842             };
15843             this.data.sort(s.direction, fn);
15844             if(this.snapshot && this.snapshot != this.data){
15845                 this.snapshot.sort(s.direction, fn);
15846             }
15847         }
15848     },
15849
15850     /**
15851      * Sets the default sort column and order to be used by the next load operation.
15852      * @param {String} fieldName The name of the field to sort by.
15853      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
15854      */
15855     setDefaultSort : function(field, dir){
15856         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
15857     },
15858
15859     /**
15860      * Sort the Records.
15861      * If remote sorting is used, the sort is performed on the server, and the cache is
15862      * reloaded. If local sorting is used, the cache is sorted internally.
15863      * @param {String} fieldName The name of the field to sort by.
15864      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
15865      */
15866     sort : function(fieldName, dir){
15867         var f = this.fields.get(fieldName);
15868         if(!dir){
15869             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
15870             
15871             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
15872                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
15873             }else{
15874                 dir = f.sortDir;
15875             }
15876         }
15877         this.sortToggle[f.name] = dir;
15878         this.sortInfo = {field: f.name, direction: dir};
15879         if(!this.remoteSort){
15880             this.applySort();
15881             this.fireEvent("datachanged", this);
15882         }else{
15883             this.load(this.lastOptions);
15884         }
15885     },
15886
15887     /**
15888      * Calls the specified function for each of the Records in the cache.
15889      * @param {Function} fn The function to call. The Record is passed as the first parameter.
15890      * Returning <em>false</em> aborts and exits the iteration.
15891      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
15892      */
15893     each : function(fn, scope){
15894         this.data.each(fn, scope);
15895     },
15896
15897     /**
15898      * Gets all records modified since the last commit.  Modified records are persisted across load operations
15899      * (e.g., during paging).
15900      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
15901      */
15902     getModifiedRecords : function(){
15903         return this.modified;
15904     },
15905
15906     // private
15907     createFilterFn : function(property, value, anyMatch){
15908         if(!value.exec){ // not a regex
15909             value = String(value);
15910             if(value.length == 0){
15911                 return false;
15912             }
15913             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
15914         }
15915         return function(r){
15916             return value.test(r.data[property]);
15917         };
15918     },
15919
15920     /**
15921      * Sums the value of <i>property</i> for each record between start and end and returns the result.
15922      * @param {String} property A field on your records
15923      * @param {Number} start The record index to start at (defaults to 0)
15924      * @param {Number} end The last record index to include (defaults to length - 1)
15925      * @return {Number} The sum
15926      */
15927     sum : function(property, start, end){
15928         var rs = this.data.items, v = 0;
15929         start = start || 0;
15930         end = (end || end === 0) ? end : rs.length-1;
15931
15932         for(var i = start; i <= end; i++){
15933             v += (rs[i].data[property] || 0);
15934         }
15935         return v;
15936     },
15937
15938     /**
15939      * Filter the records by a specified property.
15940      * @param {String} field A field on your records
15941      * @param {String/RegExp} value Either a string that the field
15942      * should start with or a RegExp to test against the field
15943      * @param {Boolean} anyMatch True to match any part not just the beginning
15944      */
15945     filter : function(property, value, anyMatch){
15946         var fn = this.createFilterFn(property, value, anyMatch);
15947         return fn ? this.filterBy(fn) : this.clearFilter();
15948     },
15949
15950     /**
15951      * Filter by a function. The specified function will be called with each
15952      * record in this data source. If the function returns true the record is included,
15953      * otherwise it is filtered.
15954      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
15955      * @param {Object} scope (optional) The scope of the function (defaults to this)
15956      */
15957     filterBy : function(fn, scope){
15958         this.snapshot = this.snapshot || this.data;
15959         this.data = this.queryBy(fn, scope||this);
15960         this.fireEvent("datachanged", this);
15961     },
15962
15963     /**
15964      * Query the records by a specified property.
15965      * @param {String} field A field on your records
15966      * @param {String/RegExp} value Either a string that the field
15967      * should start with or a RegExp to test against the field
15968      * @param {Boolean} anyMatch True to match any part not just the beginning
15969      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
15970      */
15971     query : function(property, value, anyMatch){
15972         var fn = this.createFilterFn(property, value, anyMatch);
15973         return fn ? this.queryBy(fn) : this.data.clone();
15974     },
15975
15976     /**
15977      * Query by a function. The specified function will be called with each
15978      * record in this data source. If the function returns true the record is included
15979      * in the results.
15980      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
15981      * @param {Object} scope (optional) The scope of the function (defaults to this)
15982       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
15983      **/
15984     queryBy : function(fn, scope){
15985         var data = this.snapshot || this.data;
15986         return data.filterBy(fn, scope||this);
15987     },
15988
15989     /**
15990      * Collects unique values for a particular dataIndex from this store.
15991      * @param {String} dataIndex The property to collect
15992      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
15993      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
15994      * @return {Array} An array of the unique values
15995      **/
15996     collect : function(dataIndex, allowNull, bypassFilter){
15997         var d = (bypassFilter === true && this.snapshot) ?
15998                 this.snapshot.items : this.data.items;
15999         var v, sv, r = [], l = {};
16000         for(var i = 0, len = d.length; i < len; i++){
16001             v = d[i].data[dataIndex];
16002             sv = String(v);
16003             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
16004                 l[sv] = true;
16005                 r[r.length] = v;
16006             }
16007         }
16008         return r;
16009     },
16010
16011     /**
16012      * Revert to a view of the Record cache with no filtering applied.
16013      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
16014      */
16015     clearFilter : function(suppressEvent){
16016         if(this.snapshot && this.snapshot != this.data){
16017             this.data = this.snapshot;
16018             delete this.snapshot;
16019             if(suppressEvent !== true){
16020                 this.fireEvent("datachanged", this);
16021             }
16022         }
16023     },
16024
16025     // private
16026     afterEdit : function(record){
16027         if(this.modified.indexOf(record) == -1){
16028             this.modified.push(record);
16029         }
16030         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
16031     },
16032     
16033     // private
16034     afterReject : function(record){
16035         this.modified.remove(record);
16036         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
16037     },
16038
16039     // private
16040     afterCommit : function(record){
16041         this.modified.remove(record);
16042         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
16043     },
16044
16045     /**
16046      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
16047      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
16048      */
16049     commitChanges : function(){
16050         var m = this.modified.slice(0);
16051         this.modified = [];
16052         for(var i = 0, len = m.length; i < len; i++){
16053             m[i].commit();
16054         }
16055     },
16056
16057     /**
16058      * Cancel outstanding changes on all changed records.
16059      */
16060     rejectChanges : function(){
16061         var m = this.modified.slice(0);
16062         this.modified = [];
16063         for(var i = 0, len = m.length; i < len; i++){
16064             m[i].reject();
16065         }
16066     },
16067
16068     onMetaChange : function(meta, rtype, o){
16069         this.recordType = rtype;
16070         this.fields = rtype.prototype.fields;
16071         delete this.snapshot;
16072         this.sortInfo = meta.sortInfo || this.sortInfo;
16073         this.modified = [];
16074         this.fireEvent('metachange', this, this.reader.meta);
16075     },
16076     
16077     moveIndex : function(data, type)
16078     {
16079         var index = this.indexOf(data);
16080         
16081         var newIndex = index + type;
16082         
16083         this.remove(data);
16084         
16085         this.insert(newIndex, data);
16086         
16087     }
16088 });/*
16089  * Based on:
16090  * Ext JS Library 1.1.1
16091  * Copyright(c) 2006-2007, Ext JS, LLC.
16092  *
16093  * Originally Released Under LGPL - original licence link has changed is not relivant.
16094  *
16095  * Fork - LGPL
16096  * <script type="text/javascript">
16097  */
16098
16099 /**
16100  * @class Roo.data.SimpleStore
16101  * @extends Roo.data.Store
16102  * Small helper class to make creating Stores from Array data easier.
16103  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
16104  * @cfg {Array} fields An array of field definition objects, or field name strings.
16105  * @cfg {Object} an existing reader (eg. copied from another store)
16106  * @cfg {Array} data The multi-dimensional array of data
16107  * @cfg {Roo.data.DataProxy} proxy [not-required]  
16108  * @cfg {Roo.data.Reader} reader  [not-required] 
16109  * @constructor
16110  * @param {Object} config
16111  */
16112 Roo.data.SimpleStore = function(config)
16113 {
16114     Roo.data.SimpleStore.superclass.constructor.call(this, {
16115         isLocal : true,
16116         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
16117                 id: config.id
16118             },
16119             Roo.data.Record.create(config.fields)
16120         ),
16121         proxy : new Roo.data.MemoryProxy(config.data)
16122     });
16123     this.load();
16124 };
16125 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
16126  * Based on:
16127  * Ext JS Library 1.1.1
16128  * Copyright(c) 2006-2007, Ext JS, LLC.
16129  *
16130  * Originally Released Under LGPL - original licence link has changed is not relivant.
16131  *
16132  * Fork - LGPL
16133  * <script type="text/javascript">
16134  */
16135
16136 /**
16137 /**
16138  * @extends Roo.data.Store
16139  * @class Roo.data.JsonStore
16140  * Small helper class to make creating Stores for JSON data easier. <br/>
16141 <pre><code>
16142 var store = new Roo.data.JsonStore({
16143     url: 'get-images.php',
16144     root: 'images',
16145     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
16146 });
16147 </code></pre>
16148  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
16149  * JsonReader and HttpProxy (unless inline data is provided).</b>
16150  * @cfg {Array} fields An array of field definition objects, or field name strings.
16151  * @constructor
16152  * @param {Object} config
16153  */
16154 Roo.data.JsonStore = function(c){
16155     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
16156         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
16157         reader: new Roo.data.JsonReader(c, c.fields)
16158     }));
16159 };
16160 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
16161  * Based on:
16162  * Ext JS Library 1.1.1
16163  * Copyright(c) 2006-2007, Ext JS, LLC.
16164  *
16165  * Originally Released Under LGPL - original licence link has changed is not relivant.
16166  *
16167  * Fork - LGPL
16168  * <script type="text/javascript">
16169  */
16170
16171  
16172 Roo.data.Field = function(config){
16173     if(typeof config == "string"){
16174         config = {name: config};
16175     }
16176     Roo.apply(this, config);
16177     
16178     if(!this.type){
16179         this.type = "auto";
16180     }
16181     
16182     var st = Roo.data.SortTypes;
16183     // named sortTypes are supported, here we look them up
16184     if(typeof this.sortType == "string"){
16185         this.sortType = st[this.sortType];
16186     }
16187     
16188     // set default sortType for strings and dates
16189     if(!this.sortType){
16190         switch(this.type){
16191             case "string":
16192                 this.sortType = st.asUCString;
16193                 break;
16194             case "date":
16195                 this.sortType = st.asDate;
16196                 break;
16197             default:
16198                 this.sortType = st.none;
16199         }
16200     }
16201
16202     // define once
16203     var stripRe = /[\$,%]/g;
16204
16205     // prebuilt conversion function for this field, instead of
16206     // switching every time we're reading a value
16207     if(!this.convert){
16208         var cv, dateFormat = this.dateFormat;
16209         switch(this.type){
16210             case "":
16211             case "auto":
16212             case undefined:
16213                 cv = function(v){ return v; };
16214                 break;
16215             case "string":
16216                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
16217                 break;
16218             case "int":
16219                 cv = function(v){
16220                     return v !== undefined && v !== null && v !== '' ?
16221                            parseInt(String(v).replace(stripRe, ""), 10) : '';
16222                     };
16223                 break;
16224             case "float":
16225                 cv = function(v){
16226                     return v !== undefined && v !== null && v !== '' ?
16227                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
16228                     };
16229                 break;
16230             case "bool":
16231             case "boolean":
16232                 cv = function(v){ return v === true || v === "true" || v == 1; };
16233                 break;
16234             case "date":
16235                 cv = function(v){
16236                     if(!v){
16237                         return '';
16238                     }
16239                     if(v instanceof Date){
16240                         return v;
16241                     }
16242                     if(dateFormat){
16243                         if(dateFormat == "timestamp"){
16244                             return new Date(v*1000);
16245                         }
16246                         return Date.parseDate(v, dateFormat);
16247                     }
16248                     var parsed = Date.parse(v);
16249                     return parsed ? new Date(parsed) : null;
16250                 };
16251              break;
16252             
16253         }
16254         this.convert = cv;
16255     }
16256 };
16257
16258 Roo.data.Field.prototype = {
16259     dateFormat: null,
16260     defaultValue: "",
16261     mapping: null,
16262     sortType : null,
16263     sortDir : "ASC"
16264 };/*
16265  * Based on:
16266  * Ext JS Library 1.1.1
16267  * Copyright(c) 2006-2007, Ext JS, LLC.
16268  *
16269  * Originally Released Under LGPL - original licence link has changed is not relivant.
16270  *
16271  * Fork - LGPL
16272  * <script type="text/javascript">
16273  */
16274  
16275 // Base class for reading structured data from a data source.  This class is intended to be
16276 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
16277
16278 /**
16279  * @class Roo.data.DataReader
16280  * @abstract
16281  * Base class for reading structured data from a data source.  This class is intended to be
16282  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
16283  */
16284
16285 Roo.data.DataReader = function(meta, recordType){
16286     
16287     this.meta = meta;
16288     
16289     this.recordType = recordType instanceof Array ? 
16290         Roo.data.Record.create(recordType) : recordType;
16291 };
16292
16293 Roo.data.DataReader.prototype = {
16294     
16295     
16296     readerType : 'Data',
16297      /**
16298      * Create an empty record
16299      * @param {Object} data (optional) - overlay some values
16300      * @return {Roo.data.Record} record created.
16301      */
16302     newRow :  function(d) {
16303         var da =  {};
16304         this.recordType.prototype.fields.each(function(c) {
16305             switch( c.type) {
16306                 case 'int' : da[c.name] = 0; break;
16307                 case 'date' : da[c.name] = new Date(); break;
16308                 case 'float' : da[c.name] = 0.0; break;
16309                 case 'boolean' : da[c.name] = false; break;
16310                 default : da[c.name] = ""; break;
16311             }
16312             
16313         });
16314         return new this.recordType(Roo.apply(da, d));
16315     }
16316     
16317     
16318 };/*
16319  * Based on:
16320  * Ext JS Library 1.1.1
16321  * Copyright(c) 2006-2007, Ext JS, LLC.
16322  *
16323  * Originally Released Under LGPL - original licence link has changed is not relivant.
16324  *
16325  * Fork - LGPL
16326  * <script type="text/javascript">
16327  */
16328
16329 /**
16330  * @class Roo.data.DataProxy
16331  * @extends Roo.util.Observable
16332  * @abstract
16333  * This class is an abstract base class for implementations which provide retrieval of
16334  * unformatted data objects.<br>
16335  * <p>
16336  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
16337  * (of the appropriate type which knows how to parse the data object) to provide a block of
16338  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
16339  * <p>
16340  * Custom implementations must implement the load method as described in
16341  * {@link Roo.data.HttpProxy#load}.
16342  */
16343 Roo.data.DataProxy = function(){
16344     this.addEvents({
16345         /**
16346          * @event beforeload
16347          * Fires before a network request is made to retrieve a data object.
16348          * @param {Object} This DataProxy object.
16349          * @param {Object} params The params parameter to the load function.
16350          */
16351         beforeload : true,
16352         /**
16353          * @event load
16354          * Fires before the load method's callback is called.
16355          * @param {Object} This DataProxy object.
16356          * @param {Object} o The data object.
16357          * @param {Object} arg The callback argument object passed to the load function.
16358          */
16359         load : true,
16360         /**
16361          * @event loadexception
16362          * Fires if an Exception occurs during data retrieval.
16363          * @param {Object} This DataProxy object.
16364          * @param {Object} o The data object.
16365          * @param {Object} arg The callback argument object passed to the load function.
16366          * @param {Object} e The Exception.
16367          */
16368         loadexception : true
16369     });
16370     Roo.data.DataProxy.superclass.constructor.call(this);
16371 };
16372
16373 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
16374
16375     /**
16376      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
16377      */
16378 /*
16379  * Based on:
16380  * Ext JS Library 1.1.1
16381  * Copyright(c) 2006-2007, Ext JS, LLC.
16382  *
16383  * Originally Released Under LGPL - original licence link has changed is not relivant.
16384  *
16385  * Fork - LGPL
16386  * <script type="text/javascript">
16387  */
16388 /**
16389  * @class Roo.data.MemoryProxy
16390  * @extends Roo.data.DataProxy
16391  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
16392  * to the Reader when its load method is called.
16393  * @constructor
16394  * @param {Object} config  A config object containing the objects needed for the Store to access data,
16395  */
16396 Roo.data.MemoryProxy = function(config){
16397     var data = config;
16398     if (typeof(config) != 'undefined' && typeof(config.data) != 'undefined') {
16399         data = config.data;
16400     }
16401     Roo.data.MemoryProxy.superclass.constructor.call(this);
16402     this.data = data;
16403 };
16404
16405 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
16406     
16407     /**
16408      *  @cfg {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
16409      */
16410     /**
16411      * Load data from the requested source (in this case an in-memory
16412      * data object passed to the constructor), read the data object into
16413      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
16414      * process that block using the passed callback.
16415      * @param {Object} params This parameter is not used by the MemoryProxy class.
16416      * @param {Roo.data.DataReader} reader The Reader object which converts the data
16417      * object into a block of Roo.data.Records.
16418      * @param {Function} callback The function into which to pass the block of Roo.data.records.
16419      * The function must be passed <ul>
16420      * <li>The Record block object</li>
16421      * <li>The "arg" argument from the load function</li>
16422      * <li>A boolean success indicator</li>
16423      * </ul>
16424      * @param {Object} scope The scope in which to call the callback
16425      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
16426      */
16427     load : function(params, reader, callback, scope, arg){
16428         params = params || {};
16429         var result;
16430         try {
16431             result = reader.readRecords(params.data ? params.data :this.data);
16432         }catch(e){
16433             this.fireEvent("loadexception", this, arg, null, e);
16434             callback.call(scope, null, arg, false);
16435             return;
16436         }
16437         callback.call(scope, result, arg, true);
16438     },
16439     
16440     // private
16441     update : function(params, records){
16442         
16443     }
16444 });/*
16445  * Based on:
16446  * Ext JS Library 1.1.1
16447  * Copyright(c) 2006-2007, Ext JS, LLC.
16448  *
16449  * Originally Released Under LGPL - original licence link has changed is not relivant.
16450  *
16451  * Fork - LGPL
16452  * <script type="text/javascript">
16453  */
16454 /**
16455  * @class Roo.data.HttpProxy
16456  * @extends Roo.data.DataProxy
16457  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
16458  * configured to reference a certain URL.<br><br>
16459  * <p>
16460  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
16461  * from which the running page was served.<br><br>
16462  * <p>
16463  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
16464  * <p>
16465  * Be aware that to enable the browser to parse an XML document, the server must set
16466  * the Content-Type header in the HTTP response to "text/xml".
16467  * @constructor
16468  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
16469  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
16470  * will be used to make the request.
16471  */
16472 Roo.data.HttpProxy = function(conn){
16473     Roo.data.HttpProxy.superclass.constructor.call(this);
16474     // is conn a conn config or a real conn?
16475     this.conn = conn;
16476     this.useAjax = !conn || !conn.events;
16477   
16478 };
16479
16480 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
16481     // thse are take from connection...
16482     
16483     /**
16484      * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
16485      */
16486     /**
16487      * @cfg {Object} extraParams  An object containing properties which are used as
16488      * extra parameters to each request made by this object. (defaults to undefined)
16489      */
16490     /**
16491      * @cfg {Object} defaultHeaders   An object containing request headers which are added
16492      *  to each request made by this object. (defaults to undefined)
16493      */
16494     /**
16495      * @cfg {String} method (GET|POST)  The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
16496      */
16497     /**
16498      * @cfg {Number} timeout The timeout in milliseconds to be used for requests. (defaults to 30000)
16499      */
16500      /**
16501      * @cfg {Boolean} autoAbort Whether this request should abort any pending requests. (defaults to false)
16502      * @type Boolean
16503      */
16504   
16505
16506     /**
16507      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
16508      * @type Boolean
16509      */
16510     /**
16511      * Return the {@link Roo.data.Connection} object being used by this Proxy.
16512      * @return {Connection} The Connection object. This object may be used to subscribe to events on
16513      * a finer-grained basis than the DataProxy events.
16514      */
16515     getConnection : function(){
16516         return this.useAjax ? Roo.Ajax : this.conn;
16517     },
16518
16519     /**
16520      * Load data from the configured {@link Roo.data.Connection}, read the data object into
16521      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
16522      * process that block using the passed callback.
16523      * @param {Object} params An object containing properties which are to be used as HTTP parameters
16524      * for the request to the remote server.
16525      * @param {Roo.data.DataReader} reader The Reader object which converts the data
16526      * object into a block of Roo.data.Records.
16527      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
16528      * The function must be passed <ul>
16529      * <li>The Record block object</li>
16530      * <li>The "arg" argument from the load function</li>
16531      * <li>A boolean success indicator</li>
16532      * </ul>
16533      * @param {Object} scope The scope in which to call the callback
16534      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
16535      */
16536     load : function(params, reader, callback, scope, arg){
16537         if(this.fireEvent("beforeload", this, params) !== false){
16538             var  o = {
16539                 params : params || {},
16540                 request: {
16541                     callback : callback,
16542                     scope : scope,
16543                     arg : arg
16544                 },
16545                 reader: reader,
16546                 callback : this.loadResponse,
16547                 scope: this
16548             };
16549             if(this.useAjax){
16550                 Roo.applyIf(o, this.conn);
16551                 if(this.activeRequest){
16552                     Roo.Ajax.abort(this.activeRequest);
16553                 }
16554                 this.activeRequest = Roo.Ajax.request(o);
16555             }else{
16556                 this.conn.request(o);
16557             }
16558         }else{
16559             callback.call(scope||this, null, arg, false);
16560         }
16561     },
16562
16563     // private
16564     loadResponse : function(o, success, response){
16565         delete this.activeRequest;
16566         if(!success){
16567             this.fireEvent("loadexception", this, o, response);
16568             o.request.callback.call(o.request.scope, null, o.request.arg, false);
16569             return;
16570         }
16571         var result;
16572         try {
16573             result = o.reader.read(response);
16574         }catch(e){
16575             o.success = false;
16576             o.raw = { errorMsg : response.responseText };
16577             this.fireEvent("loadexception", this, o, response, e);
16578             o.request.callback.call(o.request.scope, o, o.request.arg, false);
16579             return;
16580         }
16581         
16582         this.fireEvent("load", this, o, o.request.arg);
16583         o.request.callback.call(o.request.scope, result, o.request.arg, true);
16584     },
16585
16586     // private
16587     update : function(dataSet){
16588
16589     },
16590
16591     // private
16592     updateResponse : function(dataSet){
16593
16594     }
16595 });/*
16596  * Based on:
16597  * Ext JS Library 1.1.1
16598  * Copyright(c) 2006-2007, Ext JS, LLC.
16599  *
16600  * Originally Released Under LGPL - original licence link has changed is not relivant.
16601  *
16602  * Fork - LGPL
16603  * <script type="text/javascript">
16604  */
16605
16606 /**
16607  * @class Roo.data.ScriptTagProxy
16608  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
16609  * other than the originating domain of the running page.<br><br>
16610  * <p>
16611  * <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
16612  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
16613  * <p>
16614  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
16615  * source code that is used as the source inside a &lt;script> tag.<br><br>
16616  * <p>
16617  * In order for the browser to process the returned data, the server must wrap the data object
16618  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
16619  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
16620  * depending on whether the callback name was passed:
16621  * <p>
16622  * <pre><code>
16623 boolean scriptTag = false;
16624 String cb = request.getParameter("callback");
16625 if (cb != null) {
16626     scriptTag = true;
16627     response.setContentType("text/javascript");
16628 } else {
16629     response.setContentType("application/x-json");
16630 }
16631 Writer out = response.getWriter();
16632 if (scriptTag) {
16633     out.write(cb + "(");
16634 }
16635 out.print(dataBlock.toJsonString());
16636 if (scriptTag) {
16637     out.write(");");
16638 }
16639 </pre></code>
16640  *
16641  * @constructor
16642  * @param {Object} config A configuration object.
16643  */
16644 Roo.data.ScriptTagProxy = function(config){
16645     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
16646     Roo.apply(this, config);
16647     this.head = document.getElementsByTagName("head")[0];
16648 };
16649
16650 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
16651
16652 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
16653     /**
16654      * @cfg {String} url The URL from which to request the data object.
16655      */
16656     /**
16657      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
16658      */
16659     timeout : 30000,
16660     /**
16661      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
16662      * the server the name of the callback function set up by the load call to process the returned data object.
16663      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
16664      * javascript output which calls this named function passing the data object as its only parameter.
16665      */
16666     callbackParam : "callback",
16667     /**
16668      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
16669      * name to the request.
16670      */
16671     nocache : true,
16672
16673     /**
16674      * Load data from the configured URL, read the data object into
16675      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
16676      * process that block using the passed callback.
16677      * @param {Object} params An object containing properties which are to be used as HTTP parameters
16678      * for the request to the remote server.
16679      * @param {Roo.data.DataReader} reader The Reader object which converts the data
16680      * object into a block of Roo.data.Records.
16681      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
16682      * The function must be passed <ul>
16683      * <li>The Record block object</li>
16684      * <li>The "arg" argument from the load function</li>
16685      * <li>A boolean success indicator</li>
16686      * </ul>
16687      * @param {Object} scope The scope in which to call the callback
16688      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
16689      */
16690     load : function(params, reader, callback, scope, arg){
16691         if(this.fireEvent("beforeload", this, params) !== false){
16692
16693             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
16694
16695             var url = this.url;
16696             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
16697             if(this.nocache){
16698                 url += "&_dc=" + (new Date().getTime());
16699             }
16700             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
16701             var trans = {
16702                 id : transId,
16703                 cb : "stcCallback"+transId,
16704                 scriptId : "stcScript"+transId,
16705                 params : params,
16706                 arg : arg,
16707                 url : url,
16708                 callback : callback,
16709                 scope : scope,
16710                 reader : reader
16711             };
16712             var conn = this;
16713
16714             window[trans.cb] = function(o){
16715                 conn.handleResponse(o, trans);
16716             };
16717
16718             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
16719
16720             if(this.autoAbort !== false){
16721                 this.abort();
16722             }
16723
16724             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
16725
16726             var script = document.createElement("script");
16727             script.setAttribute("src", url);
16728             script.setAttribute("type", "text/javascript");
16729             script.setAttribute("id", trans.scriptId);
16730             this.head.appendChild(script);
16731
16732             this.trans = trans;
16733         }else{
16734             callback.call(scope||this, null, arg, false);
16735         }
16736     },
16737
16738     // private
16739     isLoading : function(){
16740         return this.trans ? true : false;
16741     },
16742
16743     /**
16744      * Abort the current server request.
16745      */
16746     abort : function(){
16747         if(this.isLoading()){
16748             this.destroyTrans(this.trans);
16749         }
16750     },
16751
16752     // private
16753     destroyTrans : function(trans, isLoaded){
16754         this.head.removeChild(document.getElementById(trans.scriptId));
16755         clearTimeout(trans.timeoutId);
16756         if(isLoaded){
16757             window[trans.cb] = undefined;
16758             try{
16759                 delete window[trans.cb];
16760             }catch(e){}
16761         }else{
16762             // if hasn't been loaded, wait for load to remove it to prevent script error
16763             window[trans.cb] = function(){
16764                 window[trans.cb] = undefined;
16765                 try{
16766                     delete window[trans.cb];
16767                 }catch(e){}
16768             };
16769         }
16770     },
16771
16772     // private
16773     handleResponse : function(o, trans){
16774         this.trans = false;
16775         this.destroyTrans(trans, true);
16776         var result;
16777         try {
16778             result = trans.reader.readRecords(o);
16779         }catch(e){
16780             this.fireEvent("loadexception", this, o, trans.arg, e);
16781             trans.callback.call(trans.scope||window, null, trans.arg, false);
16782             return;
16783         }
16784         this.fireEvent("load", this, o, trans.arg);
16785         trans.callback.call(trans.scope||window, result, trans.arg, true);
16786     },
16787
16788     // private
16789     handleFailure : function(trans){
16790         this.trans = false;
16791         this.destroyTrans(trans, false);
16792         this.fireEvent("loadexception", this, null, trans.arg);
16793         trans.callback.call(trans.scope||window, null, trans.arg, false);
16794     }
16795 });/*
16796  * Based on:
16797  * Ext JS Library 1.1.1
16798  * Copyright(c) 2006-2007, Ext JS, LLC.
16799  *
16800  * Originally Released Under LGPL - original licence link has changed is not relivant.
16801  *
16802  * Fork - LGPL
16803  * <script type="text/javascript">
16804  */
16805
16806 /**
16807  * @class Roo.data.JsonReader
16808  * @extends Roo.data.DataReader
16809  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
16810  * based on mappings in a provided Roo.data.Record constructor.
16811  * 
16812  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
16813  * in the reply previously. 
16814  * 
16815  * <p>
16816  * Example code:
16817  * <pre><code>
16818 var RecordDef = Roo.data.Record.create([
16819     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
16820     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
16821 ]);
16822 var myReader = new Roo.data.JsonReader({
16823     totalProperty: "results",    // The property which contains the total dataset size (optional)
16824     root: "rows",                // The property which contains an Array of row objects
16825     id: "id"                     // The property within each row object that provides an ID for the record (optional)
16826 }, RecordDef);
16827 </code></pre>
16828  * <p>
16829  * This would consume a JSON file like this:
16830  * <pre><code>
16831 { 'results': 2, 'rows': [
16832     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
16833     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
16834 }
16835 </code></pre>
16836  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
16837  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
16838  * paged from the remote server.
16839  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
16840  * @cfg {String} root name of the property which contains the Array of row objects.
16841  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
16842  * @cfg {Array} fields Array of field definition objects
16843  * @constructor
16844  * Create a new JsonReader
16845  * @param {Object} meta Metadata configuration options
16846  * @param {Object} recordType Either an Array of field definition objects,
16847  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
16848  */
16849 Roo.data.JsonReader = function(meta, recordType){
16850     
16851     meta = meta || {};
16852     // set some defaults:
16853     Roo.applyIf(meta, {
16854         totalProperty: 'total',
16855         successProperty : 'success',
16856         root : 'data',
16857         id : 'id'
16858     });
16859     
16860     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
16861 };
16862 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
16863     
16864     readerType : 'Json',
16865     
16866     /**
16867      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
16868      * Used by Store query builder to append _requestMeta to params.
16869      * 
16870      */
16871     metaFromRemote : false,
16872     /**
16873      * This method is only used by a DataProxy which has retrieved data from a remote server.
16874      * @param {Object} response The XHR object which contains the JSON data in its responseText.
16875      * @return {Object} data A data block which is used by an Roo.data.Store object as
16876      * a cache of Roo.data.Records.
16877      */
16878     read : function(response){
16879         var json = response.responseText;
16880        
16881         var o = /* eval:var:o */ eval("("+json+")");
16882         if(!o) {
16883             throw {message: "JsonReader.read: Json object not found"};
16884         }
16885         
16886         if(o.metaData){
16887             
16888             delete this.ef;
16889             this.metaFromRemote = true;
16890             this.meta = o.metaData;
16891             this.recordType = Roo.data.Record.create(o.metaData.fields);
16892             this.onMetaChange(this.meta, this.recordType, o);
16893         }
16894         return this.readRecords(o);
16895     },
16896
16897     // private function a store will implement
16898     onMetaChange : function(meta, recordType, o){
16899
16900     },
16901
16902     /**
16903          * @ignore
16904          */
16905     simpleAccess: function(obj, subsc) {
16906         return obj[subsc];
16907     },
16908
16909         /**
16910          * @ignore
16911          */
16912     getJsonAccessor: function(){
16913         var re = /[\[\.]/;
16914         return function(expr) {
16915             try {
16916                 return(re.test(expr))
16917                     ? new Function("obj", "return obj." + expr)
16918                     : function(obj){
16919                         return obj[expr];
16920                     };
16921             } catch(e){}
16922             return Roo.emptyFn;
16923         };
16924     }(),
16925
16926     /**
16927      * Create a data block containing Roo.data.Records from an XML document.
16928      * @param {Object} o An object which contains an Array of row objects in the property specified
16929      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
16930      * which contains the total size of the dataset.
16931      * @return {Object} data A data block which is used by an Roo.data.Store object as
16932      * a cache of Roo.data.Records.
16933      */
16934     readRecords : function(o){
16935         /**
16936          * After any data loads, the raw JSON data is available for further custom processing.
16937          * @type Object
16938          */
16939         this.o = o;
16940         var s = this.meta, Record = this.recordType,
16941             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
16942
16943 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
16944         if (!this.ef) {
16945             if(s.totalProperty) {
16946                     this.getTotal = this.getJsonAccessor(s.totalProperty);
16947                 }
16948                 if(s.successProperty) {
16949                     this.getSuccess = this.getJsonAccessor(s.successProperty);
16950                 }
16951                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
16952                 if (s.id) {
16953                         var g = this.getJsonAccessor(s.id);
16954                         this.getId = function(rec) {
16955                                 var r = g(rec);  
16956                                 return (r === undefined || r === "") ? null : r;
16957                         };
16958                 } else {
16959                         this.getId = function(){return null;};
16960                 }
16961             this.ef = [];
16962             for(var jj = 0; jj < fl; jj++){
16963                 f = fi[jj];
16964                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
16965                 this.ef[jj] = this.getJsonAccessor(map);
16966             }
16967         }
16968
16969         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
16970         if(s.totalProperty){
16971             var vt = parseInt(this.getTotal(o), 10);
16972             if(!isNaN(vt)){
16973                 totalRecords = vt;
16974             }
16975         }
16976         if(s.successProperty){
16977             var vs = this.getSuccess(o);
16978             if(vs === false || vs === 'false'){
16979                 success = false;
16980             }
16981         }
16982         var records = [];
16983         for(var i = 0; i < c; i++){
16984             var n = root[i];
16985             var values = {};
16986             var id = this.getId(n);
16987             for(var j = 0; j < fl; j++){
16988                 f = fi[j];
16989                                 var v = this.ef[j](n);
16990                                 if (!f.convert) {
16991                                         Roo.log('missing convert for ' + f.name);
16992                                         Roo.log(f);
16993                                         continue;
16994                                 }
16995                                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
16996             }
16997                         if (!Record) {
16998                                 return {
16999                                         raw : { errorMsg : "JSON Reader Error: fields or metadata not available to create Record" },
17000                                         success : false,
17001                                         records : [],
17002                                         totalRecords : 0
17003                                 };
17004                         }
17005             var record = new Record(values, id);
17006             record.json = n;
17007             records[i] = record;
17008         }
17009         return {
17010             raw : o,
17011             success : success,
17012             records : records,
17013             totalRecords : totalRecords
17014         };
17015     },
17016     // used when loading children.. @see loadDataFromChildren
17017     toLoadData: function(rec)
17018     {
17019         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
17020         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
17021         return { data : data, total : data.length };
17022         
17023     }
17024 });/*
17025  * Based on:
17026  * Ext JS Library 1.1.1
17027  * Copyright(c) 2006-2007, Ext JS, LLC.
17028  *
17029  * Originally Released Under LGPL - original licence link has changed is not relivant.
17030  *
17031  * Fork - LGPL
17032  * <script type="text/javascript">
17033  */
17034
17035 /**
17036  * @class Roo.data.ArrayReader
17037  * @extends Roo.data.DataReader
17038  * Data reader class to create an Array of Roo.data.Record objects from an Array.
17039  * Each element of that Array represents a row of data fields. The
17040  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
17041  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
17042  * <p>
17043  * Example code:.
17044  * <pre><code>
17045 var RecordDef = Roo.data.Record.create([
17046     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
17047     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
17048 ]);
17049 var myReader = new Roo.data.ArrayReader({
17050     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
17051 }, RecordDef);
17052 </code></pre>
17053  * <p>
17054  * This would consume an Array like this:
17055  * <pre><code>
17056 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
17057   </code></pre>
17058  
17059  * @constructor
17060  * Create a new JsonReader
17061  * @param {Object} meta Metadata configuration options.
17062  * @param {Object|Array} recordType Either an Array of field definition objects
17063  * 
17064  * @cfg {Array} fields Array of field definition objects
17065  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
17066  * as specified to {@link Roo.data.Record#create},
17067  * or an {@link Roo.data.Record} object
17068  *
17069  * 
17070  * created using {@link Roo.data.Record#create}.
17071  */
17072 Roo.data.ArrayReader = function(meta, recordType)
17073 {    
17074     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
17075 };
17076
17077 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
17078     
17079       /**
17080      * Create a data block containing Roo.data.Records from an XML document.
17081      * @param {Object} o An Array of row objects which represents the dataset.
17082      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
17083      * a cache of Roo.data.Records.
17084      */
17085     readRecords : function(o)
17086     {
17087         var sid = this.meta ? this.meta.id : null;
17088         var recordType = this.recordType, fields = recordType.prototype.fields;
17089         var records = [];
17090         var root = o;
17091         for(var i = 0; i < root.length; i++){
17092             var n = root[i];
17093             var values = {};
17094             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
17095             for(var j = 0, jlen = fields.length; j < jlen; j++){
17096                 var f = fields.items[j];
17097                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
17098                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
17099                 v = f.convert(v);
17100                 values[f.name] = v;
17101             }
17102             var record = new recordType(values, id);
17103             record.json = n;
17104             records[records.length] = record;
17105         }
17106         return {
17107             records : records,
17108             totalRecords : records.length
17109         };
17110     },
17111     // used when loading children.. @see loadDataFromChildren
17112     toLoadData: function(rec)
17113     {
17114         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
17115         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
17116         
17117     }
17118     
17119     
17120 });/*
17121  * - LGPL
17122  * * 
17123  */
17124
17125 /**
17126  * @class Roo.bootstrap.form.ComboBox
17127  * @extends Roo.bootstrap.form.TriggerField
17128  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
17129  * @cfg {Boolean} append (true|false) default false
17130  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
17131  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
17132  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
17133  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
17134  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
17135  * @cfg {Boolean} animate default true
17136  * @cfg {Boolean} emptyResultText only for touch device
17137  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
17138  * @cfg {String} emptyTitle default ''
17139  * @cfg {Number} width fixed with? experimental
17140  * @constructor
17141  * Create a new ComboBox.
17142  * @param {Object} config Configuration options
17143  */
17144 Roo.bootstrap.form.ComboBox = function(config){
17145     Roo.bootstrap.form.ComboBox.superclass.constructor.call(this, config);
17146     this.addEvents({
17147         /**
17148          * @event expand
17149          * Fires when the dropdown list is expanded
17150         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17151         */
17152         'expand' : true,
17153         /**
17154          * @event collapse
17155          * Fires when the dropdown list is collapsed
17156         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17157         */
17158         'collapse' : true,
17159         /**
17160          * @event beforeselect
17161          * Fires before a list item is selected. Return false to cancel the selection.
17162         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17163         * @param {Roo.data.Record} record The data record returned from the underlying store
17164         * @param {Number} index The index of the selected item in the dropdown list
17165         */
17166         'beforeselect' : true,
17167         /**
17168          * @event select
17169          * Fires when a list item is selected
17170         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17171         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
17172         * @param {Number} index The index of the selected item in the dropdown list
17173         */
17174         'select' : true,
17175         /**
17176          * @event beforequery
17177          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
17178          * The event object passed has these properties:
17179         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17180         * @param {String} query The query
17181         * @param {Boolean} forceAll true to force "all" query
17182         * @param {Boolean} cancel true to cancel the query
17183         * @param {Object} e The query event object
17184         */
17185         'beforequery': true,
17186          /**
17187          * @event add
17188          * Fires when the 'add' icon is pressed (add a listener to enable add button)
17189         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17190         */
17191         'add' : true,
17192         /**
17193          * @event edit
17194          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
17195         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17196         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
17197         */
17198         'edit' : true,
17199         /**
17200          * @event remove
17201          * Fires when the remove value from the combobox array
17202         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17203         */
17204         'remove' : true,
17205         /**
17206          * @event afterremove
17207          * Fires when the remove value from the combobox array
17208         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17209         */
17210         'afterremove' : true,
17211         /**
17212          * @event specialfilter
17213          * Fires when specialfilter
17214             * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17215             */
17216         'specialfilter' : true,
17217         /**
17218          * @event tick
17219          * Fires when tick the element
17220             * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17221             */
17222         'tick' : true,
17223         /**
17224          * @event touchviewdisplay
17225          * Fires when touch view require special display (default is using displayField)
17226             * @param {Roo.bootstrap.form.ComboBox} combo This combo box
17227             * @param {Object} cfg set html .
17228             */
17229         'touchviewdisplay' : true
17230         
17231     });
17232     
17233     this.item = [];
17234     this.tickItems = [];
17235     
17236     this.selectedIndex = -1;
17237     if(this.mode == 'local'){
17238         if(config.queryDelay === undefined){
17239             this.queryDelay = 10;
17240         }
17241         if(config.minChars === undefined){
17242             this.minChars = 0;
17243         }
17244     }
17245 };
17246
17247 Roo.extend(Roo.bootstrap.form.ComboBox, Roo.bootstrap.form.TriggerField, {
17248      
17249     /**
17250      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
17251      * rendering into an Roo.Editor, defaults to false)
17252      */
17253     /**
17254      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
17255      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
17256      */
17257     /**
17258      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
17259      */
17260     /**
17261      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
17262      * the dropdown list (defaults to undefined, with no header element)
17263      */
17264
17265      /**
17266      * @cfg {String/Roo.Template} tpl The template to use to render the output default is  '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' 
17267      */
17268      
17269      /**
17270      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
17271      */
17272     listWidth: undefined,
17273     /**
17274      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
17275      * mode = 'remote' or 'text' if mode = 'local')
17276      */
17277     displayField: undefined,
17278     
17279     /**
17280      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
17281      * mode = 'remote' or 'value' if mode = 'local'). 
17282      * Note: use of a valueField requires the user make a selection
17283      * in order for a value to be mapped.
17284      */
17285     valueField: undefined,
17286     /**
17287      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
17288      */
17289     modalTitle : '',
17290     
17291     /**
17292      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
17293      * field's data value (defaults to the underlying DOM element's name)
17294      */
17295     hiddenName: undefined,
17296     /**
17297      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
17298      */
17299     listClass: '',
17300     /**
17301      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
17302      */
17303     selectedClass: 'active',
17304     
17305     /**
17306      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
17307      */
17308     shadow:'sides',
17309     /**
17310      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
17311      * anchor positions (defaults to 'tl-bl')
17312      */
17313     listAlign: 'tl-bl?',
17314     /**
17315      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
17316      */
17317     // maxHeight: 300, // not used (change maxHeight in CSS. target the list using listClass)
17318     /**
17319      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
17320      * query specified by the allQuery config option (defaults to 'query')
17321      */
17322     triggerAction: 'query',
17323     /**
17324      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
17325      * (defaults to 4, does not apply if editable = false)
17326      */
17327     minChars : 4,
17328     /**
17329      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
17330      * delay (typeAheadDelay) if it matches a known value (defaults to false)
17331      */
17332     typeAhead: false,
17333     /**
17334      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
17335      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
17336      */
17337     queryDelay: 500,
17338     /**
17339      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
17340      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
17341      */
17342     pageSize: 0,
17343     /**
17344      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
17345      * when editable = true (defaults to false)
17346      */
17347     selectOnFocus:false,
17348     /**
17349      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
17350      */
17351     queryParam: 'query',
17352     /**
17353      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
17354      * when mode = 'remote' (defaults to 'Loading...')
17355      */
17356     loadingText: 'Loading...',
17357     /**
17358      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
17359      */
17360     resizable: false,
17361     /**
17362      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
17363      */
17364     handleHeight : 8,
17365     /**
17366      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
17367      * traditional select (defaults to true)
17368      */
17369     editable: true,
17370     /**
17371      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
17372      */
17373     allQuery: '',
17374     /**
17375      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
17376      */
17377     mode: 'remote',
17378     /**
17379      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
17380      * listWidth has a higher value)
17381      */
17382     minListWidth : 70,
17383     /**
17384      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
17385      * allow the user to set arbitrary text into the field (defaults to false)
17386      */
17387     forceSelection:false,
17388     /**
17389      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
17390      * if typeAhead = true (defaults to 250)
17391      */
17392     typeAheadDelay : 250,
17393     /**
17394      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
17395      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
17396      */
17397     valueNotFoundText : undefined,
17398     /**
17399      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
17400      */
17401     blockFocus : false,
17402     
17403     /**
17404      * @cfg {Boolean} disableClear Disable showing of clear button.
17405      */
17406     disableClear : false,
17407     /**
17408      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
17409      */
17410     alwaysQuery : false,
17411     
17412     /**
17413      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
17414      */
17415     multiple : false,
17416     
17417     /**
17418      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
17419      */
17420     invalidClass : "has-warning",
17421     
17422     /**
17423      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
17424      */
17425     validClass : "has-success",
17426     
17427     /**
17428      * @cfg {Boolean} specialFilter (true|false) special filter default false
17429      */
17430     specialFilter : false,
17431     
17432     /**
17433      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
17434      */
17435     mobileTouchView : true,
17436     
17437     /**
17438      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
17439      */
17440     useNativeIOS : false,
17441     
17442     /**
17443      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
17444      */
17445     mobile_restrict_height : false,
17446     
17447     ios_options : false,
17448     
17449     //private
17450     addicon : false,
17451     editicon: false,
17452     
17453     page: 0,
17454     hasQuery: false,
17455     append: false,
17456     loadNext: false,
17457     autoFocus : true,
17458     tickable : false,
17459     btnPosition : 'right',
17460     triggerList : true,
17461     showToggleBtn : true,
17462     animate : true,
17463     emptyResultText: 'Empty',
17464     triggerText : 'Select',
17465     emptyTitle : '',
17466     width : false,
17467     
17468     // element that contains real text value.. (when hidden is used..)
17469     
17470     getAutoCreate : function()
17471     {   
17472         var cfg = false;
17473         //render
17474         /*
17475          * Render classic select for iso
17476          */
17477         
17478         if(Roo.isIOS && this.useNativeIOS){
17479             cfg = this.getAutoCreateNativeIOS();
17480             return cfg;
17481         }
17482         
17483         /*
17484          * Touch Devices
17485          */
17486         
17487         if(Roo.isTouch && this.mobileTouchView){
17488             cfg = this.getAutoCreateTouchView();
17489             return cfg;;
17490         }
17491         
17492         /*
17493          *  Normal ComboBox
17494          */
17495         if(!this.tickable){
17496             cfg = Roo.bootstrap.form.ComboBox.superclass.getAutoCreate.call(this);
17497             return cfg;
17498         }
17499         
17500         /*
17501          *  ComboBox with tickable selections
17502          */
17503              
17504         var align = this.labelAlign || this.parentLabelAlign();
17505         
17506         cfg = {
17507             cls : 'form-group roo-combobox-tickable' //input-group
17508         };
17509         
17510         var btn_text_select = '';
17511         var btn_text_done = '';
17512         var btn_text_cancel = '';
17513         
17514         if (this.btn_text_show) {
17515             btn_text_select = 'Select';
17516             btn_text_done = 'Done';
17517             btn_text_cancel = 'Cancel'; 
17518         }
17519         
17520         var buttons = {
17521             tag : 'div',
17522             cls : 'tickable-buttons',
17523             cn : [
17524                 {
17525                     tag : 'button',
17526                     type : 'button',
17527                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
17528                     //html : this.triggerText
17529                     html: btn_text_select
17530                 },
17531                 {
17532                     tag : 'button',
17533                     type : 'button',
17534                     name : 'ok',
17535                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
17536                     //html : 'Done'
17537                     html: btn_text_done
17538                 },
17539                 {
17540                     tag : 'button',
17541                     type : 'button',
17542                     name : 'cancel',
17543                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
17544                     //html : 'Cancel'
17545                     html: btn_text_cancel
17546                 }
17547             ]
17548         };
17549         
17550         if(this.editable){
17551             buttons.cn.unshift({
17552                 tag: 'input',
17553                 cls: 'roo-select2-search-field-input'
17554             });
17555         }
17556         
17557         var _this = this;
17558         
17559         Roo.each(buttons.cn, function(c){
17560             if (_this.size) {
17561                 c.cls += ' btn-' + _this.size;
17562             }
17563
17564             if (_this.disabled) {
17565                 c.disabled = true;
17566             }
17567         });
17568         
17569         var box = {
17570             tag: 'div',
17571             style : 'display: contents',
17572             cn: [
17573                 {
17574                     tag: 'input',
17575                     type : 'hidden',
17576                     cls: 'form-hidden-field'
17577                 },
17578                 {
17579                     tag: 'ul',
17580                     cls: 'roo-select2-choices',
17581                     cn:[
17582                         {
17583                             tag: 'li',
17584                             cls: 'roo-select2-search-field',
17585                             cn: [
17586                                 buttons
17587                             ]
17588                         }
17589                     ]
17590                 }
17591             ]
17592         };
17593         
17594         var combobox = {
17595             cls: 'roo-select2-container input-group roo-select2-container-multi',
17596             cn: [
17597                 
17598                 box
17599 //                {
17600 //                    tag: 'ul',
17601 //                    cls: 'typeahead typeahead-long dropdown-menu',
17602 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
17603 //                }
17604             ]
17605         };
17606         
17607         if(this.hasFeedback && !this.allowBlank){
17608             
17609             var feedback = {
17610                 tag: 'span',
17611                 cls: 'glyphicon form-control-feedback'
17612             };
17613
17614             combobox.cn.push(feedback);
17615         }
17616         
17617         
17618         
17619         var indicator = {
17620             tag : 'i',
17621             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
17622             tooltip : 'This field is required'
17623         };
17624          
17625         if (this.allowBlank) {
17626             indicator = {
17627                 tag : 'i',
17628                 style : 'display:none'
17629             };
17630         } 
17631         if (align ==='left' && this.fieldLabel.length) {
17632             
17633             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
17634             
17635             cfg.cn = [
17636                 indicator,
17637                 {
17638                     tag: 'label',
17639                     'for' :  id,
17640                     cls : 'control-label col-form-label',
17641                     html : this.fieldLabel
17642
17643                 },
17644                 {
17645                     cls : "", 
17646                     cn: [
17647                         combobox
17648                     ]
17649                 }
17650
17651             ];
17652             
17653             var labelCfg = cfg.cn[1];
17654             var contentCfg = cfg.cn[2];
17655             
17656
17657             if(this.indicatorpos == 'right'){
17658                 
17659                 cfg.cn = [
17660                     {
17661                         tag: 'label',
17662                         'for' :  id,
17663                         cls : 'control-label col-form-label',
17664                         cn : [
17665                             {
17666                                 tag : 'span',
17667                                 html : this.fieldLabel
17668                             },
17669                             indicator
17670                         ]
17671                     },
17672                     {
17673                         cls : "",
17674                         cn: [
17675                             combobox
17676                         ]
17677                     }
17678
17679                 ];
17680                 
17681                 
17682                 
17683                 labelCfg = cfg.cn[0];
17684                 contentCfg = cfg.cn[1];
17685             
17686             }
17687             
17688             if(this.labelWidth > 12){
17689                 labelCfg.style = "width: " + this.labelWidth + 'px';
17690             }
17691             if(this.width * 1 > 0){
17692                 contentCfg.style = "width: " + this.width + 'px';
17693             }
17694             if(this.labelWidth < 13 && this.labelmd == 0){
17695                 this.labelmd = this.labelWidth;
17696             }
17697             
17698             if(this.labellg > 0){
17699                 labelCfg.cls += ' col-lg-' + this.labellg;
17700                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
17701             }
17702             
17703             if(this.labelmd > 0){
17704                 labelCfg.cls += ' col-md-' + this.labelmd;
17705                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
17706             }
17707             
17708             if(this.labelsm > 0){
17709                 labelCfg.cls += ' col-sm-' + this.labelsm;
17710                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
17711             }
17712             
17713             if(this.labelxs > 0){
17714                 labelCfg.cls += ' col-xs-' + this.labelxs;
17715                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
17716             }
17717                 
17718                 
17719         } else if ( this.fieldLabel.length) {
17720 //                Roo.log(" label");
17721                  cfg.cn = [
17722                    indicator,
17723                     {
17724                         tag: 'label',
17725                         //cls : 'input-group-addon',
17726                         html : this.fieldLabel
17727                     },
17728                     combobox
17729                 ];
17730                 
17731                 if(this.indicatorpos == 'right'){
17732                     cfg.cn = [
17733                         {
17734                             tag: 'label',
17735                             //cls : 'input-group-addon',
17736                             html : this.fieldLabel
17737                         },
17738                         indicator,
17739                         combobox
17740                     ];
17741                     
17742                 }
17743
17744         } else {
17745             
17746 //                Roo.log(" no label && no align");
17747                 cfg = combobox
17748                      
17749                 
17750         }
17751          
17752         var settings=this;
17753         ['xs','sm','md','lg'].map(function(size){
17754             if (settings[size]) {
17755                 cfg.cls += ' col-' + size + '-' + settings[size];
17756             }
17757         });
17758         
17759         return cfg;
17760         
17761     },
17762     
17763     _initEventsCalled : false,
17764     
17765     // private
17766     initEvents: function()
17767     {   
17768         if (this._initEventsCalled) { // as we call render... prevent looping...
17769             return;
17770         }
17771         this._initEventsCalled = true;
17772         
17773         if (!this.store) {
17774             throw "can not find store for combo";
17775         }
17776         
17777         this.indicator = this.indicatorEl();
17778         
17779         this.store = Roo.factory(this.store, Roo.data);
17780         this.store.parent = this;
17781         
17782         // if we are building from html. then this element is so complex, that we can not really
17783         // use the rendered HTML.
17784         // so we have to trash and replace the previous code.
17785         if (Roo.XComponent.build_from_html) {
17786             // remove this element....
17787             var e = this.el.dom, k=0;
17788             while (e ) { e = e.previousSibling;  ++k;}
17789
17790             this.el.remove();
17791             
17792             this.el=false;
17793             this.rendered = false;
17794             
17795             this.render(this.parent().getChildContainer(true), k);
17796         }
17797         
17798         if(Roo.isIOS && this.useNativeIOS){
17799             this.initIOSView();
17800             return;
17801         }
17802         
17803         /*
17804          * Touch Devices
17805          */
17806         
17807         if(Roo.isTouch && this.mobileTouchView){
17808             this.initTouchView();
17809             return;
17810         }
17811         
17812         if(this.tickable){
17813             this.initTickableEvents();
17814             return;
17815         }
17816         
17817         Roo.bootstrap.form.ComboBox.superclass.initEvents.call(this);
17818         
17819         if(this.hiddenName){
17820             
17821             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
17822             
17823             this.hiddenField.dom.value =
17824                 this.hiddenValue !== undefined ? this.hiddenValue :
17825                 this.value !== undefined ? this.value : '';
17826
17827             // prevent input submission
17828             this.el.dom.removeAttribute('name');
17829             this.hiddenField.dom.setAttribute('name', this.hiddenName);
17830              
17831              
17832         }
17833         //if(Roo.isGecko){
17834         //    this.el.dom.setAttribute('autocomplete', 'off');
17835         //}
17836         
17837         var cls = 'x-combo-list';
17838         
17839         //this.list = new Roo.Layer({
17840         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
17841         //});
17842
17843         this.list.addClass(this.listClass);
17844         
17845         var _this = this;
17846         
17847         (function(){
17848             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
17849             _this.list.setWidth(lw);
17850         }).defer(100);
17851         
17852         this.list.on('mouseover', this.onViewOver, this);
17853         this.list.on('mousemove', this.onViewMove, this);
17854         this.list.on('scroll', this.onViewScroll, this);
17855         
17856         /*
17857         this.list.swallowEvent('mousewheel');
17858         this.assetHeight = 0;
17859
17860         if(this.title){
17861             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
17862             this.assetHeight += this.header.getHeight();
17863         }
17864
17865         this.innerList = this.list.createChild({cls:cls+'-inner'});
17866         this.innerList.on('mouseover', this.onViewOver, this);
17867         this.innerList.on('mousemove', this.onViewMove, this);
17868         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
17869         
17870         if(this.allowBlank && !this.pageSize && !this.disableClear){
17871             this.footer = this.list.createChild({cls:cls+'-ft'});
17872             this.pageTb = new Roo.Toolbar(this.footer);
17873            
17874         }
17875         if(this.pageSize){
17876             this.footer = this.list.createChild({cls:cls+'-ft'});
17877             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
17878                     {pageSize: this.pageSize});
17879             
17880         }
17881         
17882         if (this.pageTb && this.allowBlank && !this.disableClear) {
17883             var _this = this;
17884             this.pageTb.add(new Roo.Toolbar.Fill(), {
17885                 cls: 'x-btn-icon x-btn-clear',
17886                 text: '&#160;',
17887                 handler: function()
17888                 {
17889                     _this.collapse();
17890                     _this.clearValue();
17891                     _this.onSelect(false, -1);
17892                 }
17893             });
17894         }
17895         if (this.footer) {
17896             this.assetHeight += this.footer.getHeight();
17897         }
17898         */
17899             
17900         if(!this.tpl){
17901             this.tpl = Roo.bootstrap.version == 4 ?
17902                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
17903                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
17904         }
17905
17906         this.view = new Roo.View(this.list, this.tpl, {
17907             singleSelect:true, store: this.store, selectedClass: this.selectedClass
17908         });
17909         //this.view.wrapEl.setDisplayed(false);
17910         this.view.on('click', this.onViewClick, this);
17911         
17912         
17913         this.store.on('beforeload', this.onBeforeLoad, this);
17914         this.store.on('load', this.onLoad, this);
17915         this.store.on('loadexception', this.onLoadException, this);
17916         /*
17917         if(this.resizable){
17918             this.resizer = new Roo.Resizable(this.list,  {
17919                pinned:true, handles:'se'
17920             });
17921             this.resizer.on('resize', function(r, w, h){
17922                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
17923                 this.listWidth = w;
17924                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
17925                 this.restrictHeight();
17926             }, this);
17927             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
17928         }
17929         */
17930         if(!this.editable){
17931             this.editable = true;
17932             this.setEditable(false);
17933         }
17934         
17935         /*
17936         
17937         if (typeof(this.events.add.listeners) != 'undefined') {
17938             
17939             this.addicon = this.wrap.createChild(
17940                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
17941        
17942             this.addicon.on('click', function(e) {
17943                 this.fireEvent('add', this);
17944             }, this);
17945         }
17946         if (typeof(this.events.edit.listeners) != 'undefined') {
17947             
17948             this.editicon = this.wrap.createChild(
17949                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
17950             if (this.addicon) {
17951                 this.editicon.setStyle('margin-left', '40px');
17952             }
17953             this.editicon.on('click', function(e) {
17954                 
17955                 // we fire even  if inothing is selected..
17956                 this.fireEvent('edit', this, this.lastData );
17957                 
17958             }, this);
17959         }
17960         */
17961         
17962         this.keyNav = new Roo.KeyNav(this.inputEl(), {
17963             "up" : function(e){
17964                 this.inKeyMode = true;
17965                 this.selectPrev();
17966             },
17967
17968             "down" : function(e){
17969                 if(!this.isExpanded()){
17970                     this.onTriggerClick();
17971                 }else{
17972                     this.inKeyMode = true;
17973                     this.selectNext();
17974                 }
17975             },
17976
17977             "enter" : function(e){
17978 //                this.onViewClick();
17979                 //return true;
17980                 this.collapse();
17981                 
17982                 if(this.fireEvent("specialkey", this, e)){
17983                     this.onViewClick(false);
17984                 }
17985                 
17986                 return true;
17987             },
17988
17989             "esc" : function(e){
17990                 this.collapse();
17991             },
17992
17993             "tab" : function(e){
17994                 this.collapse();
17995                 
17996                 if(this.fireEvent("specialkey", this, e)){
17997                     this.onViewClick(false);
17998                 }
17999                 
18000                 return true;
18001             },
18002
18003             scope : this,
18004
18005             doRelay : function(foo, bar, hname){
18006                 if(hname == 'down' || this.scope.isExpanded()){
18007                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
18008                 }
18009                 return true;
18010             },
18011
18012             forceKeyDown: true
18013         });
18014         
18015         
18016         this.queryDelay = Math.max(this.queryDelay || 10,
18017                 this.mode == 'local' ? 10 : 250);
18018         
18019         
18020         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
18021         
18022         if(this.typeAhead){
18023             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
18024         }
18025         if(this.editable !== false){
18026             this.inputEl().on("keyup", this.onKeyUp, this);
18027         }
18028         if(this.forceSelection){
18029             this.inputEl().on('blur', this.doForce, this);
18030         }
18031         
18032         if(this.multiple){
18033             this.choices = this.el.select('ul.roo-select2-choices', true).first();
18034             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
18035         }
18036     },
18037     
18038     initTickableEvents: function()
18039     {   
18040         this.createList();
18041         
18042         if(this.hiddenName){
18043             
18044             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
18045             
18046             this.hiddenField.dom.value =
18047                 this.hiddenValue !== undefined ? this.hiddenValue :
18048                 this.value !== undefined ? this.value : '';
18049
18050             // prevent input submission
18051             this.el.dom.removeAttribute('name');
18052             this.hiddenField.dom.setAttribute('name', this.hiddenName);
18053              
18054              
18055         }
18056         
18057 //        this.list = this.el.select('ul.dropdown-menu',true).first();
18058         
18059         this.choices = this.el.select('ul.roo-select2-choices', true).first();
18060         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
18061         if(this.triggerList){
18062             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
18063         }
18064          
18065         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
18066         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
18067         
18068         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
18069         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
18070         
18071         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
18072         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
18073         
18074         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
18075         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
18076         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
18077         
18078         this.okBtn.hide();
18079         this.cancelBtn.hide();
18080         
18081         var _this = this;
18082         
18083         (function(){
18084             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
18085             _this.list.setWidth(lw);
18086         }).defer(100);
18087         
18088         this.list.on('mouseover', this.onViewOver, this);
18089         this.list.on('mousemove', this.onViewMove, this);
18090         
18091         this.list.on('scroll', this.onViewScroll, this);
18092         
18093         if(!this.tpl){
18094             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
18095                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
18096         }
18097
18098         this.view = new Roo.View(this.list, this.tpl, {
18099             singleSelect:true,
18100             tickable:true,
18101             parent:this,
18102             store: this.store,
18103             selectedClass: this.selectedClass
18104         });
18105         
18106         //this.view.wrapEl.setDisplayed(false);
18107         this.view.on('click', this.onViewClick, this);
18108         
18109         
18110         
18111         this.store.on('beforeload', this.onBeforeLoad, this);
18112         this.store.on('load', this.onLoad, this);
18113         this.store.on('loadexception', this.onLoadException, this);
18114         
18115         if(this.editable){
18116             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
18117                 "up" : function(e){
18118                     this.inKeyMode = true;
18119                     this.selectPrev();
18120                 },
18121
18122                 "down" : function(e){
18123                     this.inKeyMode = true;
18124                     this.selectNext();
18125                 },
18126
18127                 "enter" : function(e){
18128                     if(this.fireEvent("specialkey", this, e)){
18129                         this.onViewClick(false);
18130                     }
18131                     
18132                     return true;
18133                 },
18134
18135                 "esc" : function(e){
18136                     this.onTickableFooterButtonClick(e, false, false);
18137                 },
18138
18139                 "tab" : function(e){
18140                     this.fireEvent("specialkey", this, e);
18141                     
18142                     this.onTickableFooterButtonClick(e, false, false);
18143                     
18144                     return true;
18145                 },
18146
18147                 scope : this,
18148
18149                 doRelay : function(e, fn, key){
18150                     if(this.scope.isExpanded()){
18151                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
18152                     }
18153                     return true;
18154                 },
18155
18156                 forceKeyDown: true
18157             });
18158         }
18159         
18160         this.queryDelay = Math.max(this.queryDelay || 10,
18161                 this.mode == 'local' ? 10 : 250);
18162         
18163         
18164         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
18165         
18166         if(this.typeAhead){
18167             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
18168         }
18169         
18170         if(this.editable !== false){
18171             this.tickableInputEl().on("keyup", this.onKeyUp, this);
18172         }
18173         
18174         this.indicator = this.indicatorEl();
18175         
18176         if(this.indicator){
18177             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
18178             this.indicator.hide();
18179         }
18180         
18181     },
18182
18183     onDestroy : function(){
18184         if(this.view){
18185             this.view.setStore(null);
18186             this.view.el.removeAllListeners();
18187             this.view.el.remove();
18188             this.view.purgeListeners();
18189         }
18190         if(this.list){
18191             this.list.dom.innerHTML  = '';
18192         }
18193         
18194         if(this.store){
18195             this.store.un('beforeload', this.onBeforeLoad, this);
18196             this.store.un('load', this.onLoad, this);
18197             this.store.un('loadexception', this.onLoadException, this);
18198         }
18199         Roo.bootstrap.form.ComboBox.superclass.onDestroy.call(this);
18200     },
18201
18202     // private
18203     fireKey : function(e){
18204         if(e.isNavKeyPress() && !this.list.isVisible()){
18205             this.fireEvent("specialkey", this, e);
18206         }
18207     },
18208
18209     // private
18210     onResize: function(w, h)
18211     {
18212         
18213         
18214 //        Roo.bootstrap.form.ComboBox.superclass.onResize.apply(this, arguments);
18215 //        
18216 //        if(typeof w != 'number'){
18217 //            // we do not handle it!?!?
18218 //            return;
18219 //        }
18220 //        var tw = this.trigger.getWidth();
18221 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
18222 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
18223 //        var x = w - tw;
18224 //        this.inputEl().setWidth( this.adjustWidth('input', x));
18225 //            
18226 //        //this.trigger.setStyle('left', x+'px');
18227 //        
18228 //        if(this.list && this.listWidth === undefined){
18229 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
18230 //            this.list.setWidth(lw);
18231 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
18232 //        }
18233         
18234     
18235         
18236     },
18237
18238     /**
18239      * Allow or prevent the user from directly editing the field text.  If false is passed,
18240      * the user will only be able to select from the items defined in the dropdown list.  This method
18241      * is the runtime equivalent of setting the 'editable' config option at config time.
18242      * @param {Boolean} value True to allow the user to directly edit the field text
18243      */
18244     setEditable : function(value){
18245         if(value == this.editable){
18246             return;
18247         }
18248         this.editable = value;
18249         if(!value){
18250             this.inputEl().dom.setAttribute('readOnly', true);
18251             this.inputEl().on('mousedown', this.onTriggerClick,  this);
18252             this.inputEl().addClass('x-combo-noedit');
18253         }else{
18254             this.inputEl().dom.removeAttribute('readOnly');
18255             this.inputEl().un('mousedown', this.onTriggerClick,  this);
18256             this.inputEl().removeClass('x-combo-noedit');
18257         }
18258     },
18259
18260     // private
18261     
18262     onBeforeLoad : function(combo,opts){
18263         if(!this.hasFocus){
18264             return;
18265         }
18266          if (!opts.add) {
18267             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
18268          }
18269         this.restrictHeight();
18270         this.selectedIndex = -1;
18271     },
18272
18273     // private
18274     onLoad : function(){
18275         
18276         this.hasQuery = false;
18277         
18278         if(!this.hasFocus){
18279             return;
18280         }
18281         
18282         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
18283             this.loading.hide();
18284         }
18285         
18286         if(this.store.getCount() > 0){
18287             
18288             this.expand();
18289             this.restrictHeight();
18290             if(this.lastQuery == this.allQuery){
18291                 if(this.editable && !this.tickable){
18292                     this.inputEl().dom.select();
18293                 }
18294                 
18295                 if(
18296                     !this.selectByValue(this.value, true) &&
18297                     this.autoFocus && 
18298                     (
18299                         !this.store.lastOptions ||
18300                         typeof(this.store.lastOptions.add) == 'undefined' || 
18301                         this.store.lastOptions.add != true
18302                     )
18303                 ){
18304                     this.select(0, true);
18305                 }
18306             }else{
18307                 if(this.autoFocus){
18308                     this.selectNext();
18309                 }
18310                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
18311                     this.taTask.delay(this.typeAheadDelay);
18312                 }
18313             }
18314         }else{
18315             this.onEmptyResults();
18316         }
18317         
18318         //this.el.focus();
18319     },
18320     // private
18321     onLoadException : function()
18322     {
18323         this.hasQuery = false;
18324         
18325         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
18326             this.loading.hide();
18327         }
18328         
18329         if(this.tickable && this.editable){
18330             return;
18331         }
18332         
18333         this.collapse();
18334         // only causes errors at present
18335         //Roo.log(this.store.reader.jsonData);
18336         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
18337             // fixme
18338             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
18339         //}
18340         
18341         
18342     },
18343     // private
18344     onTypeAhead : function(){
18345         if(this.store.getCount() > 0){
18346             var r = this.store.getAt(0);
18347             var newValue = r.data[this.displayField];
18348             var len = newValue.length;
18349             var selStart = this.getRawValue().length;
18350             
18351             if(selStart != len){
18352                 this.setRawValue(newValue);
18353                 this.selectText(selStart, newValue.length);
18354             }
18355         }
18356     },
18357
18358     // private
18359     onSelect : function(record, index){
18360         
18361         if(this.fireEvent('beforeselect', this, record, index) !== false){
18362         
18363             this.setFromData(index > -1 ? record.data : false);
18364             
18365             this.collapse();
18366             this.fireEvent('select', this, record, index);
18367         }
18368     },
18369
18370     /**
18371      * Returns the currently selected field value or empty string if no value is set.
18372      * @return {String} value The selected value
18373      */
18374     getValue : function()
18375     {
18376         if(Roo.isIOS && this.useNativeIOS){
18377             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
18378         }
18379         
18380         if(this.multiple){
18381             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
18382         }
18383         
18384         if(this.valueField){
18385             return typeof this.value != 'undefined' ? this.value : '';
18386         }else{
18387             return Roo.bootstrap.form.ComboBox.superclass.getValue.call(this);
18388         }
18389     },
18390     
18391     getRawValue : function()
18392     {
18393         if(Roo.isIOS && this.useNativeIOS){
18394             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
18395         }
18396         
18397         var v = this.inputEl().getValue();
18398         
18399         return v;
18400     },
18401
18402     /**
18403      * Clears any text/value currently set in the field
18404      */
18405     clearValue : function(){
18406         
18407         if(this.hiddenField){
18408             this.hiddenField.dom.value = '';
18409         }
18410         this.value = '';
18411         this.setRawValue('');
18412         this.lastSelectionText = '';
18413         this.lastData = false;
18414         
18415         var close = this.closeTriggerEl();
18416         
18417         if(close){
18418             close.hide();
18419         }
18420         
18421         this.validate();
18422         
18423     },
18424
18425     /**
18426      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
18427      * will be displayed in the field.  If the value does not match the data value of an existing item,
18428      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
18429      * Otherwise the field will be blank (although the value will still be set).
18430      * @param {String} value The value to match
18431      */
18432     setValue : function(v)
18433     {
18434         if(Roo.isIOS && this.useNativeIOS){
18435             this.setIOSValue(v);
18436             return;
18437         }
18438         
18439         if(this.multiple){
18440             this.syncValue();
18441             return;
18442         }
18443         
18444         var text = v;
18445         if(this.valueField){
18446             var r = this.findRecord(this.valueField, v);
18447             if(r){
18448                 text = r.data[this.displayField];
18449             }else if(this.valueNotFoundText !== undefined){
18450                 text = this.valueNotFoundText;
18451             }
18452         }
18453         this.lastSelectionText = text;
18454         if(this.hiddenField){
18455             this.hiddenField.dom.value = v;
18456         }
18457         Roo.bootstrap.form.ComboBox.superclass.setValue.call(this, text);
18458         this.value = v;
18459         
18460         var close = this.closeTriggerEl();
18461         
18462         if(close){
18463             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
18464         }
18465         
18466         this.validate();
18467     },
18468     /**
18469      * @property {Object} the last set data for the element
18470      */
18471     
18472     lastData : false,
18473     /**
18474      * Sets the value of the field based on a object which is related to the record format for the store.
18475      * @param {Object} value the value to set as. or false on reset?
18476      */
18477     setFromData : function(o){
18478         
18479         if(this.multiple){
18480             this.addItem(o);
18481             return;
18482         }
18483             
18484         var dv = ''; // display value
18485         var vv = ''; // value value..
18486         this.lastData = o;
18487         if (this.displayField) {
18488             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
18489         } else {
18490             // this is an error condition!!!
18491             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
18492         }
18493         
18494         if(this.valueField){
18495             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
18496         }
18497         
18498         var close = this.closeTriggerEl();
18499         
18500         if(close){
18501             if(dv.length || vv * 1 > 0){
18502                 close.show() ;
18503                 this.blockFocus=true;
18504             } else {
18505                 close.hide();
18506             }             
18507         }
18508         
18509         if(this.hiddenField){
18510             this.hiddenField.dom.value = vv;
18511             
18512             this.lastSelectionText = dv;
18513             Roo.bootstrap.form.ComboBox.superclass.setValue.call(this, dv);
18514             this.value = vv;
18515             return;
18516         }
18517         // no hidden field.. - we store the value in 'value', but still display
18518         // display field!!!!
18519         this.lastSelectionText = dv;
18520         Roo.bootstrap.form.ComboBox.superclass.setValue.call(this, dv);
18521         this.value = vv;
18522         
18523         
18524         
18525     },
18526     // private
18527     reset : function(){
18528         // overridden so that last data is reset..
18529         
18530         if(this.multiple){
18531             this.clearItem();
18532             return;
18533         }
18534         
18535         this.setValue(this.originalValue);
18536         //this.clearInvalid();
18537         this.lastData = false;
18538         if (this.view) {
18539             this.view.clearSelections();
18540         }
18541         
18542         this.validate();
18543     },
18544     // private
18545     findRecord : function(prop, value){
18546         var record;
18547         if(this.store.getCount() > 0){
18548             this.store.each(function(r){
18549                 if(r.data[prop] == value){
18550                     record = r;
18551                     return false;
18552                 }
18553                 return true;
18554             });
18555         }
18556         return record;
18557     },
18558     
18559     getName: function()
18560     {
18561         // returns hidden if it's set..
18562         if (!this.rendered) {return ''};
18563         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
18564         
18565     },
18566     // private
18567     onViewMove : function(e, t){
18568         this.inKeyMode = false;
18569     },
18570
18571     // private
18572     onViewOver : function(e, t){
18573         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
18574             return;
18575         }
18576         var item = this.view.findItemFromChild(t);
18577         
18578         if(item){
18579             var index = this.view.indexOf(item);
18580             this.select(index, false);
18581         }
18582     },
18583
18584     // private
18585     onViewClick : function(view, doFocus, el, e)
18586     {
18587         var index = this.view.getSelectedIndexes()[0];
18588         
18589         var r = this.store.getAt(index);
18590         
18591         if(this.tickable){
18592             
18593             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
18594                 return;
18595             }
18596             
18597             var rm = false;
18598             var _this = this;
18599             
18600             Roo.each(this.tickItems, function(v,k){
18601                 
18602                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
18603                     Roo.log(v);
18604                     _this.tickItems.splice(k, 1);
18605                     
18606                     if(typeof(e) == 'undefined' && view == false){
18607                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
18608                     }
18609                     
18610                     rm = true;
18611                     return;
18612                 }
18613             });
18614             
18615             if(rm){
18616                 return;
18617             }
18618             
18619             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
18620                 this.tickItems.push(r.data);
18621             }
18622             
18623             if(typeof(e) == 'undefined' && view == false){
18624                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
18625             }
18626                     
18627             return;
18628         }
18629         
18630         if(r){
18631             this.onSelect(r, index);
18632         }
18633         if(doFocus !== false && !this.blockFocus){
18634             this.inputEl().focus();
18635         }
18636     },
18637
18638     // private
18639     restrictHeight : function(){
18640         //this.innerList.dom.style.height = '';
18641         //var inner = this.innerList.dom;
18642         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
18643         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
18644         //this.list.beginUpdate();
18645         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
18646         this.list.alignTo(this.inputEl(), this.listAlign);
18647         this.list.alignTo(this.inputEl(), this.listAlign);
18648         //this.list.endUpdate();
18649     },
18650
18651     // private
18652     onEmptyResults : function(){
18653         
18654         if(this.tickable && this.editable){
18655             this.hasFocus = false;
18656             this.restrictHeight();
18657             return;
18658         }
18659         
18660         this.collapse();
18661     },
18662
18663     /**
18664      * Returns true if the dropdown list is expanded, else false.
18665      */
18666     isExpanded : function(){
18667         return this.list.isVisible();
18668     },
18669
18670     /**
18671      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
18672      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
18673      * @param {String} value The data value of the item to select
18674      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
18675      * selected item if it is not currently in view (defaults to true)
18676      * @return {Boolean} True if the value matched an item in the list, else false
18677      */
18678     selectByValue : function(v, scrollIntoView){
18679         if(v !== undefined && v !== null){
18680             var r = this.findRecord(this.valueField || this.displayField, v);
18681             if(r){
18682                 this.select(this.store.indexOf(r), scrollIntoView);
18683                 return true;
18684             }
18685         }
18686         return false;
18687     },
18688
18689     /**
18690      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
18691      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
18692      * @param {Number} index The zero-based index of the list item to select
18693      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
18694      * selected item if it is not currently in view (defaults to true)
18695      */
18696     select : function(index, scrollIntoView){
18697         this.selectedIndex = index;
18698         this.view.select(index);
18699         if(scrollIntoView !== false){
18700             var el = this.view.getNode(index);
18701             /*
18702              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
18703              */
18704             if(el){
18705                 this.list.scrollChildIntoView(el, false);
18706             }
18707         }
18708     },
18709
18710     // private
18711     selectNext : function(){
18712         var ct = this.store.getCount();
18713         if(ct > 0){
18714             if(this.selectedIndex == -1){
18715                 this.select(0);
18716             }else if(this.selectedIndex < ct-1){
18717                 this.select(this.selectedIndex+1);
18718             }
18719         }
18720     },
18721
18722     // private
18723     selectPrev : function(){
18724         var ct = this.store.getCount();
18725         if(ct > 0){
18726             if(this.selectedIndex == -1){
18727                 this.select(0);
18728             }else if(this.selectedIndex != 0){
18729                 this.select(this.selectedIndex-1);
18730             }
18731         }
18732     },
18733
18734     // private
18735     onKeyUp : function(e){
18736         if(this.editable !== false && !e.isSpecialKey()){
18737             this.lastKey = e.getKey();
18738             this.dqTask.delay(this.queryDelay);
18739         }
18740     },
18741
18742     // private
18743     validateBlur : function(){
18744         return !this.list || !this.list.isVisible();   
18745     },
18746
18747     // private
18748     initQuery : function(){
18749         
18750         var v = this.getRawValue();
18751         
18752         if(this.tickable && this.editable){
18753             v = this.tickableInputEl().getValue();
18754         }
18755         
18756         this.doQuery(v);
18757     },
18758
18759     // private
18760     doForce : function(){
18761         if(this.inputEl().dom.value.length > 0){
18762             this.inputEl().dom.value =
18763                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
18764              
18765         }
18766     },
18767
18768     /**
18769      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
18770      * query allowing the query action to be canceled if needed.
18771      * @param {String} query The SQL query to execute
18772      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
18773      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
18774      * saved in the current store (defaults to false)
18775      */
18776     doQuery : function(q, forceAll){
18777         
18778         if(q === undefined || q === null){
18779             q = '';
18780         }
18781         var qe = {
18782             query: q,
18783             forceAll: forceAll,
18784             combo: this,
18785             cancel:false
18786         };
18787         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
18788             return false;
18789         }
18790         q = qe.query;
18791         
18792         forceAll = qe.forceAll;
18793         if(forceAll === true || (q.length >= this.minChars)){
18794             
18795             this.hasQuery = true;
18796             
18797             if(this.lastQuery != q || this.alwaysQuery){
18798                 this.lastQuery = q;
18799                 if(this.mode == 'local'){
18800                     this.selectedIndex = -1;
18801                     if(forceAll){
18802                         this.store.clearFilter();
18803                     }else{
18804                         
18805                         if(this.specialFilter){
18806                             this.fireEvent('specialfilter', this);
18807                             this.onLoad();
18808                             return;
18809                         }
18810                         
18811                         this.store.filter(this.displayField, q);
18812                     }
18813                     
18814                     this.store.fireEvent("datachanged", this.store);
18815                     
18816                     this.onLoad();
18817                     
18818                     
18819                 }else{
18820                     
18821                     this.store.baseParams[this.queryParam] = q;
18822                     
18823                     var options = {params : this.getParams(q)};
18824                     
18825                     if(this.loadNext){
18826                         options.add = true;
18827                         options.params.start = this.page * this.pageSize;
18828                     }
18829                     
18830                     this.store.load(options);
18831                     
18832                     /*
18833                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
18834                      *  we should expand the list on onLoad
18835                      *  so command out it
18836                      */
18837 //                    this.expand();
18838                 }
18839             }else{
18840                 this.selectedIndex = -1;
18841                 this.onLoad();   
18842             }
18843         }
18844         
18845         this.loadNext = false;
18846     },
18847     
18848     // private
18849     getParams : function(q){
18850         var p = {};
18851         //p[this.queryParam] = q;
18852         
18853         if(this.pageSize){
18854             p.start = 0;
18855             p.limit = this.pageSize;
18856         }
18857         return p;
18858     },
18859
18860     /**
18861      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
18862      */
18863     collapse : function(){
18864         if(!this.isExpanded()){
18865             return;
18866         }
18867         
18868         this.list.hide();
18869         
18870         this.hasFocus = false;
18871         
18872         if(this.tickable){
18873             this.okBtn.hide();
18874             this.cancelBtn.hide();
18875             this.trigger.show();
18876             
18877             if(this.editable){
18878                 this.tickableInputEl().dom.value = '';
18879                 this.tickableInputEl().blur();
18880             }
18881             
18882         }
18883         
18884         Roo.get(document).un('mousedown', this.collapseIf, this);
18885         Roo.get(document).un('mousewheel', this.collapseIf, this);
18886         if (!this.editable) {
18887             Roo.get(document).un('keydown', this.listKeyPress, this);
18888         }
18889         this.fireEvent('collapse', this);
18890         
18891         this.validate();
18892     },
18893
18894     // private
18895     collapseIf : function(e){
18896         var in_combo  = e.within(this.el);
18897         var in_list =  e.within(this.list);
18898         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
18899         
18900         if (in_combo || in_list || is_list) {
18901             //e.stopPropagation();
18902             return;
18903         }
18904         
18905         if(this.tickable){
18906             this.onTickableFooterButtonClick(e, false, false);
18907         }
18908
18909         this.collapse();
18910         
18911     },
18912
18913     /**
18914      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
18915      */
18916     expand : function(){
18917        
18918         if(this.isExpanded() || !this.hasFocus){
18919             return;
18920         }
18921         
18922         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
18923         this.list.setWidth(lw);
18924         
18925         Roo.log('expand');
18926         
18927         this.list.show();
18928         
18929         this.restrictHeight();
18930         
18931         if(this.tickable){
18932             
18933             this.tickItems = Roo.apply([], this.item);
18934             
18935             this.okBtn.show();
18936             this.cancelBtn.show();
18937             this.trigger.hide();
18938             
18939             if(this.editable){
18940                 this.tickableInputEl().focus();
18941             }
18942             
18943         }
18944         
18945         Roo.get(document).on('mousedown', this.collapseIf, this);
18946         Roo.get(document).on('mousewheel', this.collapseIf, this);
18947         if (!this.editable) {
18948             Roo.get(document).on('keydown', this.listKeyPress, this);
18949         }
18950
18951         this.list.setStyle('maxHeight', 'calc(100% - ' + this.list.getTop() + 'px - 50px)');
18952         
18953         this.fireEvent('expand', this);
18954     },
18955
18956     // private
18957     // Implements the default empty TriggerField.onTriggerClick function
18958     onTriggerClick : function(e)
18959     {
18960         Roo.log('trigger click');
18961         
18962         if(this.disabled || !this.triggerList){
18963             return;
18964         }
18965         
18966         this.page = 0;
18967         this.loadNext = false;
18968         
18969         if(this.isExpanded()){
18970             this.collapse();
18971             if (!this.blockFocus) {
18972                 this.inputEl().focus();
18973             }
18974             
18975         }else {
18976             this.hasFocus = true;
18977             if(this.triggerAction == 'all') {
18978                 this.doQuery(this.allQuery, true);
18979             } else {
18980                 this.doQuery(this.getRawValue());
18981             }
18982             if (!this.blockFocus) {
18983                 this.inputEl().focus();
18984             }
18985         }
18986     },
18987     
18988     onTickableTriggerClick : function(e)
18989     {
18990         if(this.disabled){
18991             return;
18992         }
18993         
18994         this.page = 0;
18995         this.loadNext = false;
18996         this.hasFocus = true;
18997         
18998         if(this.triggerAction == 'all') {
18999             this.doQuery(this.allQuery, true);
19000         } else {
19001             this.doQuery(this.getRawValue());
19002         }
19003     },
19004     
19005     onSearchFieldClick : function(e)
19006     {
19007         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
19008             this.onTickableFooterButtonClick(e, false, false);
19009             return;
19010         }
19011         
19012         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
19013             return;
19014         }
19015         
19016         this.page = 0;
19017         this.loadNext = false;
19018         this.hasFocus = true;
19019         
19020         if(this.triggerAction == 'all') {
19021             this.doQuery(this.allQuery, true);
19022         } else {
19023             this.doQuery(this.getRawValue());
19024         }
19025     },
19026     
19027     listKeyPress : function(e)
19028     {
19029         //Roo.log('listkeypress');
19030         // scroll to first matching element based on key pres..
19031         if (e.isSpecialKey()) {
19032             return false;
19033         }
19034         var k = String.fromCharCode(e.getKey()).toUpperCase();
19035         //Roo.log(k);
19036         var match  = false;
19037         var csel = this.view.getSelectedNodes();
19038         var cselitem = false;
19039         if (csel.length) {
19040             var ix = this.view.indexOf(csel[0]);
19041             cselitem  = this.store.getAt(ix);
19042             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
19043                 cselitem = false;
19044             }
19045             
19046         }
19047         
19048         this.store.each(function(v) { 
19049             if (cselitem) {
19050                 // start at existing selection.
19051                 if (cselitem.id == v.id) {
19052                     cselitem = false;
19053                 }
19054                 return true;
19055             }
19056                 
19057             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
19058                 match = this.store.indexOf(v);
19059                 return false;
19060             }
19061             return true;
19062         }, this);
19063         
19064         if (match === false) {
19065             return true; // no more action?
19066         }
19067         // scroll to?
19068         this.view.select(match);
19069         var sn = Roo.get(this.view.getSelectedNodes()[0]);
19070         sn.scrollIntoView(sn.dom.parentNode, false);
19071     },
19072     
19073     onViewScroll : function(e, t){
19074         
19075         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){
19076             return;
19077         }
19078         
19079         this.hasQuery = true;
19080         
19081         this.loading = this.list.select('.loading', true).first();
19082         
19083         if(this.loading === null){
19084             this.list.createChild({
19085                 tag: 'div',
19086                 cls: 'loading roo-select2-more-results roo-select2-active',
19087                 html: 'Loading more results...'
19088             });
19089             
19090             this.loading = this.list.select('.loading', true).first();
19091             
19092             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
19093             
19094             this.loading.hide();
19095         }
19096         
19097         this.loading.show();
19098         
19099         var _combo = this;
19100         
19101         this.page++;
19102         this.loadNext = true;
19103         
19104         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
19105         
19106         return;
19107     },
19108     
19109     addItem : function(o)
19110     {   
19111         var dv = ''; // display value
19112         
19113         if (this.displayField) {
19114             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
19115         } else {
19116             // this is an error condition!!!
19117             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
19118         }
19119         
19120         if(!dv.length){
19121             return;
19122         }
19123         
19124         var choice = this.choices.createChild({
19125             tag: 'li',
19126             cls: 'roo-select2-search-choice',
19127             cn: [
19128                 {
19129                     tag: 'div',
19130                     html: dv
19131                 },
19132                 {
19133                     tag: 'a',
19134                     href: '#',
19135                     cls: 'roo-select2-search-choice-close fa fa-times',
19136                     tabindex: '-1'
19137                 }
19138             ]
19139             
19140         }, this.searchField);
19141         
19142         var close = choice.select('a.roo-select2-search-choice-close', true).first();
19143         
19144         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
19145         
19146         this.item.push(o);
19147         
19148         this.lastData = o;
19149         
19150         this.syncValue();
19151         
19152         this.inputEl().dom.value = '';
19153         
19154         this.validate();
19155     },
19156     
19157     onRemoveItem : function(e, _self, o)
19158     {
19159         e.preventDefault();
19160         
19161         this.lastItem = Roo.apply([], this.item);
19162         
19163         var index = this.item.indexOf(o.data) * 1;
19164         
19165         if( index < 0){
19166             Roo.log('not this item?!');
19167             return;
19168         }
19169         
19170         this.item.splice(index, 1);
19171         o.item.remove();
19172         
19173         this.syncValue();
19174         
19175         this.fireEvent('remove', this, e);
19176         
19177         this.validate();
19178         
19179     },
19180     
19181     syncValue : function()
19182     {
19183         if(!this.item.length){
19184             this.clearValue();
19185             return;
19186         }
19187             
19188         var value = [];
19189         var _this = this;
19190         Roo.each(this.item, function(i){
19191             if(_this.valueField){
19192                 value.push(i[_this.valueField]);
19193                 return;
19194             }
19195
19196             value.push(i);
19197         });
19198
19199         this.value = value.join(',');
19200
19201         if(this.hiddenField){
19202             this.hiddenField.dom.value = this.value;
19203         }
19204         
19205         this.store.fireEvent("datachanged", this.store);
19206         
19207         this.validate();
19208     },
19209     
19210     clearItem : function()
19211     {
19212         if(!this.multiple){
19213             return;
19214         }
19215         
19216         this.item = [];
19217         
19218         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
19219            c.remove();
19220         });
19221         
19222         this.syncValue();
19223         
19224         this.validate();
19225         
19226         if(this.tickable && !Roo.isTouch){
19227             this.view.refresh();
19228         }
19229     },
19230     
19231     inputEl: function ()
19232     {
19233         if(Roo.isIOS && this.useNativeIOS){
19234             return this.el.select('select.roo-ios-select', true).first();
19235         }
19236         
19237         if(Roo.isTouch && this.mobileTouchView){
19238             return this.el.select('input.form-control',true).first();
19239         }
19240         
19241         if(this.tickable){
19242             return this.searchField;
19243         }
19244         
19245         return this.el.select('input.form-control',true).first();
19246     },
19247     
19248     onTickableFooterButtonClick : function(e, btn, el)
19249     {
19250         e.preventDefault();
19251         
19252         this.lastItem = Roo.apply([], this.item);
19253         
19254         if(btn && btn.name == 'cancel'){
19255             this.tickItems = Roo.apply([], this.item);
19256             this.collapse();
19257             return;
19258         }
19259         
19260         this.clearItem();
19261         
19262         var _this = this;
19263         
19264         Roo.each(this.tickItems, function(o){
19265             _this.addItem(o);
19266         });
19267         
19268         this.collapse();
19269         
19270     },
19271     
19272     validate : function()
19273     {
19274         if(this.getVisibilityEl().hasClass('hidden')){
19275             return true;
19276         }
19277         
19278         var v = this.getRawValue();
19279         
19280         if(this.multiple){
19281             v = this.getValue();
19282         }
19283         
19284         if(this.disabled || this.allowBlank || v.length){
19285             this.markValid();
19286             return true;
19287         }
19288         
19289         this.markInvalid();
19290         return false;
19291     },
19292     
19293     tickableInputEl : function()
19294     {
19295         if(!this.tickable || !this.editable){
19296             return this.inputEl();
19297         }
19298         
19299         return this.inputEl().select('.roo-select2-search-field-input', true).first();
19300     },
19301     
19302     
19303     getAutoCreateTouchView : function()
19304     {
19305         var id = Roo.id();
19306         
19307         var cfg = {
19308             cls: 'form-group' //input-group
19309         };
19310         
19311         var input =  {
19312             tag: 'input',
19313             id : id,
19314             type : this.inputType,
19315             cls : 'form-control x-combo-noedit',
19316             autocomplete: 'new-password',
19317             placeholder : this.placeholder || '',
19318             readonly : true
19319         };
19320         
19321         if (this.name) {
19322             input.name = this.name;
19323         }
19324         
19325         if (this.size) {
19326             input.cls += ' input-' + this.size;
19327         }
19328         
19329         if (this.disabled) {
19330             input.disabled = true;
19331         }
19332         
19333         var inputblock = {
19334             cls : 'roo-combobox-wrap',
19335             cn : [
19336                 input
19337             ]
19338         };
19339         
19340         if(this.before){
19341             inputblock.cls += ' input-group';
19342             
19343             inputblock.cn.unshift({
19344                 tag :'span',
19345                 cls : 'input-group-addon input-group-prepend input-group-text',
19346                 html : this.before
19347             });
19348         }
19349         
19350         if(this.removable && !this.multiple){
19351             inputblock.cls += ' roo-removable';
19352             
19353             inputblock.cn.push({
19354                 tag: 'button',
19355                 html : 'x',
19356                 cls : 'roo-combo-removable-btn close'
19357             });
19358         }
19359
19360         if(this.hasFeedback && !this.allowBlank){
19361             
19362             inputblock.cls += ' has-feedback';
19363             
19364             inputblock.cn.push({
19365                 tag: 'span',
19366                 cls: 'glyphicon form-control-feedback'
19367             });
19368             
19369         }
19370         
19371         if (this.after) {
19372             
19373             inputblock.cls += (this.before) ? '' : ' input-group';
19374             
19375             inputblock.cn.push({
19376                 tag :'span',
19377                 cls : 'input-group-addon input-group-append input-group-text',
19378                 html : this.after
19379             });
19380         }
19381
19382         
19383         var ibwrap = inputblock;
19384         
19385         if(this.multiple){
19386             ibwrap = {
19387                 tag: 'ul',
19388                 cls: 'roo-select2-choices',
19389                 cn:[
19390                     {
19391                         tag: 'li',
19392                         cls: 'roo-select2-search-field',
19393                         cn: [
19394
19395                             inputblock
19396                         ]
19397                     }
19398                 ]
19399             };
19400         
19401             
19402         }
19403         
19404         var combobox = {
19405             cls: 'roo-select2-container input-group roo-touchview-combobox ',
19406             cn: [
19407                 {
19408                     tag: 'input',
19409                     type : 'hidden',
19410                     cls: 'form-hidden-field'
19411                 },
19412                 ibwrap
19413             ]
19414         };
19415         
19416         if(!this.multiple && this.showToggleBtn){
19417             
19418             var caret = {
19419                 cls: 'caret'
19420             };
19421             
19422             if (this.caret != false) {
19423                 caret = {
19424                      tag: 'i',
19425                      cls: 'fa fa-' + this.caret
19426                 };
19427                 
19428             }
19429             
19430             combobox.cn.push({
19431                 tag :'span',
19432                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
19433                 cn : [
19434                     Roo.bootstrap.version == 3 ? caret : '',
19435                     {
19436                         tag: 'span',
19437                         cls: 'combobox-clear',
19438                         cn  : [
19439                             {
19440                                 tag : 'i',
19441                                 cls: 'icon-remove'
19442                             }
19443                         ]
19444                     }
19445                 ]
19446
19447             })
19448         }
19449         
19450         if(this.multiple){
19451             combobox.cls += ' roo-select2-container-multi';
19452         }
19453         
19454         var required =  this.allowBlank ?  {
19455                     tag : 'i',
19456                     style: 'display: none'
19457                 } : {
19458                    tag : 'i',
19459                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
19460                    tooltip : 'This field is required'
19461                 };
19462         
19463         var align = this.labelAlign || this.parentLabelAlign();
19464         
19465         if (align ==='left' && this.fieldLabel.length) {
19466
19467             cfg.cn = [
19468                 required,
19469                 {
19470                     tag: 'label',
19471                     cls : 'control-label col-form-label',
19472                     html : this.fieldLabel
19473
19474                 },
19475                 {
19476                     cls : 'roo-combobox-wrap ', 
19477                     cn: [
19478                         combobox
19479                     ]
19480                 }
19481             ];
19482             
19483             var labelCfg = cfg.cn[1];
19484             var contentCfg = cfg.cn[2];
19485             
19486
19487             if(this.indicatorpos == 'right'){
19488                 cfg.cn = [
19489                     {
19490                         tag: 'label',
19491                         'for' :  id,
19492                         cls : 'control-label col-form-label',
19493                         cn : [
19494                             {
19495                                 tag : 'span',
19496                                 html : this.fieldLabel
19497                             },
19498                             required
19499                         ]
19500                     },
19501                     {
19502                         cls : "roo-combobox-wrap ",
19503                         cn: [
19504                             combobox
19505                         ]
19506                     }
19507
19508                 ];
19509                 
19510                 labelCfg = cfg.cn[0];
19511                 contentCfg = cfg.cn[1];
19512             }
19513             
19514            
19515             
19516             if(this.labelWidth > 12){
19517                 labelCfg.style = "width: " + this.labelWidth + 'px';
19518             }
19519            
19520             if(this.labelWidth < 13 && this.labelmd == 0){
19521                 this.labelmd = this.labelWidth;
19522             }
19523             
19524             if(this.labellg > 0){
19525                 labelCfg.cls += ' col-lg-' + this.labellg;
19526                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
19527             }
19528             
19529             if(this.labelmd > 0){
19530                 labelCfg.cls += ' col-md-' + this.labelmd;
19531                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
19532             }
19533             
19534             if(this.labelsm > 0){
19535                 labelCfg.cls += ' col-sm-' + this.labelsm;
19536                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
19537             }
19538             
19539             if(this.labelxs > 0){
19540                 labelCfg.cls += ' col-xs-' + this.labelxs;
19541                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
19542             }
19543                 
19544                 
19545         } else if ( this.fieldLabel.length) {
19546             cfg.cn = [
19547                required,
19548                 {
19549                     tag: 'label',
19550                     cls : 'control-label',
19551                     html : this.fieldLabel
19552
19553                 },
19554                 {
19555                     cls : '', 
19556                     cn: [
19557                         combobox
19558                     ]
19559                 }
19560             ];
19561             
19562             if(this.indicatorpos == 'right'){
19563                 cfg.cn = [
19564                     {
19565                         tag: 'label',
19566                         cls : 'control-label',
19567                         html : this.fieldLabel,
19568                         cn : [
19569                             required
19570                         ]
19571                     },
19572                     {
19573                         cls : '', 
19574                         cn: [
19575                             combobox
19576                         ]
19577                     }
19578                 ];
19579             }
19580         } else {
19581             cfg.cn = combobox;    
19582         }
19583         
19584         
19585         var settings = this;
19586         
19587         ['xs','sm','md','lg'].map(function(size){
19588             if (settings[size]) {
19589                 cfg.cls += ' col-' + size + '-' + settings[size];
19590             }
19591         });
19592         
19593         return cfg;
19594     },
19595     
19596     initTouchView : function()
19597     {
19598         this.renderTouchView();
19599         
19600         this.touchViewEl.on('scroll', function(){
19601             this.el.dom.scrollTop = 0;
19602         }, this);
19603         
19604         this.originalValue = this.getValue();
19605         
19606         this.triggerEl = this.el.select('span.dropdown-toggle',true).first();
19607         
19608         this.inputEl().on("click", this.showTouchView, this);
19609         if (this.triggerEl) {
19610             this.triggerEl.on("click", this.showTouchView, this);
19611         }
19612         
19613         
19614         this.touchViewFooterEl.select('.roo-touch-view-cancel', true).first().on('click', this.hideTouchView, this);
19615         this.touchViewFooterEl.select('.roo-touch-view-ok', true).first().on('click', this.setTouchViewValue, this);
19616         
19617         this.maskEl = new Roo.LoadMask(this.touchViewEl, { store : this.store, msgCls: 'roo-el-mask-msg' });
19618         
19619         this.store.on('beforeload', this.onTouchViewBeforeLoad, this);
19620         this.store.on('load', this.onTouchViewLoad, this);
19621         this.store.on('loadexception', this.onTouchViewLoadException, this);
19622         
19623         if(this.hiddenName){
19624             
19625             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
19626             
19627             this.hiddenField.dom.value =
19628                 this.hiddenValue !== undefined ? this.hiddenValue :
19629                 this.value !== undefined ? this.value : '';
19630         
19631             this.el.dom.removeAttribute('name');
19632             this.hiddenField.dom.setAttribute('name', this.hiddenName);
19633         }
19634         
19635         if(this.multiple){
19636             this.choices = this.el.select('ul.roo-select2-choices', true).first();
19637             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
19638         }
19639         
19640         if(this.removable && !this.multiple){
19641             var close = this.closeTriggerEl();
19642             if(close){
19643                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
19644                 close.on('click', this.removeBtnClick, this, close);
19645             }
19646         }
19647         /*
19648          * fix the bug in Safari iOS8
19649          */
19650         this.inputEl().on("focus", function(e){
19651             document.activeElement.blur();
19652         }, this);
19653         
19654         this._touchViewMask = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
19655         
19656         return;
19657         
19658         
19659     },
19660     
19661     renderTouchView : function()
19662     {
19663         this.touchViewEl = Roo.get(document.body).createChild(Roo.bootstrap.form.ComboBox.touchViewTemplate);
19664         this.touchViewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19665         
19666         this.touchViewHeaderEl = this.touchViewEl.select('.modal-header', true).first();
19667         this.touchViewHeaderEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19668         
19669         this.touchViewBodyEl = this.touchViewEl.select('.modal-body', true).first();
19670         this.touchViewBodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19671         this.touchViewBodyEl.setStyle('overflow', 'auto');
19672         
19673         this.touchViewListGroup = this.touchViewBodyEl.select('.list-group', true).first();
19674         this.touchViewListGroup.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19675         
19676         this.touchViewFooterEl = this.touchViewEl.select('.modal-footer', true).first();
19677         this.touchViewFooterEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19678         
19679     },
19680     
19681     showTouchView : function()
19682     {
19683         if(this.disabled){
19684             return;
19685         }
19686         
19687         this.touchViewHeaderEl.hide();
19688
19689         if(this.modalTitle.length){
19690             this.touchViewHeaderEl.dom.innerHTML = this.modalTitle;
19691             this.touchViewHeaderEl.show();
19692         }
19693
19694         this.touchViewEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
19695         this.touchViewEl.show();
19696
19697         this.touchViewEl.select('.modal-dialog', true).first().setStyle({ margin : '0px', width : '100%'});
19698         
19699         //this.touchViewEl.select('.modal-dialog > .modal-content', true).first().setSize(
19700         //        Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
19701
19702         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
19703
19704         if(this.modalTitle.length){
19705             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
19706         }
19707         
19708         this.touchViewBodyEl.setHeight(bodyHeight);
19709
19710         if(this.animate){
19711             var _this = this;
19712             (function(){ _this.touchViewEl.addClass(['in','show']); }).defer(50);
19713         }else{
19714             this.touchViewEl.addClass(['in','show']);
19715         }
19716         
19717         if(this._touchViewMask){
19718             Roo.get(document.body).addClass("x-body-masked");
19719             this._touchViewMask.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
19720             this._touchViewMask.setStyle('z-index', 10000);
19721             this._touchViewMask.addClass('show');
19722         }
19723         
19724         this.doTouchViewQuery();
19725         
19726     },
19727     
19728     hideTouchView : function()
19729     {
19730         this.touchViewEl.removeClass(['in','show']);
19731
19732         if(this.animate){
19733             var _this = this;
19734             (function(){ _this.touchViewEl.setStyle('display', 'none'); }).defer(150);
19735         }else{
19736             this.touchViewEl.setStyle('display', 'none');
19737         }
19738         
19739         if(this._touchViewMask){
19740             this._touchViewMask.removeClass('show');
19741             Roo.get(document.body).removeClass("x-body-masked");
19742         }
19743     },
19744     
19745     setTouchViewValue : function()
19746     {
19747         if(this.multiple){
19748             this.clearItem();
19749         
19750             var _this = this;
19751
19752             Roo.each(this.tickItems, function(o){
19753                 this.addItem(o);
19754             }, this);
19755         }
19756         
19757         this.hideTouchView();
19758     },
19759     
19760     doTouchViewQuery : function()
19761     {
19762         var qe = {
19763             query: '',
19764             forceAll: true,
19765             combo: this,
19766             cancel:false
19767         };
19768         
19769         if(this.fireEvent('beforequery', qe) ===false || qe.cancel){
19770             return false;
19771         }
19772         
19773         if(!this.alwaysQuery || this.mode == 'local'){
19774             this.onTouchViewLoad();
19775             return;
19776         }
19777         
19778         this.store.load();
19779     },
19780     
19781     onTouchViewBeforeLoad : function(combo,opts)
19782     {
19783         return;
19784     },
19785
19786     // private
19787     onTouchViewLoad : function()
19788     {
19789         if(this.store.getCount() < 1){
19790             this.onTouchViewEmptyResults();
19791             return;
19792         }
19793         
19794         this.clearTouchView();
19795         
19796         var rawValue = this.getRawValue();
19797         
19798         var template = (this.multiple) ? Roo.bootstrap.form.ComboBox.listItemCheckbox : Roo.bootstrap.form.ComboBox.listItemRadio;
19799         
19800         this.tickItems = [];
19801         
19802         this.store.data.each(function(d, rowIndex){
19803             var row = this.touchViewListGroup.createChild(template);
19804             
19805             if(typeof(d.data.cls) != 'undefined' && d.data.cls.length){
19806                 row.addClass(d.data.cls);
19807             }
19808             
19809             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
19810                 var cfg = {
19811                     data : d.data,
19812                     html : d.data[this.displayField]
19813                 };
19814                 
19815                 if(this.fireEvent('touchviewdisplay', this, cfg) !== false){
19816                     row.select('.roo-combobox-list-group-item-value', true).first().dom.innerHTML = cfg.html;
19817                 }
19818             }
19819             row.removeClass('selected');
19820             if(!this.multiple && this.valueField &&
19821                     typeof(d.data[this.valueField]) != 'undefined' && d.data[this.valueField] == this.getValue())
19822             {
19823                 // radio buttons..
19824                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
19825                 row.addClass('selected');
19826             }
19827             
19828             if(this.multiple && this.valueField &&
19829                     typeof(d.data[this.valueField]) != 'undefined' && this.getValue().indexOf(d.data[this.valueField]) != -1)
19830             {
19831                 
19832                 // checkboxes...
19833                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
19834                 this.tickItems.push(d.data);
19835             }
19836             
19837             row.on('click', this.onTouchViewClick, this, {row : row, rowIndex : rowIndex});
19838             
19839         }, this);
19840         
19841         var firstChecked = this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).first();
19842         
19843         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
19844
19845         if(this.modalTitle.length){
19846             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
19847         }
19848
19849         var listHeight = this.touchViewListGroup.getHeight() + this.touchViewBodyEl.getPadding('tb') * 2;
19850         
19851         if(this.mobile_restrict_height && listHeight < bodyHeight){
19852             this.touchViewBodyEl.setHeight(listHeight);
19853         }
19854         
19855         var _this = this;
19856         
19857         if(firstChecked && listHeight > bodyHeight){
19858             (function() { firstChecked.findParent('li').scrollIntoView(_this.touchViewListGroup.dom); }).defer(500);
19859         }
19860         
19861     },
19862     
19863     onTouchViewLoadException : function()
19864     {
19865         this.hideTouchView();
19866     },
19867     
19868     onTouchViewEmptyResults : function()
19869     {
19870         this.clearTouchView();
19871         
19872         this.touchViewListGroup.createChild(Roo.bootstrap.form.ComboBox.emptyResult);
19873         
19874         this.touchViewListGroup.select('.roo-combobox-touch-view-empty-result', true).first().dom.innerHTML = this.emptyResultText;
19875         
19876     },
19877     
19878     clearTouchView : function()
19879     {
19880         this.touchViewListGroup.dom.innerHTML = '';
19881     },
19882     
19883     onTouchViewClick : function(e, el, o)
19884     {
19885         e.preventDefault();
19886         
19887         var row = o.row;
19888         var rowIndex = o.rowIndex;
19889         
19890         var r = this.store.getAt(rowIndex);
19891         
19892         if(this.fireEvent('beforeselect', this, r, rowIndex) !== false){
19893             
19894             if(!this.multiple){
19895                 Roo.each(this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).elements, function(c){
19896                     c.dom.removeAttribute('checked');
19897                 }, this);
19898
19899                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
19900
19901                 this.setFromData(r.data);
19902
19903                 var close = this.closeTriggerEl();
19904
19905                 if(close){
19906                     close.show();
19907                 }
19908
19909                 this.hideTouchView();
19910
19911                 this.fireEvent('select', this, r, rowIndex);
19912
19913                 return;
19914             }
19915
19916             if(this.valueField && typeof(r.data[this.valueField]) != 'undefined' && this.getValue().indexOf(r.data[this.valueField]) != -1){
19917                 row.select('.roo-combobox-list-group-item-box > input', true).first().dom.removeAttribute('checked');
19918                 this.tickItems.splice(this.tickItems.indexOf(r.data), 1);
19919                 return;
19920             }
19921
19922             row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
19923             this.addItem(r.data);
19924             this.tickItems.push(r.data);
19925         }
19926     },
19927     
19928     getAutoCreateNativeIOS : function()
19929     {
19930         var cfg = {
19931             cls: 'form-group' //input-group,
19932         };
19933         
19934         var combobox =  {
19935             tag: 'select',
19936             cls : 'roo-ios-select'
19937         };
19938         
19939         if (this.name) {
19940             combobox.name = this.name;
19941         }
19942         
19943         if (this.disabled) {
19944             combobox.disabled = true;
19945         }
19946         
19947         var settings = this;
19948         
19949         ['xs','sm','md','lg'].map(function(size){
19950             if (settings[size]) {
19951                 cfg.cls += ' col-' + size + '-' + settings[size];
19952             }
19953         });
19954         
19955         cfg.cn = combobox;
19956         
19957         return cfg;
19958         
19959     },
19960     
19961     initIOSView : function()
19962     {
19963         this.store.on('load', this.onIOSViewLoad, this);
19964         
19965         return;
19966     },
19967     
19968     onIOSViewLoad : function()
19969     {
19970         if(this.store.getCount() < 1){
19971             return;
19972         }
19973         
19974         this.clearIOSView();
19975         
19976         if(this.allowBlank) {
19977             
19978             var default_text = '-- SELECT --';
19979             
19980             if(this.placeholder.length){
19981                 default_text = this.placeholder;
19982             }
19983             
19984             if(this.emptyTitle.length){
19985                 default_text += ' - ' + this.emptyTitle + ' -';
19986             }
19987             
19988             var opt = this.inputEl().createChild({
19989                 tag: 'option',
19990                 value : 0,
19991                 html : default_text
19992             });
19993             
19994             var o = {};
19995             o[this.valueField] = 0;
19996             o[this.displayField] = default_text;
19997             
19998             this.ios_options.push({
19999                 data : o,
20000                 el : opt
20001             });
20002             
20003         }
20004         
20005         this.store.data.each(function(d, rowIndex){
20006             
20007             var html = '';
20008             
20009             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
20010                 html = d.data[this.displayField];
20011             }
20012             
20013             var value = '';
20014             
20015             if(this.valueField && typeof(d.data[this.valueField]) != 'undefined'){
20016                 value = d.data[this.valueField];
20017             }
20018             
20019             var option = {
20020                 tag: 'option',
20021                 value : value,
20022                 html : html
20023             };
20024             
20025             if(this.value == d.data[this.valueField]){
20026                 option['selected'] = true;
20027             }
20028             
20029             var opt = this.inputEl().createChild(option);
20030             
20031             this.ios_options.push({
20032                 data : d.data,
20033                 el : opt
20034             });
20035             
20036         }, this);
20037         
20038         this.inputEl().on('change', function(){
20039            this.fireEvent('select', this);
20040         }, this);
20041         
20042     },
20043     
20044     clearIOSView: function()
20045     {
20046         this.inputEl().dom.innerHTML = '';
20047         
20048         this.ios_options = [];
20049     },
20050     
20051     setIOSValue: function(v)
20052     {
20053         this.value = v;
20054         
20055         if(!this.ios_options){
20056             return;
20057         }
20058         
20059         Roo.each(this.ios_options, function(opts){
20060            
20061            opts.el.dom.removeAttribute('selected');
20062            
20063            if(opts.data[this.valueField] != v){
20064                return;
20065            }
20066            
20067            opts.el.dom.setAttribute('selected', true);
20068            
20069         }, this);
20070     }
20071
20072     /** 
20073     * @cfg {Boolean} grow 
20074     * @hide 
20075     */
20076     /** 
20077     * @cfg {Number} growMin 
20078     * @hide 
20079     */
20080     /** 
20081     * @cfg {Number} growMax 
20082     * @hide 
20083     */
20084     /**
20085      * @hide
20086      * @method autoSize
20087      */
20088 });
20089
20090 Roo.apply(Roo.bootstrap.form.ComboBox,  {
20091     
20092     header : {
20093         tag: 'div',
20094         cls: 'modal-header',
20095         cn: [
20096             {
20097                 tag: 'h4',
20098                 cls: 'modal-title'
20099             }
20100         ]
20101     },
20102     
20103     body : {
20104         tag: 'div',
20105         cls: 'modal-body',
20106         cn: [
20107             {
20108                 tag: 'ul',
20109                 cls: 'list-group'
20110             }
20111         ]
20112     },
20113     
20114     listItemRadio : {
20115         tag: 'li',
20116         cls: 'list-group-item',
20117         cn: [
20118             {
20119                 tag: 'span',
20120                 cls: 'roo-combobox-list-group-item-value'
20121             },
20122             {
20123                 tag: 'div',
20124                 cls: 'roo-combobox-list-group-item-box pull-xs-right radio-inline radio radio-info',
20125                 cn: [
20126                     {
20127                         tag: 'input',
20128                         type: 'radio'
20129                     },
20130                     {
20131                         tag: 'label'
20132                     }
20133                 ]
20134             }
20135         ]
20136     },
20137     
20138     listItemCheckbox : {
20139         tag: 'li',
20140         cls: 'list-group-item',
20141         cn: [
20142             {
20143                 tag: 'span',
20144                 cls: 'roo-combobox-list-group-item-value'
20145             },
20146             {
20147                 tag: 'div',
20148                 cls: 'roo-combobox-list-group-item-box pull-xs-right checkbox-inline checkbox checkbox-info',
20149                 cn: [
20150                     {
20151                         tag: 'input',
20152                         type: 'checkbox'
20153                     },
20154                     {
20155                         tag: 'label'
20156                     }
20157                 ]
20158             }
20159         ]
20160     },
20161     
20162     emptyResult : {
20163         tag: 'div',
20164         cls: 'alert alert-danger roo-combobox-touch-view-empty-result'
20165     },
20166     
20167     footer : {
20168         tag: 'div',
20169         cls: 'modal-footer',
20170         cn: [
20171             {
20172                 tag: 'div',
20173                 cls: 'row',
20174                 cn: [
20175                     {
20176                         tag: 'div',
20177                         cls: 'col-xs-6 text-left',
20178                         cn: {
20179                             tag: 'button',
20180                             cls: 'btn btn-danger roo-touch-view-cancel',
20181                             html: 'Cancel'
20182                         }
20183                     },
20184                     {
20185                         tag: 'div',
20186                         cls: 'col-xs-6 text-right',
20187                         cn: {
20188                             tag: 'button',
20189                             cls: 'btn btn-success roo-touch-view-ok',
20190                             html: 'OK'
20191                         }
20192                     }
20193                 ]
20194             }
20195         ]
20196         
20197     }
20198 });
20199
20200 Roo.apply(Roo.bootstrap.form.ComboBox,  {
20201     
20202     touchViewTemplate : {
20203         tag: 'div',
20204         cls: 'modal fade roo-combobox-touch-view',
20205         cn: [
20206             {
20207                 tag: 'div',
20208                 cls: 'modal-dialog',
20209                 style : 'position:fixed', // we have to fix position....
20210                 cn: [
20211                     {
20212                         tag: 'div',
20213                         cls: 'modal-content',
20214                         cn: [
20215                             Roo.bootstrap.form.ComboBox.header,
20216                             Roo.bootstrap.form.ComboBox.body,
20217                             Roo.bootstrap.form.ComboBox.footer
20218                         ]
20219                     }
20220                 ]
20221             }
20222         ]
20223     }
20224 });/*
20225  * Based on:
20226  * Ext JS Library 1.1.1
20227  * Copyright(c) 2006-2007, Ext JS, LLC.
20228  *
20229  * Originally Released Under LGPL - original licence link has changed is not relivant.
20230  *
20231  * Fork - LGPL
20232  * <script type="text/javascript">
20233  */
20234
20235 /**
20236  * @class Roo.View
20237  * @extends Roo.util.Observable
20238  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
20239  * This class also supports single and multi selection modes. <br>
20240  * Create a data model bound view:
20241  <pre><code>
20242  var store = new Roo.data.Store(...);
20243
20244  var view = new Roo.View({
20245     el : "my-element",
20246     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
20247  
20248     singleSelect: true,
20249     selectedClass: "ydataview-selected",
20250     store: store
20251  });
20252
20253  // listen for node click?
20254  view.on("click", function(vw, index, node, e){
20255  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
20256  });
20257
20258  // load XML data
20259  dataModel.load("foobar.xml");
20260  </code></pre>
20261  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
20262  * <br><br>
20263  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
20264  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
20265  * 
20266  * Note: old style constructor is still suported (container, template, config)
20267  * 
20268  * @constructor
20269  * Create a new View
20270  * @param {Object} config The config object
20271  * 
20272  */
20273 Roo.View = function(config, depreciated_tpl, depreciated_config){
20274     
20275     this.parent = false;
20276     
20277     if (typeof(depreciated_tpl) == 'undefined') {
20278         // new way.. - universal constructor.
20279         Roo.apply(this, config);
20280         this.el  = Roo.get(this.el);
20281     } else {
20282         // old format..
20283         this.el  = Roo.get(config);
20284         this.tpl = depreciated_tpl;
20285         Roo.apply(this, depreciated_config);
20286     }
20287     this.wrapEl  = this.el.wrap().wrap();
20288     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
20289     
20290     
20291     if(typeof(this.tpl) == "string"){
20292         this.tpl = new Roo.Template(this.tpl);
20293     } else {
20294         // support xtype ctors..
20295         this.tpl = new Roo.factory(this.tpl, Roo);
20296     }
20297     
20298     
20299     this.tpl.compile();
20300     
20301     /** @private */
20302     this.addEvents({
20303         /**
20304          * @event beforeclick
20305          * Fires before a click is processed. Returns false to cancel the default action.
20306          * @param {Roo.View} this
20307          * @param {Number} index The index of the target node
20308          * @param {HTMLElement} node The target node
20309          * @param {Roo.EventObject} e The raw event object
20310          */
20311             "beforeclick" : true,
20312         /**
20313          * @event click
20314          * Fires when a template node is clicked.
20315          * @param {Roo.View} this
20316          * @param {Number} index The index of the target node
20317          * @param {HTMLElement} node The target node
20318          * @param {Roo.EventObject} e The raw event object
20319          */
20320             "click" : true,
20321         /**
20322          * @event dblclick
20323          * Fires when a template node is double clicked.
20324          * @param {Roo.View} this
20325          * @param {Number} index The index of the target node
20326          * @param {HTMLElement} node The target node
20327          * @param {Roo.EventObject} e The raw event object
20328          */
20329             "dblclick" : true,
20330         /**
20331          * @event contextmenu
20332          * Fires when a template node is right clicked.
20333          * @param {Roo.View} this
20334          * @param {Number} index The index of the target node
20335          * @param {HTMLElement} node The target node
20336          * @param {Roo.EventObject} e The raw event object
20337          */
20338             "contextmenu" : true,
20339         /**
20340          * @event selectionchange
20341          * Fires when the selected nodes change.
20342          * @param {Roo.View} this
20343          * @param {Array} selections Array of the selected nodes
20344          */
20345             "selectionchange" : true,
20346     
20347         /**
20348          * @event beforeselect
20349          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
20350          * @param {Roo.View} this
20351          * @param {HTMLElement} node The node to be selected
20352          * @param {Array} selections Array of currently selected nodes
20353          */
20354             "beforeselect" : true,
20355         /**
20356          * @event preparedata
20357          * Fires on every row to render, to allow you to change the data.
20358          * @param {Roo.View} this
20359          * @param {Object} data to be rendered (change this)
20360          */
20361           "preparedata" : true
20362           
20363           
20364         });
20365
20366
20367
20368     this.el.on({
20369         "click": this.onClick,
20370         "dblclick": this.onDblClick,
20371         "contextmenu": this.onContextMenu,
20372         scope:this
20373     });
20374
20375     this.selections = [];
20376     this.nodes = [];
20377     this.cmp = new Roo.CompositeElementLite([]);
20378     if(this.store){
20379         this.store = Roo.factory(this.store, Roo.data);
20380         this.setStore(this.store, true);
20381     }
20382     
20383     if ( this.footer && this.footer.xtype) {
20384            
20385          var fctr = this.wrapEl.appendChild(document.createElement("div"));
20386         
20387         this.footer.dataSource = this.store;
20388         this.footer.container = fctr;
20389         this.footer = Roo.factory(this.footer, Roo);
20390         fctr.insertFirst(this.el);
20391         
20392         // this is a bit insane - as the paging toolbar seems to detach the el..
20393 //        dom.parentNode.parentNode.parentNode
20394          // they get detached?
20395     }
20396     
20397     
20398     Roo.View.superclass.constructor.call(this);
20399     
20400     
20401 };
20402
20403 Roo.extend(Roo.View, Roo.util.Observable, {
20404     
20405      /**
20406      * @cfg {Roo.data.Store} store Data store to load data from.
20407      */
20408     store : false,
20409     
20410     /**
20411      * @cfg {String|Roo.Element} el The container element.
20412      */
20413     el : '',
20414     
20415     /**
20416      * @cfg {String|Roo.Template} tpl The template used by this View 
20417      */
20418     tpl : false,
20419     /**
20420      * @cfg {String} dataName the named area of the template to use as the data area
20421      *                          Works with domtemplates roo-name="name"
20422      */
20423     dataName: false,
20424     /**
20425      * @cfg {String} selectedClass The css class to add to selected nodes
20426      */
20427     selectedClass : "x-view-selected",
20428      /**
20429      * @cfg {String} emptyText The empty text to show when nothing is loaded.
20430      */
20431     emptyText : "",
20432     
20433     /**
20434      * @cfg {String} text to display on mask (default Loading)
20435      */
20436     mask : false,
20437     /**
20438      * @cfg {Boolean} multiSelect Allow multiple selection
20439      */
20440     multiSelect : false,
20441     /**
20442      * @cfg {Boolean} singleSelect Allow single selection
20443      */
20444     singleSelect:  false,
20445     
20446     /**
20447      * @cfg {Boolean} toggleSelect - selecting 
20448      */
20449     toggleSelect : false,
20450     
20451     /**
20452      * @cfg {Boolean} tickable - selecting 
20453      */
20454     tickable : false,
20455     
20456     /**
20457      * Returns the element this view is bound to.
20458      * @return {Roo.Element}
20459      */
20460     getEl : function(){
20461         return this.wrapEl;
20462     },
20463     
20464     
20465
20466     /**
20467      * Refreshes the view. - called by datachanged on the store. - do not call directly.
20468      */
20469     refresh : function(){
20470         //Roo.log('refresh');
20471         var t = this.tpl;
20472         
20473         // if we are using something like 'domtemplate', then
20474         // the what gets used is:
20475         // t.applySubtemplate(NAME, data, wrapping data..)
20476         // the outer template then get' applied with
20477         //     the store 'extra data'
20478         // and the body get's added to the
20479         //      roo-name="data" node?
20480         //      <span class='roo-tpl-{name}'></span> ?????
20481         
20482         
20483         
20484         this.clearSelections();
20485         this.el.update("");
20486         var html = [];
20487         var records = this.store.getRange();
20488         if(records.length < 1) {
20489             
20490             // is this valid??  = should it render a template??
20491             
20492             this.el.update(this.emptyText);
20493             return;
20494         }
20495         var el = this.el;
20496         if (this.dataName) {
20497             this.el.update(t.apply(this.store.meta)); //????
20498             el = this.el.child('.roo-tpl-' + this.dataName);
20499         }
20500         
20501         for(var i = 0, len = records.length; i < len; i++){
20502             var data = this.prepareData(records[i].data, i, records[i]);
20503             this.fireEvent("preparedata", this, data, i, records[i]);
20504             
20505             var d = Roo.apply({}, data);
20506             
20507             if(this.tickable){
20508                 Roo.apply(d, {'roo-id' : Roo.id()});
20509                 
20510                 var _this = this;
20511             
20512                 Roo.each(this.parent.item, function(item){
20513                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
20514                         return;
20515                     }
20516                     Roo.apply(d, {'roo-data-checked' : 'checked'});
20517                 });
20518             }
20519             
20520             html[html.length] = Roo.util.Format.trim(
20521                 this.dataName ?
20522                     t.applySubtemplate(this.dataName, d, this.store.meta) :
20523                     t.apply(d)
20524             );
20525         }
20526         
20527         
20528         
20529         el.update(html.join(""));
20530         this.nodes = el.dom.childNodes;
20531         this.updateIndexes(0);
20532     },
20533     
20534
20535     /**
20536      * Function to override to reformat the data that is sent to
20537      * the template for each node.
20538      * DEPRICATED - use the preparedata event handler.
20539      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
20540      * a JSON object for an UpdateManager bound view).
20541      */
20542     prepareData : function(data, index, record)
20543     {
20544         this.fireEvent("preparedata", this, data, index, record);
20545         return data;
20546     },
20547
20548     onUpdate : function(ds, record){
20549         // Roo.log('on update');   
20550         this.clearSelections();
20551         var index = this.store.indexOf(record);
20552         var n = this.nodes[index];
20553         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
20554         n.parentNode.removeChild(n);
20555         this.updateIndexes(index, index);
20556     },
20557
20558     
20559     
20560 // --------- FIXME     
20561     onAdd : function(ds, records, index)
20562     {
20563         //Roo.log(['on Add', ds, records, index] );        
20564         this.clearSelections();
20565         if(this.nodes.length == 0){
20566             this.refresh();
20567             return;
20568         }
20569         var n = this.nodes[index];
20570         for(var i = 0, len = records.length; i < len; i++){
20571             var d = this.prepareData(records[i].data, i, records[i]);
20572             if(n){
20573                 this.tpl.insertBefore(n, d);
20574             }else{
20575                 
20576                 this.tpl.append(this.el, d);
20577             }
20578         }
20579         this.updateIndexes(index);
20580     },
20581
20582     onRemove : function(ds, record, index){
20583        // Roo.log('onRemove');
20584         this.clearSelections();
20585         var el = this.dataName  ?
20586             this.el.child('.roo-tpl-' + this.dataName) :
20587             this.el; 
20588         
20589         el.dom.removeChild(this.nodes[index]);
20590         this.updateIndexes(index);
20591     },
20592
20593     /**
20594      * Refresh an individual node.
20595      * @param {Number} index
20596      */
20597     refreshNode : function(index){
20598         this.onUpdate(this.store, this.store.getAt(index));
20599     },
20600
20601     updateIndexes : function(startIndex, endIndex){
20602         var ns = this.nodes;
20603         startIndex = startIndex || 0;
20604         endIndex = endIndex || ns.length - 1;
20605         for(var i = startIndex; i <= endIndex; i++){
20606             ns[i].nodeIndex = i;
20607         }
20608     },
20609
20610     /**
20611      * Changes the data store this view uses and refresh the view.
20612      * @param {Store} store
20613      */
20614     setStore : function(store, initial){
20615         if(!initial && this.store){
20616             this.store.un("datachanged", this.refresh);
20617             this.store.un("add", this.onAdd);
20618             this.store.un("remove", this.onRemove);
20619             this.store.un("update", this.onUpdate);
20620             this.store.un("clear", this.refresh);
20621             this.store.un("beforeload", this.onBeforeLoad);
20622             this.store.un("load", this.onLoad);
20623             this.store.un("loadexception", this.onLoad);
20624         }
20625         if(store){
20626           
20627             store.on("datachanged", this.refresh, this);
20628             store.on("add", this.onAdd, this);
20629             store.on("remove", this.onRemove, this);
20630             store.on("update", this.onUpdate, this);
20631             store.on("clear", this.refresh, this);
20632             store.on("beforeload", this.onBeforeLoad, this);
20633             store.on("load", this.onLoad, this);
20634             store.on("loadexception", this.onLoad, this);
20635         }
20636         
20637         if(store){
20638             this.refresh();
20639         }
20640     },
20641     /**
20642      * onbeforeLoad - masks the loading area.
20643      *
20644      */
20645     onBeforeLoad : function(store,opts)
20646     {
20647          //Roo.log('onBeforeLoad');   
20648         if (!opts.add) {
20649             this.el.update("");
20650         }
20651         this.el.mask(this.mask ? this.mask : "Loading" ); 
20652     },
20653     onLoad : function ()
20654     {
20655         this.el.unmask();
20656     },
20657     
20658
20659     /**
20660      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
20661      * @param {HTMLElement} node
20662      * @return {HTMLElement} The template node
20663      */
20664     findItemFromChild : function(node){
20665         var el = this.dataName  ?
20666             this.el.child('.roo-tpl-' + this.dataName,true) :
20667             this.el.dom; 
20668         
20669         if(!node || node.parentNode == el){
20670                     return node;
20671             }
20672             var p = node.parentNode;
20673             while(p && p != el){
20674             if(p.parentNode == el){
20675                 return p;
20676             }
20677             p = p.parentNode;
20678         }
20679             return null;
20680     },
20681
20682     /** @ignore */
20683     onClick : function(e){
20684         var item = this.findItemFromChild(e.getTarget());
20685         if(item){
20686             var index = this.indexOf(item);
20687             if(this.onItemClick(item, index, e) !== false){
20688                 this.fireEvent("click", this, index, item, e);
20689             }
20690         }else{
20691             this.clearSelections();
20692         }
20693     },
20694
20695     /** @ignore */
20696     onContextMenu : function(e){
20697         var item = this.findItemFromChild(e.getTarget());
20698         if(item){
20699             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
20700         }
20701     },
20702
20703     /** @ignore */
20704     onDblClick : function(e){
20705         var item = this.findItemFromChild(e.getTarget());
20706         if(item){
20707             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
20708         }
20709     },
20710
20711     onItemClick : function(item, index, e)
20712     {
20713         if(this.fireEvent("beforeclick", this, index, item, e) === false){
20714             return false;
20715         }
20716         if (this.toggleSelect) {
20717             var m = this.isSelected(item) ? 'unselect' : 'select';
20718             //Roo.log(m);
20719             var _t = this;
20720             _t[m](item, true, false);
20721             return true;
20722         }
20723         if(this.multiSelect || this.singleSelect){
20724             if(this.multiSelect && e.shiftKey && this.lastSelection){
20725                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
20726             }else{
20727                 this.select(item, this.multiSelect && e.ctrlKey);
20728                 this.lastSelection = item;
20729             }
20730             
20731             if(!this.tickable){
20732                 e.preventDefault();
20733             }
20734             
20735         }
20736         return true;
20737     },
20738
20739     /**
20740      * Get the number of selected nodes.
20741      * @return {Number}
20742      */
20743     getSelectionCount : function(){
20744         return this.selections.length;
20745     },
20746
20747     /**
20748      * Get the currently selected nodes.
20749      * @return {Array} An array of HTMLElements
20750      */
20751     getSelectedNodes : function(){
20752         return this.selections;
20753     },
20754
20755     /**
20756      * Get the indexes of the selected nodes.
20757      * @return {Array}
20758      */
20759     getSelectedIndexes : function(){
20760         var indexes = [], s = this.selections;
20761         for(var i = 0, len = s.length; i < len; i++){
20762             indexes.push(s[i].nodeIndex);
20763         }
20764         return indexes;
20765     },
20766
20767     /**
20768      * Clear all selections
20769      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
20770      */
20771     clearSelections : function(suppressEvent){
20772         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
20773             this.cmp.elements = this.selections;
20774             this.cmp.removeClass(this.selectedClass);
20775             this.selections = [];
20776             if(!suppressEvent){
20777                 this.fireEvent("selectionchange", this, this.selections);
20778             }
20779         }
20780     },
20781
20782     /**
20783      * Returns true if the passed node is selected
20784      * @param {HTMLElement/Number} node The node or node index
20785      * @return {Boolean}
20786      */
20787     isSelected : function(node){
20788         var s = this.selections;
20789         if(s.length < 1){
20790             return false;
20791         }
20792         node = this.getNode(node);
20793         return s.indexOf(node) !== -1;
20794     },
20795
20796     /**
20797      * Selects nodes.
20798      * @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
20799      * @param {Boolean} keepExisting (optional) true to keep existing selections
20800      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
20801      */
20802     select : function(nodeInfo, keepExisting, suppressEvent){
20803         if(nodeInfo instanceof Array){
20804             if(!keepExisting){
20805                 this.clearSelections(true);
20806             }
20807             for(var i = 0, len = nodeInfo.length; i < len; i++){
20808                 this.select(nodeInfo[i], true, true);
20809             }
20810             return;
20811         } 
20812         var node = this.getNode(nodeInfo);
20813         if(!node || this.isSelected(node)){
20814             return; // already selected.
20815         }
20816         if(!keepExisting){
20817             this.clearSelections(true);
20818         }
20819         
20820         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
20821             Roo.fly(node).addClass(this.selectedClass);
20822             this.selections.push(node);
20823             if(!suppressEvent){
20824                 this.fireEvent("selectionchange", this, this.selections);
20825             }
20826         }
20827         
20828         
20829     },
20830       /**
20831      * Unselects nodes.
20832      * @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
20833      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
20834      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
20835      */
20836     unselect : function(nodeInfo, keepExisting, suppressEvent)
20837     {
20838         if(nodeInfo instanceof Array){
20839             Roo.each(this.selections, function(s) {
20840                 this.unselect(s, nodeInfo);
20841             }, this);
20842             return;
20843         }
20844         var node = this.getNode(nodeInfo);
20845         if(!node || !this.isSelected(node)){
20846             //Roo.log("not selected");
20847             return; // not selected.
20848         }
20849         // fireevent???
20850         var ns = [];
20851         Roo.each(this.selections, function(s) {
20852             if (s == node ) {
20853                 Roo.fly(node).removeClass(this.selectedClass);
20854
20855                 return;
20856             }
20857             ns.push(s);
20858         },this);
20859         
20860         this.selections= ns;
20861         this.fireEvent("selectionchange", this, this.selections);
20862     },
20863
20864     /**
20865      * Gets a template node.
20866      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
20867      * @return {HTMLElement} The node or null if it wasn't found
20868      */
20869     getNode : function(nodeInfo){
20870         if(typeof nodeInfo == "string"){
20871             return document.getElementById(nodeInfo);
20872         }else if(typeof nodeInfo == "number"){
20873             return this.nodes[nodeInfo];
20874         }
20875         return nodeInfo;
20876     },
20877
20878     /**
20879      * Gets a range template nodes.
20880      * @param {Number} startIndex
20881      * @param {Number} endIndex
20882      * @return {Array} An array of nodes
20883      */
20884     getNodes : function(start, end){
20885         var ns = this.nodes;
20886         start = start || 0;
20887         end = typeof end == "undefined" ? ns.length - 1 : end;
20888         var nodes = [];
20889         if(start <= end){
20890             for(var i = start; i <= end; i++){
20891                 nodes.push(ns[i]);
20892             }
20893         } else{
20894             for(var i = start; i >= end; i--){
20895                 nodes.push(ns[i]);
20896             }
20897         }
20898         return nodes;
20899     },
20900
20901     /**
20902      * Finds the index of the passed node
20903      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
20904      * @return {Number} The index of the node or -1
20905      */
20906     indexOf : function(node){
20907         node = this.getNode(node);
20908         if(typeof node.nodeIndex == "number"){
20909             return node.nodeIndex;
20910         }
20911         var ns = this.nodes;
20912         for(var i = 0, len = ns.length; i < len; i++){
20913             if(ns[i] == node){
20914                 return i;
20915             }
20916         }
20917         return -1;
20918     }
20919 });
20920 /*
20921  * - LGPL
20922  *
20923  * based on jquery fullcalendar
20924  * 
20925  */
20926
20927 Roo.bootstrap = Roo.bootstrap || {};
20928 /**
20929  * @class Roo.bootstrap.Calendar
20930  * @extends Roo.bootstrap.Component
20931  * Bootstrap Calendar class
20932  * @cfg {Boolean} loadMask (true|false) default false
20933  * @cfg {Object} header generate the user specific header of the calendar, default false
20934
20935  * @constructor
20936  * Create a new Container
20937  * @param {Object} config The config object
20938  */
20939
20940
20941
20942 Roo.bootstrap.Calendar = function(config){
20943     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
20944      this.addEvents({
20945         /**
20946              * @event select
20947              * Fires when a date is selected
20948              * @param {DatePicker} this
20949              * @param {Date} date The selected date
20950              */
20951         'select': true,
20952         /**
20953              * @event monthchange
20954              * Fires when the displayed month changes 
20955              * @param {DatePicker} this
20956              * @param {Date} date The selected month
20957              */
20958         'monthchange': true,
20959         /**
20960              * @event evententer
20961              * Fires when mouse over an event
20962              * @param {Calendar} this
20963              * @param {event} Event
20964              */
20965         'evententer': true,
20966         /**
20967              * @event eventleave
20968              * Fires when the mouse leaves an
20969              * @param {Calendar} this
20970              * @param {event}
20971              */
20972         'eventleave': true,
20973         /**
20974              * @event eventclick
20975              * Fires when the mouse click an
20976              * @param {Calendar} this
20977              * @param {event}
20978              */
20979         'eventclick': true
20980         
20981     });
20982
20983 };
20984
20985 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
20986     
20987           /**
20988      * @cfg {Roo.data.Store} store
20989      * The data source for the calendar
20990      */
20991         store : false,
20992      /**
20993      * @cfg {Number} startDay
20994      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
20995      */
20996     startDay : 0,
20997     
20998     loadMask : false,
20999     
21000     header : false,
21001       
21002     getAutoCreate : function(){
21003         
21004         
21005         var fc_button = function(name, corner, style, content ) {
21006             return Roo.apply({},{
21007                 tag : 'span',
21008                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
21009                          (corner.length ?
21010                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
21011                             ''
21012                         ),
21013                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
21014                 unselectable: 'on'
21015             });
21016         };
21017         
21018         var header = {};
21019         
21020         if(!this.header){
21021             header = {
21022                 tag : 'table',
21023                 cls : 'fc-header',
21024                 style : 'width:100%',
21025                 cn : [
21026                     {
21027                         tag: 'tr',
21028                         cn : [
21029                             {
21030                                 tag : 'td',
21031                                 cls : 'fc-header-left',
21032                                 cn : [
21033                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
21034                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
21035                                     { tag: 'span', cls: 'fc-header-space' },
21036                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
21037
21038
21039                                 ]
21040                             },
21041
21042                             {
21043                                 tag : 'td',
21044                                 cls : 'fc-header-center',
21045                                 cn : [
21046                                     {
21047                                         tag: 'span',
21048                                         cls: 'fc-header-title',
21049                                         cn : {
21050                                             tag: 'H2',
21051                                             html : 'month / year'
21052                                         }
21053                                     }
21054
21055                                 ]
21056                             },
21057                             {
21058                                 tag : 'td',
21059                                 cls : 'fc-header-right',
21060                                 cn : [
21061                               /*      fc_button('month', 'left', '', 'month' ),
21062                                     fc_button('week', '', '', 'week' ),
21063                                     fc_button('day', 'right', '', 'day' )
21064                                 */    
21065
21066                                 ]
21067                             }
21068
21069                         ]
21070                     }
21071                 ]
21072             };
21073         }
21074         
21075         header = this.header;
21076         
21077        
21078         var cal_heads = function() {
21079             var ret = [];
21080             // fixme - handle this.
21081             
21082             for (var i =0; i < Date.dayNames.length; i++) {
21083                 var d = Date.dayNames[i];
21084                 ret.push({
21085                     tag: 'th',
21086                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
21087                     html : d.substring(0,3)
21088                 });
21089                 
21090             }
21091             ret[0].cls += ' fc-first';
21092             ret[6].cls += ' fc-last';
21093             return ret;
21094         };
21095         var cal_cell = function(n) {
21096             return  {
21097                 tag: 'td',
21098                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
21099                 cn : [
21100                     {
21101                         cn : [
21102                             {
21103                                 cls: 'fc-day-number',
21104                                 html: 'D'
21105                             },
21106                             {
21107                                 cls: 'fc-day-content',
21108                              
21109                                 cn : [
21110                                      {
21111                                         style: 'position: relative;' // height: 17px;
21112                                     }
21113                                 ]
21114                             }
21115                             
21116                             
21117                         ]
21118                     }
21119                 ]
21120                 
21121             }
21122         };
21123         var cal_rows = function() {
21124             
21125             var ret = [];
21126             for (var r = 0; r < 6; r++) {
21127                 var row= {
21128                     tag : 'tr',
21129                     cls : 'fc-week',
21130                     cn : []
21131                 };
21132                 
21133                 for (var i =0; i < Date.dayNames.length; i++) {
21134                     var d = Date.dayNames[i];
21135                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
21136
21137                 }
21138                 row.cn[0].cls+=' fc-first';
21139                 row.cn[0].cn[0].style = 'min-height:90px';
21140                 row.cn[6].cls+=' fc-last';
21141                 ret.push(row);
21142                 
21143             }
21144             ret[0].cls += ' fc-first';
21145             ret[4].cls += ' fc-prev-last';
21146             ret[5].cls += ' fc-last';
21147             return ret;
21148             
21149         };
21150         
21151         var cal_table = {
21152             tag: 'table',
21153             cls: 'fc-border-separate',
21154             style : 'width:100%',
21155             cellspacing  : 0,
21156             cn : [
21157                 { 
21158                     tag: 'thead',
21159                     cn : [
21160                         { 
21161                             tag: 'tr',
21162                             cls : 'fc-first fc-last',
21163                             cn : cal_heads()
21164                         }
21165                     ]
21166                 },
21167                 { 
21168                     tag: 'tbody',
21169                     cn : cal_rows()
21170                 }
21171                   
21172             ]
21173         };
21174          
21175          var cfg = {
21176             cls : 'fc fc-ltr',
21177             cn : [
21178                 header,
21179                 {
21180                     cls : 'fc-content',
21181                     style : "position: relative;",
21182                     cn : [
21183                         {
21184                             cls : 'fc-view fc-view-month fc-grid',
21185                             style : 'position: relative',
21186                             unselectable : 'on',
21187                             cn : [
21188                                 {
21189                                     cls : 'fc-event-container',
21190                                     style : 'position:absolute;z-index:8;top:0;left:0;'
21191                                 },
21192                                 cal_table
21193                             ]
21194                         }
21195                     ]
21196     
21197                 }
21198            ] 
21199             
21200         };
21201         
21202          
21203         
21204         return cfg;
21205     },
21206     
21207     
21208     initEvents : function()
21209     {
21210         if(!this.store){
21211             throw "can not find store for calendar";
21212         }
21213         
21214         var mark = {
21215             tag: "div",
21216             cls:"x-dlg-mask",
21217             style: "text-align:center",
21218             cn: [
21219                 {
21220                     tag: "div",
21221                     style: "background-color:white;width:50%;margin:250 auto",
21222                     cn: [
21223                         {
21224                             tag: "img",
21225                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
21226                         },
21227                         {
21228                             tag: "span",
21229                             html: "Loading"
21230                         }
21231                         
21232                     ]
21233                 }
21234             ]
21235         };
21236         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
21237         
21238         var size = this.el.select('.fc-content', true).first().getSize();
21239         this.maskEl.setSize(size.width, size.height);
21240         this.maskEl.enableDisplayMode("block");
21241         if(!this.loadMask){
21242             this.maskEl.hide();
21243         }
21244         
21245         this.store = Roo.factory(this.store, Roo.data);
21246         this.store.on('load', this.onLoad, this);
21247         this.store.on('beforeload', this.onBeforeLoad, this);
21248         
21249         this.resize();
21250         
21251         this.cells = this.el.select('.fc-day',true);
21252         //Roo.log(this.cells);
21253         this.textNodes = this.el.query('.fc-day-number');
21254         this.cells.addClassOnOver('fc-state-hover');
21255         
21256         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
21257         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
21258         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
21259         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
21260         
21261         this.on('monthchange', this.onMonthChange, this);
21262         
21263         this.update(new Date().clearTime());
21264     },
21265     
21266     resize : function() {
21267         var sz  = this.el.getSize();
21268         
21269         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
21270         this.el.select('.fc-day-content div',true).setHeight(34);
21271     },
21272     
21273     
21274     // private
21275     showPrevMonth : function(e){
21276         this.update(this.activeDate.add("mo", -1));
21277     },
21278     showToday : function(e){
21279         this.update(new Date().clearTime());
21280     },
21281     // private
21282     showNextMonth : function(e){
21283         this.update(this.activeDate.add("mo", 1));
21284     },
21285
21286     // private
21287     showPrevYear : function(){
21288         this.update(this.activeDate.add("y", -1));
21289     },
21290
21291     // private
21292     showNextYear : function(){
21293         this.update(this.activeDate.add("y", 1));
21294     },
21295
21296     
21297    // private
21298     update : function(date)
21299     {
21300         var vd = this.activeDate;
21301         this.activeDate = date;
21302 //        if(vd && this.el){
21303 //            var t = date.getTime();
21304 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
21305 //                Roo.log('using add remove');
21306 //                
21307 //                this.fireEvent('monthchange', this, date);
21308 //                
21309 //                this.cells.removeClass("fc-state-highlight");
21310 //                this.cells.each(function(c){
21311 //                   if(c.dateValue == t){
21312 //                       c.addClass("fc-state-highlight");
21313 //                       setTimeout(function(){
21314 //                            try{c.dom.firstChild.focus();}catch(e){}
21315 //                       }, 50);
21316 //                       return false;
21317 //                   }
21318 //                   return true;
21319 //                });
21320 //                return;
21321 //            }
21322 //        }
21323         
21324         var days = date.getDaysInMonth();
21325         
21326         var firstOfMonth = date.getFirstDateOfMonth();
21327         var startingPos = firstOfMonth.getDay()-this.startDay;
21328         
21329         if(startingPos < this.startDay){
21330             startingPos += 7;
21331         }
21332         
21333         var pm = date.add(Date.MONTH, -1);
21334         var prevStart = pm.getDaysInMonth()-startingPos;
21335 //        
21336         this.cells = this.el.select('.fc-day',true);
21337         this.textNodes = this.el.query('.fc-day-number');
21338         this.cells.addClassOnOver('fc-state-hover');
21339         
21340         var cells = this.cells.elements;
21341         var textEls = this.textNodes;
21342         
21343         Roo.each(cells, function(cell){
21344             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
21345         });
21346         
21347         days += startingPos;
21348
21349         // convert everything to numbers so it's fast
21350         var day = 86400000;
21351         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
21352         //Roo.log(d);
21353         //Roo.log(pm);
21354         //Roo.log(prevStart);
21355         
21356         var today = new Date().clearTime().getTime();
21357         var sel = date.clearTime().getTime();
21358         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
21359         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
21360         var ddMatch = this.disabledDatesRE;
21361         var ddText = this.disabledDatesText;
21362         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
21363         var ddaysText = this.disabledDaysText;
21364         var format = this.format;
21365         
21366         var setCellClass = function(cal, cell){
21367             cell.row = 0;
21368             cell.events = [];
21369             cell.more = [];
21370             //Roo.log('set Cell Class');
21371             cell.title = "";
21372             var t = d.getTime();
21373             
21374             //Roo.log(d);
21375             
21376             cell.dateValue = t;
21377             if(t == today){
21378                 cell.className += " fc-today";
21379                 cell.className += " fc-state-highlight";
21380                 cell.title = cal.todayText;
21381             }
21382             if(t == sel){
21383                 // disable highlight in other month..
21384                 //cell.className += " fc-state-highlight";
21385                 
21386             }
21387             // disabling
21388             if(t < min) {
21389                 cell.className = " fc-state-disabled";
21390                 cell.title = cal.minText;
21391                 return;
21392             }
21393             if(t > max) {
21394                 cell.className = " fc-state-disabled";
21395                 cell.title = cal.maxText;
21396                 return;
21397             }
21398             if(ddays){
21399                 if(ddays.indexOf(d.getDay()) != -1){
21400                     cell.title = ddaysText;
21401                     cell.className = " fc-state-disabled";
21402                 }
21403             }
21404             if(ddMatch && format){
21405                 var fvalue = d.dateFormat(format);
21406                 if(ddMatch.test(fvalue)){
21407                     cell.title = ddText.replace("%0", fvalue);
21408                     cell.className = " fc-state-disabled";
21409                 }
21410             }
21411             
21412             if (!cell.initialClassName) {
21413                 cell.initialClassName = cell.dom.className;
21414             }
21415             
21416             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
21417         };
21418
21419         var i = 0;
21420         
21421         for(; i < startingPos; i++) {
21422             textEls[i].innerHTML = (++prevStart);
21423             d.setDate(d.getDate()+1);
21424             
21425             cells[i].className = "fc-past fc-other-month";
21426             setCellClass(this, cells[i]);
21427         }
21428         
21429         var intDay = 0;
21430         
21431         for(; i < days; i++){
21432             intDay = i - startingPos + 1;
21433             textEls[i].innerHTML = (intDay);
21434             d.setDate(d.getDate()+1);
21435             
21436             cells[i].className = ''; // "x-date-active";
21437             setCellClass(this, cells[i]);
21438         }
21439         var extraDays = 0;
21440         
21441         for(; i < 42; i++) {
21442             textEls[i].innerHTML = (++extraDays);
21443             d.setDate(d.getDate()+1);
21444             
21445             cells[i].className = "fc-future fc-other-month";
21446             setCellClass(this, cells[i]);
21447         }
21448         
21449         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
21450         
21451         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
21452         
21453         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
21454         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
21455         
21456         if(totalRows != 6){
21457             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
21458             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
21459         }
21460         
21461         this.fireEvent('monthchange', this, date);
21462         
21463         
21464         /*
21465         if(!this.internalRender){
21466             var main = this.el.dom.firstChild;
21467             var w = main.offsetWidth;
21468             this.el.setWidth(w + this.el.getBorderWidth("lr"));
21469             Roo.fly(main).setWidth(w);
21470             this.internalRender = true;
21471             // opera does not respect the auto grow header center column
21472             // then, after it gets a width opera refuses to recalculate
21473             // without a second pass
21474             if(Roo.isOpera && !this.secondPass){
21475                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
21476                 this.secondPass = true;
21477                 this.update.defer(10, this, [date]);
21478             }
21479         }
21480         */
21481         
21482     },
21483     
21484     findCell : function(dt) {
21485         dt = dt.clearTime().getTime();
21486         var ret = false;
21487         this.cells.each(function(c){
21488             //Roo.log("check " +c.dateValue + '?=' + dt);
21489             if(c.dateValue == dt){
21490                 ret = c;
21491                 return false;
21492             }
21493             return true;
21494         });
21495         
21496         return ret;
21497     },
21498     
21499     findCells : function(ev) {
21500         var s = ev.start.clone().clearTime().getTime();
21501        // Roo.log(s);
21502         var e= ev.end.clone().clearTime().getTime();
21503        // Roo.log(e);
21504         var ret = [];
21505         this.cells.each(function(c){
21506              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
21507             
21508             if(c.dateValue > e){
21509                 return ;
21510             }
21511             if(c.dateValue < s){
21512                 return ;
21513             }
21514             ret.push(c);
21515         });
21516         
21517         return ret;    
21518     },
21519     
21520 //    findBestRow: function(cells)
21521 //    {
21522 //        var ret = 0;
21523 //        
21524 //        for (var i =0 ; i < cells.length;i++) {
21525 //            ret  = Math.max(cells[i].rows || 0,ret);
21526 //        }
21527 //        return ret;
21528 //        
21529 //    },
21530     
21531     
21532     addItem : function(ev)
21533     {
21534         // look for vertical location slot in
21535         var cells = this.findCells(ev);
21536         
21537 //        ev.row = this.findBestRow(cells);
21538         
21539         // work out the location.
21540         
21541         var crow = false;
21542         var rows = [];
21543         for(var i =0; i < cells.length; i++) {
21544             
21545             cells[i].row = cells[0].row;
21546             
21547             if(i == 0){
21548                 cells[i].row = cells[i].row + 1;
21549             }
21550             
21551             if (!crow) {
21552                 crow = {
21553                     start : cells[i],
21554                     end :  cells[i]
21555                 };
21556                 continue;
21557             }
21558             if (crow.start.getY() == cells[i].getY()) {
21559                 // on same row.
21560                 crow.end = cells[i];
21561                 continue;
21562             }
21563             // different row.
21564             rows.push(crow);
21565             crow = {
21566                 start: cells[i],
21567                 end : cells[i]
21568             };
21569             
21570         }
21571         
21572         rows.push(crow);
21573         ev.els = [];
21574         ev.rows = rows;
21575         ev.cells = cells;
21576         
21577         cells[0].events.push(ev);
21578         
21579         this.calevents.push(ev);
21580     },
21581     
21582     clearEvents: function() {
21583         
21584         if(!this.calevents){
21585             return;
21586         }
21587         
21588         Roo.each(this.cells.elements, function(c){
21589             c.row = 0;
21590             c.events = [];
21591             c.more = [];
21592         });
21593         
21594         Roo.each(this.calevents, function(e) {
21595             Roo.each(e.els, function(el) {
21596                 el.un('mouseenter' ,this.onEventEnter, this);
21597                 el.un('mouseleave' ,this.onEventLeave, this);
21598                 el.remove();
21599             },this);
21600         },this);
21601         
21602         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
21603             e.remove();
21604         });
21605         
21606     },
21607     
21608     renderEvents: function()
21609     {   
21610         var _this = this;
21611         
21612         this.cells.each(function(c) {
21613             
21614             if(c.row < 5){
21615                 return;
21616             }
21617             
21618             var ev = c.events;
21619             
21620             var r = 4;
21621             if(c.row != c.events.length){
21622                 r = 4 - (4 - (c.row - c.events.length));
21623             }
21624             
21625             c.events = ev.slice(0, r);
21626             c.more = ev.slice(r);
21627             
21628             if(c.more.length && c.more.length == 1){
21629                 c.events.push(c.more.pop());
21630             }
21631             
21632             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
21633             
21634         });
21635             
21636         this.cells.each(function(c) {
21637             
21638             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
21639             
21640             
21641             for (var e = 0; e < c.events.length; e++){
21642                 var ev = c.events[e];
21643                 var rows = ev.rows;
21644                 
21645                 for(var i = 0; i < rows.length; i++) {
21646                 
21647                     // how many rows should it span..
21648
21649                     var  cfg = {
21650                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
21651                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
21652
21653                         unselectable : "on",
21654                         cn : [
21655                             {
21656                                 cls: 'fc-event-inner',
21657                                 cn : [
21658     //                                {
21659     //                                  tag:'span',
21660     //                                  cls: 'fc-event-time',
21661     //                                  html : cells.length > 1 ? '' : ev.time
21662     //                                },
21663                                     {
21664                                       tag:'span',
21665                                       cls: 'fc-event-title',
21666                                       html : String.format('{0}', ev.title)
21667                                     }
21668
21669
21670                                 ]
21671                             },
21672                             {
21673                                 cls: 'ui-resizable-handle ui-resizable-e',
21674                                 html : '&nbsp;&nbsp;&nbsp'
21675                             }
21676
21677                         ]
21678                     };
21679
21680                     if (i == 0) {
21681                         cfg.cls += ' fc-event-start';
21682                     }
21683                     if ((i+1) == rows.length) {
21684                         cfg.cls += ' fc-event-end';
21685                     }
21686
21687                     var ctr = _this.el.select('.fc-event-container',true).first();
21688                     var cg = ctr.createChild(cfg);
21689
21690                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
21691                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
21692
21693                     var r = (c.more.length) ? 1 : 0;
21694                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
21695                     cg.setWidth(ebox.right - sbox.x -2);
21696
21697                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
21698                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
21699                     cg.on('click', _this.onEventClick, _this, ev);
21700
21701                     ev.els.push(cg);
21702                     
21703                 }
21704                 
21705             }
21706             
21707             
21708             if(c.more.length){
21709                 var  cfg = {
21710                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
21711                     style : 'position: absolute',
21712                     unselectable : "on",
21713                     cn : [
21714                         {
21715                             cls: 'fc-event-inner',
21716                             cn : [
21717                                 {
21718                                   tag:'span',
21719                                   cls: 'fc-event-title',
21720                                   html : 'More'
21721                                 }
21722
21723
21724                             ]
21725                         },
21726                         {
21727                             cls: 'ui-resizable-handle ui-resizable-e',
21728                             html : '&nbsp;&nbsp;&nbsp'
21729                         }
21730
21731                     ]
21732                 };
21733
21734                 var ctr = _this.el.select('.fc-event-container',true).first();
21735                 var cg = ctr.createChild(cfg);
21736
21737                 var sbox = c.select('.fc-day-content',true).first().getBox();
21738                 var ebox = c.select('.fc-day-content',true).first().getBox();
21739                 //Roo.log(cg);
21740                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
21741                 cg.setWidth(ebox.right - sbox.x -2);
21742
21743                 cg.on('click', _this.onMoreEventClick, _this, c.more);
21744                 
21745             }
21746             
21747         });
21748         
21749         
21750         
21751     },
21752     
21753     onEventEnter: function (e, el,event,d) {
21754         this.fireEvent('evententer', this, el, event);
21755     },
21756     
21757     onEventLeave: function (e, el,event,d) {
21758         this.fireEvent('eventleave', this, el, event);
21759     },
21760     
21761     onEventClick: function (e, el,event,d) {
21762         this.fireEvent('eventclick', this, el, event);
21763     },
21764     
21765     onMonthChange: function () {
21766         this.store.load();
21767     },
21768     
21769     onMoreEventClick: function(e, el, more)
21770     {
21771         var _this = this;
21772         
21773         this.calpopover.placement = 'right';
21774         this.calpopover.setTitle('More');
21775         
21776         this.calpopover.setContent('');
21777         
21778         var ctr = this.calpopover.el.select('.popover-content', true).first();
21779         
21780         Roo.each(more, function(m){
21781             var cfg = {
21782                 cls : 'fc-event-hori fc-event-draggable',
21783                 html : m.title
21784             };
21785             var cg = ctr.createChild(cfg);
21786             
21787             cg.on('click', _this.onEventClick, _this, m);
21788         });
21789         
21790         this.calpopover.show(el);
21791         
21792         
21793     },
21794     
21795     onLoad: function () 
21796     {   
21797         this.calevents = [];
21798         var cal = this;
21799         
21800         if(this.store.getCount() > 0){
21801             this.store.data.each(function(d){
21802                cal.addItem({
21803                     id : d.data.id,
21804                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
21805                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
21806                     time : d.data.start_time,
21807                     title : d.data.title,
21808                     description : d.data.description,
21809                     venue : d.data.venue
21810                 });
21811             });
21812         }
21813         
21814         this.renderEvents();
21815         
21816         if(this.calevents.length && this.loadMask){
21817             this.maskEl.hide();
21818         }
21819     },
21820     
21821     onBeforeLoad: function()
21822     {
21823         this.clearEvents();
21824         if(this.loadMask){
21825             this.maskEl.show();
21826         }
21827     }
21828 });
21829
21830  
21831  /*
21832  * - LGPL
21833  *
21834  * element
21835  * 
21836  */
21837
21838 /**
21839  * @class Roo.bootstrap.Popover
21840  * @extends Roo.bootstrap.Component
21841  * @parent none builder
21842  * @children Roo.bootstrap.Component
21843  * Bootstrap Popover class
21844  * @cfg {String} html contents of the popover   (or false to use children..)
21845  * @cfg {String} title of popover (or false to hide)
21846  * @cfg {String|function} (right|top|bottom|left|auto) placement how it is placed
21847  * @cfg {String} trigger click || hover (or false to trigger manually)
21848  * @cfg {Boolean} modal - popovers that are modal will mask the screen, and must be closed with another event.
21849  * @cfg {String|Boolean|Roo.Element} add click hander to trigger show over what element
21850  *      - if false and it has a 'parent' then it will be automatically added to that element
21851  *      - if string - Roo.get  will be called 
21852  * @cfg {Number} delay - delay before showing
21853  
21854  * @constructor
21855  * Create a new Popover
21856  * @param {Object} config The config object
21857  */
21858
21859 Roo.bootstrap.Popover = function(config){
21860     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
21861     
21862     this.addEvents({
21863         // raw events
21864          /**
21865          * @event show
21866          * After the popover show
21867          * 
21868          * @param {Roo.bootstrap.Popover} this
21869          */
21870         "show" : true,
21871         /**
21872          * @event hide
21873          * After the popover hide
21874          * 
21875          * @param {Roo.bootstrap.Popover} this
21876          */
21877         "hide" : true
21878     });
21879 };
21880
21881 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
21882     
21883     title: false,
21884     html: false,
21885     
21886     placement : 'right',
21887     trigger : 'hover', // hover
21888     modal : false,
21889     delay : 0,
21890     
21891     over: false,
21892     
21893     can_build_overlaid : false,
21894     
21895     maskEl : false, // the mask element
21896     headerEl : false,
21897     contentEl : false,
21898     alignEl : false, // when show is called with an element - this get's stored.
21899     
21900     getChildContainer : function()
21901     {
21902         return this.contentEl;
21903         
21904     },
21905     getPopoverHeader : function()
21906     {
21907         this.title = true; // flag not to hide it..
21908         this.headerEl.addClass('p-0');
21909         return this.headerEl
21910     },
21911     
21912     
21913     getAutoCreate : function(){
21914          
21915         var cfg = {
21916            cls : 'popover roo-dynamic shadow roo-popover' + (this.modal ? '-modal' : ''),
21917            style: 'display:block',
21918            cn : [
21919                 {
21920                     cls : 'arrow'
21921                 },
21922                 {
21923                     cls : 'popover-inner ',
21924                     cn : [
21925                         {
21926                             tag: 'h3',
21927                             cls: 'popover-title popover-header',
21928                             html : this.title === false ? '' : this.title
21929                         },
21930                         {
21931                             cls : 'popover-content popover-body '  + (this.cls || ''),
21932                             html : this.html || ''
21933                         }
21934                     ]
21935                     
21936                 }
21937            ]
21938         };
21939         
21940         return cfg;
21941     },
21942     /**
21943      * @param {string} the title
21944      */
21945     setTitle: function(str)
21946     {
21947         this.title = str;
21948         if (this.el) {
21949             this.headerEl.dom.innerHTML = str;
21950         }
21951         
21952     },
21953     /**
21954      * @param {string} the body content
21955      */
21956     setContent: function(str)
21957     {
21958         this.html = str;
21959         if (this.contentEl) {
21960             this.contentEl.dom.innerHTML = str;
21961         }
21962         
21963     },
21964     // as it get's added to the bottom of the page.
21965     onRender : function(ct, position)
21966     {
21967         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
21968         
21969         
21970         
21971         if(!this.el){
21972             var cfg = Roo.apply({},  this.getAutoCreate());
21973             cfg.id = Roo.id();
21974             
21975             if (this.cls) {
21976                 cfg.cls += ' ' + this.cls;
21977             }
21978             if (this.style) {
21979                 cfg.style = this.style;
21980             }
21981             //Roo.log("adding to ");
21982             this.el = Roo.get(document.body).createChild(cfg, position);
21983 //            Roo.log(this.el);
21984         }
21985         
21986         this.contentEl = this.el.select('.popover-content',true).first();
21987         this.headerEl =  this.el.select('.popover-title',true).first();
21988         
21989         var nitems = [];
21990         if(typeof(this.items) != 'undefined'){
21991             var items = this.items;
21992             delete this.items;
21993
21994             for(var i =0;i < items.length;i++) {
21995                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
21996             }
21997         }
21998
21999         this.items = nitems;
22000         
22001         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
22002         Roo.EventManager.onWindowResize(this.resizeMask, this, true);
22003         
22004         
22005         
22006         this.initEvents();
22007     },
22008     
22009     resizeMask : function()
22010     {
22011         this.maskEl.setSize(
22012             Roo.lib.Dom.getViewWidth(true),
22013             Roo.lib.Dom.getViewHeight(true)
22014         );
22015     },
22016     
22017     initEvents : function()
22018     {
22019         
22020         if (!this.modal) { 
22021             Roo.bootstrap.Popover.register(this);
22022         }
22023          
22024         this.arrowEl = this.el.select('.arrow',true).first();
22025         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY); // probably not needed as it's default in BS4
22026         this.el.enableDisplayMode('block');
22027         this.el.hide();
22028  
22029         
22030         if (this.over === false && !this.parent()) {
22031             return; 
22032         }
22033         if (this.triggers === false) {
22034             return;
22035         }
22036          
22037         // support parent
22038         var on_el = (this.over == 'parent' || this.over === false) ? this.parent().el : Roo.get(this.over);
22039         var triggers = this.trigger ? this.trigger.split(' ') : [];
22040         Roo.each(triggers, function(trigger) {
22041         
22042             if (trigger == 'click') {
22043                 on_el.on('click', this.toggle, this);
22044             } else if (trigger != 'manual') {
22045                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin';
22046                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout';
22047       
22048                 on_el.on(eventIn  ,this.enter, this);
22049                 on_el.on(eventOut, this.leave, this);
22050             }
22051         }, this);
22052     },
22053     
22054     
22055     // private
22056     timeout : null,
22057     hoverState : null,
22058     
22059     toggle : function () {
22060         this.hoverState == 'in' ? this.leave() : this.enter();
22061     },
22062     
22063     enter : function () {
22064         
22065         clearTimeout(this.timeout);
22066     
22067         this.hoverState = 'in';
22068     
22069         if (!this.delay || !this.delay.show) {
22070             this.show();
22071             return;
22072         }
22073         var _t = this;
22074         this.timeout = setTimeout(function () {
22075             if (_t.hoverState == 'in') {
22076                 _t.show();
22077             }
22078         }, this.delay.show)
22079     },
22080     
22081     leave : function() {
22082         clearTimeout(this.timeout);
22083     
22084         this.hoverState = 'out';
22085     
22086         if (!this.delay || !this.delay.hide) {
22087             this.hide();
22088             return;
22089         }
22090         var _t = this;
22091         this.timeout = setTimeout(function () {
22092             if (_t.hoverState == 'out') {
22093                 _t.hide();
22094             }
22095         }, this.delay.hide)
22096     },
22097     
22098     /**
22099      * update the position of the dialog
22100      * normally this is needed if the popover get's bigger - due to a Table reload etc..
22101      * 
22102      *
22103      */
22104     
22105     doAlign : function()
22106     {
22107         
22108         if (this.alignEl) {
22109             this.updatePosition(this.placement, true);
22110              
22111         } else {
22112             // this is usually just done by the builder = to show the popoup in the middle of the scren.
22113             var es = this.el.getSize();
22114             var x = Roo.lib.Dom.getViewWidth()/2;
22115             var y = Roo.lib.Dom.getViewHeight()/2;
22116             this.el.setXY([ x-(es.width/2),  y-(es.height/2)] );
22117             
22118         }
22119
22120          
22121          
22122         
22123         
22124     },
22125     
22126     /**
22127      * Show the popover
22128      * @param {Roo.Element|string|Boolean} - element to align and point to. (set align to [ pos, offset ])
22129      * @param {string} (left|right|top|bottom) position
22130      */
22131     show : function (on_el, placement)
22132     {
22133         this.placement = typeof(placement) == 'undefined' ?  this.placement   : placement;
22134         on_el = on_el || false; // default to false
22135          
22136         if (!on_el) {
22137             if (this.parent() && (this.over == 'parent' || (this.over === false))) {
22138                 on_el = this.parent().el;
22139             } else if (this.over) {
22140                 on_el = Roo.get(this.over);
22141             }
22142             
22143         }
22144         
22145         this.alignEl = Roo.get( on_el );
22146
22147         if (!this.el) {
22148             this.render(document.body);
22149         }
22150         
22151         
22152          
22153         
22154         if (this.title === false) {
22155             this.headerEl.hide();
22156         }
22157         
22158        
22159         this.el.show();
22160         this.el.dom.style.display = 'block';
22161          
22162         this.doAlign();
22163         
22164         //var arrow = this.el.select('.arrow',true).first();
22165         //arrow.set(align[2], 
22166         
22167         this.el.addClass('in');
22168         
22169          
22170         
22171         this.hoverState = 'in';
22172         
22173         if (this.modal) {
22174             this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
22175             this.maskEl.setStyle('z-index', Roo.bootstrap.Popover.zIndex++);
22176             this.maskEl.dom.style.display = 'block';
22177             this.maskEl.addClass('show');
22178         }
22179         this.el.setStyle('z-index', Roo.bootstrap.Popover.zIndex++);
22180  
22181         this.fireEvent('show', this);
22182         
22183     },
22184     /**
22185      * fire this manually after loading a grid in the table for example
22186      * @param {string} (left|right|top|bottom) where to try and put it (use false to use the last one)
22187      * @param {Boolean} try and move it if we cant get right position.
22188      */
22189     updatePosition : function(placement, try_move)
22190     {
22191         // allow for calling with no parameters
22192         placement = placement   ? placement :  this.placement;
22193         try_move = typeof(try_move) == 'undefined' ? true : try_move;
22194         
22195         this.el.removeClass([
22196             'fade','top','bottom', 'left', 'right','in',
22197             'bs-popover-top','bs-popover-bottom', 'bs-popover-left', 'bs-popover-right'
22198         ]);
22199         this.el.addClass(placement + ' bs-popover-' + placement);
22200         
22201         if (!this.alignEl ) {
22202             return false;
22203         }
22204         
22205         switch (placement) {
22206             case 'right':
22207                 var exact = this.el.getAlignToXY(this.alignEl, 'tl-tr', [10,0]);
22208                 var offset = this.el.getAlignToXY(this.alignEl, 'tl-tr?',[10,0]);
22209                 if (!try_move || exact.equals(offset) || exact[0] == offset[0] ) {
22210                     //normal display... or moved up/down.
22211                     this.el.setXY(offset);
22212                     var xy = this.alignEl.getAnchorXY('tr', false);
22213                     xy[0]+=2;xy[1]+=5;
22214                     this.arrowEl.setXY(xy);
22215                     return true;
22216                 }
22217                 // continue through...
22218                 return this.updatePosition('left', false);
22219                 
22220             
22221             case 'left':
22222                 var exact = this.el.getAlignToXY(this.alignEl, 'tr-tl', [-10,0]);
22223                 var offset = this.el.getAlignToXY(this.alignEl, 'tr-tl?',[-10,0]);
22224                 if (!try_move || exact.equals(offset) || exact[0] == offset[0] ) {
22225                     //normal display... or moved up/down.
22226                     this.el.setXY(offset);
22227                     var xy = this.alignEl.getAnchorXY('tl', false);
22228                     xy[0]-=10;xy[1]+=5; // << fix me
22229                     this.arrowEl.setXY(xy);
22230                     return true;
22231                 }
22232                 // call self...
22233                 return this.updatePosition('right', false);
22234             
22235             case 'top':
22236                 var exact = this.el.getAlignToXY(this.alignEl, 'b-t', [0,-10]);
22237                 var offset = this.el.getAlignToXY(this.alignEl, 'b-t?',[0,-10]);
22238                 if (!try_move || exact.equals(offset) || exact[1] == offset[1] ) {
22239                     //normal display... or moved up/down.
22240                     this.el.setXY(offset);
22241                     var xy = this.alignEl.getAnchorXY('t', false);
22242                     xy[1]-=10; // << fix me
22243                     this.arrowEl.setXY(xy);
22244                     return true;
22245                 }
22246                 // fall through
22247                return this.updatePosition('bottom', false);
22248             
22249             case 'bottom':
22250                  var exact = this.el.getAlignToXY(this.alignEl, 't-b', [0,10]);
22251                 var offset = this.el.getAlignToXY(this.alignEl, 't-b?',[0,10]);
22252                 if (!try_move || exact.equals(offset) || exact[1] == offset[1] ) {
22253                     //normal display... or moved up/down.
22254                     this.el.setXY(offset);
22255                     var xy = this.alignEl.getAnchorXY('b', false);
22256                      xy[1]+=2; // << fix me
22257                     this.arrowEl.setXY(xy);
22258                     return true;
22259                 }
22260                 // fall through
22261                 return this.updatePosition('top', false);
22262                 
22263             
22264         }
22265         
22266         
22267         return false;
22268     },
22269     
22270     hide : function()
22271     {
22272         this.el.setXY([0,0]);
22273         this.el.removeClass('in');
22274         this.el.hide();
22275         this.hoverState = null;
22276         this.maskEl.hide(); // always..
22277         this.fireEvent('hide', this);
22278     }
22279     
22280 });
22281
22282
22283 Roo.apply(Roo.bootstrap.Popover, {
22284
22285     alignment : {
22286         'left' : ['r-l', [-10,0], 'left bs-popover-left'],
22287         'right' : ['l-br', [10,0], 'right bs-popover-right'],
22288         'bottom' : ['t-b', [0,10], 'top bs-popover-top'],
22289         'top' : [ 'b-t', [0,-10], 'bottom bs-popover-bottom']
22290     },
22291     
22292     zIndex : 20001,
22293
22294     clickHander : false,
22295     
22296     
22297
22298     onMouseDown : function(e)
22299     {
22300         if (this.popups.length &&  !e.getTarget(".roo-popover")) {
22301             /// what is nothing is showing..
22302             this.hideAll();
22303         }
22304          
22305     },
22306     
22307     
22308     popups : [],
22309     
22310     register : function(popup)
22311     {
22312         if (!Roo.bootstrap.Popover.clickHandler) {
22313             Roo.bootstrap.Popover.clickHandler = Roo.get(document).on("mousedown", Roo.bootstrap.Popover.onMouseDown, Roo.bootstrap.Popover);
22314         }
22315         // hide other popups.
22316         popup.on('show', Roo.bootstrap.Popover.onShow,  popup);
22317         popup.on('hide', Roo.bootstrap.Popover.onHide,  popup);
22318         this.hideAll(); //<< why?
22319         //this.popups.push(popup);
22320     },
22321     hideAll : function()
22322     {
22323         this.popups.forEach(function(p) {
22324             p.hide();
22325         });
22326     },
22327     onShow : function() {
22328         Roo.bootstrap.Popover.popups.push(this);
22329     },
22330     onHide : function() {
22331         Roo.bootstrap.Popover.popups.remove(this);
22332     } 
22333
22334 });
22335 /**
22336  * @class Roo.bootstrap.PopoverNav
22337  * @extends Roo.bootstrap.nav.Simplebar
22338  * @parent Roo.bootstrap.Popover
22339  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container
22340  * @licence LGPL
22341  * Bootstrap Popover header navigation class
22342  * FIXME? should this go under nav?
22343  *
22344  * 
22345  * @constructor
22346  * Create a new Popover Header Navigation 
22347  * @param {Object} config The config object
22348  */
22349
22350 Roo.bootstrap.PopoverNav = function(config){
22351     Roo.bootstrap.PopoverNav.superclass.constructor.call(this, config);
22352 };
22353
22354 Roo.extend(Roo.bootstrap.PopoverNav, Roo.bootstrap.nav.Simplebar,  {
22355     
22356     
22357     container_method : 'getPopoverHeader' 
22358     
22359      
22360     
22361     
22362    
22363 });
22364
22365  
22366
22367  /*
22368  * - LGPL
22369  *
22370  * Progress
22371  * 
22372  */
22373
22374 /**
22375  * @class Roo.bootstrap.Progress
22376  * @extends Roo.bootstrap.Component
22377  * @children Roo.bootstrap.ProgressBar
22378  * Bootstrap Progress class
22379  * @cfg {Boolean} striped striped of the progress bar
22380  * @cfg {Boolean} active animated of the progress bar
22381  * 
22382  * 
22383  * @constructor
22384  * Create a new Progress
22385  * @param {Object} config The config object
22386  */
22387
22388 Roo.bootstrap.Progress = function(config){
22389     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
22390 };
22391
22392 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
22393     
22394     striped : false,
22395     active: false,
22396     
22397     getAutoCreate : function(){
22398         var cfg = {
22399             tag: 'div',
22400             cls: 'progress'
22401         };
22402         
22403         
22404         if(this.striped){
22405             cfg.cls += ' progress-striped';
22406         }
22407       
22408         if(this.active){
22409             cfg.cls += ' active';
22410         }
22411         
22412         
22413         return cfg;
22414     }
22415    
22416 });
22417
22418  
22419
22420  /*
22421  * - LGPL
22422  *
22423  * ProgressBar
22424  * 
22425  */
22426
22427 /**
22428  * @class Roo.bootstrap.ProgressBar
22429  * @extends Roo.bootstrap.Component
22430  * Bootstrap ProgressBar class
22431  * @cfg {Number} aria_valuenow aria-value now
22432  * @cfg {Number} aria_valuemin aria-value min
22433  * @cfg {Number} aria_valuemax aria-value max
22434  * @cfg {String} label label for the progress bar
22435  * @cfg {String} panel (success | info | warning | danger )
22436  * @cfg {String} role role of the progress bar
22437  * @cfg {String} sr_only text
22438  * 
22439  * 
22440  * @constructor
22441  * Create a new ProgressBar
22442  * @param {Object} config The config object
22443  */
22444
22445 Roo.bootstrap.ProgressBar = function(config){
22446     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
22447 };
22448
22449 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
22450     
22451     aria_valuenow : 0,
22452     aria_valuemin : 0,
22453     aria_valuemax : 100,
22454     label : false,
22455     panel : false,
22456     role : false,
22457     sr_only: false,
22458     
22459     getAutoCreate : function()
22460     {
22461         
22462         var cfg = {
22463             tag: 'div',
22464             cls: 'progress-bar',
22465             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
22466         };
22467         
22468         if(this.sr_only){
22469             cfg.cn = {
22470                 tag: 'span',
22471                 cls: 'sr-only',
22472                 html: this.sr_only
22473             }
22474         }
22475         
22476         if(this.role){
22477             cfg.role = this.role;
22478         }
22479         
22480         if(this.aria_valuenow){
22481             cfg['aria-valuenow'] = this.aria_valuenow;
22482         }
22483         
22484         if(this.aria_valuemin){
22485             cfg['aria-valuemin'] = this.aria_valuemin;
22486         }
22487         
22488         if(this.aria_valuemax){
22489             cfg['aria-valuemax'] = this.aria_valuemax;
22490         }
22491         
22492         if(this.label && !this.sr_only){
22493             cfg.html = this.label;
22494         }
22495         
22496         if(this.panel){
22497             cfg.cls += ' progress-bar-' + this.panel;
22498         }
22499         
22500         return cfg;
22501     },
22502     
22503     update : function(aria_valuenow)
22504     {
22505         this.aria_valuenow = aria_valuenow;
22506         
22507         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
22508     }
22509    
22510 });
22511
22512  
22513
22514  /**
22515  * @class Roo.bootstrap.TabGroup
22516  * @extends Roo.bootstrap.Column
22517  * @children Roo.bootstrap.TabPanel
22518  * Bootstrap Column class
22519  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
22520  * @cfg {Boolean} carousel true to make the group behave like a carousel
22521  * @cfg {Boolean} bullets show bullets for the panels
22522  * @cfg {Boolean} autoslide (true|false) auto slide .. default false
22523  * @cfg {Number} timer auto slide timer .. default 0 millisecond
22524  * @cfg {Boolean} showarrow (true|false) show arrow default true
22525  * 
22526  * @constructor
22527  * Create a new TabGroup
22528  * @param {Object} config The config object
22529  */
22530
22531 Roo.bootstrap.TabGroup = function(config){
22532     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
22533     if (!this.navId) {
22534         this.navId = Roo.id();
22535     }
22536     this.tabs = [];
22537     Roo.bootstrap.TabGroup.register(this);
22538     
22539 };
22540
22541 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
22542     
22543     carousel : false,
22544     transition : false,
22545     bullets : 0,
22546     timer : 0,
22547     autoslide : false,
22548     slideFn : false,
22549     slideOnTouch : false,
22550     showarrow : true,
22551     
22552     getAutoCreate : function()
22553     {
22554         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
22555         
22556         cfg.cls += ' tab-content';
22557         
22558         if (this.carousel) {
22559             cfg.cls += ' carousel slide';
22560             
22561             cfg.cn = [{
22562                cls : 'carousel-inner',
22563                cn : []
22564             }];
22565         
22566             if(this.bullets  && !Roo.isTouch){
22567                 
22568                 var bullets = {
22569                     cls : 'carousel-bullets',
22570                     cn : []
22571                 };
22572                
22573                 if(this.bullets_cls){
22574                     bullets.cls = bullets.cls + ' ' + this.bullets_cls;
22575                 }
22576                 
22577                 bullets.cn.push({
22578                     cls : 'clear'
22579                 });
22580                 
22581                 cfg.cn[0].cn.push(bullets);
22582             }
22583             
22584             if(this.showarrow){
22585                 cfg.cn[0].cn.push({
22586                     tag : 'div',
22587                     class : 'carousel-arrow',
22588                     cn : [
22589                         {
22590                             tag : 'div',
22591                             class : 'carousel-prev',
22592                             cn : [
22593                                 {
22594                                     tag : 'i',
22595                                     class : 'fa fa-chevron-left'
22596                                 }
22597                             ]
22598                         },
22599                         {
22600                             tag : 'div',
22601                             class : 'carousel-next',
22602                             cn : [
22603                                 {
22604                                     tag : 'i',
22605                                     class : 'fa fa-chevron-right'
22606                                 }
22607                             ]
22608                         }
22609                     ]
22610                 });
22611             }
22612             
22613         }
22614         
22615         return cfg;
22616     },
22617     
22618     initEvents:  function()
22619     {
22620 //        if(Roo.isTouch && this.slideOnTouch && !this.showarrow){
22621 //            this.el.on("touchstart", this.onTouchStart, this);
22622 //        }
22623         
22624         if(this.autoslide){
22625             var _this = this;
22626             
22627             this.slideFn = window.setInterval(function() {
22628                 _this.showPanelNext();
22629             }, this.timer);
22630         }
22631         
22632         if(this.showarrow){
22633             this.el.select('.carousel-prev', true).first().on('click', this.showPanelPrev, this);
22634             this.el.select('.carousel-next', true).first().on('click', this.showPanelNext, this);
22635         }
22636         
22637         
22638     },
22639     
22640 //    onTouchStart : function(e, el, o)
22641 //    {
22642 //        if(!this.slideOnTouch || !Roo.isTouch || Roo.get(e.getTarget()).hasClass('roo-button-text')){
22643 //            return;
22644 //        }
22645 //        
22646 //        this.showPanelNext();
22647 //    },
22648     
22649     
22650     getChildContainer : function()
22651     {
22652         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
22653     },
22654     
22655     /**
22656     * register a Navigation item
22657     * @param {Roo.bootstrap.nav.Item} the navitem to add
22658     */
22659     register : function(item)
22660     {
22661         this.tabs.push( item);
22662         item.navId = this.navId; // not really needed..
22663         this.addBullet();
22664     
22665     },
22666     
22667     getActivePanel : function()
22668     {
22669         var r = false;
22670         Roo.each(this.tabs, function(t) {
22671             if (t.active) {
22672                 r = t;
22673                 return false;
22674             }
22675             return null;
22676         });
22677         return r;
22678         
22679     },
22680     getPanelByName : function(n)
22681     {
22682         var r = false;
22683         Roo.each(this.tabs, function(t) {
22684             if (t.tabId == n) {
22685                 r = t;
22686                 return false;
22687             }
22688             return null;
22689         });
22690         return r;
22691     },
22692     indexOfPanel : function(p)
22693     {
22694         var r = false;
22695         Roo.each(this.tabs, function(t,i) {
22696             if (t.tabId == p.tabId) {
22697                 r = i;
22698                 return false;
22699             }
22700             return null;
22701         });
22702         return r;
22703     },
22704     /**
22705      * show a specific panel
22706      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
22707      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
22708      */
22709     showPanel : function (pan)
22710     {
22711         if(this.transition || typeof(pan) == 'undefined'){
22712             Roo.log("waiting for the transitionend");
22713             return false;
22714         }
22715         
22716         if (typeof(pan) == 'number') {
22717             pan = this.tabs[pan];
22718         }
22719         
22720         if (typeof(pan) == 'string') {
22721             pan = this.getPanelByName(pan);
22722         }
22723         
22724         var cur = this.getActivePanel();
22725         
22726         if(!pan || !cur){
22727             Roo.log('pan or acitve pan is undefined');
22728             return false;
22729         }
22730         
22731         if (pan.tabId == this.getActivePanel().tabId) {
22732             return true;
22733         }
22734         
22735         if (false === cur.fireEvent('beforedeactivate')) {
22736             return false;
22737         }
22738         
22739         if(this.bullets > 0 && !Roo.isTouch){
22740             this.setActiveBullet(this.indexOfPanel(pan));
22741         }
22742         
22743         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
22744             
22745             //class="carousel-item carousel-item-next carousel-item-left"
22746             
22747             this.transition = true;
22748             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
22749             var lr = dir == 'next' ? 'left' : 'right';
22750             pan.el.addClass(dir); // or prev
22751             pan.el.addClass('carousel-item-' + dir); // or prev
22752             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
22753             cur.el.addClass(lr); // or right
22754             pan.el.addClass(lr);
22755             cur.el.addClass('carousel-item-' +lr); // or right
22756             pan.el.addClass('carousel-item-' +lr);
22757             
22758             
22759             var _this = this;
22760             cur.el.on('transitionend', function() {
22761                 Roo.log("trans end?");
22762                 
22763                 pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
22764                 pan.setActive(true);
22765                 
22766                 cur.el.removeClass([lr, 'carousel-item-' + lr]);
22767                 cur.setActive(false);
22768                 
22769                 _this.transition = false;
22770                 
22771             }, this, { single:  true } );
22772             
22773             return true;
22774         }
22775         
22776         cur.setActive(false);
22777         pan.setActive(true);
22778         
22779         return true;
22780         
22781     },
22782     showPanelNext : function()
22783     {
22784         var i = this.indexOfPanel(this.getActivePanel());
22785         
22786         if (i >= this.tabs.length - 1 && !this.autoslide) {
22787             return;
22788         }
22789         
22790         if (i >= this.tabs.length - 1 && this.autoslide) {
22791             i = -1;
22792         }
22793         
22794         this.showPanel(this.tabs[i+1]);
22795     },
22796     
22797     showPanelPrev : function()
22798     {
22799         var i = this.indexOfPanel(this.getActivePanel());
22800         
22801         if (i  < 1 && !this.autoslide) {
22802             return;
22803         }
22804         
22805         if (i < 1 && this.autoslide) {
22806             i = this.tabs.length;
22807         }
22808         
22809         this.showPanel(this.tabs[i-1]);
22810     },
22811     
22812     
22813     addBullet: function()
22814     {
22815         if(!this.bullets || Roo.isTouch){
22816             return;
22817         }
22818         var ctr = this.el.select('.carousel-bullets',true).first();
22819         var i = this.el.select('.carousel-bullets .bullet',true).getCount() ;
22820         var bullet = ctr.createChild({
22821             cls : 'bullet bullet-' + i
22822         },ctr.dom.lastChild);
22823         
22824         
22825         var _this = this;
22826         
22827         bullet.on('click', (function(e, el, o, ii, t){
22828
22829             e.preventDefault();
22830
22831             this.showPanel(ii);
22832
22833             if(this.autoslide && this.slideFn){
22834                 clearInterval(this.slideFn);
22835                 this.slideFn = window.setInterval(function() {
22836                     _this.showPanelNext();
22837                 }, this.timer);
22838             }
22839
22840         }).createDelegate(this, [i, bullet], true));
22841                 
22842         
22843     },
22844      
22845     setActiveBullet : function(i)
22846     {
22847         if(Roo.isTouch){
22848             return;
22849         }
22850         
22851         Roo.each(this.el.select('.bullet', true).elements, function(el){
22852             el.removeClass('selected');
22853         });
22854
22855         var bullet = this.el.select('.bullet-' + i, true).first();
22856         
22857         if(!bullet){
22858             return;
22859         }
22860         
22861         bullet.addClass('selected');
22862     }
22863     
22864     
22865   
22866 });
22867
22868  
22869
22870  
22871  
22872 Roo.apply(Roo.bootstrap.TabGroup, {
22873     
22874     groups: {},
22875      /**
22876     * register a Navigation Group
22877     * @param {Roo.bootstrap.nav.Group} the navgroup to add
22878     */
22879     register : function(navgrp)
22880     {
22881         this.groups[navgrp.navId] = navgrp;
22882         
22883     },
22884     /**
22885     * fetch a Navigation Group based on the navigation ID
22886     * if one does not exist , it will get created.
22887     * @param {string} the navgroup to add
22888     * @returns {Roo.bootstrap.nav.Group} the navgroup 
22889     */
22890     get: function(navId) {
22891         if (typeof(this.groups[navId]) == 'undefined') {
22892             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
22893         }
22894         return this.groups[navId] ;
22895     }
22896     
22897     
22898     
22899 });
22900
22901  /*
22902  * - LGPL
22903  *
22904  * TabPanel
22905  * 
22906  */
22907
22908 /**
22909  * @class Roo.bootstrap.TabPanel
22910  * @extends Roo.bootstrap.Component
22911  * @children Roo.bootstrap.Component
22912  * Bootstrap TabPanel class
22913  * @cfg {Boolean} active panel active
22914  * @cfg {String} html panel content
22915  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
22916  * @cfg {String} navId The Roo.bootstrap.nav.Group which triggers show hide ()
22917  * @cfg {String} href click to link..
22918  * @cfg {Boolean} touchSlide if swiping slides tab to next panel (default off)
22919  * 
22920  * 
22921  * @constructor
22922  * Create a new TabPanel
22923  * @param {Object} config The config object
22924  */
22925
22926 Roo.bootstrap.TabPanel = function(config){
22927     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
22928     this.addEvents({
22929         /**
22930              * @event changed
22931              * Fires when the active status changes
22932              * @param {Roo.bootstrap.TabPanel} this
22933              * @param {Boolean} state the new state
22934             
22935          */
22936         'changed': true,
22937         /**
22938              * @event beforedeactivate
22939              * Fires before a tab is de-activated - can be used to do validation on a form.
22940              * @param {Roo.bootstrap.TabPanel} this
22941              * @return {Boolean} false if there is an error
22942             
22943          */
22944         'beforedeactivate': true
22945      });
22946     
22947     this.tabId = this.tabId || Roo.id();
22948   
22949 };
22950
22951 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
22952     
22953     active: false,
22954     html: false,
22955     tabId: false,
22956     navId : false,
22957     href : '',
22958     touchSlide : false,
22959     getAutoCreate : function(){
22960         
22961         
22962         var cfg = {
22963             tag: 'div',
22964             // item is needed for carousel - not sure if it has any effect otherwise
22965             cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
22966             html: this.html || ''
22967         };
22968         
22969         if(this.active){
22970             cfg.cls += ' active';
22971         }
22972         
22973         if(this.tabId){
22974             cfg.tabId = this.tabId;
22975         }
22976         
22977         
22978         
22979         return cfg;
22980     },
22981     
22982     initEvents:  function()
22983     {
22984         var p = this.parent();
22985         
22986         this.navId = this.navId || p.navId;
22987         
22988         if (typeof(this.navId) != 'undefined') {
22989             // not really needed.. but just in case.. parent should be a NavGroup.
22990             var tg = Roo.bootstrap.TabGroup.get(this.navId);
22991             
22992             tg.register(this);
22993             
22994             var i = tg.tabs.length - 1;
22995             
22996             if(this.active && tg.bullets > 0 && i < tg.bullets){
22997                 tg.setActiveBullet(i);
22998             }
22999         }
23000         
23001         this.el.on('click', this.onClick, this);
23002         
23003         if(Roo.isTouch && this.touchSlide){
23004             this.el.on("touchstart", this.onTouchStart, this);
23005             this.el.on("touchmove", this.onTouchMove, this);
23006             this.el.on("touchend", this.onTouchEnd, this);
23007         }
23008         
23009     },
23010     
23011     onRender : function(ct, position)
23012     {
23013         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
23014     },
23015     
23016     setActive : function(state)
23017     {
23018         Roo.log("panel - set active " + this.tabId + "=" + state);
23019         
23020         this.active = state;
23021         if (!state) {
23022             this.el.removeClass('active');
23023             
23024         } else  if (!this.el.hasClass('active')) {
23025             this.el.addClass('active');
23026         }
23027         
23028         this.fireEvent('changed', this, state);
23029     },
23030     
23031     onClick : function(e)
23032     {
23033         e.preventDefault();
23034         
23035         if(!this.href.length){
23036             return;
23037         }
23038         
23039         window.location.href = this.href;
23040     },
23041     
23042     startX : 0,
23043     startY : 0,
23044     endX : 0,
23045     endY : 0,
23046     swiping : false,
23047     
23048     onTouchStart : function(e)
23049     {
23050         this.swiping = false;
23051         
23052         this.startX = e.browserEvent.touches[0].clientX;
23053         this.startY = e.browserEvent.touches[0].clientY;
23054     },
23055     
23056     onTouchMove : function(e)
23057     {
23058         this.swiping = true;
23059         
23060         this.endX = e.browserEvent.touches[0].clientX;
23061         this.endY = e.browserEvent.touches[0].clientY;
23062     },
23063     
23064     onTouchEnd : function(e)
23065     {
23066         if(!this.swiping){
23067             this.onClick(e);
23068             return;
23069         }
23070         
23071         var tabGroup = this.parent();
23072         
23073         if(this.endX > this.startX){ // swiping right
23074             tabGroup.showPanelPrev();
23075             return;
23076         }
23077         
23078         if(this.startX > this.endX){ // swiping left
23079             tabGroup.showPanelNext();
23080             return;
23081         }
23082     }
23083     
23084     
23085 });
23086  
23087
23088  
23089
23090  /*
23091  * - LGPL
23092  *
23093  * DateField
23094  * 
23095  */
23096
23097 /**
23098  * @class Roo.bootstrap.form.DateField
23099  * @extends Roo.bootstrap.form.Input
23100  * Bootstrap DateField class
23101  * @cfg {Number} weekStart default 0
23102  * @cfg {String} viewMode default empty, (months|years)
23103  * @cfg {String} minViewMode default empty, (months|years)
23104  * @cfg {Number} startDate default -Infinity
23105  * @cfg {Number} endDate default Infinity
23106  * @cfg {Boolean} todayHighlight default false
23107  * @cfg {Boolean} todayBtn default false
23108  * @cfg {Boolean} calendarWeeks default false
23109  * @cfg {Object} daysOfWeekDisabled default empty
23110  * @cfg {Boolean} singleMode default false (true | false)
23111  * 
23112  * @cfg {Boolean} keyboardNavigation default true
23113  * @cfg {String} language default en
23114  * 
23115  * @constructor
23116  * Create a new DateField
23117  * @param {Object} config The config object
23118  */
23119  
23120 Roo.bootstrap.form.DateField = function(config){
23121     Roo.bootstrap.form.DateField.superclass.constructor.call(this, config);
23122      this.addEvents({
23123             /**
23124              * @event show
23125              * Fires when this field show.
23126              * @param {Roo.bootstrap.form.DateField} this
23127              * @param {Mixed} date The date value
23128              */
23129             show : true,
23130             /**
23131              * @event show
23132              * Fires when this field hide.
23133              * @param {Roo.bootstrap.form.DateField} this
23134              * @param {Mixed} date The date value
23135              */
23136             hide : true,
23137             /**
23138              * @event select
23139              * Fires when select a date.
23140              * @param {Roo.bootstrap.form.DateField} this
23141              * @param {Mixed} date The date value
23142              */
23143             select : true,
23144             /**
23145              * @event beforeselect
23146              * Fires when before select a date.
23147              * @param {Roo.bootstrap.form.DateField} this
23148              * @param {Mixed} date The date value
23149              */
23150             beforeselect : true
23151         });
23152 };
23153
23154 Roo.extend(Roo.bootstrap.form.DateField, Roo.bootstrap.form.Input,  {
23155     
23156     /**
23157      * @cfg {String} format
23158      * The default date format string which can be overriden for localization support.  The format must be
23159      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
23160      */
23161     format : "m/d/y",
23162     
23163     weekStart : 0,
23164     
23165     viewMode : '',
23166     
23167     minViewMode : '',
23168     
23169     todayHighlight : false,
23170     
23171     todayBtn: false,
23172     
23173     language: 'en',
23174     
23175     keyboardNavigation: true,
23176     
23177     calendarWeeks: false,
23178     
23179     startDate: -Infinity,
23180     
23181     endDate: Infinity,
23182     
23183     daysOfWeekDisabled: [],
23184     
23185     _events: [],
23186     
23187     singleMode : false,
23188
23189     hiddenField : false,
23190     
23191     UTCDate: function()
23192     {
23193         return new Date(Date.UTC.apply(Date, arguments));
23194     },
23195     
23196     UTCToday: function()
23197     {
23198         var today = new Date();
23199         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
23200     },
23201     
23202     getDate: function() {
23203             var d = this.getUTCDate();
23204             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
23205     },
23206     
23207     getUTCDate: function() {
23208             return this.date;
23209     },
23210     
23211     setDate: function(d) {
23212             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
23213     },
23214     
23215     setUTCDate: function(d) {
23216             this.date = d;
23217             this.setValue(this.date);
23218     },
23219
23220     translateDates: function(lang) 
23221     {
23222         var translation = Roo.bootstrap.form.DateField.dates[lang] = {
23223             days: [],
23224             daysShort: [],
23225             daysMin: [],
23226             months: [],
23227             monthsShort: []
23228         };
23229
23230         var locale = lang.replace('_', '-');
23231
23232         var is_latin = [ 'zh-hk', 'zh-cn', 'jp', 'ko' ].indexOf(locale.toLowerCase()) < 0; 
23233                  
23234
23235         // fill days
23236         for(var i = 0; i < 7; i++) {
23237             var date = new Date(2020, 0, 5 + i);
23238
23239             var day = new Intl.DateTimeFormat(locale, {
23240                 weekday : 'long'
23241             }).format(date);
23242
23243             var dayShort = new Intl.DateTimeFormat(locale, {
23244                 weekday : 'short'
23245             }).format(date);
23246
23247             var dayMin = new Intl.DateTimeFormat(locale, {
23248                 weekday : 'narrow'
23249             }).format(date);
23250
23251             if(is_latin) {
23252                 dayShort = day.substring(0, 3);
23253                 dayMin = day.substring(0, 2);
23254             }
23255             
23256             translation.days.push(day);
23257             translation.daysShort.push(dayShort);
23258             translation.daysMin.push(dayMin);
23259         }
23260
23261         // fill months
23262         for(var i = 0; i < 12; i++) {
23263             var date = new Date(2020, i);
23264
23265             var month = new Intl.DateTimeFormat(locale, {
23266                 month : 'long'
23267             }).format(date);
23268
23269             var monthShort = new Intl.DateTimeFormat(locale, {
23270                 month : 'short'
23271             }).format(date);
23272
23273             if(is_latin) {
23274                 monthShort = month.substring(0, 3);
23275             }
23276
23277             translation.months.push(month);
23278             translation.monthsShort.push(monthShort);
23279         }
23280     },
23281         
23282     onRender: function(ct, position)
23283     {
23284         
23285         Roo.bootstrap.form.DateField.superclass.onRender.call(this, ct, position);
23286
23287         this.translateDates(this.language);
23288         
23289         this.isRTL = Roo.bootstrap.form.DateField.dates[this.language].rtl || false;
23290         this.format = this.format || 'm/d/y';
23291         this.isInline = false;
23292         this.isInput = true;
23293         this.component = this.el.select('.add-on', true).first() || false;
23294         this.component = (this.component && this.component.length === 0) ? false : this.component;
23295         this.hasInput = this.component && this.inputEl().length;
23296         
23297         if (typeof(this.minViewMode === 'string')) {
23298             switch (this.minViewMode) {
23299                 case 'months':
23300                     this.minViewMode = 1;
23301                     break;
23302                 case 'years':
23303                     this.minViewMode = 2;
23304                     break;
23305                 default:
23306                     this.minViewMode = 0;
23307                     break;
23308             }
23309         }
23310         
23311         if (typeof(this.viewMode === 'string')) {
23312             switch (this.viewMode) {
23313                 case 'months':
23314                     this.viewMode = 1;
23315                     break;
23316                 case 'years':
23317                     this.viewMode = 2;
23318                     break;
23319                 default:
23320                     this.viewMode = 0;
23321                     break;
23322             }
23323         }
23324                 
23325         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.form.DateField.template);
23326         
23327 //        this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.form.DateField.template);
23328         
23329         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
23330         
23331         this.picker().on('mousedown', this.onMousedown, this);
23332         this.picker().on('click', this.onClick, this);
23333         
23334         this.picker().addClass('datepicker-dropdown');
23335         
23336         this.startViewMode = this.viewMode;
23337         
23338         if(this.singleMode){
23339             Roo.each(this.picker().select('thead > tr > th', true).elements, function(v){
23340                 v.setVisibilityMode(Roo.Element.DISPLAY);
23341                 v.hide();
23342             });
23343             
23344             Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
23345                 v.setStyle('width', '189px');
23346             });
23347         }
23348         
23349         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
23350             v.dom.innerHTML = Roo.bootstrap.form.DateField.todayText;
23351         });
23352                         
23353         
23354         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
23355         
23356         this.setStartDate(this.startDate);
23357         this.setEndDate(this.endDate);
23358         
23359         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
23360         
23361         this.fillDow();
23362         this.fillMonths();
23363         this.update();
23364         this.showMode();
23365         
23366         if(this.isInline) {
23367             this.showPopup();
23368         }
23369
23370         this.hiddenField = this.inputEl().insertSibling(
23371             {tag : 'input', type : 'hidden', name : this.name},
23372             'before',
23373             true
23374         );
23375         this.inputEl().dom.setAttribute('name', this.name + '____hidden___');
23376
23377     },
23378     
23379     picker : function()
23380     {
23381         return this.pickerEl;
23382 //        return this.el.select('.datepicker', true).first();
23383     },
23384     
23385     fillDow: function()
23386     {
23387         var dowCnt = this.weekStart;
23388         
23389         var dow = {
23390             tag: 'tr',
23391             cn: [
23392                 
23393             ]
23394         };
23395         
23396         while (dowCnt < this.weekStart + 7) {
23397             dow.cn.push({
23398                 tag: 'th',
23399                 cls: 'dow',
23400                 html: Roo.bootstrap.form.DateField.dates[this.language].daysMin[(dowCnt++)%7]
23401             });
23402         }
23403         
23404         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
23405     },
23406     
23407     fillMonths: function()
23408     {    
23409         var i = 0;
23410         var months = this.picker().select('>.datepicker-months td', true).first();
23411         
23412         months.dom.innerHTML = '';
23413         
23414         while (i < 12) {
23415             var month = {
23416                 tag: 'span',
23417                 cls: 'month',
23418                 html: Roo.bootstrap.form.DateField.dates[this.language].monthsShort[i++]
23419             };
23420             
23421             months.createChild(month);
23422         }
23423         
23424     },
23425     
23426     update: function()
23427     {
23428         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;
23429         
23430         if (this.date < this.startDate) {
23431             this.viewDate = new Date(this.startDate);
23432         } else if (this.date > this.endDate) {
23433             this.viewDate = new Date(this.endDate);
23434         } else {
23435             this.viewDate = new Date(this.date);
23436         }
23437         
23438         this.fill();
23439     },
23440     
23441     fill: function() 
23442     {
23443         var d = new Date(this.viewDate),
23444                 year = d.getUTCFullYear(),
23445                 month = d.getUTCMonth(),
23446                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
23447                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
23448                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
23449                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
23450                 currentDate = this.date && this.date.valueOf(),
23451                 today = this.UTCToday();
23452         
23453         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.form.DateField.dates[this.language].months[month]+' '+year;
23454     
23455         this.updateNavArrows();
23456         this.fillMonths();
23457                                                 
23458         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
23459         
23460         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
23461          
23462         prevMonth.setUTCDate(day);
23463         
23464         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
23465         
23466         var nextMonth = new Date(prevMonth);
23467         
23468         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
23469         
23470         nextMonth = nextMonth.valueOf();
23471         
23472         var fillMonths = false;
23473         
23474         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
23475         
23476         while(prevMonth.valueOf() <= nextMonth) {
23477             var clsName = '';
23478             
23479             if (prevMonth.getUTCDay() === this.weekStart) {
23480                 if(fillMonths){
23481                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
23482                 }
23483                     
23484                 fillMonths = {
23485                     tag: 'tr',
23486                     cn: []
23487                 };
23488             }
23489             
23490             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
23491                 clsName += ' old';
23492             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
23493                 clsName += ' new';
23494             }
23495             if (this.todayHighlight &&
23496                 prevMonth.getUTCFullYear() == today.getFullYear() &&
23497                 prevMonth.getUTCMonth() == today.getMonth() &&
23498                 prevMonth.getUTCDate() == today.getDate()) {
23499                 clsName += ' today';
23500             }
23501             
23502             if (currentDate && prevMonth.valueOf() === currentDate) {
23503                 clsName += ' active';
23504             }
23505             
23506             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
23507                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
23508                     clsName += ' disabled';
23509             }
23510             
23511             fillMonths.cn.push({
23512                 tag: 'td',
23513                 cls: 'day ' + clsName,
23514                 html: prevMonth.getDate()
23515             });
23516             
23517             prevMonth.setDate(prevMonth.getDate()+1);
23518         }
23519           
23520         var currentYear = this.date && this.date.getUTCFullYear();
23521         var currentMonth = this.date && this.date.getUTCMonth();
23522         
23523         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
23524         
23525         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
23526             v.removeClass('active');
23527             
23528             if(currentYear === year && k === currentMonth){
23529                 v.addClass('active');
23530             }
23531             
23532             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
23533                 v.addClass('disabled');
23534             }
23535             
23536         });
23537         
23538         
23539         year = parseInt(year/10, 10) * 10;
23540         
23541         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
23542         
23543         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
23544         
23545         year -= 1;
23546         for (var i = -1; i < 11; i++) {
23547             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
23548                 tag: 'span',
23549                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
23550                 html: year
23551             });
23552             
23553             year += 1;
23554         }
23555     },
23556     
23557     showMode: function(dir) 
23558     {
23559         if (dir) {
23560             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
23561         }
23562         
23563         Roo.each(this.picker().select('>div',true).elements, function(v){
23564             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
23565             v.hide();
23566         });
23567         this.picker().select('>.datepicker-'+Roo.bootstrap.form.DateField.modes[this.viewMode].clsName, true).first().show();
23568     },
23569     
23570     place: function()
23571     {
23572         if(this.isInline) {
23573             return;
23574         }
23575         
23576         this.picker().removeClass(['bottom', 'top']);
23577         
23578         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
23579             /*
23580              * place to the top of element!
23581              *
23582              */
23583             
23584             this.picker().addClass('top');
23585             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
23586             
23587             return;
23588         }
23589         
23590         this.picker().addClass('bottom');
23591         
23592         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
23593     },
23594     
23595     // return false when it fails
23596     parseDate : function(value)
23597     {
23598         if(!value) {
23599             return false;
23600         }
23601         if(value instanceof Date){
23602             return value;
23603         }
23604         var v = Date.parseDate(value, 'Y-m-d');
23605
23606         return (typeof(v) == 'undefined') ? false : v;
23607     },
23608     
23609     formatDate : function(date, fmt)
23610     {   
23611         return (!date || !(date instanceof Date)) ?
23612         date : date.dateFormat(fmt || this.format);
23613     },
23614
23615     translateDate : function(date)
23616     {
23617         switch(this.language) {
23618             case 'zh_CN':
23619                 return new Intl.DateTimeFormat('zh-CN', {
23620                     year : 'numeric',
23621                     month : 'long',
23622                     day : 'numeric'
23623                 }).format(date);
23624             default :
23625                 return this.formatDate(date);
23626         }
23627     },
23628     
23629     onFocus : function()
23630     {
23631         Roo.bootstrap.form.DateField.superclass.onFocus.call(this);
23632         this.showPopup();
23633     },
23634     
23635     onBlur : function()
23636     {
23637         Roo.bootstrap.form.DateField.superclass.onBlur.call(this);
23638
23639         if(!this.readOnly) {
23640             var d = this.inputEl().getValue();
23641             var date = this.parseDate(d);
23642             if(date) {
23643                 this.setValue(date);
23644             }
23645             else {
23646                 this.setValue(this.getValue());
23647             }
23648         }
23649                 
23650         this.hidePopup();
23651     },
23652     
23653     showPopup : function()
23654     {
23655         this.picker().show();
23656         this.update();
23657         this.place();
23658         
23659         this.fireEvent('showpopup', this, this.date);
23660     },
23661     
23662     hidePopup : function()
23663     {
23664         if(this.isInline) {
23665             return;
23666         }
23667         this.picker().hide();
23668         this.viewMode = this.startViewMode;
23669         this.showMode();
23670
23671         this.inputEl().blur();
23672         
23673         this.fireEvent('hidepopup', this, this.date);
23674         
23675     },
23676     
23677     onMousedown: function(e)
23678     {
23679         e.stopPropagation();
23680         e.preventDefault();
23681     },
23682     
23683     keyup: function(e)
23684     {
23685         Roo.bootstrap.form.DateField.superclass.keyup.call(this);
23686         this.update();
23687     },
23688
23689     setValue: function(v)
23690     {
23691         if(this.fireEvent('beforeselect', this, v) !== false){
23692             var d = this.parseDate(v);
23693
23694             if(!d) {
23695                 this.date = this.viewDate = this.value = this.hiddenField.value =  '';
23696                 if(this.rendered){
23697                     this.inputEl().dom.value = '';
23698                     this.validate();
23699                 }
23700                 return;
23701             }
23702
23703             d = new Date(d).clearTime();
23704
23705             this.value = this.hiddenField.value = d.dateFormat('Y-m-d');
23706
23707             v = this.translateDate(d);
23708             if(this.rendered){
23709                 this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
23710                 this.validate();
23711             }
23712
23713             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
23714
23715             this.update();
23716
23717             this.fireEvent('select', this, this.date);
23718         }
23719     },
23720
23721     // bypass validation
23722     setRawValue : function(v){
23723         if(this.fireEvent('beforeselect', this, v) !== false){
23724             var d = this.parseDate(v);
23725
23726             if(!d) {
23727                 this.date = this.viewDate = this.value = this.hiddenField.value =  '';
23728                 if(this.rendered){
23729                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
23730                 }
23731                 return;
23732             }
23733
23734             d = new Date(d).clearTime();
23735
23736             this.value = this.hiddenField.value = d.dateFormat('Y-m-d');
23737
23738             v = this.translateDate(d);
23739             if(this.rendered){
23740                 this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
23741             }
23742
23743             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
23744
23745             this.update();
23746
23747             this.fireEvent('select', this, this.date);
23748         }
23749     },
23750     
23751     getValue: function()
23752     {
23753         return this.value;
23754     },
23755
23756     getRawValue : function(){
23757         return this.getValue();
23758     },
23759     
23760     fireKey: function(e)
23761     {
23762         if (!this.picker().isVisible()){
23763             if (e.keyCode == 27) { // allow escape to hide and re-show picker
23764                 this.showPopup();
23765             }
23766             return;
23767         }
23768         
23769         var dateChanged = false,
23770         dir, day, month,
23771         newDate, newViewDate;
23772         
23773         switch(e.keyCode){
23774             case 27: // escape
23775                 this.hidePopup();
23776                 e.preventDefault();
23777                 break;
23778             case 37: // left
23779             case 39: // right
23780                 if (!this.keyboardNavigation) {
23781                     break;
23782                 }
23783                 dir = e.keyCode == 37 ? -1 : 1;
23784                 
23785                 if (e.ctrlKey){
23786                     newDate = this.moveYear(this.date, dir);
23787                     newViewDate = this.moveYear(this.viewDate, dir);
23788                 } else if (e.shiftKey){
23789                     newDate = this.moveMonth(this.date, dir);
23790                     newViewDate = this.moveMonth(this.viewDate, dir);
23791                 } else {
23792                     newDate = new Date(this.date);
23793                     newDate.setUTCDate(this.date.getUTCDate() + dir);
23794                     newViewDate = new Date(this.viewDate);
23795                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
23796                 }
23797                 if (this.dateWithinRange(newDate)){
23798                     this.date = newDate;
23799                     this.viewDate = newViewDate;
23800                     this.setValue(this.date);
23801 //                    this.update();
23802                     e.preventDefault();
23803                     dateChanged = true;
23804                 }
23805                 break;
23806             case 38: // up
23807             case 40: // down
23808                 if (!this.keyboardNavigation) {
23809                     break;
23810                 }
23811                 dir = e.keyCode == 38 ? -1 : 1;
23812                 if (e.ctrlKey){
23813                     newDate = this.moveYear(this.date, dir);
23814                     newViewDate = this.moveYear(this.viewDate, dir);
23815                 } else if (e.shiftKey){
23816                     newDate = this.moveMonth(this.date, dir);
23817                     newViewDate = this.moveMonth(this.viewDate, dir);
23818                 } else {
23819                     newDate = new Date(this.date);
23820                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
23821                     newViewDate = new Date(this.viewDate);
23822                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
23823                 }
23824                 if (this.dateWithinRange(newDate)){
23825                     this.date = newDate;
23826                     this.viewDate = newViewDate;
23827                     this.setValue(this.date);
23828 //                    this.update();
23829                     e.preventDefault();
23830                     dateChanged = true;
23831                 }
23832                 break;
23833             case 13: // enter
23834                 this.setValue(this.date);
23835                 this.hidePopup();
23836                 e.preventDefault();
23837                 break;
23838             case 9: // tab
23839                 this.setValue(this.date);
23840                 this.hidePopup();
23841                 break;
23842             case 16: // shift
23843             case 17: // ctrl
23844             case 18: // alt
23845                 break;
23846             default :
23847                 this.hidePopup();
23848                 
23849         }
23850     },
23851     
23852     
23853     onClick: function(e) 
23854     {
23855         e.stopPropagation();
23856         e.preventDefault();
23857         
23858         var target = e.getTarget();
23859         
23860         if(target.nodeName.toLowerCase() === 'i'){
23861             target = Roo.get(target).dom.parentNode;
23862         }
23863         
23864         var nodeName = target.nodeName;
23865         var className = target.className;
23866         var html = target.innerHTML;
23867         //Roo.log(nodeName);
23868         
23869         switch(nodeName.toLowerCase()) {
23870             case 'th':
23871                 switch(className) {
23872                     case 'switch':
23873                         this.showMode(1);
23874                         break;
23875                     case 'prev':
23876                     case 'next':
23877                         var dir = Roo.bootstrap.form.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
23878                         switch(this.viewMode){
23879                                 case 0:
23880                                         this.viewDate = this.moveMonth(this.viewDate, dir);
23881                                         break;
23882                                 case 1:
23883                                 case 2:
23884                                         this.viewDate = this.moveYear(this.viewDate, dir);
23885                                         break;
23886                         }
23887                         this.fill();
23888                         break;
23889                     case 'today':
23890                         var date = new Date();
23891                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
23892 //                        this.fill()
23893                         this.setValue(this.date);
23894                         
23895                         this.hidePopup();
23896                         break;
23897                 }
23898                 break;
23899             case 'span':
23900                 if (className.indexOf('disabled') < 0) {
23901                 if (!this.viewDate) {
23902                     this.viewDate = new Date();
23903                 }
23904                 this.viewDate.setUTCDate(1);
23905                     if (className.indexOf('month') > -1) {
23906                         this.viewDate.setUTCMonth(Roo.bootstrap.form.DateField.dates[this.language].monthsShort.indexOf(html));
23907                     } else {
23908                         var year = parseInt(html, 10) || 0;
23909                         this.viewDate.setUTCFullYear(year);
23910                         
23911                     }
23912                     
23913                     if(this.singleMode){
23914                         this.setValue(this.viewDate);
23915                         this.hidePopup();
23916                         return;
23917                     }
23918                     
23919                     this.showMode(-1);
23920                     this.fill();
23921                 }
23922                 break;
23923                 
23924             case 'td':
23925                 //Roo.log(className);
23926                 if (className.indexOf('day') > -1 && className.indexOf('disabled') < 0 ){
23927                     var day = parseInt(html, 10) || 1;
23928                     var year =  (this.viewDate || new Date()).getUTCFullYear(),
23929                         month = (this.viewDate || new Date()).getUTCMonth();
23930
23931                     if (className.indexOf('old') > -1) {
23932                         if(month === 0 ){
23933                             month = 11;
23934                             year -= 1;
23935                         }else{
23936                             month -= 1;
23937                         }
23938                     } else if (className.indexOf('new') > -1) {
23939                         if (month == 11) {
23940                             month = 0;
23941                             year += 1;
23942                         } else {
23943                             month += 1;
23944                         }
23945                     }
23946                     //Roo.log([year,month,day]);
23947                     this.date = this.UTCDate(year, month, day,0,0,0,0);
23948                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
23949 //                    this.fill();
23950                     this.setValue(this.date);
23951                     this.hidePopup();
23952                 }
23953                 break;
23954         }
23955     },
23956     
23957     setStartDate: function(startDate)
23958     {
23959         this.startDate = startDate || -Infinity;
23960         if (this.startDate !== -Infinity) {
23961             var date = this.parseDate(this.startDate);
23962             this.startDate = date ? date : -Infinity;
23963         }
23964         this.update();
23965         this.updateNavArrows();
23966     },
23967
23968     setEndDate: function(endDate)
23969     {
23970         this.endDate = endDate || Infinity;
23971         if (this.endDate !== Infinity) {
23972             var date = this.parseDate(this.endDate);
23973             this.endDate = date ? date : Infinity;
23974         }
23975         this.update();
23976         this.updateNavArrows();
23977     },
23978     
23979     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
23980     {
23981         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
23982         if (typeof(this.daysOfWeekDisabled) !== 'object') {
23983             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
23984         }
23985         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
23986             return parseInt(d, 10);
23987         });
23988         this.update();
23989         this.updateNavArrows();
23990     },
23991     
23992     updateNavArrows: function() 
23993     {
23994         if(this.singleMode){
23995             return;
23996         }
23997         
23998         var d = new Date(this.viewDate),
23999         year = d.getUTCFullYear(),
24000         month = d.getUTCMonth();
24001         
24002         Roo.each(this.picker().select('.prev', true).elements, function(v){
24003             v.show();
24004             switch (this.viewMode) {
24005                 case 0:
24006
24007                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
24008                         v.hide();
24009                     }
24010                     break;
24011                 case 1:
24012                 case 2:
24013                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
24014                         v.hide();
24015                     }
24016                     break;
24017             }
24018         });
24019         
24020         Roo.each(this.picker().select('.next', true).elements, function(v){
24021             v.show();
24022             switch (this.viewMode) {
24023                 case 0:
24024
24025                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
24026                         v.hide();
24027                     }
24028                     break;
24029                 case 1:
24030                 case 2:
24031                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
24032                         v.hide();
24033                     }
24034                     break;
24035             }
24036         })
24037     },
24038     
24039     moveMonth: function(date, dir)
24040     {
24041         if (!dir) {
24042             return date;
24043         }
24044         var new_date = new Date(date.valueOf()),
24045         day = new_date.getUTCDate(),
24046         month = new_date.getUTCMonth(),
24047         mag = Math.abs(dir),
24048         new_month, test;
24049         dir = dir > 0 ? 1 : -1;
24050         if (mag == 1){
24051             test = dir == -1
24052             // If going back one month, make sure month is not current month
24053             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
24054             ? function(){
24055                 return new_date.getUTCMonth() == month;
24056             }
24057             // If going forward one month, make sure month is as expected
24058             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
24059             : function(){
24060                 return new_date.getUTCMonth() != new_month;
24061             };
24062             new_month = month + dir;
24063             new_date.setUTCMonth(new_month);
24064             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
24065             if (new_month < 0 || new_month > 11) {
24066                 new_month = (new_month + 12) % 12;
24067             }
24068         } else {
24069             // For magnitudes >1, move one month at a time...
24070             for (var i=0; i<mag; i++) {
24071                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
24072                 new_date = this.moveMonth(new_date, dir);
24073             }
24074             // ...then reset the day, keeping it in the new month
24075             new_month = new_date.getUTCMonth();
24076             new_date.setUTCDate(day);
24077             test = function(){
24078                 return new_month != new_date.getUTCMonth();
24079             };
24080         }
24081         // Common date-resetting loop -- if date is beyond end of month, make it
24082         // end of month
24083         while (test()){
24084             new_date.setUTCDate(--day);
24085             new_date.setUTCMonth(new_month);
24086         }
24087         return new_date;
24088     },
24089
24090     moveYear: function(date, dir)
24091     {
24092         return this.moveMonth(date, dir*12);
24093     },
24094
24095     dateWithinRange: function(date)
24096     {
24097         return date >= this.startDate && date <= this.endDate;
24098     },
24099
24100     
24101     remove: function() 
24102     {
24103         this.picker().remove();
24104     },
24105     
24106     validateValue : function(value)
24107     {
24108         if(this.getVisibilityEl().hasClass('hidden')){
24109             return true;
24110         }
24111         
24112         if(value.length < 1)  {
24113             if(this.allowBlank){
24114                 return true;
24115             }
24116             return false;
24117         }
24118         
24119         if(value.length < this.minLength){
24120             return false;
24121         }
24122         if(value.length > this.maxLength){
24123             return false;
24124         }
24125         if(this.vtype){
24126             var vt = Roo.form.VTypes;
24127             if(!vt[this.vtype](value, this)){
24128                 return false;
24129             }
24130         }
24131         if(typeof this.validator == "function"){
24132             var msg = this.validator(value);
24133             if(msg !== true){
24134                 return false;
24135             }
24136         }
24137         
24138         if(this.regex && !this.regex.test(value)){
24139             return false;
24140         }
24141         
24142         if(!this.parseDate(value)){
24143             return false;
24144         }
24145         
24146         if (this.endDate !== Infinity && this.parseDate(value).getTime() > this.endDate.getTime()) {
24147             return false;
24148         }      
24149         
24150         if (this.startDate !== -Infinity && this.parseDate(value).getTime() < this.startDate.getTime()) {
24151             return false;
24152         } 
24153         
24154         
24155         return true;
24156     },
24157     
24158     reset : function()
24159     {
24160         this.date = this.viewDate = '';
24161         
24162         Roo.bootstrap.form.DateField.superclass.setValue.call(this, '');
24163     }
24164    
24165 });
24166
24167 Roo.apply(Roo.bootstrap.form.DateField,  {
24168     
24169     head : {
24170         tag: 'thead',
24171         cn: [
24172         {
24173             tag: 'tr',
24174             cn: [
24175             {
24176                 tag: 'th',
24177                 cls: 'prev',
24178                 html: '<i class="fa fa-arrow-left"/>'
24179             },
24180             {
24181                 tag: 'th',
24182                 cls: 'switch',
24183                 colspan: '5'
24184             },
24185             {
24186                 tag: 'th',
24187                 cls: 'next',
24188                 html: '<i class="fa fa-arrow-right"/>'
24189             }
24190
24191             ]
24192         }
24193         ]
24194     },
24195     
24196     content : {
24197         tag: 'tbody',
24198         cn: [
24199         {
24200             tag: 'tr',
24201             cn: [
24202             {
24203                 tag: 'td',
24204                 colspan: '7'
24205             }
24206             ]
24207         }
24208         ]
24209     },
24210     
24211     footer : {
24212         tag: 'tfoot',
24213         cn: [
24214         {
24215             tag: 'tr',
24216             cn: [
24217             {
24218                 tag: 'th',
24219                 colspan: '7',
24220                 cls: 'today'
24221             }
24222                     
24223             ]
24224         }
24225         ]
24226     },
24227     
24228     dates : {},
24229
24230     todayText : "Today",
24231     
24232     modes: [
24233     {
24234         clsName: 'days',
24235         navFnc: 'Month',
24236         navStep: 1
24237     },
24238     {
24239         clsName: 'months',
24240         navFnc: 'FullYear',
24241         navStep: 1
24242     },
24243     {
24244         clsName: 'years',
24245         navFnc: 'FullYear',
24246         navStep: 10
24247     }]
24248 });
24249
24250 Roo.apply(Roo.bootstrap.form.DateField,  {
24251   
24252     template : {
24253         tag: 'div',
24254         cls: 'datepicker dropdown-menu roo-dynamic shadow',
24255         cn: [
24256         {
24257             tag: 'div',
24258             cls: 'datepicker-days',
24259             cn: [
24260             {
24261                 tag: 'table',
24262                 cls: 'table-condensed',
24263                 cn:[
24264                 Roo.bootstrap.form.DateField.head,
24265                 {
24266                     tag: 'tbody'
24267                 },
24268                 Roo.bootstrap.form.DateField.footer
24269                 ]
24270             }
24271             ]
24272         },
24273         {
24274             tag: 'div',
24275             cls: 'datepicker-months',
24276             cn: [
24277             {
24278                 tag: 'table',
24279                 cls: 'table-condensed',
24280                 cn:[
24281                 Roo.bootstrap.form.DateField.head,
24282                 Roo.bootstrap.form.DateField.content,
24283                 Roo.bootstrap.form.DateField.footer
24284                 ]
24285             }
24286             ]
24287         },
24288         {
24289             tag: 'div',
24290             cls: 'datepicker-years',
24291             cn: [
24292             {
24293                 tag: 'table',
24294                 cls: 'table-condensed',
24295                 cn:[
24296                 Roo.bootstrap.form.DateField.head,
24297                 Roo.bootstrap.form.DateField.content,
24298                 Roo.bootstrap.form.DateField.footer
24299                 ]
24300             }
24301             ]
24302         }
24303         ]
24304     }
24305 });
24306
24307  
24308
24309  /*
24310  * - LGPL
24311  *
24312  * TimeField
24313  * 
24314  */
24315
24316 /**
24317  * @class Roo.bootstrap.form.TimeField
24318  * @extends Roo.bootstrap.form.Input
24319  * Bootstrap DateField class
24320  * @cfg {Number} minuteStep the minutes is always the multiple of a fixed number, default 1
24321  * 
24322  * 
24323  * @constructor
24324  * Create a new TimeField
24325  * @param {Object} config The config object
24326  */
24327
24328 Roo.bootstrap.form.TimeField = function(config){
24329     Roo.bootstrap.form.TimeField.superclass.constructor.call(this, config);
24330     this.addEvents({
24331             /**
24332              * @event show
24333              * Fires when this field show.
24334              * @param {Roo.bootstrap.form.DateField} thisthis
24335              * @param {Mixed} date The date value
24336              */
24337             show : true,
24338             /**
24339              * @event show
24340              * Fires when this field hide.
24341              * @param {Roo.bootstrap.form.DateField} this
24342              * @param {Mixed} date The date value
24343              */
24344             hide : true,
24345             /**
24346              * @event select
24347              * Fires when select a date.
24348              * @param {Roo.bootstrap.form.DateField} this
24349              * @param {Mixed} date The date value
24350              */
24351             select : true
24352         });
24353 };
24354
24355 Roo.extend(Roo.bootstrap.form.TimeField, Roo.bootstrap.form.Input,  {
24356     
24357     /**
24358      * @cfg {String} format
24359      * The default time format string which can be overriden for localization support.  The format must be
24360      * valid according to {@link Date#parseDate} (defaults to 'H:i').
24361      */
24362     format : "H:i",
24363     minuteStep : 1,
24364     language : 'en',
24365     hiddenField : false,
24366     getAutoCreate : function()
24367     {
24368         this.after = '<i class="fa far fa-clock"></i>';
24369         return Roo.bootstrap.form.TimeField.superclass.getAutoCreate.call(this);
24370         
24371          
24372     },
24373     onRender: function(ct, position)
24374     {
24375         
24376         Roo.bootstrap.form.TimeField.superclass.onRender.call(this, ct, position);
24377
24378         this.language = this.language in Roo.bootstrap.form.TimeField.periodText ? this.language : "en";
24379                 
24380         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.form.TimeField.template);
24381         
24382         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
24383         
24384         this.pop = this.picker().select('>.datepicker-time',true).first();
24385         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
24386         
24387         this.picker().on('mousedown', this.onMousedown, this);
24388         this.picker().on('click', this.onClick, this);
24389         
24390         this.picker().addClass('datepicker-dropdown');
24391     
24392         this.fillTime();
24393         this.update();
24394             
24395         this.pop.select('.hours-up', true).first().on('click', this.onIncrementHours, this);
24396         this.pop.select('.hours-down', true).first().on('click', this.onDecrementHours, this);
24397         this.pop.select('.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
24398         this.pop.select('.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
24399         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
24400         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
24401         this.pop.select('button.ok', true).first().dom.innerHTML = Roo.bootstrap.form.TimeField.okText;
24402
24403         this.hiddenField = this.inputEl().insertSibling(
24404             {tag : 'input', type : 'hidden', name : this.name},
24405             'before',
24406             true
24407         );
24408         this.inputEl().dom.setAttribute('name', this.name + '____hidden___');
24409
24410     },
24411     
24412     fireKey: function(e){
24413         if (!this.picker().isVisible()){
24414             if (e.keyCode == 27) { // allow escape to hide and re-show picker
24415                 this.show();
24416             }
24417             return;
24418         }
24419
24420         e.preventDefault();
24421         
24422         switch(e.keyCode){
24423             case 27: // escape
24424                 this.hide();
24425                 break;
24426             case 37: // left
24427             case 39: // right
24428                 this.onTogglePeriod();
24429                 break;
24430             case 38: // up
24431                 this.onIncrementMinutes();
24432                 break;
24433             case 40: // down
24434                 this.onDecrementMinutes();
24435                 break;
24436             case 13: // enter
24437             case 9: // tab
24438                 this.setTime();
24439                 break;
24440         }
24441     },
24442     
24443     onClick: function(e) {
24444         e.stopPropagation();
24445         e.preventDefault();
24446     },
24447     
24448     picker : function()
24449     {
24450         return this.pickerEl;
24451     },
24452     
24453     fillTime: function()
24454     {    
24455         var time = this.pop.select('tbody', true).first();
24456         
24457         time.dom.innerHTML = '';
24458         
24459         time.createChild({
24460             tag: 'tr',
24461             cn: [
24462                 {
24463                     tag: 'td',
24464                     cn: [
24465                         {
24466                             tag: 'a',
24467                             href: '#',
24468                             cls: 'btn',
24469                             cn: [
24470                                 {
24471                                     tag: 'i',
24472                                     cls: 'hours-up fa fas fa-chevron-up'
24473                                 }
24474                             ]
24475                         } 
24476                     ]
24477                 },
24478                 {
24479                     tag: 'td',
24480                     cls: 'separator'
24481                 },
24482                 {
24483                     tag: 'td',
24484                     cn: [
24485                         {
24486                             tag: 'a',
24487                             href: '#',
24488                             cls: 'btn',
24489                             cn: [
24490                                 {
24491                                     tag: 'i',
24492                                     cls: 'minutes-up fa fas fa-chevron-up'
24493                                 }
24494                             ]
24495                         }
24496                     ]
24497                 },
24498                 {
24499                     tag: 'td',
24500                     cls: 'separator'
24501                 }
24502             ]
24503         });
24504         
24505         time.createChild({
24506             tag: 'tr',
24507             cn: [
24508                 {
24509                     tag: 'td',
24510                     cn: [
24511                         {
24512                             tag: 'span',
24513                             cls: 'timepicker-hour',
24514                             html: '00'
24515                         }  
24516                     ]
24517                 },
24518                 {
24519                     tag: 'td',
24520                     cls: 'separator',
24521                     html: ':'
24522                 },
24523                 {
24524                     tag: 'td',
24525                     cn: [
24526                         {
24527                             tag: 'span',
24528                             cls: 'timepicker-minute',
24529                             html: '00'
24530                         }  
24531                     ]
24532                 },
24533                 {
24534                     tag: 'td',
24535                     cls: 'separator'
24536                 },
24537                 {
24538                     tag: 'td',
24539                     cn: [
24540                         {
24541                             tag: 'button',
24542                             type: 'button',
24543                             cls: 'btn btn-primary period',
24544                             html: 'AM'
24545                             
24546                         }
24547                     ]
24548                 }
24549             ]
24550         });
24551         
24552         time.createChild({
24553             tag: 'tr',
24554             cn: [
24555                 {
24556                     tag: 'td',
24557                     cn: [
24558                         {
24559                             tag: 'a',
24560                             href: '#',
24561                             cls: 'btn',
24562                             cn: [
24563                                 {
24564                                     tag: 'span',
24565                                     cls: 'hours-down fa fas fa-chevron-down'
24566                                 }
24567                             ]
24568                         }
24569                     ]
24570                 },
24571                 {
24572                     tag: 'td',
24573                     cls: 'separator'
24574                 },
24575                 {
24576                     tag: 'td',
24577                     cn: [
24578                         {
24579                             tag: 'a',
24580                             href: '#',
24581                             cls: 'btn',
24582                             cn: [
24583                                 {
24584                                     tag: 'span',
24585                                     cls: 'minutes-down fa fas fa-chevron-down'
24586                                 }
24587                             ]
24588                         }
24589                     ]
24590                 },
24591                 {
24592                     tag: 'td',
24593                     cls: 'separator'
24594                 }
24595             ]
24596         });
24597         
24598     },
24599     
24600     update: function()
24601     {
24602         // default minute is a multiple of minuteStep
24603         if(typeof(this.time) === 'undefined' || this.time.length == 0) {
24604             this.time = new Date();
24605             this.time = this.time.add(Date.MINUTE, Math.round(parseInt(this.time.format('i')) / this.minuteStep) * this.minuteStep - parseInt(this.time.format('i')));
24606         }
24607         this.time = (typeof(this.time) === 'undefined' || this.time.length == 0) ? new Date() : this.time;
24608         
24609         this.fill();
24610     },
24611     
24612     fill: function() 
24613     {
24614         var hours = this.time.getHours();
24615         var minutes = this.time.getMinutes();
24616         var period = Roo.bootstrap.form.TimeField.periodText[this.language]['am'];
24617         
24618         if(hours > 11){
24619             period = Roo.bootstrap.form.TimeField.periodText[this.language]['pm'];
24620         }
24621         
24622         if(hours == 0){
24623             hours = 12;
24624         }
24625         
24626         
24627         if(hours > 12){
24628             hours = hours - 12;
24629         }
24630         
24631         if(hours < 10){
24632             hours = '0' + hours;
24633         }
24634         
24635         if(minutes < 10){
24636             minutes = '0' + minutes;
24637         }
24638         
24639         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
24640         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
24641         this.pop.select('button', true).first().dom.innerHTML = period;
24642         
24643     },
24644     
24645     place: function()
24646     {   
24647         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
24648         
24649         var cls = ['bottom'];
24650         
24651         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
24652             cls.pop();
24653             cls.push('top');
24654         }
24655         
24656         cls.push('right');
24657         
24658         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
24659             cls.pop();
24660             cls.push('left');
24661         }
24662         //this.picker().setXY(20000,20000);
24663         this.picker().addClass(cls.join('-'));
24664         
24665         var _this = this;
24666         
24667         Roo.each(cls, function(c){
24668             if(c == 'bottom'){
24669                 (function() {
24670                  //  
24671                 }).defer(200);
24672                  _this.picker().alignTo(_this.inputEl(),   "tr-br", [0, 10], false);
24673                 //_this.picker().setTop(_this.inputEl().getHeight());
24674                 return;
24675             }
24676             if(c == 'top'){
24677                  _this.picker().alignTo(_this.inputEl(),   "br-tr", [0, 10], false);
24678                 
24679                 //_this.picker().setTop(0 - _this.picker().getHeight());
24680                 return;
24681             }
24682             /*
24683             if(c == 'left'){
24684                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
24685                 return;
24686             }
24687             if(c == 'right'){
24688                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
24689                 return;
24690             }
24691             */
24692         });
24693         
24694     },
24695   
24696     onFocus : function()
24697     {
24698         Roo.bootstrap.form.TimeField.superclass.onFocus.call(this);
24699         this.show();
24700     },
24701     
24702     onBlur : function()
24703     {
24704         Roo.bootstrap.form.TimeField.superclass.onBlur.call(this);
24705         this.hide();
24706     },
24707     
24708     show : function()
24709     {
24710         this.picker().show();
24711         this.pop.show();
24712         this.update();
24713         this.place();
24714         
24715         this.fireEvent('show', this, this.time);
24716     },
24717     
24718     hide : function()
24719     {
24720         this.picker().hide();
24721         this.pop.hide();
24722
24723         this.inputEl().blur();
24724         
24725         this.fireEvent('hide', this, this.time);
24726     },
24727     
24728     setTime : function()
24729     {
24730         this.hide();
24731         this.setValue(this.time);
24732         
24733         this.fireEvent('select', this, this.time);
24734         
24735         
24736     },
24737
24738     // return false when it fails
24739     parseTime : function(value)
24740     {
24741         if(!value) {
24742             return false;
24743         }
24744         if(value instanceof Date){
24745             return value;
24746         }
24747         var v = Date.parseDate(value, 'H:i:s');
24748
24749         return (typeof(v) == 'undefined') ? false : v;
24750     },
24751
24752     translateTime : function(time)
24753     {
24754         switch(this.language) {
24755             case 'zh_CN':
24756                 return new Intl.DateTimeFormat('zh-CN', {
24757                     hour : 'numeric',
24758                     minute : 'numeric',
24759                     hour12 : true
24760                 }).format(time);
24761             default :
24762                 return time.format(this.format);
24763         }
24764     },
24765
24766     setValue: function(v)
24767     {
24768         var t = this.parseTime(v);
24769
24770         if(!t) {
24771             this.time = this.value = this.hiddenField.value =  '';
24772             if(this.rendered){
24773                 this.inputEl().dom.value = '';
24774                 this.validate();
24775             }
24776             return;
24777         }
24778
24779         this.value = this.hiddenField.value = t.dateFormat('H:i:s');
24780
24781         v = this.translateTime(t);
24782
24783         if(this.rendered){
24784             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
24785             this.validate();
24786         }
24787
24788         this.time = t;
24789
24790         this.update();
24791     },
24792
24793     setRawValue: function(v)
24794     {
24795         var t = this.parseTime(v);
24796
24797         if(!t) {
24798             this.time = this.value = this.hiddenField.value =  '';
24799             if(this.rendered){
24800                 this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
24801             }
24802             return;
24803         }
24804
24805         this.value = this.hiddenField.value = t.dateFormat('H:i:s');
24806
24807         v = this.translateTime(t);
24808
24809         if(this.rendered){
24810             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
24811         }
24812
24813         this.time = t;
24814
24815         this.update();
24816     },
24817
24818     getValue: function()
24819     {
24820         return this.value;
24821     },
24822
24823     getRawValue : function(){
24824         return this.getValue();
24825     },
24826     
24827     onMousedown: function(e){
24828         e.stopPropagation();
24829         e.preventDefault();
24830     },
24831     
24832     onIncrementHours: function()
24833     {
24834         Roo.log('onIncrementHours');
24835         this.time = this.time.add(Date.HOUR, 1);
24836         this.update();
24837         
24838     },
24839     
24840     onDecrementHours: function()
24841     {
24842         Roo.log('onDecrementHours');
24843         this.time = this.time.add(Date.HOUR, -1);
24844         this.update();
24845     },
24846     
24847     onIncrementMinutes: function()
24848     {
24849         Roo.log('onIncrementMinutes');
24850         var minutesToAdd = Math.round((parseInt(this.time.format('i')) + this.minuteStep) / this.minuteStep) * this.minuteStep - parseInt(this.time.format('i'));
24851         this.time = this.time.add(Date.MINUTE, minutesToAdd);
24852         this.update();
24853     },
24854     
24855     onDecrementMinutes: function()
24856     {
24857         Roo.log('onDecrementMinutes');
24858         var minutesToSubtract = parseInt(this.time.format('i')) - Math.round((parseInt(this.time.format('i')) - this.minuteStep) / this.minuteStep) * this.minuteStep;
24859         this.time = this.time.add(Date.MINUTE, -1 * minutesToSubtract);
24860         this.update();
24861     },
24862     
24863     onTogglePeriod: function()
24864     {
24865         Roo.log('onTogglePeriod');
24866         this.time = this.time.add(Date.HOUR, 12);
24867         this.update();
24868     }
24869     
24870    
24871 });
24872 Roo.apply(Roo.bootstrap.form.TimeField,  {
24873     okText : 'OK',
24874     periodText : {
24875         en : {
24876             am : 'AM',
24877             pm : 'PM'
24878         },
24879         zh_CN : {
24880             am : '上午',
24881             pm : '下午'
24882         }
24883     }
24884 });
24885
24886 Roo.apply(Roo.bootstrap.form.TimeField,  {
24887     template : {
24888         tag: 'div',
24889         cls: 'datepicker dropdown-menu',
24890         cn: [
24891             {
24892                 tag: 'div',
24893                 cls: 'datepicker-time',
24894                 cn: [
24895                 {
24896                     tag: 'table',
24897                     cls: 'table-condensed',
24898                     cn:[
24899                         {
24900                             tag: 'tbody',
24901                             cn: [
24902                                 {
24903                                     tag: 'tr',
24904                                     cn: [
24905                                     {
24906                                         tag: 'td',
24907                                         colspan: '7'
24908                                     }
24909                                     ]
24910                                 }
24911                             ]
24912                         },
24913                         {
24914                             tag: 'tfoot',
24915                             cn: [
24916                                 {
24917                                     tag: 'tr',
24918                                     cn: [
24919                                     {
24920                                         tag: 'th',
24921                                         colspan: '7',
24922                                         cls: '',
24923                                         cn: [
24924                                             {
24925                                                 tag: 'button',
24926                                                 cls: 'btn btn-info ok',
24927                                                 html: "OK" // this is overridden on construciton
24928                                             }
24929                                         ]
24930                                     }
24931                     
24932                                     ]
24933                                 }
24934                             ]
24935                         }
24936                     ]
24937                 }
24938                 ]
24939             }
24940         ]
24941     }
24942 });
24943
24944  
24945
24946  /*
24947  * - LGPL
24948  *
24949  * MonthField
24950  * 
24951  */
24952
24953 /**
24954  * @class Roo.bootstrap.form.MonthField
24955  * @extends Roo.bootstrap.form.Input
24956  * Bootstrap MonthField class
24957  * 
24958  * @cfg {String} language default en
24959  * 
24960  * @constructor
24961  * Create a new MonthField
24962  * @param {Object} config The config object
24963  */
24964
24965 Roo.bootstrap.form.MonthField = function(config){
24966     Roo.bootstrap.form.MonthField.superclass.constructor.call(this, config);
24967     
24968     this.addEvents({
24969         /**
24970          * @event show
24971          * Fires when this field show.
24972          * @param {Roo.bootstrap.form.MonthField} this
24973          * @param {Mixed} date The date value
24974          */
24975         show : true,
24976         /**
24977          * @event show
24978          * Fires when this field hide.
24979          * @param {Roo.bootstrap.form.MonthField} this
24980          * @param {Mixed} date The date value
24981          */
24982         hide : true,
24983         /**
24984          * @event select
24985          * Fires when select a date.
24986          * @param {Roo.bootstrap.form.MonthField} this
24987          * @param {String} oldvalue The old value
24988          * @param {String} newvalue The new value
24989          */
24990         select : true
24991     });
24992 };
24993
24994 Roo.extend(Roo.bootstrap.form.MonthField, Roo.bootstrap.form.Input,  {
24995     
24996     onRender: function(ct, position)
24997     {
24998         
24999         Roo.bootstrap.form.MonthField.superclass.onRender.call(this, ct, position);
25000         
25001         this.language = this.language || 'en';
25002         this.language = this.language in Roo.bootstrap.form.MonthField.dates ? this.language : this.language.split('-')[0];
25003         this.language = this.language in Roo.bootstrap.form.MonthField.dates ? this.language : "en";
25004         
25005         this.isRTL = Roo.bootstrap.form.MonthField.dates[this.language].rtl || false;
25006         this.isInline = false;
25007         this.isInput = true;
25008         this.component = this.el.select('.add-on', true).first() || false;
25009         this.component = (this.component && this.component.length === 0) ? false : this.component;
25010         this.hasInput = this.component && this.inputEL().length;
25011         
25012         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.form.MonthField.template);
25013         
25014         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
25015         
25016         this.picker().on('mousedown', this.onMousedown, this);
25017         this.picker().on('click', this.onClick, this);
25018         
25019         this.picker().addClass('datepicker-dropdown');
25020         
25021         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
25022             v.setStyle('width', '189px');
25023         });
25024         
25025         this.fillMonths();
25026         
25027         this.update();
25028         
25029         if(this.isInline) {
25030             this.show();
25031         }
25032         
25033     },
25034     
25035     setValue: function(v, suppressEvent)
25036     {   
25037         var o = this.getValue();
25038         
25039         Roo.bootstrap.form.MonthField.superclass.setValue.call(this, v);
25040         
25041         this.update();
25042
25043         if(suppressEvent !== true){
25044             this.fireEvent('select', this, o, v);
25045         }
25046         
25047     },
25048     
25049     getValue: function()
25050     {
25051         return this.value;
25052     },
25053     
25054     onClick: function(e) 
25055     {
25056         e.stopPropagation();
25057         e.preventDefault();
25058         
25059         var target = e.getTarget();
25060         
25061         if(target.nodeName.toLowerCase() === 'i'){
25062             target = Roo.get(target).dom.parentNode;
25063         }
25064         
25065         var nodeName = target.nodeName;
25066         var className = target.className;
25067         var html = target.innerHTML;
25068         
25069         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
25070             return;
25071         }
25072         
25073         this.vIndex = Roo.bootstrap.form.MonthField.dates[this.language].monthsShort.indexOf(html);
25074         
25075         this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
25076         
25077         this.hide();
25078                         
25079     },
25080     
25081     picker : function()
25082     {
25083         return this.pickerEl;
25084     },
25085     
25086     fillMonths: function()
25087     {    
25088         var i = 0;
25089         var months = this.picker().select('>.datepicker-months td', true).first();
25090         
25091         months.dom.innerHTML = '';
25092         
25093         while (i < 12) {
25094             var month = {
25095                 tag: 'span',
25096                 cls: 'month',
25097                 html: Roo.bootstrap.form.MonthField.dates[this.language].monthsShort[i++]
25098             };
25099             
25100             months.createChild(month);
25101         }
25102         
25103     },
25104     
25105     update: function()
25106     {
25107         var _this = this;
25108         
25109         if(typeof(this.vIndex) == 'undefined' && this.value.length){
25110             this.vIndex = Roo.bootstrap.form.MonthField.dates[this.language].months.indexOf(this.value);
25111         }
25112         
25113         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
25114             e.removeClass('active');
25115             
25116             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
25117                 e.addClass('active');
25118             }
25119         })
25120     },
25121     
25122     place: function()
25123     {
25124         if(this.isInline) {
25125             return;
25126         }
25127         
25128         this.picker().removeClass(['bottom', 'top']);
25129         
25130         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
25131             /*
25132              * place to the top of element!
25133              *
25134              */
25135             
25136             this.picker().addClass('top');
25137             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
25138             
25139             return;
25140         }
25141         
25142         this.picker().addClass('bottom');
25143         
25144         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
25145     },
25146     
25147     onFocus : function()
25148     {
25149         Roo.bootstrap.form.MonthField.superclass.onFocus.call(this);
25150         this.show();
25151     },
25152     
25153     onBlur : function()
25154     {
25155         Roo.bootstrap.form.MonthField.superclass.onBlur.call(this);
25156         
25157         var d = this.inputEl().getValue();
25158         
25159         this.setValue(d);
25160                 
25161         this.hide();
25162     },
25163     
25164     show : function()
25165     {
25166         this.picker().show();
25167         this.picker().select('>.datepicker-months', true).first().show();
25168         this.update();
25169         this.place();
25170         
25171         this.fireEvent('show', this, this.date);
25172     },
25173     
25174     hide : function()
25175     {
25176         if(this.isInline) {
25177             return;
25178         }
25179         this.picker().hide();
25180         this.fireEvent('hide', this, this.date);
25181         
25182     },
25183     
25184     onMousedown: function(e)
25185     {
25186         e.stopPropagation();
25187         e.preventDefault();
25188     },
25189     
25190     keyup: function(e)
25191     {
25192         Roo.bootstrap.form.MonthField.superclass.keyup.call(this);
25193         this.update();
25194     },
25195
25196     fireKey: function(e)
25197     {
25198         if (!this.picker().isVisible()){
25199             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
25200                 this.show();
25201             }
25202             return;
25203         }
25204         
25205         var dir;
25206         
25207         switch(e.keyCode){
25208             case 27: // escape
25209                 this.hide();
25210                 e.preventDefault();
25211                 break;
25212             case 37: // left
25213             case 39: // right
25214                 dir = e.keyCode == 37 ? -1 : 1;
25215                 
25216                 this.vIndex = this.vIndex + dir;
25217                 
25218                 if(this.vIndex < 0){
25219                     this.vIndex = 0;
25220                 }
25221                 
25222                 if(this.vIndex > 11){
25223                     this.vIndex = 11;
25224                 }
25225                 
25226                 if(isNaN(this.vIndex)){
25227                     this.vIndex = 0;
25228                 }
25229                 
25230                 this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
25231                 
25232                 break;
25233             case 38: // up
25234             case 40: // down
25235                 
25236                 dir = e.keyCode == 38 ? -1 : 1;
25237                 
25238                 this.vIndex = this.vIndex + dir * 4;
25239                 
25240                 if(this.vIndex < 0){
25241                     this.vIndex = 0;
25242                 }
25243                 
25244                 if(this.vIndex > 11){
25245                     this.vIndex = 11;
25246                 }
25247                 
25248                 if(isNaN(this.vIndex)){
25249                     this.vIndex = 0;
25250                 }
25251                 
25252                 this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
25253                 break;
25254                 
25255             case 13: // enter
25256                 
25257                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
25258                     this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
25259                 }
25260                 
25261                 this.hide();
25262                 e.preventDefault();
25263                 break;
25264             case 9: // tab
25265                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
25266                     this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
25267                 }
25268                 this.hide();
25269                 break;
25270             case 16: // shift
25271             case 17: // ctrl
25272             case 18: // alt
25273                 break;
25274             default :
25275                 this.hide();
25276                 
25277         }
25278     },
25279     
25280     remove: function() 
25281     {
25282         this.picker().remove();
25283     }
25284    
25285 });
25286
25287 Roo.apply(Roo.bootstrap.form.MonthField,  {
25288     
25289     content : {
25290         tag: 'tbody',
25291         cn: [
25292         {
25293             tag: 'tr',
25294             cn: [
25295             {
25296                 tag: 'td',
25297                 colspan: '7'
25298             }
25299             ]
25300         }
25301         ]
25302     },
25303     
25304     dates:{
25305         en: {
25306             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
25307             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
25308         }
25309     }
25310 });
25311
25312 Roo.apply(Roo.bootstrap.form.MonthField,  {
25313   
25314     template : {
25315         tag: 'div',
25316         cls: 'datepicker dropdown-menu roo-dynamic',
25317         cn: [
25318             {
25319                 tag: 'div',
25320                 cls: 'datepicker-months',
25321                 cn: [
25322                 {
25323                     tag: 'table',
25324                     cls: 'table-condensed',
25325                     cn:[
25326                         Roo.bootstrap.form.DateField.content
25327                     ]
25328                 }
25329                 ]
25330             }
25331         ]
25332     }
25333 });
25334
25335  
25336
25337  
25338  /*
25339  * - LGPL
25340  *
25341  * CheckBox
25342  * 
25343  */
25344
25345 /**
25346  * @class Roo.bootstrap.form.CheckBox
25347  * @extends Roo.bootstrap.form.Input
25348  * Bootstrap CheckBox class
25349  * 
25350  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
25351  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
25352  * @cfg {String} boxLabel The text that appears beside the checkbox
25353  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
25354  * @cfg {Boolean} checked initnal the element
25355  * @cfg {Boolean} inline inline the element (default false)
25356  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
25357  * @cfg {String} tooltip label tooltip
25358  * 
25359  * @constructor
25360  * Create a new CheckBox
25361  * @param {Object} config The config object
25362  */
25363
25364 Roo.bootstrap.form.CheckBox = function(config){
25365     Roo.bootstrap.form.CheckBox.superclass.constructor.call(this, config);
25366    
25367     this.addEvents({
25368         /**
25369         * @event check
25370         * Fires when the element is checked or unchecked.
25371         * @param {Roo.bootstrap.form.CheckBox} this This input
25372         * @param {Boolean} checked The new checked value
25373         */
25374        check : true,
25375        /**
25376         * @event click
25377         * Fires when the element is click.
25378         * @param {Roo.bootstrap.form.CheckBox} this This input
25379         */
25380        click : true
25381     });
25382     
25383 };
25384
25385 Roo.extend(Roo.bootstrap.form.CheckBox, Roo.bootstrap.form.Input,  {
25386   
25387     inputType: 'checkbox',
25388     inputValue: 1,
25389     valueOff: 0,
25390     boxLabel: false,
25391     checked: false,
25392     weight : false,
25393     inline: false,
25394     tooltip : '',
25395     
25396     // checkbox success does not make any sense really.. 
25397     invalidClass : "",
25398     validClass : "",
25399     
25400     
25401     getAutoCreate : function()
25402     {
25403         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
25404         
25405         var id = Roo.id();
25406         
25407         var cfg = {};
25408         
25409         cfg.cls = 'form-group form-check ' + this.inputType; //input-group
25410         
25411         if(this.inline){
25412             cfg.cls += ' ' + this.inputType + '-inline  form-check-inline';
25413         }
25414         
25415         var input =  {
25416             tag: 'input',
25417             id : id,
25418             type : this.inputType,
25419             value : this.inputValue,
25420             cls : 'roo-' + this.inputType, //'form-box',
25421             placeholder : this.placeholder || ''
25422             
25423         };
25424         
25425         if(this.inputType != 'radio'){
25426             var hidden =  {
25427                 tag: 'input',
25428                 type : 'hidden',
25429                 cls : 'roo-hidden-value',
25430                 value : this.checked ? this.inputValue : this.valueOff
25431             };
25432         }
25433         
25434             
25435         if (this.weight) { // Validity check?
25436             cfg.cls += " " + this.inputType + "-" + this.weight;
25437         }
25438         
25439         if (this.disabled) {
25440             input.disabled=true;
25441         }
25442         
25443         if(this.checked){
25444             input.checked = this.checked;
25445         }
25446         
25447         if (this.name) {
25448             
25449             input.name = this.name;
25450             
25451             if(this.inputType != 'radio'){
25452                 hidden.name = this.name;
25453                 input.name = '_hidden_' + this.name;
25454             }
25455         }
25456         
25457         if (this.size) {
25458             input.cls += ' input-' + this.size;
25459         }
25460         
25461         var settings=this;
25462         
25463         ['xs','sm','md','lg'].map(function(size){
25464             if (settings[size]) {
25465                 cfg.cls += ' col-' + size + '-' + settings[size];
25466             }
25467         });
25468         
25469         var inputblock = input;
25470          
25471         if (this.before || this.after) {
25472             
25473             inputblock = {
25474                 cls : 'input-group',
25475                 cn :  [] 
25476             };
25477             
25478             if (this.before) {
25479                 inputblock.cn.push({
25480                     tag :'span',
25481                     cls : 'input-group-addon',
25482                     html : this.before
25483                 });
25484             }
25485             
25486             inputblock.cn.push(input);
25487             
25488             if(this.inputType != 'radio'){
25489                 inputblock.cn.push(hidden);
25490             }
25491             
25492             if (this.after) {
25493                 inputblock.cn.push({
25494                     tag :'span',
25495                     cls : 'input-group-addon',
25496                     html : this.after
25497                 });
25498             }
25499             
25500         }
25501         var boxLabelCfg = false;
25502         
25503         if(this.boxLabel){
25504            
25505             boxLabelCfg = {
25506                 tag: 'label',
25507                 //'for': id, // box label is handled by onclick - so no for...
25508                 cls: 'box-label',
25509                 html: this.boxLabel
25510             };
25511             if(this.tooltip){
25512                 boxLabelCfg.tooltip = this.tooltip;
25513             }
25514              
25515         }
25516         
25517         
25518         if (align ==='left' && this.fieldLabel.length) {
25519 //                Roo.log("left and has label");
25520             cfg.cn = [
25521                 {
25522                     tag: 'label',
25523                     'for' :  id,
25524                     cls : 'control-label',
25525                     html : this.fieldLabel
25526                 },
25527                 {
25528                     cls : "", 
25529                     cn: [
25530                         inputblock
25531                     ]
25532                 }
25533             ];
25534             
25535             if (boxLabelCfg) {
25536                 cfg.cn[1].cn.push(boxLabelCfg);
25537             }
25538             
25539             if(this.labelWidth > 12){
25540                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
25541             }
25542             
25543             if(this.labelWidth < 13 && this.labelmd == 0){
25544                 this.labelmd = this.labelWidth;
25545             }
25546             
25547             if(this.labellg > 0){
25548                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
25549                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
25550             }
25551             
25552             if(this.labelmd > 0){
25553                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
25554                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
25555             }
25556             
25557             if(this.labelsm > 0){
25558                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
25559                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
25560             }
25561             
25562             if(this.labelxs > 0){
25563                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
25564                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
25565             }
25566             
25567         } else if ( this.fieldLabel.length) {
25568 //                Roo.log(" label");
25569                 cfg.cn = [
25570                    
25571                     {
25572                         tag: this.boxLabel ? 'span' : 'label',
25573                         'for': id,
25574                         cls: 'control-label box-input-label',
25575                         //cls : 'input-group-addon',
25576                         html : this.fieldLabel
25577                     },
25578                     
25579                     inputblock
25580                     
25581                 ];
25582                 if (boxLabelCfg) {
25583                     cfg.cn.push(boxLabelCfg);
25584                 }
25585
25586         } else {
25587             
25588 //                Roo.log(" no label && no align");
25589                 cfg.cn = [  inputblock ] ;
25590                 if (boxLabelCfg) {
25591                     cfg.cn.push(boxLabelCfg);
25592                 }
25593
25594                 
25595         }
25596         
25597        
25598         
25599         if(this.inputType != 'radio'){
25600             cfg.cn.push(hidden);
25601         }
25602         
25603         return cfg;
25604         
25605     },
25606     
25607     /**
25608      * return the real input element.
25609      */
25610     inputEl: function ()
25611     {
25612         return this.el.select('input.roo-' + this.inputType,true).first();
25613     },
25614     hiddenEl: function ()
25615     {
25616         return this.el.select('input.roo-hidden-value',true).first();
25617     },
25618     
25619     labelEl: function()
25620     {
25621         return this.el.select('label.control-label',true).first();
25622     },
25623     /* depricated... */
25624     
25625     label: function()
25626     {
25627         return this.labelEl();
25628     },
25629     
25630     boxLabelEl: function()
25631     {
25632         return this.el.select('label.box-label',true).first();
25633     },
25634     
25635     initEvents : function()
25636     {
25637 //        Roo.bootstrap.form.CheckBox.superclass.initEvents.call(this);
25638         
25639         this.inputEl().on('click', this.onClick,  this);
25640         
25641         if (this.boxLabel) { 
25642             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
25643         }
25644         
25645         this.startValue = this.getValue();
25646         
25647         if(this.groupId){
25648             Roo.bootstrap.form.CheckBox.register(this);
25649         }
25650     },
25651     
25652     onClick : function(e)
25653     {   
25654         if(this.fireEvent('click', this, e) !== false){
25655             this.setChecked(!this.checked);
25656         }
25657         
25658     },
25659     
25660     setChecked : function(state,suppressEvent)
25661     {
25662         this.startValue = this.getValue();
25663
25664         if(this.inputType == 'radio'){
25665             
25666             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25667                 e.dom.checked = false;
25668             });
25669             
25670             this.inputEl().dom.checked = true;
25671             
25672             this.inputEl().dom.value = this.inputValue;
25673             
25674             if(suppressEvent !== true){
25675                 this.fireEvent('check', this, true);
25676             }
25677             
25678             this.validate();
25679             
25680             return;
25681         }
25682         
25683         this.checked = state;
25684         
25685         this.inputEl().dom.checked = state;
25686         
25687         
25688         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
25689         
25690         if(suppressEvent !== true){
25691             this.fireEvent('check', this, state);
25692         }
25693         
25694         this.validate();
25695     },
25696     
25697     getValue : function()
25698     {
25699         if(this.inputType == 'radio'){
25700             return this.getGroupValue();
25701         }
25702         
25703         return this.hiddenEl().dom.value;
25704         
25705     },
25706     
25707     getGroupValue : function()
25708     {
25709         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
25710             return '';
25711         }
25712         
25713         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
25714     },
25715     
25716     setValue : function(v,suppressEvent)
25717     {
25718         if(this.inputType == 'radio'){
25719             this.setGroupValue(v, suppressEvent);
25720             return;
25721         }
25722         
25723         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
25724         
25725         this.validate();
25726     },
25727     
25728     setGroupValue : function(v, suppressEvent)
25729     {
25730         this.startValue = this.getValue();
25731         
25732         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25733             e.dom.checked = false;
25734             
25735             if(e.dom.value == v){
25736                 e.dom.checked = true;
25737             }
25738         });
25739         
25740         if(suppressEvent !== true){
25741             this.fireEvent('check', this, true);
25742         }
25743
25744         this.validate();
25745         
25746         return;
25747     },
25748     
25749     validate : function()
25750     {
25751         if(this.getVisibilityEl().hasClass('hidden')){
25752             return true;
25753         }
25754         
25755         if(
25756                 this.disabled || 
25757                 (this.inputType == 'radio' && this.validateRadio()) ||
25758                 (this.inputType == 'checkbox' && this.validateCheckbox())
25759         ){
25760             this.markValid();
25761             return true;
25762         }
25763         
25764         this.markInvalid();
25765         return false;
25766     },
25767     
25768     validateRadio : function()
25769     {
25770         if(this.getVisibilityEl().hasClass('hidden')){
25771             return true;
25772         }
25773         
25774         if(this.allowBlank){
25775             return true;
25776         }
25777         
25778         var valid = false;
25779         
25780         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25781             if(!e.dom.checked){
25782                 return;
25783             }
25784             
25785             valid = true;
25786             
25787             return false;
25788         });
25789         
25790         return valid;
25791     },
25792     
25793     validateCheckbox : function()
25794     {
25795         if(!this.groupId){
25796             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
25797             //return (this.getValue() == this.inputValue) ? true : false;
25798         }
25799         
25800         var group = Roo.bootstrap.form.CheckBox.get(this.groupId);
25801         
25802         if(!group){
25803             return false;
25804         }
25805         
25806         var r = false;
25807         
25808         for(var i in group){
25809             if(group[i].el.isVisible(true)){
25810                 r = false;
25811                 break;
25812             }
25813             
25814             r = true;
25815         }
25816         
25817         for(var i in group){
25818             if(r){
25819                 break;
25820             }
25821             
25822             r = (group[i].getValue() == group[i].inputValue) ? true : false;
25823         }
25824         
25825         return r;
25826     },
25827     
25828     /**
25829      * Mark this field as valid
25830      */
25831     markValid : function()
25832     {
25833         var _this = this;
25834         
25835         this.fireEvent('valid', this);
25836         
25837         var label = Roo.bootstrap.form.FieldLabel.get(this.name + '-group');
25838         
25839         if(this.groupId){
25840             label = Roo.bootstrap.form.FieldLabel.get(this.groupId + '-group');
25841         }
25842         
25843         if(label){
25844             label.markValid();
25845         }
25846
25847         if(this.inputType == 'radio'){
25848             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25849                 var fg = e.findParent('.form-group', false, true);
25850                 if (Roo.bootstrap.version == 3) {
25851                     fg.removeClass([_this.invalidClass, _this.validClass]);
25852                     fg.addClass(_this.validClass);
25853                 } else {
25854                     fg.removeClass(['is-valid', 'is-invalid']);
25855                     fg.addClass('is-valid');
25856                 }
25857             });
25858             
25859             return;
25860         }
25861
25862         if(!this.groupId){
25863             var fg = this.el.findParent('.form-group', false, true);
25864             if (Roo.bootstrap.version == 3) {
25865                 fg.removeClass([this.invalidClass, this.validClass]);
25866                 fg.addClass(this.validClass);
25867             } else {
25868                 fg.removeClass(['is-valid', 'is-invalid']);
25869                 fg.addClass('is-valid');
25870             }
25871             return;
25872         }
25873         
25874         var group = Roo.bootstrap.form.CheckBox.get(this.groupId);
25875         
25876         if(!group){
25877             return;
25878         }
25879         
25880         for(var i in group){
25881             var fg = group[i].el.findParent('.form-group', false, true);
25882             if (Roo.bootstrap.version == 3) {
25883                 fg.removeClass([this.invalidClass, this.validClass]);
25884                 fg.addClass(this.validClass);
25885             } else {
25886                 fg.removeClass(['is-valid', 'is-invalid']);
25887                 fg.addClass('is-valid');
25888             }
25889         }
25890     },
25891     
25892      /**
25893      * Mark this field as invalid
25894      * @param {String} msg The validation message
25895      */
25896     markInvalid : function(msg)
25897     {
25898         if(this.allowBlank){
25899             return;
25900         }
25901         
25902         var _this = this;
25903         
25904         this.fireEvent('invalid', this, msg);
25905         
25906         var label = Roo.bootstrap.form.FieldLabel.get(this.name + '-group');
25907         
25908         if(this.groupId){
25909             label = Roo.bootstrap.form.FieldLabel.get(this.groupId + '-group');
25910         }
25911         
25912         if(label){
25913             label.markInvalid();
25914         }
25915             
25916         if(this.inputType == 'radio'){
25917             
25918             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25919                 var fg = e.findParent('.form-group', false, true);
25920                 if (Roo.bootstrap.version == 3) {
25921                     fg.removeClass([_this.invalidClass, _this.validClass]);
25922                     fg.addClass(_this.invalidClass);
25923                 } else {
25924                     fg.removeClass(['is-invalid', 'is-valid']);
25925                     fg.addClass('is-invalid');
25926                 }
25927             });
25928             
25929             return;
25930         }
25931         
25932         if(!this.groupId){
25933             var fg = this.el.findParent('.form-group', false, true);
25934             if (Roo.bootstrap.version == 3) {
25935                 fg.removeClass([_this.invalidClass, _this.validClass]);
25936                 fg.addClass(_this.invalidClass);
25937             } else {
25938                 fg.removeClass(['is-invalid', 'is-valid']);
25939                 fg.addClass('is-invalid');
25940             }
25941             return;
25942         }
25943         
25944         var group = Roo.bootstrap.form.CheckBox.get(this.groupId);
25945         
25946         if(!group){
25947             return;
25948         }
25949         
25950         for(var i in group){
25951             var fg = group[i].el.findParent('.form-group', false, true);
25952             if (Roo.bootstrap.version == 3) {
25953                 fg.removeClass([_this.invalidClass, _this.validClass]);
25954                 fg.addClass(_this.invalidClass);
25955             } else {
25956                 fg.removeClass(['is-invalid', 'is-valid']);
25957                 fg.addClass('is-invalid');
25958             }
25959         }
25960         
25961     },
25962     
25963     clearInvalid : function()
25964     {
25965         Roo.bootstrap.form.Input.prototype.clearInvalid.call(this);
25966         
25967         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
25968         
25969         var label = Roo.bootstrap.form.FieldLabel.get(this.name + '-group');
25970         
25971         if (label && label.iconEl) {
25972             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
25973             label.iconEl.removeClass(['is-invalid', 'is-valid']);
25974         }
25975     },
25976     
25977     disable : function()
25978     {
25979         if(this.inputType != 'radio'){
25980             Roo.bootstrap.form.CheckBox.superclass.disable.call(this);
25981             return;
25982         }
25983         
25984         var _this = this;
25985         
25986         if(this.rendered){
25987             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25988                 _this.getActionEl().addClass(this.disabledClass);
25989                 e.dom.disabled = true;
25990             });
25991         }
25992         
25993         this.disabled = true;
25994         this.fireEvent("disable", this);
25995         return this;
25996     },
25997
25998     enable : function()
25999     {
26000         if(this.inputType != 'radio'){
26001             Roo.bootstrap.form.CheckBox.superclass.enable.call(this);
26002             return;
26003         }
26004         
26005         var _this = this;
26006         
26007         if(this.rendered){
26008             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
26009                 _this.getActionEl().removeClass(this.disabledClass);
26010                 e.dom.disabled = false;
26011             });
26012         }
26013         
26014         this.disabled = false;
26015         this.fireEvent("enable", this);
26016         return this;
26017     },
26018     
26019     setBoxLabel : function(v)
26020     {
26021         this.boxLabel = v;
26022         
26023         if(this.rendered){
26024             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
26025         }
26026     }
26027
26028 });
26029
26030 Roo.apply(Roo.bootstrap.form.CheckBox, {
26031     
26032     groups: {},
26033     
26034      /**
26035     * register a CheckBox Group
26036     * @param {Roo.bootstrap.form.CheckBox} the CheckBox to add
26037     */
26038     register : function(checkbox)
26039     {
26040         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
26041             this.groups[checkbox.groupId] = {};
26042         }
26043         
26044         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
26045             return;
26046         }
26047         
26048         this.groups[checkbox.groupId][checkbox.name] = checkbox;
26049         
26050     },
26051     /**
26052     * fetch a CheckBox Group based on the group ID
26053     * @param {string} the group ID
26054     * @returns {Roo.bootstrap.form.CheckBox} the CheckBox group
26055     */
26056     get: function(groupId) {
26057         if (typeof(this.groups[groupId]) == 'undefined') {
26058             return false;
26059         }
26060         
26061         return this.groups[groupId] ;
26062     }
26063     
26064     
26065 });
26066 /*
26067  * - LGPL
26068  *
26069  * RadioItem
26070  * 
26071  */
26072
26073 /**
26074  * @class Roo.bootstrap.form.Radio
26075  * @extends Roo.bootstrap.Component
26076  * Bootstrap Radio class
26077  * @cfg {String} boxLabel - the label associated
26078  * @cfg {String} value - the value of radio
26079  * 
26080  * @constructor
26081  * Create a new Radio
26082  * @param {Object} config The config object
26083  */
26084 Roo.bootstrap.form.Radio = function(config){
26085     Roo.bootstrap.form.Radio.superclass.constructor.call(this, config);
26086     
26087 };
26088
26089 Roo.extend(Roo.bootstrap.form.Radio, Roo.bootstrap.Component, {
26090     
26091     boxLabel : '',
26092     
26093     value : '',
26094     
26095     getAutoCreate : function()
26096     {
26097         var cfg = {
26098             tag : 'div',
26099             cls : 'form-group radio',
26100             cn : [
26101                 {
26102                     tag : 'label',
26103                     cls : 'box-label',
26104                     html : this.boxLabel
26105                 }
26106             ]
26107         };
26108         
26109         return cfg;
26110     },
26111     
26112     initEvents : function() 
26113     {
26114         this.parent().register(this);
26115         
26116         this.el.on('click', this.onClick, this);
26117         
26118     },
26119     
26120     onClick : function(e)
26121     {
26122         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
26123             this.setChecked(true);
26124         }
26125     },
26126     
26127     setChecked : function(state, suppressEvent)
26128     {
26129         this.parent().setValue(this.value, suppressEvent);
26130         
26131     },
26132     
26133     setBoxLabel : function(v)
26134     {
26135         this.boxLabel = v;
26136         
26137         if(this.rendered){
26138             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
26139         }
26140     }
26141     
26142 });
26143  
26144
26145  /*
26146  * - LGPL
26147  *
26148  * Input
26149  * 
26150  */
26151
26152 /**
26153  * @class Roo.bootstrap.form.SecurePass
26154  * @extends Roo.bootstrap.form.Input
26155  * Bootstrap SecurePass class
26156  * @cfg {Number} minimumStrength invalid if the strength of the password input is less than the minimum strength (from 0 to 3) (default 2)
26157  *
26158  * 
26159  * @constructor
26160  * Create a new SecurePass
26161  * @param {Object} config The config object
26162  */
26163  
26164 Roo.bootstrap.form.SecurePass = function (config) {
26165     
26166     Roo.bootstrap.form.SecurePass.superclass.constructor.call(this, config);
26167 }
26168
26169 Roo.extend(Roo.bootstrap.form.SecurePass, Roo.bootstrap.form.Input, {
26170     minimumStrength : 2,
26171     // private
26172     meterWidth: 300, 
26173     imageRoot: '/',  
26174     // private
26175     strength: 0,
26176     // private
26177     _lastPwd: null,
26178     // private
26179     kCapitalLetter: 0,
26180     kSmallLetter: 1,
26181     kDigit: 2,
26182     kPunctuation: 3,
26183     
26184     insecure: false,
26185     // private
26186     initEvents: function ()
26187     {
26188         Roo.bootstrap.form.SecurePass.superclass.initEvents.call(this);
26189
26190         if (this.el.is('input[type=password]') && Roo.isSafari) {
26191             this.el.on('keydown', this.SafariOnKeyDown, this);
26192         }
26193
26194         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
26195     },
26196     // private
26197     onRender: function (ct, position)
26198     {
26199         Roo.bootstrap.form.SecurePass.superclass.onRender.call(this, ct, position);
26200         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
26201         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
26202
26203         this.trigger.createChild({
26204                    cn: [
26205                     {
26206                     //id: 'PwdMeter',
26207                     tag: 'div',
26208                     cls: 'roo-password-meter-grey col-xs-12',
26209                     style: {
26210                         //width: 0,
26211                         //width: this.meterWidth + 'px'                                                
26212                         }
26213                     },
26214                     {                            
26215                          cls: 'roo-password-meter-text'                          
26216                     }
26217                 ]            
26218         });
26219
26220          
26221         if (this.hideTrigger) {
26222             this.trigger.setDisplayed(false);
26223         }
26224         this.setSize(this.width || '', this.height || '');
26225     },
26226     // private
26227     onDestroy: function ()
26228     {
26229         if (this.trigger) {
26230             this.trigger.removeAllListeners();
26231             this.trigger.remove();
26232         }
26233         if (this.wrap) {
26234             this.wrap.remove();
26235         }
26236         Roo.bootstrap.form.TriggerField.superclass.onDestroy.call(this);
26237     },
26238     // private
26239     checkStrength: function ()
26240     {
26241         var pwd = this.inputEl().getValue();
26242         if (pwd == this._lastPwd) {
26243             return;
26244         }
26245
26246         var strength;
26247         if (this.ClientSideStrongPassword(pwd)) {
26248             strength = 3;
26249         } else if (this.ClientSideMediumPassword(pwd)) {
26250             strength = 2;
26251         } else if (this.ClientSideWeakPassword(pwd)) {
26252             strength = 1;
26253         } else {
26254             strength = 0;
26255         }
26256         
26257         Roo.log('strength1: ' + strength);
26258         
26259         //var pm = this.trigger.child('div/div/div').dom;
26260         var pm = this.trigger.child('div/div');
26261         pm.removeClass(Roo.bootstrap.form.SecurePass.meterClass);
26262         pm.addClass(Roo.bootstrap.form.SecurePass.meterClass[strength]);
26263                 
26264         
26265         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
26266                 
26267         pt.innerHTML = Roo.bootstrap.form.SecurePass.meterLabel + '&nbsp;' + Roo.bootstrap.form.SecurePass.pwdStrengths[strength];
26268         
26269         this._lastPwd = pwd;
26270     },
26271     reset: function ()
26272     {
26273         Roo.bootstrap.form.SecurePass.superclass.reset.call(this);
26274         
26275         this._lastPwd = '';
26276         
26277         var pm = this.trigger.child('div/div');
26278         pm.removeClass(Roo.bootstrap.form.SecurePass.meterClass);
26279         pm.addClass('roo-password-meter-grey');        
26280         
26281         
26282         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
26283         
26284         pt.innerHTML = '';
26285         this.inputEl().dom.type='password';
26286     },
26287     // private
26288     validateValue: function (value)
26289     {
26290         if (!Roo.bootstrap.form.SecurePass.superclass.validateValue.call(this, value)) {
26291             return false;
26292         }
26293         if (value.length == 0) {
26294             if (this.allowBlank) {
26295                 this.clearInvalid();
26296                 return true;
26297             }
26298
26299             this.invalidText = Roo.bootstrap.form.SecurePass.errors.PwdEmpty;
26300             return false;
26301         }
26302         
26303         if(this.insecure){
26304             return true;
26305         }
26306         
26307         if (!value.match(/[\x21-\x7e]+/)) {
26308             this.invalidText = Roo.bootstrap.form.SecurePass.errors.PwdBadChar;
26309             return false;
26310         }
26311         if (value.length < 6) {
26312             this.invalidText = Roo.bootstrap.form.SecurePass.errors.PwdShort;
26313             return false;
26314         }
26315         if (value.length > 16) {
26316             this.invalidText = Roo.bootstrap.form.SecurePass.errors.PwdLong;
26317             return false;
26318         }
26319         var strength;
26320         if (this.ClientSideStrongPassword(value)) {
26321             strength = 3;
26322         } else if (this.ClientSideMediumPassword(value)) {
26323             strength = 2;
26324         } else if (this.ClientSideWeakPassword(value)) {
26325             strength = 1;
26326         } else {
26327             strength = 0;
26328         }
26329
26330         
26331         if (strength < this.minimumStrength) {
26332             this.invalidText = Roo.bootstrap.form.SecurePass.errors.TooWeak;
26333             return false;
26334         }
26335         
26336         
26337         console.log('strength2: ' + strength);
26338         
26339         //var pm = this.trigger.child('div/div/div').dom;
26340         
26341         var pm = this.trigger.child('div/div');
26342         pm.removeClass(Roo.bootstrap.form.SecurePass.meterClass);
26343         pm.addClass(Roo.bootstrap.form.SecurePass.meterClass[strength]);
26344                 
26345         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
26346                 
26347         pt.innerHTML = Roo.bootstrap.form.SecurePass.meterLabel + '&nbsp;' + Roo.bootstrap.form.SecurePass.pwdStrengths[strength];
26348
26349         return true;
26350     },
26351     // private
26352     CharacterSetChecks: function (type)
26353     {
26354         this.type = type;
26355         this.fResult = false;
26356     },
26357     // private
26358     isctype: function (character, type)
26359     {
26360         switch (type) {  
26361             case this.kCapitalLetter:
26362                 if (character >= 'A' && character <= 'Z') {
26363                     return true;
26364                 }
26365                 break;
26366             
26367             case this.kSmallLetter:
26368                 if (character >= 'a' && character <= 'z') {
26369                     return true;
26370                 }
26371                 break;
26372             
26373             case this.kDigit:
26374                 if (character >= '0' && character <= '9') {
26375                     return true;
26376                 }
26377                 break;
26378             
26379             case this.kPunctuation:
26380                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
26381                     return true;
26382                 }
26383                 break;
26384             
26385             default:
26386                 return false;
26387         }
26388
26389     },
26390     // private
26391     IsLongEnough: function (pwd, size)
26392     {
26393         return !(pwd == null || isNaN(size) || pwd.length < size);
26394     },
26395     // private
26396     SpansEnoughCharacterSets: function (word, nb)
26397     {
26398         if (!this.IsLongEnough(word, nb))
26399         {
26400             return false;
26401         }
26402
26403         var characterSetChecks = new Array(
26404             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
26405             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
26406         );
26407         
26408         for (var index = 0; index < word.length; ++index) {
26409             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
26410                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
26411                     characterSetChecks[nCharSet].fResult = true;
26412                     break;
26413                 }
26414             }
26415         }
26416
26417         var nCharSets = 0;
26418         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
26419             if (characterSetChecks[nCharSet].fResult) {
26420                 ++nCharSets;
26421             }
26422         }
26423
26424         if (nCharSets < nb) {
26425             return false;
26426         }
26427         return true;
26428     },
26429     // private
26430     ClientSideStrongPassword: function (pwd)
26431     {
26432         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
26433     },
26434     // private
26435     ClientSideMediumPassword: function (pwd)
26436     {
26437         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
26438     },
26439     // private
26440     ClientSideWeakPassword: function (pwd)
26441     {
26442         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
26443     }
26444           
26445 });
26446
26447 Roo.bootstrap.form.SecurePass.errors = {
26448     PwdEmpty: "Please type a password, and then retype it to confirm.",
26449     PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
26450     PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
26451     PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
26452     IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
26453     FNInPwd: "Your password can't contain your first name. Please type a different password.",
26454     LNInPwd: "Your password can't contain your last name. Please type a different password.",
26455     TooWeak: "Your password is Too Weak."
26456 };
26457
26458 Roo.bootstrap.form.SecurePass.meterLabel = "Password strength:";
26459 Roo.bootstrap.form.SecurePass.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
26460 Roo.bootstrap.form.SecurePass.meterClass = [
26461     "roo-password-meter-tooweak", 
26462     "roo-password-meter-weak", 
26463     "roo-password-meter-medium", 
26464     "roo-password-meter-strong", 
26465     "roo-password-meter-grey"
26466 ];/**
26467  * @class Roo.bootstrap.form.Password
26468  * @extends Roo.bootstrap.form.Input
26469  * Bootstrap Password class
26470  * 
26471  * 
26472  * 
26473  * 
26474  * @constructor
26475  * Create a new Password
26476  * @param {Object} config The config object
26477  */
26478
26479 Roo.bootstrap.form.Password = function(config){
26480     Roo.bootstrap.form.Password.superclass.constructor.call(this, config);
26481
26482     this.inputType = 'password';
26483 };
26484
26485 Roo.extend(Roo.bootstrap.form.Password, Roo.bootstrap.form.Input, {
26486
26487     onRender : function(ct, position)
26488     {
26489         Roo.bootstrap.form.SecurePass.superclass.onRender.call(this, ct, position);
26490
26491         this.el.addClass('form-password');
26492
26493         this.wrap = this.inputEl().wrap({
26494             cls : 'password-wrap'
26495         });
26496
26497         this.toggle = this.wrap.createChild({
26498             tag : 'Button',
26499             cls : 'password-toggle'
26500         });
26501
26502
26503         this.toggleEl().addClass('password-hidden');
26504
26505         this.toggleEl().on('click', this.onToggleClick, this);;
26506     },
26507
26508     toggleEl: function()
26509     {
26510         return this.el.select('button.password-toggle',true).first();
26511     },
26512
26513     onToggleClick : function(e) 
26514     {
26515         var input = this.inputEl();
26516         var toggle = this.toggleEl();
26517
26518         toggle.removeClass(['password-visible', 'password-hidden']);
26519
26520         if(input.attr('type') == 'password') {
26521             input.attr('type', 'text');
26522             toggle.addClass('password-visible');
26523         }
26524         else {
26525             input.attr('type', 'password');
26526             toggle.addClass('password-hidden');
26527         }
26528     }
26529 });Roo.rtf = {}; // namespace
26530 Roo.rtf.Hex = function(hex)
26531 {
26532     this.hexstr = hex;
26533 };
26534 Roo.rtf.Paragraph = function(opts)
26535 {
26536     this.content = []; ///??? is that used?
26537 };Roo.rtf.Span = function(opts)
26538 {
26539     this.value = opts.value;
26540 };
26541
26542 Roo.rtf.Group = function(parent)
26543 {
26544     // we dont want to acutally store parent - it will make debug a nightmare..
26545     this.content = [];
26546     this.cn  = [];
26547      
26548        
26549     
26550 };
26551
26552 Roo.rtf.Group.prototype = {
26553     ignorable : false,
26554     content: false,
26555     cn: false,
26556     addContent : function(node) {
26557         // could set styles...
26558         this.content.push(node);
26559     },
26560     addChild : function(cn)
26561     {
26562         this.cn.push(cn);
26563     },
26564     // only for images really...
26565     toDataURL : function()
26566     {
26567         var mimetype = false;
26568         switch(true) {
26569             case this.content.filter(function(a) { return a.value == 'pngblip' } ).length > 0: 
26570                 mimetype = "image/png";
26571                 break;
26572              case this.content.filter(function(a) { return a.value == 'jpegblip' } ).length > 0:
26573                 mimetype = "image/jpeg";
26574                 break;
26575             default :
26576                 return 'about:blank'; // ?? error?
26577         }
26578         
26579         
26580         var hexstring = this.content[this.content.length-1].value;
26581         
26582         return 'data:' + mimetype + ';base64,' + btoa(hexstring.match(/\w{2}/g).map(function(a) {
26583             return String.fromCharCode(parseInt(a, 16));
26584         }).join(""));
26585     }
26586     
26587 };
26588 // this looks like it's normally the {rtf{ .... }}
26589 Roo.rtf.Document = function()
26590 {
26591     // we dont want to acutally store parent - it will make debug a nightmare..
26592     this.rtlch  = [];
26593     this.content = [];
26594     this.cn = [];
26595     
26596 };
26597 Roo.extend(Roo.rtf.Document, Roo.rtf.Group, { 
26598     addChild : function(cn)
26599     {
26600         this.cn.push(cn);
26601         switch(cn.type) {
26602             case 'rtlch': // most content seems to be inside this??
26603             case 'listtext':
26604             case 'shpinst':
26605                 this.rtlch.push(cn);
26606                 return;
26607             default:
26608                 this[cn.type] = cn;
26609         }
26610         
26611     },
26612     
26613     getElementsByType : function(type)
26614     {
26615         var ret =  [];
26616         this._getElementsByType(type, ret, this.cn, 'rtf');
26617         return ret;
26618     },
26619     _getElementsByType : function (type, ret, search_array, path)
26620     {
26621         search_array.forEach(function(n,i) {
26622             if (n.type == type) {
26623                 n.path = path + '/' + n.type + ':' + i;
26624                 ret.push(n);
26625             }
26626             if (n.cn.length > 0) {
26627                 this._getElementsByType(type, ret, n.cn, path + '/' + n.type+':'+i);
26628             }
26629         },this);
26630     }
26631     
26632 });
26633  
26634 Roo.rtf.Ctrl = function(opts)
26635 {
26636     this.value = opts.value;
26637     this.param = opts.param;
26638 };
26639 /**
26640  *
26641  *
26642  * based on this https://github.com/iarna/rtf-parser
26643  * it's really only designed to extract pict from pasted RTF 
26644  *
26645  * usage:
26646  *
26647  *  var images = new Roo.rtf.Parser().parse(a_string).filter(function(g) { return g.type == 'pict'; });
26648  *  
26649  *
26650  */
26651
26652  
26653
26654
26655
26656 Roo.rtf.Parser = function(text) {
26657     //super({objectMode: true})
26658     this.text = '';
26659     this.parserState = this.parseText;
26660     
26661     // these are for interpeter...
26662     this.doc = {};
26663     ///this.parserState = this.parseTop
26664     this.groupStack = [];
26665     this.hexStore = [];
26666     this.doc = false;
26667     
26668     this.groups = []; // where we put the return.
26669     
26670     for (var ii = 0; ii < text.length; ++ii) {
26671         ++this.cpos;
26672         
26673         if (text[ii] === '\n') {
26674             ++this.row;
26675             this.col = 1;
26676         } else {
26677             ++this.col;
26678         }
26679         this.parserState(text[ii]);
26680     }
26681     
26682     
26683     
26684 };
26685 Roo.rtf.Parser.prototype = {
26686     text : '', // string being parsed..
26687     controlWord : '',
26688     controlWordParam :  '',
26689     hexChar : '',
26690     doc : false,
26691     group: false,
26692     groupStack : false,
26693     hexStore : false,
26694     
26695     
26696     cpos : 0, 
26697     row : 1, // reportin?
26698     col : 1, //
26699
26700      
26701     push : function (el)
26702     {
26703         var m = 'cmd'+ el.type;
26704         if (typeof(this[m]) == 'undefined') {
26705             Roo.log('invalid cmd:' + el.type);
26706             return;
26707         }
26708         this[m](el);
26709         //Roo.log(el);
26710     },
26711     flushHexStore : function()
26712     {
26713         if (this.hexStore.length < 1) {
26714             return;
26715         }
26716         var hexstr = this.hexStore.map(
26717             function(cmd) {
26718                 return cmd.value;
26719         }).join('');
26720         
26721         this.group.addContent( new Roo.rtf.Hex( hexstr ));
26722               
26723             
26724         this.hexStore.splice(0)
26725         
26726     },
26727     
26728     cmdgroupstart : function()
26729     {
26730         this.flushHexStore();
26731         if (this.group) {
26732             this.groupStack.push(this.group);
26733         }
26734          // parent..
26735         if (this.doc === false) {
26736             this.group = this.doc = new Roo.rtf.Document();
26737             return;
26738             
26739         }
26740         this.group = new Roo.rtf.Group(this.group);
26741     },
26742     cmdignorable : function()
26743     {
26744         this.flushHexStore();
26745         this.group.ignorable = true;
26746     },
26747     cmdendparagraph : function()
26748     {
26749         this.flushHexStore();
26750         this.group.addContent(new Roo.rtf.Paragraph());
26751     },
26752     cmdgroupend : function ()
26753     {
26754         this.flushHexStore();
26755         var endingGroup = this.group;
26756         
26757         
26758         this.group = this.groupStack.pop();
26759         if (this.group) {
26760             this.group.addChild(endingGroup);
26761         }
26762         
26763         
26764         
26765         var doc = this.group || this.doc;
26766         //if (endingGroup instanceof FontTable) {
26767         //  doc.fonts = endingGroup.table
26768         //} else if (endingGroup instanceof ColorTable) {
26769         //  doc.colors = endingGroup.table
26770         //} else if (endingGroup !== this.doc && !endingGroup.get('ignorable')) {
26771         if (endingGroup.ignorable === false) {
26772             //code
26773             this.groups.push(endingGroup);
26774            // Roo.log( endingGroup );
26775         }
26776             //Roo.each(endingGroup.content, function(item)) {
26777             //    doc.addContent(item);
26778             //}
26779             //process.emit('debug', 'GROUP END', endingGroup.type, endingGroup.get('ignorable'))
26780         //}
26781     },
26782     cmdtext : function (cmd)
26783     {
26784         this.flushHexStore();
26785         if (!this.group) { // an RTF fragment, missing the {\rtf1 header
26786             //this.group = this.doc
26787             return;  // we really don't care about stray text...
26788         }
26789         this.group.addContent(new Roo.rtf.Span(cmd));
26790     },
26791     cmdcontrolword : function (cmd)
26792     {
26793         this.flushHexStore();
26794         if (!this.group.type) {
26795             this.group.type = cmd.value;
26796             return;
26797         }
26798         this.group.addContent(new Roo.rtf.Ctrl(cmd));
26799         // we actually don't care about ctrl words...
26800         return ;
26801         /*
26802         var method = 'ctrl$' + cmd.value.replace(/-(.)/g, (_, char) => char.toUpperCase())
26803         if (this[method]) {
26804             this[method](cmd.param)
26805         } else {
26806             if (!this.group.get('ignorable')) process.emit('debug', method, cmd.param)
26807         }
26808         */
26809     },
26810     cmdhexchar : function(cmd) {
26811         this.hexStore.push(cmd);
26812     },
26813     cmderror : function(cmd) {
26814         throw cmd.value;
26815     },
26816     
26817     /*
26818       _flush (done) {
26819         if (this.text !== '\u0000') this.emitText()
26820         done()
26821       }
26822       */
26823       
26824       
26825     parseText : function(c)
26826     {
26827         if (c === '\\') {
26828             this.parserState = this.parseEscapes;
26829         } else if (c === '{') {
26830             this.emitStartGroup();
26831         } else if (c === '}') {
26832             this.emitEndGroup();
26833         } else if (c === '\x0A' || c === '\x0D') {
26834             // cr/lf are noise chars
26835         } else {
26836             this.text += c;
26837         }
26838     },
26839     
26840     parseEscapes: function (c)
26841     {
26842         if (c === '\\' || c === '{' || c === '}') {
26843             this.text += c;
26844             this.parserState = this.parseText;
26845         } else {
26846             this.parserState = this.parseControlSymbol;
26847             this.parseControlSymbol(c);
26848         }
26849     },
26850     parseControlSymbol: function(c)
26851     {
26852         if (c === '~') {
26853             this.text += '\u00a0'; // nbsp
26854             this.parserState = this.parseText
26855         } else if (c === '-') {
26856              this.text += '\u00ad'; // soft hyphen
26857         } else if (c === '_') {
26858             this.text += '\u2011'; // non-breaking hyphen
26859         } else if (c === '*') {
26860             this.emitIgnorable();
26861             this.parserState = this.parseText;
26862         } else if (c === "'") {
26863             this.parserState = this.parseHexChar;
26864         } else if (c === '|') { // formula cacter
26865             this.emitFormula();
26866             this.parserState = this.parseText;
26867         } else if (c === ':') { // subentry in an index entry
26868             this.emitIndexSubEntry();
26869             this.parserState = this.parseText;
26870         } else if (c === '\x0a') {
26871             this.emitEndParagraph();
26872             this.parserState = this.parseText;
26873         } else if (c === '\x0d') {
26874             this.emitEndParagraph();
26875             this.parserState = this.parseText;
26876         } else {
26877             this.parserState = this.parseControlWord;
26878             this.parseControlWord(c);
26879         }
26880     },
26881     parseHexChar: function (c)
26882     {
26883         if (/^[A-Fa-f0-9]$/.test(c)) {
26884             this.hexChar += c;
26885             if (this.hexChar.length >= 2) {
26886               this.emitHexChar();
26887               this.parserState = this.parseText;
26888             }
26889             return;
26890         }
26891         this.emitError("Invalid character \"" + c + "\" in hex literal.");
26892         this.parserState = this.parseText;
26893         
26894     },
26895     parseControlWord : function(c)
26896     {
26897         if (c === ' ') {
26898             this.emitControlWord();
26899             this.parserState = this.parseText;
26900         } else if (/^[-\d]$/.test(c)) {
26901             this.parserState = this.parseControlWordParam;
26902             this.controlWordParam += c;
26903         } else if (/^[A-Za-z]$/.test(c)) {
26904           this.controlWord += c;
26905         } else {
26906           this.emitControlWord();
26907           this.parserState = this.parseText;
26908           this.parseText(c);
26909         }
26910     },
26911     parseControlWordParam : function (c) {
26912         if (/^\d$/.test(c)) {
26913           this.controlWordParam += c;
26914         } else if (c === ' ') {
26915           this.emitControlWord();
26916           this.parserState = this.parseText;
26917         } else {
26918           this.emitControlWord();
26919           this.parserState = this.parseText;
26920           this.parseText(c);
26921         }
26922     },
26923     
26924     
26925     
26926     
26927     emitText : function () {
26928         if (this.text === '') {
26929             return;
26930         }
26931         this.push({
26932             type: 'text',
26933             value: this.text,
26934             pos: this.cpos,
26935             row: this.row,
26936             col: this.col
26937         });
26938         this.text = ''
26939     },
26940     emitControlWord : function ()
26941     {
26942         this.emitText();
26943         if (this.controlWord === '') {
26944             // do we want to track this - it seems just to cause problems.
26945             //this.emitError('empty control word');
26946         } else {
26947             this.push({
26948                   type: 'controlword',
26949                   value: this.controlWord,
26950                   param: this.controlWordParam !== '' && Number(this.controlWordParam),
26951                   pos: this.cpos,
26952                   row: this.row,
26953                   col: this.col
26954             });
26955         }
26956         this.controlWord = '';
26957         this.controlWordParam = '';
26958     },
26959     emitStartGroup : function ()
26960     {
26961         this.emitText();
26962         this.push({
26963             type: 'groupstart',
26964             pos: this.cpos,
26965             row: this.row,
26966             col: this.col
26967         });
26968     },
26969     emitEndGroup : function ()
26970     {
26971         this.emitText();
26972         this.push({
26973             type: 'groupend',
26974             pos: this.cpos,
26975             row: this.row,
26976             col: this.col
26977         });
26978     },
26979     emitIgnorable : function ()
26980     {
26981         this.emitText();
26982         this.push({
26983             type: 'ignorable',
26984             pos: this.cpos,
26985             row: this.row,
26986             col: this.col
26987         });
26988     },
26989     emitHexChar : function ()
26990     {
26991         this.emitText();
26992         this.push({
26993             type: 'hexchar',
26994             value: this.hexChar,
26995             pos: this.cpos,
26996             row: this.row,
26997             col: this.col
26998         });
26999         this.hexChar = ''
27000     },
27001     emitError : function (message)
27002     {
27003       this.emitText();
27004       this.push({
27005             type: 'error',
27006             value: message,
27007             row: this.row,
27008             col: this.col,
27009             char: this.cpos //,
27010             //stack: new Error().stack
27011         });
27012     },
27013     emitEndParagraph : function () {
27014         this.emitText();
27015         this.push({
27016             type: 'endparagraph',
27017             pos: this.cpos,
27018             row: this.row,
27019             col: this.col
27020         });
27021     }
27022      
27023 } ; 
27024 /**
27025  * @class Roo.htmleditor.Filter
27026  * Base Class for filtering htmleditor stuff. - do not use this directly - extend it.
27027  * @cfg {DomElement} node The node to iterate and filter
27028  * @cfg {boolean|String|Array} tag Tags to replace 
27029  * @constructor
27030  * Create a new Filter.
27031  * @param {Object} config Configuration options
27032  */
27033
27034
27035
27036 Roo.htmleditor.Filter = function(cfg) {
27037     Roo.apply(this.cfg);
27038     // this does not actually call walk as it's really just a abstract class
27039 }
27040
27041
27042 Roo.htmleditor.Filter.prototype = {
27043     
27044     node: false,
27045     
27046     tag: false,
27047
27048     // overrride to do replace comments.
27049     replaceComment : false,
27050     
27051     // overrride to do replace or do stuff with tags..
27052     replaceTag : false,
27053     
27054     walk : function(dom)
27055     {
27056         Roo.each( Array.from(dom.childNodes), function( e ) {
27057             switch(true) {
27058                 
27059                 case e.nodeType == 8 &&  this.replaceComment  !== false: // comment
27060                     this.replaceComment(e);
27061                     return;
27062                 
27063                 case e.nodeType != 1: //not a node.
27064                     return;
27065                 
27066                 case this.tag === true: // everything
27067                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1:
27068                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":":
27069                 case typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1: // array and it matches.
27070                 case typeof(this.tag) == 'string' && this.tag == e.tagName: // array and it matches.
27071                     if (this.replaceTag && false === this.replaceTag(e)) {
27072                         return;
27073                     }
27074                     if (e.hasChildNodes()) {
27075                         this.walk(e);
27076                     }
27077                     return;
27078                 
27079                 default:    // tags .. that do not match.
27080                     if (e.hasChildNodes()) {
27081                         this.walk(e);
27082                     }
27083             }
27084             
27085         }, this);
27086         
27087     },
27088     
27089     
27090     removeNodeKeepChildren : function( node)
27091     {
27092     
27093         ar = Array.from(node.childNodes);
27094         for (var i = 0; i < ar.length; i++) {
27095          
27096             node.removeChild(ar[i]);
27097             // what if we need to walk these???
27098             node.parentNode.insertBefore(ar[i], node);
27099            
27100         }
27101         node.parentNode.removeChild(node);
27102     },
27103
27104     searchTag : function(dom)
27105     {
27106         if(this.tag === false) {
27107             return;
27108         }
27109
27110         var els = dom.getElementsByTagName(this.tag);
27111
27112         Roo.each(Array.from(els), function(e){
27113             if(e.parentNode == null) {
27114                 return;
27115             }
27116             if(this.replaceTag) {
27117                 this.replaceTag(e);
27118             }
27119         }, this);
27120     }
27121 }; 
27122
27123 /**
27124  * @class Roo.htmleditor.FilterAttributes
27125  * clean attributes and  styles including http:// etc.. in attribute
27126  * @constructor
27127 * Run a new Attribute Filter
27128 * @param {Object} config Configuration options
27129  */
27130 Roo.htmleditor.FilterAttributes = function(cfg)
27131 {
27132     Roo.apply(this, cfg);
27133     this.attrib_black = this.attrib_black || [];
27134     this.attrib_white = this.attrib_white || [];
27135
27136     this.attrib_clean = this.attrib_clean || [];
27137     this.style_white = this.style_white || [];
27138     this.style_black = this.style_black || [];
27139     this.walk(cfg.node);
27140 }
27141
27142 Roo.extend(Roo.htmleditor.FilterAttributes, Roo.htmleditor.Filter,
27143 {
27144     tag: true, // all tags
27145     
27146     attrib_black : false, // array
27147     attrib_clean : false,
27148     attrib_white : false,
27149
27150     style_white : false,
27151     style_black : false,
27152      
27153      
27154     replaceTag : function(node)
27155     {
27156         if (!node.attributes || !node.attributes.length) {
27157             return true;
27158         }
27159         
27160         for (var i = node.attributes.length-1; i > -1 ; i--) {
27161             var a = node.attributes[i];
27162             //console.log(a);
27163             if (this.attrib_white.length && this.attrib_white.indexOf(a.name.toLowerCase()) < 0) {
27164                 node.removeAttribute(a.name);
27165                 continue;
27166             }
27167             
27168             
27169             
27170             if (a.name.toLowerCase().substr(0,2)=='on')  {
27171                 node.removeAttribute(a.name);
27172                 continue;
27173             }
27174             
27175             
27176             if (this.attrib_black.indexOf(a.name.toLowerCase()) > -1) {
27177                 node.removeAttribute(a.name);
27178                 continue;
27179             }
27180             if (this.attrib_clean.indexOf(a.name.toLowerCase()) > -1) {
27181                 this.cleanAttr(node,a.name,a.value); // fixme..
27182                 continue;
27183             }
27184             if (a.name == 'style') {
27185                 this.cleanStyle(node,a.name,a.value);
27186                 continue;
27187             }
27188             /// clean up MS crap..
27189             // tecnically this should be a list of valid class'es..
27190             
27191             
27192             if (a.name == 'class') {
27193                 if (a.value.match(/^Mso/)) {
27194                     node.removeAttribute('class');
27195                 }
27196                 
27197                 if (a.value.match(/^body$/)) {
27198                     node.removeAttribute('class');
27199                 }
27200                 continue;
27201             }
27202             
27203             
27204             // style cleanup!?
27205             // class cleanup?
27206             
27207         }
27208         return true; // clean children
27209     },
27210         
27211     cleanAttr: function(node, n,v)
27212     {
27213         
27214         if (v.match(/^\./) || v.match(/^\//)) {
27215             return;
27216         }
27217         if (v.match(/^(http|https):\/\//)
27218             || v.match(/^mailto:/) 
27219             || v.match(/^ftp:/)
27220             || v.match(/^data:/)
27221             ) {
27222             return;
27223         }
27224         if (v.match(/^#/)) {
27225             return;
27226         }
27227         if (v.match(/^\{/)) { // allow template editing.
27228             return;
27229         }
27230 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
27231         node.removeAttribute(n);
27232         
27233     },
27234     cleanStyle : function(node,  n,v)
27235     {
27236         if (v.match(/expression/)) { //XSS?? should we even bother..
27237             node.removeAttribute(n);
27238             return;
27239         }
27240         
27241         var parts = v.split(/;/);
27242         var clean = [];
27243         
27244         Roo.each(parts, function(p) {
27245             p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
27246             if (!p.length) {
27247                 return true;
27248             }
27249             var l = p.split(':').shift().replace(/\s+/g,'');
27250             l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
27251             
27252             if ( this.style_black.length && (this.style_black.indexOf(l) > -1 || this.style_black.indexOf(l.toLowerCase()) > -1)) {
27253                 return true;
27254             }
27255             //Roo.log()
27256             // only allow 'c whitelisted system attributes'
27257             if ( this.style_white.length &&  style_white.indexOf(l) < 0 && style_white.indexOf(l.toLowerCase()) < 0 ) {
27258                 return true;
27259             }
27260             
27261             
27262             clean.push(p);
27263             return true;
27264         },this);
27265         if (clean.length) { 
27266             node.setAttribute(n, clean.join(';'));
27267         } else {
27268             node.removeAttribute(n);
27269         }
27270         
27271     }
27272         
27273         
27274         
27275     
27276 });/**
27277  * @class Roo.htmleditor.FilterBlack
27278  * remove blacklisted elements.
27279  * @constructor
27280  * Run a new Blacklisted Filter
27281  * @param {Object} config Configuration options
27282  */
27283
27284 Roo.htmleditor.FilterBlack = function(cfg)
27285 {
27286     Roo.apply(this, cfg);
27287     this.walk(cfg.node);
27288 }
27289
27290 Roo.extend(Roo.htmleditor.FilterBlack, Roo.htmleditor.Filter,
27291 {
27292     tag : true, // all elements.
27293    
27294     replaceTag : function(n)
27295     {
27296         n.parentNode.removeChild(n);
27297     }
27298 });
27299 /**
27300  * @class Roo.htmleditor.FilterComment
27301  * remove comments.
27302  * @constructor
27303 * Run a new Comments Filter
27304 * @param {Object} config Configuration options
27305  */
27306 Roo.htmleditor.FilterComment = function(cfg)
27307 {
27308     this.walk(cfg.node);
27309 }
27310
27311 Roo.extend(Roo.htmleditor.FilterComment, Roo.htmleditor.Filter,
27312 {
27313   
27314     replaceComment : function(n)
27315     {
27316         n.parentNode.removeChild(n);
27317     }
27318 });/**
27319  * @class Roo.htmleditor.FilterKeepChildren
27320  * remove tags but keep children
27321  * @constructor
27322  * Run a new Keep Children Filter
27323  * @param {Object} config Configuration options
27324  */
27325
27326 Roo.htmleditor.FilterKeepChildren = function(cfg)
27327 {
27328     Roo.apply(this, cfg);
27329     if (this.tag === false) {
27330         return; // dont walk.. (you can use this to use this just to do a child removal on a single tag )
27331     }
27332     // hacky?
27333     if ((typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)) {
27334         this.cleanNamespace = true;
27335     }
27336         
27337     this.walk(cfg.node);
27338 }
27339
27340 Roo.extend(Roo.htmleditor.FilterKeepChildren, Roo.htmleditor.FilterBlack,
27341 {
27342     cleanNamespace : false, // should really be an option, rather than using ':' inside of this tag.
27343   
27344     replaceTag : function(node)
27345     {
27346         // walk children...
27347         //Roo.log(node.tagName);
27348         var ar = Array.from(node.childNodes);
27349         //remove first..
27350         
27351         for (var i = 0; i < ar.length; i++) {
27352             var e = ar[i];
27353             if (e.nodeType == 1) {
27354                 if (
27355                     (typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1)
27356                     || // array and it matches
27357                     (typeof(this.tag) == 'string' && this.tag == e.tagName)
27358                     ||
27359                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)
27360                     ||
27361                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":")
27362                 ) {
27363                     this.replaceTag(ar[i]); // child is blacklisted as well...
27364                     continue;
27365                 }
27366             }
27367         }  
27368         ar = Array.from(node.childNodes);
27369         for (var i = 0; i < ar.length; i++) {
27370          
27371             node.removeChild(ar[i]);
27372             // what if we need to walk these???
27373             node.parentNode.insertBefore(ar[i], node);
27374             if (this.tag !== false) {
27375                 this.walk(ar[i]);
27376                 
27377             }
27378         }
27379         //Roo.log("REMOVE:" + node.tagName);
27380         node.parentNode.removeChild(node);
27381         return false; // don't walk children
27382         
27383         
27384     }
27385 });/**
27386  * @class Roo.htmleditor.FilterParagraph
27387  * paragraphs cause a nightmare for shared content - this filter is designed to be called ? at various points when editing
27388  * like on 'push' to remove the <p> tags and replace them with line breaks.
27389  * @constructor
27390  * Run a new Paragraph Filter
27391  * @param {Object} config Configuration options
27392  */
27393
27394 Roo.htmleditor.FilterParagraph = function(cfg)
27395 {
27396     // no need to apply config.
27397     this.searchTag(cfg.node);
27398 }
27399
27400 Roo.extend(Roo.htmleditor.FilterParagraph, Roo.htmleditor.Filter,
27401 {
27402     
27403      
27404     tag : 'P',
27405     
27406      
27407     replaceTag : function(node)
27408     {
27409         
27410         if (node.childNodes.length == 1 &&
27411             node.childNodes[0].nodeType == 3 &&
27412             node.childNodes[0].textContent.trim().length < 1
27413             ) {
27414             // remove and replace with '<BR>';
27415             node.parentNode.replaceChild(node.ownerDocument.createElement('BR'),node);
27416             return false; // no need to walk..
27417         }
27418
27419         var ar = Array.from(node.childNodes);
27420         for (var i = 0; i < ar.length; i++) {
27421             node.removeChild(ar[i]);
27422             // what if we need to walk these???
27423             node.parentNode.insertBefore(ar[i], node);
27424         }
27425         // now what about this?
27426         // <p> &nbsp; </p>
27427         
27428         // double BR.
27429         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
27430         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
27431         node.parentNode.removeChild(node);
27432         
27433         return false;
27434
27435     }
27436     
27437 });/**
27438  * @class Roo.htmleditor.FilterHashLink
27439  * remove hash link
27440  * @constructor
27441  * Run a new Hash Link Filter
27442  * @param {Object} config Configuration options
27443  */
27444
27445  Roo.htmleditor.FilterHashLink = function(cfg)
27446  {
27447      // no need to apply config.
27448     //  this.walk(cfg.node);
27449     this.searchTag(cfg.node);
27450  }
27451  
27452  Roo.extend(Roo.htmleditor.FilterHashLink, Roo.htmleditor.Filter,
27453  {
27454       
27455      tag : 'A',
27456      
27457       
27458      replaceTag : function(node)
27459      {
27460          for(var i = 0; i < node.attributes.length; i ++) {
27461              var a = node.attributes[i];
27462
27463              if(a.name.toLowerCase() == 'href' && a.value.startsWith('#')) {
27464                  this.removeNodeKeepChildren(node);
27465              }
27466          }
27467          
27468          return false;
27469  
27470      }
27471      
27472  });/**
27473  * @class Roo.htmleditor.FilterSpan
27474  * filter span's with no attributes out..
27475  * @constructor
27476  * Run a new Span Filter
27477  * @param {Object} config Configuration options
27478  */
27479
27480 Roo.htmleditor.FilterSpan = function(cfg)
27481 {
27482     // no need to apply config.
27483     this.searchTag(cfg.node);
27484 }
27485
27486 Roo.extend(Roo.htmleditor.FilterSpan, Roo.htmleditor.FilterKeepChildren,
27487 {
27488      
27489     tag : 'SPAN',
27490      
27491  
27492     replaceTag : function(node)
27493     {
27494         if (node.attributes && node.attributes.length > 0) {
27495             return true; // walk if there are any.
27496         }
27497         Roo.htmleditor.FilterKeepChildren.prototype.replaceTag.call(this, node);
27498         return false;
27499      
27500     }
27501     
27502 });/**
27503  * @class Roo.htmleditor.FilterTableWidth
27504   try and remove table width data - as that frequently messes up other stuff.
27505  * 
27506  *      was cleanTableWidths.
27507  *
27508  * Quite often pasting from word etc.. results in tables with column and widths.
27509  * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
27510  *
27511  * @constructor
27512  * Run a new Table Filter
27513  * @param {Object} config Configuration options
27514  */
27515
27516 Roo.htmleditor.FilterTableWidth = function(cfg)
27517 {
27518     // no need to apply config.
27519     this.tag = ['TABLE', 'TD', 'TR', 'TH', 'THEAD', 'TBODY' ];
27520     this.walk(cfg.node);
27521 }
27522
27523 Roo.extend(Roo.htmleditor.FilterTableWidth, Roo.htmleditor.Filter,
27524 {
27525      
27526      
27527     
27528     replaceTag: function(node) {
27529         
27530         
27531       
27532         if (node.hasAttribute('width')) {
27533             node.removeAttribute('width');
27534         }
27535         
27536          
27537         if (node.hasAttribute("style")) {
27538             // pretty basic...
27539             
27540             var styles = node.getAttribute("style").split(";");
27541             var nstyle = [];
27542             Roo.each(styles, function(s) {
27543                 if (!s.match(/:/)) {
27544                     return;
27545                 }
27546                 var kv = s.split(":");
27547                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
27548                     return;
27549                 }
27550                 // what ever is left... we allow.
27551                 nstyle.push(s);
27552             });
27553             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
27554             if (!nstyle.length) {
27555                 node.removeAttribute('style');
27556             }
27557         }
27558         
27559         return true; // continue doing children..
27560     }
27561 });/**
27562  * @class Roo.htmleditor.FilterWord
27563  * try and clean up all the mess that Word generates.
27564  * 
27565  * This is the 'nice version' - see 'Heavy' that white lists a very short list of elements, and multi-filters 
27566  
27567  * @constructor
27568  * Run a new Span Filter
27569  * @param {Object} config Configuration options
27570  */
27571
27572 Roo.htmleditor.FilterWord = function(cfg)
27573 {
27574     // no need to apply config.
27575     this.replaceDocBullets(cfg.node);
27576     
27577     this.replaceAname(cfg.node);
27578     // this is disabled as the removal is done by other filters;
27579    // this.walk(cfg.node);
27580     this.replaceImageTable(cfg.node);
27581     
27582 }
27583
27584 Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
27585 {
27586     tag: true,
27587      
27588     
27589     /**
27590      * Clean up MS wordisms...
27591      */
27592     replaceTag : function(node)
27593     {
27594          
27595         // no idea what this does - span with text, replaceds with just text.
27596         if(
27597                 node.nodeName == 'SPAN' &&
27598                 !node.hasAttributes() &&
27599                 node.childNodes.length == 1 &&
27600                 node.firstChild.nodeName == "#text"  
27601         ) {
27602             var textNode = node.firstChild;
27603             node.removeChild(textNode);
27604             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
27605                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
27606             }
27607             node.parentNode.insertBefore(textNode, node);
27608             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
27609                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
27610             }
27611             
27612             node.parentNode.removeChild(node);
27613             return false; // dont do chidren - we have remove our node - so no need to do chdhilren?
27614         }
27615         
27616    
27617         
27618         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
27619             node.parentNode.removeChild(node);
27620             return false; // dont do chidlren
27621         }
27622         //Roo.log(node.tagName);
27623         // remove - but keep children..
27624         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
27625             //Roo.log('-- removed');
27626             while (node.childNodes.length) {
27627                 var cn = node.childNodes[0];
27628                 node.removeChild(cn);
27629                 node.parentNode.insertBefore(cn, node);
27630                 // move node to parent - and clean it..
27631                 if (cn.nodeType == 1) {
27632                     this.replaceTag(cn);
27633                 }
27634                 
27635             }
27636             node.parentNode.removeChild(node);
27637             /// no need to iterate chidlren = it's got none..
27638             //this.iterateChildren(node, this.cleanWord);
27639             return false; // no need to iterate children.
27640         }
27641         // clean styles
27642         if (node.className.length) {
27643             
27644             var cn = node.className.split(/\W+/);
27645             var cna = [];
27646             Roo.each(cn, function(cls) {
27647                 if (cls.match(/Mso[a-zA-Z]+/)) {
27648                     return;
27649                 }
27650                 cna.push(cls);
27651             });
27652             node.className = cna.length ? cna.join(' ') : '';
27653             if (!cna.length) {
27654                 node.removeAttribute("class");
27655             }
27656         }
27657         
27658         if (node.hasAttribute("lang")) {
27659             node.removeAttribute("lang");
27660         }
27661         
27662         if (node.hasAttribute("style")) {
27663             
27664             var styles = node.getAttribute("style").split(";");
27665             var nstyle = [];
27666             Roo.each(styles, function(s) {
27667                 if (!s.match(/:/)) {
27668                     return;
27669                 }
27670                 var kv = s.split(":");
27671                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
27672                     return;
27673                 }
27674                 // what ever is left... we allow.
27675                 nstyle.push(s);
27676             });
27677             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
27678             if (!nstyle.length) {
27679                 node.removeAttribute('style');
27680             }
27681         }
27682         return true; // do children
27683         
27684         
27685         
27686     },
27687     
27688     styleToObject: function(node)
27689     {
27690         var styles = (node.getAttribute("style") || '').split(";");
27691         var ret = {};
27692         Roo.each(styles, function(s) {
27693             if (!s.match(/:/)) {
27694                 return;
27695             }
27696             var kv = s.split(":");
27697              
27698             // what ever is left... we allow.
27699             ret[kv[0].trim()] = kv[1];
27700         });
27701         return ret;
27702     },
27703     
27704     
27705     replaceAname : function (doc)
27706     {
27707         // replace all the a/name without..
27708         var aa = Array.from(doc.getElementsByTagName('a'));
27709         for (var i = 0; i  < aa.length; i++) {
27710             var a = aa[i];
27711             if (a.hasAttribute("name")) {
27712                 a.removeAttribute("name");
27713             }
27714             if (a.hasAttribute("href")) {
27715                 continue;
27716             }
27717             // reparent children.
27718             this.removeNodeKeepChildren(a);
27719             
27720         }
27721         
27722         
27723         
27724     },
27725
27726     
27727     
27728     replaceDocBullets : function(doc)
27729     {
27730         // this is a bit odd - but it appears some indents use ql-indent-1
27731          //Roo.log(doc.innerHTML);
27732         
27733         var listpara = Array.from(doc.getElementsByClassName('MsoListParagraphCxSpFirst'));
27734         for( var i = 0; i < listpara.length; i ++) {
27735             listpara[i].className = "MsoListParagraph";
27736         }
27737         
27738         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpMiddle'));
27739         for( var i = 0; i < listpara.length; i ++) {
27740             listpara[i].className = "MsoListParagraph";
27741         }
27742         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpLast'));
27743         for( var i = 0; i < listpara.length; i ++) {
27744             listpara[i].className = "MsoListParagraph";
27745         }
27746         listpara =  Array.from(doc.getElementsByClassName('ql-indent-1'));
27747         for( var i = 0; i < listpara.length; i ++) {
27748             listpara[i].className = "MsoListParagraph";
27749         }
27750         
27751         // this is a bit hacky - we had one word document where h2 had a miso-list attribute.
27752         var htwo =  Array.from(doc.getElementsByTagName('h2'));
27753         for( var i = 0; i < htwo.length; i ++) {
27754             if (htwo[i].hasAttribute('style') && htwo[i].getAttribute('style').match(/mso-list:/)) {
27755                 htwo[i].className = "MsoListParagraph";
27756             }
27757         }
27758         listpara =  Array.from(doc.getElementsByClassName('MsoNormal'));
27759         for( var i = 0; i < listpara.length; i ++) {
27760             if (listpara[i].hasAttribute('style') && listpara[i].getAttribute('style').match(/mso-list:/)) {
27761                 listpara[i].className = "MsoListParagraph";
27762             } else {
27763                 listpara[i].className = "MsoNormalx";
27764             }
27765         }
27766        
27767         listpara = doc.getElementsByClassName('MsoListParagraph');
27768         // Roo.log(doc.innerHTML);
27769         
27770         
27771         
27772         while(listpara.length) {
27773             
27774             this.replaceDocBullet(listpara.item(0));
27775         }
27776       
27777     },
27778     
27779      
27780     
27781     replaceDocBullet : function(p)
27782     {
27783         // gather all the siblings.
27784         var ns = p,
27785             parent = p.parentNode,
27786             doc = parent.ownerDocument,
27787             items = [];
27788          
27789         //Roo.log("Parsing: " + p.innerText)    ;
27790         var listtype = 'ul';   
27791         while (ns) {
27792             if (ns.nodeType != 1) {
27793                 ns = ns.nextSibling;
27794                 continue;
27795             }
27796             if (!ns.className.match(/(MsoListParagraph|ql-indent-1)/i)) {
27797                 //Roo.log("Missing para r q1indent - got:" + ns.className);
27798                 break;
27799             }
27800             var spans = ns.getElementsByTagName('span');
27801             
27802             if (ns.hasAttribute('style') && ns.getAttribute('style').match(/mso-list/)) {
27803                 items.push(ns);
27804                 ns = ns.nextSibling;
27805                 has_list = true;
27806                 if (!spans.length) {
27807                     continue;
27808                 }
27809                 var ff = '';
27810                 var se = spans[0];
27811                 for (var i = 0; i < spans.length;i++) {
27812                     se = spans[i];
27813                     if (se.hasAttribute('style')  && se.hasAttribute('style') && se.style.fontFamily != '') {
27814                         ff = se.style.fontFamily;
27815                         break;
27816                     }
27817                 }
27818                  
27819                     
27820                 //Roo.log("got font family: " + ff);
27821                 if (typeof(ff) != 'undefined' && !ff.match(/(Symbol|Wingdings)/) && "·o".indexOf(se.innerText.trim()) < 0) {
27822                     listtype = 'ol';
27823                 }
27824                 
27825                 continue;
27826             }
27827             //Roo.log("no mso-list?");
27828             
27829             var spans = ns.getElementsByTagName('span');
27830             if (!spans.length) {
27831                 break;
27832             }
27833             var has_list  = false;
27834             for(var i = 0; i < spans.length; i++) {
27835                 if (spans[i].hasAttribute('style') && spans[i].getAttribute('style').match(/mso-list/)) {
27836                     has_list = true;
27837                     break;
27838                 }
27839             }
27840             if (!has_list) {
27841                 break;
27842             }
27843             items.push(ns);
27844             ns = ns.nextSibling;
27845             
27846             
27847         }
27848         if (!items.length) {
27849             ns.className = "";
27850             return;
27851         }
27852         
27853         var ul = parent.ownerDocument.createElement(listtype); // what about number lists...
27854         parent.insertBefore(ul, p);
27855         var lvl = 0;
27856         var stack = [ ul ];
27857         var last_li = false;
27858         
27859         var margin_to_depth = {};
27860         max_margins = -1;
27861         
27862         items.forEach(function(n, ipos) {
27863             //Roo.log("got innertHMLT=" + n.innerHTML);
27864             
27865             var spans = n.getElementsByTagName('span');
27866             if (!spans.length) {
27867                 //Roo.log("No spans found");
27868                  
27869                 parent.removeChild(n);
27870                 
27871                 
27872                 return; // skip it...
27873             }
27874            
27875                 
27876             var num = 1;
27877             var style = {};
27878             for(var i = 0; i < spans.length; i++) {
27879             
27880                 style = this.styleToObject(spans[i]);
27881                 if (typeof(style['mso-list']) == 'undefined') {
27882                     continue;
27883                 }
27884                 if (listtype == 'ol') {
27885                    num = spans[i].innerText.replace(/[^0-9]+]/g,'')  * 1;
27886                 }
27887                 spans[i].parentNode.removeChild(spans[i]); // remove the fake bullet.
27888                 break;
27889             }
27890             //Roo.log("NOW GOT innertHMLT=" + n.innerHTML);
27891             style = this.styleToObject(n); // mo-list is from the parent node.
27892             if (typeof(style['mso-list']) == 'undefined') {
27893                 //Roo.log("parent is missing level");
27894                   
27895                 parent.removeChild(n);
27896                  
27897                 return;
27898             }
27899             
27900             var margin = style['margin-left'];
27901             if (typeof(margin_to_depth[margin]) == 'undefined') {
27902                 max_margins++;
27903                 margin_to_depth[margin] = max_margins;
27904             }
27905             nlvl = margin_to_depth[margin] ;
27906              
27907             if (nlvl > lvl) {
27908                 //new indent
27909                 var nul = doc.createElement(listtype); // what about number lists...
27910                 if (!last_li) {
27911                     last_li = doc.createElement('li');
27912                     stack[lvl].appendChild(last_li);
27913                 }
27914                 last_li.appendChild(nul);
27915                 stack[nlvl] = nul;
27916                 
27917             }
27918             lvl = nlvl;
27919             
27920             // not starting at 1..
27921             if (!stack[nlvl].hasAttribute("start") && listtype == "ol") {
27922                 stack[nlvl].setAttribute("start", num);
27923             }
27924             
27925             var nli = stack[nlvl].appendChild(doc.createElement('li'));
27926             last_li = nli;
27927             nli.innerHTML = n.innerHTML;
27928             //Roo.log("innerHTML = " + n.innerHTML);
27929             parent.removeChild(n);
27930             
27931              
27932              
27933             
27934         },this);
27935         
27936         
27937         
27938         
27939     },
27940     
27941     replaceImageTable : function(doc)
27942     {
27943          /*
27944           <table cellpadding=0 cellspacing=0 align=left>
27945   <tr>
27946    <td width=423 height=0></td>
27947   </tr>
27948   <tr>
27949    <td></td>
27950    <td><img width=601 height=401
27951    src="file:///C:/Users/Alan/AppData/Local/Temp/msohtmlclip1/01/clip_image002.jpg"
27952    v:shapes="Picture_x0020_2"></td>
27953   </tr>
27954  </table>
27955  */
27956         var imgs = Array.from(doc.getElementsByTagName('img'));
27957         Roo.each(imgs, function(img) {
27958             var td = img.parentNode;
27959             if (td.nodeName !=  'TD') {
27960                 return;
27961             }
27962             var tr = td.parentNode;
27963             if (tr.nodeName !=  'TR') {
27964                 return;
27965             }
27966             var tbody = tr.parentNode;
27967             if (tbody.nodeName !=  'TBODY') {
27968                 return;
27969             }
27970             var table = tbody.parentNode;
27971             if (table.nodeName !=  'TABLE') {
27972                 return;
27973             }
27974             // first row..
27975             
27976             if (table.getElementsByTagName('tr').length != 2) {
27977                 return;
27978             }
27979             if (table.getElementsByTagName('td').length != 3) {
27980                 return;
27981             }
27982             if (table.innerText.trim() != '') {
27983                 return;
27984             }
27985             var p = table.parentNode;
27986             img.parentNode.removeChild(img);
27987             p.insertBefore(img, table);
27988             p.removeChild(table);
27989             
27990             
27991             
27992         });
27993         
27994       
27995     }
27996     
27997 });
27998 /**
27999  * @class Roo.htmleditor.FilterStyleToTag
28000  * part of the word stuff... - certain 'styles' should be converted to tags.
28001  * eg.
28002  *   font-weight: bold -> bold
28003  *   ?? super / subscrit etc..
28004  * 
28005  * @constructor
28006 * Run a new style to tag filter.
28007 * @param {Object} config Configuration options
28008  */
28009 Roo.htmleditor.FilterStyleToTag = function(cfg)
28010 {
28011     
28012     this.tags = {
28013         B  : [ 'fontWeight' , 'bold'],
28014         I :  [ 'fontStyle' , 'italic'],
28015         //pre :  [ 'font-style' , 'italic'],
28016         // h1.. h6 ?? font-size?
28017         SUP : [ 'verticalAlign' , 'super' ],
28018         SUB : [ 'verticalAlign' , 'sub' ]
28019         
28020         
28021     };
28022     
28023     Roo.apply(this, cfg);
28024      
28025     
28026     this.walk(cfg.node);
28027     
28028     
28029     
28030 }
28031
28032
28033 Roo.extend(Roo.htmleditor.FilterStyleToTag, Roo.htmleditor.Filter,
28034 {
28035     tag: true, // all tags
28036     
28037     tags : false,
28038     
28039     
28040     replaceTag : function(node)
28041     {
28042         
28043         
28044         if (node.getAttribute("style") === null) {
28045             return true;
28046         }
28047         var inject = [];
28048         for (var k in this.tags) {
28049             if (node.style[this.tags[k][0]] == this.tags[k][1]) {
28050                 inject.push(k);
28051                 node.style.removeProperty(this.tags[k][0]);
28052             }
28053         }
28054         if (!inject.length) {
28055             return true; 
28056         }
28057         var cn = Array.from(node.childNodes);
28058         var nn = node;
28059         Roo.each(inject, function(t) {
28060             var nc = node.ownerDocument.createElement(t);
28061             nn.appendChild(nc);
28062             nn = nc;
28063         });
28064         for(var i = 0;i < cn.length;cn++) {
28065             node.removeChild(cn[i]);
28066             nn.appendChild(cn[i]);
28067         }
28068         return true /// iterate thru
28069     }
28070     
28071 })/**
28072  * @class Roo.htmleditor.FilterLongBr
28073  * BR/BR/BR - keep a maximum of 2...
28074  * @constructor
28075  * Run a new Long BR Filter
28076  * @param {Object} config Configuration options
28077  */
28078
28079 Roo.htmleditor.FilterLongBr = function(cfg)
28080 {
28081     // no need to apply config.
28082     this.searchTag(cfg.node);
28083 }
28084
28085 Roo.extend(Roo.htmleditor.FilterLongBr, Roo.htmleditor.Filter,
28086 {
28087     
28088      
28089     tag : 'BR',
28090     
28091      
28092     replaceTag : function(node)
28093     {
28094         
28095         var ps = node.nextSibling;
28096         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
28097             ps = ps.nextSibling;
28098         }
28099         
28100         if (!ps &&  [ 'TD', 'TH', 'LI', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(node.parentNode.tagName) > -1) { 
28101             node.parentNode.removeChild(node); // remove last BR inside one fo these tags
28102             return false;
28103         }
28104         
28105         if (!ps || ps.nodeType != 1) {
28106             return false;
28107         }
28108         
28109         if (!ps || ps.tagName != 'BR') {
28110            
28111             return false;
28112         }
28113         
28114         
28115         
28116         if (!node.previousSibling) {
28117             return false;
28118         }
28119         var ps = node.previousSibling;
28120         
28121         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
28122             ps = ps.previousSibling;
28123         }
28124         if (!ps || ps.nodeType != 1) {
28125             return false;
28126         }
28127         // if header or BR before.. then it's a candidate for removal.. - as we only want '2' of these..
28128         if (!ps || [ 'BR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(ps.tagName) < 0) {
28129             return false;
28130         }
28131         
28132         node.parentNode.removeChild(node); // remove me...
28133         
28134         return false; // no need to do children
28135
28136     }
28137     
28138 }); 
28139
28140 /**
28141  * @class Roo.htmleditor.FilterBlock
28142  * removes id / data-block and contenteditable that are associated with blocks
28143  * usage should be done on a cloned copy of the dom
28144  * @constructor
28145 * Run a new Attribute Filter { node : xxxx }}
28146 * @param {Object} config Configuration options
28147  */
28148 Roo.htmleditor.FilterBlock = function(cfg)
28149 {
28150     Roo.apply(this, cfg);
28151     var qa = cfg.node.querySelectorAll;
28152     this.removeAttributes('data-block');
28153     this.removeAttributes('contenteditable');
28154     this.removeAttributes('id');
28155     
28156 }
28157
28158 Roo.apply(Roo.htmleditor.FilterBlock.prototype,
28159 {
28160     node: true, // all tags
28161      
28162      
28163     removeAttributes : function(attr)
28164     {
28165         var ar = this.node.querySelectorAll('*[' + attr + ']');
28166         for (var i =0;i<ar.length;i++) {
28167             ar[i].removeAttribute(attr);
28168         }
28169     }
28170         
28171         
28172         
28173     
28174 });
28175 /***
28176  * This is based loosely on tinymce 
28177  * @class Roo.htmleditor.TidySerializer
28178  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
28179  * @constructor
28180  * @method Serializer
28181  * @param {Object} settings Name/value settings object.
28182  */
28183
28184
28185 Roo.htmleditor.TidySerializer = function(settings)
28186 {
28187     Roo.apply(this, settings);
28188     
28189     this.writer = new Roo.htmleditor.TidyWriter(settings);
28190     
28191     
28192
28193 };
28194 Roo.htmleditor.TidySerializer.prototype = {
28195     
28196     /**
28197      * @param {boolean} inner do the inner of the node.
28198      */
28199     inner : false,
28200     
28201     writer : false,
28202     
28203     /**
28204     * Serializes the specified node into a string.
28205     *
28206     * @example
28207     * new tinymce.html.Serializer().serialize(new tinymce.html.DomParser().parse('<p>text</p>'));
28208     * @method serialize
28209     * @param {DomElement} node Node instance to serialize.
28210     * @return {String} String with HTML based on DOM tree.
28211     */
28212     serialize : function(node) {
28213         
28214         // = settings.validate;
28215         var writer = this.writer;
28216         var self  = this;
28217         this.handlers = {
28218             // #text
28219             3: function(node) {
28220                 
28221                 writer.text(node.nodeValue, node);
28222             },
28223             // #comment
28224             8: function(node) {
28225                 writer.comment(node.nodeValue);
28226             },
28227             // Processing instruction
28228             7: function(node) {
28229                 writer.pi(node.name, node.nodeValue);
28230             },
28231             // Doctype
28232             10: function(node) {
28233                 writer.doctype(node.nodeValue);
28234             },
28235             // CDATA
28236             4: function(node) {
28237                 writer.cdata(node.nodeValue);
28238             },
28239             // Document fragment
28240             11: function(node) {
28241                 node = node.firstChild;
28242                 if (!node) {
28243                     return;
28244                 }
28245                 while(node) {
28246                     self.walk(node);
28247                     node = node.nextSibling
28248                 }
28249             }
28250         };
28251         writer.reset();
28252         1 != node.nodeType || this.inner ? this.handlers[11](node) : this.walk(node);
28253         return writer.getContent();
28254     },
28255
28256     walk: function(node)
28257     {
28258         var attrName, attrValue, sortedAttrs, i, l, elementRule,
28259             handler = this.handlers[node.nodeType];
28260             
28261         if (handler) {
28262             handler(node);
28263             return;
28264         }
28265     
28266         var name = node.nodeName;
28267         var isEmpty = node.childNodes.length < 1;
28268       
28269         var writer = this.writer;
28270         var attrs = node.attributes;
28271         // Sort attributes
28272         
28273         writer.start(node.nodeName, attrs, isEmpty, node);
28274         if (isEmpty) {
28275             return;
28276         }
28277         node = node.firstChild;
28278         if (!node) {
28279             writer.end(name);
28280             return;
28281         }
28282         while (node) {
28283             this.walk(node);
28284             node = node.nextSibling;
28285         }
28286         writer.end(name);
28287         
28288     
28289     }
28290     // Serialize element and treat all non elements as fragments
28291    
28292 }; 
28293
28294 /***
28295  * This is based loosely on tinymce 
28296  * @class Roo.htmleditor.TidyWriter
28297  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
28298  *
28299  * Known issues?
28300  * - not tested much with 'PRE' formated elements.
28301  * 
28302  *
28303  *
28304  */
28305
28306 Roo.htmleditor.TidyWriter = function(settings)
28307 {
28308     
28309     // indent, indentBefore, indentAfter, encode, htmlOutput, html = [];
28310     Roo.apply(this, settings);
28311     this.html = [];
28312     this.state = [];
28313      
28314     this.encode = Roo.htmleditor.TidyEntities.getEncodeFunc(settings.entity_encoding || 'raw', settings.entities);
28315   
28316 }
28317 Roo.htmleditor.TidyWriter.prototype = {
28318
28319  
28320     state : false,
28321     
28322     indent :  '  ',
28323     
28324     // part of state...
28325     indentstr : '',
28326     in_pre: false,
28327     in_inline : false,
28328     last_inline : false,
28329     encode : false,
28330      
28331     
28332             /**
28333     * Writes the a start element such as <p id="a">.
28334     *
28335     * @method start
28336     * @param {String} name Name of the element.
28337     * @param {Array} attrs Optional attribute array or undefined if it hasn't any.
28338     * @param {Boolean} empty Optional empty state if the tag should end like <br />.
28339     */
28340     start: function(name, attrs, empty, node)
28341     {
28342         var i, l, attr, value;
28343         
28344         // there are some situations where adding line break && indentation will not work. will not work.
28345         // <span / b / i ... formating?
28346         
28347         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
28348         var in_pre    = this.in_pre    || Roo.htmleditor.TidyWriter.whitespace_elements.indexOf(name) > -1;
28349         
28350         var is_short   = empty ? Roo.htmleditor.TidyWriter.shortend_elements.indexOf(name) > -1 : false;
28351         
28352         var add_lb = name == 'BR' ? false : in_inline;
28353         
28354         if (!add_lb && !this.in_pre && this.lastElementEndsWS()) {
28355             i_inline = false;
28356         }
28357
28358         var indentstr =  this.indentstr;
28359         
28360         // e_inline = elements that can be inline, but still allow \n before and after?
28361         // only 'BR' ??? any others?
28362         
28363         // ADD LINE BEFORE tage
28364         if (!this.in_pre) {
28365             if (in_inline) {
28366                 //code
28367                 if (name == 'BR') {
28368                     this.addLine();
28369                 } else if (this.lastElementEndsWS()) {
28370                     this.addLine();
28371                 } else{
28372                     // otherwise - no new line. (and dont indent.)
28373                     indentstr = '';
28374                 }
28375                 
28376             } else {
28377                 this.addLine();
28378             }
28379         } else {
28380             indentstr = '';
28381         }
28382         
28383         this.html.push(indentstr + '<', name.toLowerCase());
28384         
28385         if (attrs) {
28386             for (i = 0, l = attrs.length; i < l; i++) {
28387                 attr = attrs[i];
28388                 this.html.push(' ', attr.name, '="', this.encode(attr.value, true), '"');
28389             }
28390         }
28391      
28392         if (empty) {
28393             if (is_short) {
28394                 this.html[this.html.length] = '/>';
28395             } else {
28396                 this.html[this.html.length] = '></' + name.toLowerCase() + '>';
28397             }
28398             var e_inline = name == 'BR' ? false : this.in_inline;
28399             
28400             if (!e_inline && !this.in_pre) {
28401                 this.addLine();
28402             }
28403             return;
28404         
28405         }
28406         // not empty..
28407         this.html[this.html.length] = '>';
28408         
28409         // there is a special situation, where we need to turn on in_inline - if any of the imediate chidlren are one of these.
28410         /*
28411         if (!in_inline && !in_pre) {
28412             var cn = node.firstChild;
28413             while(cn) {
28414                 if (Roo.htmleditor.TidyWriter.inline_elements.indexOf(cn.nodeName) > -1) {
28415                     in_inline = true
28416                     break;
28417                 }
28418                 cn = cn.nextSibling;
28419             }
28420              
28421         }
28422         */
28423         
28424         
28425         this.pushState({
28426             indentstr : in_pre   ? '' : (this.indentstr + this.indent),
28427             in_pre : in_pre,
28428             in_inline :  in_inline
28429         });
28430         // add a line after if we are not in a
28431         
28432         if (!in_inline && !in_pre) {
28433             this.addLine();
28434         }
28435         
28436             
28437          
28438         
28439     },
28440     
28441     lastElementEndsWS : function()
28442     {
28443         var value = this.html.length > 0 ? this.html[this.html.length-1] : false;
28444         if (value === false) {
28445             return true;
28446         }
28447         return value.match(/\s+$/);
28448         
28449     },
28450     
28451     /**
28452      * Writes the a end element such as </p>.
28453      *
28454      * @method end
28455      * @param {String} name Name of the element.
28456      */
28457     end: function(name) {
28458         var value;
28459         this.popState();
28460         var indentstr = '';
28461         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
28462         
28463         if (!this.in_pre && !in_inline) {
28464             this.addLine();
28465             indentstr  = this.indentstr;
28466         }
28467         this.html.push(indentstr + '</', name.toLowerCase(), '>');
28468         this.last_inline = in_inline;
28469         
28470         // pop the indent state..
28471     },
28472     /**
28473      * Writes a text node.
28474      *
28475      * In pre - we should not mess with the contents.
28476      * 
28477      *
28478      * @method text
28479      * @param {String} text String to write out.
28480      * @param {Boolean} raw Optional raw state if true the contents wont get encoded.
28481      */
28482     text: function(in_text, node)
28483     {
28484         // if not in whitespace critical
28485         if (in_text.length < 1) {
28486             return;
28487         }
28488         var text = new XMLSerializer().serializeToString(document.createTextNode(in_text)); // escape it properly?
28489         
28490         if (this.in_pre) {
28491             this.html[this.html.length] =  text;
28492             return;   
28493         }
28494         
28495         if (this.in_inline) {
28496             text = text.replace(/\s+/g,' '); // all white space inc line breaks to a slingle' '
28497             if (text != ' ') {
28498                 text = text.replace(/\s+/,' ');  // all white space to single white space
28499                 
28500                     
28501                 // if next tag is '<BR>', then we can trim right..
28502                 if (node.nextSibling &&
28503                     node.nextSibling.nodeType == 1 &&
28504                     node.nextSibling.nodeName == 'BR' )
28505                 {
28506                     text = text.replace(/\s+$/g,'');
28507                 }
28508                 // if previous tag was a BR, we can also trim..
28509                 if (node.previousSibling &&
28510                     node.previousSibling.nodeType == 1 &&
28511                     node.previousSibling.nodeName == 'BR' )
28512                 {
28513                     text = this.indentstr +  text.replace(/^\s+/g,'');
28514                 }
28515                 if (text.match(/\n/)) {
28516                     text = text.replace(
28517                         /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
28518                     );
28519                     // remoeve the last whitespace / line break.
28520                     text = text.replace(/\n\s+$/,'');
28521                 }
28522                 // repace long lines
28523                 
28524             }
28525              
28526             this.html[this.html.length] =  text;
28527             return;   
28528         }
28529         // see if previous element was a inline element.
28530         var indentstr = this.indentstr;
28531    
28532         text = text.replace(/\s+/g," "); // all whitespace into single white space.
28533         
28534         // should trim left?
28535         if (node.previousSibling &&
28536             node.previousSibling.nodeType == 1 &&
28537             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.previousSibling.nodeName) > -1)
28538         {
28539             indentstr = '';
28540             
28541         } else {
28542             this.addLine();
28543             text = text.replace(/^\s+/,''); // trim left
28544           
28545         }
28546         // should trim right?
28547         if (node.nextSibling &&
28548             node.nextSibling.nodeType == 1 &&
28549             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.nextSibling.nodeName) > -1)
28550         {
28551           // noop
28552             
28553         }  else {
28554             text = text.replace(/\s+$/,''); // trim right
28555         }
28556          
28557               
28558         
28559         
28560         
28561         if (text.length < 1) {
28562             return;
28563         }
28564         if (!text.match(/\n/)) {
28565             this.html.push(indentstr + text);
28566             return;
28567         }
28568         
28569         text = this.indentstr + text.replace(
28570             /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
28571         );
28572         // remoeve the last whitespace / line break.
28573         text = text.replace(/\s+$/,''); 
28574         
28575         this.html.push(text);
28576         
28577         // split and indent..
28578         
28579         
28580     },
28581     /**
28582      * Writes a cdata node such as <![CDATA[data]]>.
28583      *
28584      * @method cdata
28585      * @param {String} text String to write out inside the cdata.
28586      */
28587     cdata: function(text) {
28588         this.html.push('<![CDATA[', text, ']]>');
28589     },
28590     /**
28591     * Writes a comment node such as <!-- Comment -->.
28592     *
28593     * @method cdata
28594     * @param {String} text String to write out inside the comment.
28595     */
28596    comment: function(text) {
28597        this.html.push('<!--', text, '-->');
28598    },
28599     /**
28600      * Writes a PI node such as <?xml attr="value" ?>.
28601      *
28602      * @method pi
28603      * @param {String} name Name of the pi.
28604      * @param {String} text String to write out inside the pi.
28605      */
28606     pi: function(name, text) {
28607         text ? this.html.push('<?', name, ' ', this.encode(text), '?>') : this.html.push('<?', name, '?>');
28608         this.indent != '' && this.html.push('\n');
28609     },
28610     /**
28611      * Writes a doctype node such as <!DOCTYPE data>.
28612      *
28613      * @method doctype
28614      * @param {String} text String to write out inside the doctype.
28615      */
28616     doctype: function(text) {
28617         this.html.push('<!DOCTYPE', text, '>', this.indent != '' ? '\n' : '');
28618     },
28619     /**
28620      * Resets the internal buffer if one wants to reuse the writer.
28621      *
28622      * @method reset
28623      */
28624     reset: function() {
28625         this.html.length = 0;
28626         this.state = [];
28627         this.pushState({
28628             indentstr : '',
28629             in_pre : false, 
28630             in_inline : false
28631         })
28632     },
28633     /**
28634      * Returns the contents that got serialized.
28635      *
28636      * @method getContent
28637      * @return {String} HTML contents that got written down.
28638      */
28639     getContent: function() {
28640         return this.html.join('').replace(/\n$/, '');
28641     },
28642     
28643     pushState : function(cfg)
28644     {
28645         this.state.push(cfg);
28646         Roo.apply(this, cfg);
28647     },
28648     
28649     popState : function()
28650     {
28651         if (this.state.length < 1) {
28652             return; // nothing to push
28653         }
28654         var cfg = {
28655             in_pre: false,
28656             indentstr : ''
28657         };
28658         this.state.pop();
28659         if (this.state.length > 0) {
28660             cfg = this.state[this.state.length-1]; 
28661         }
28662         Roo.apply(this, cfg);
28663     },
28664     
28665     addLine: function()
28666     {
28667         if (this.html.length < 1) {
28668             return;
28669         }
28670         
28671         
28672         var value = this.html[this.html.length - 1];
28673         if (value.length > 0 && '\n' !== value) {
28674             this.html.push('\n');
28675         }
28676     }
28677     
28678     
28679 //'pre script noscript style textarea video audio iframe object code'
28680 // shortended... 'area base basefont br col frame hr img input isindex link  meta param embed source wbr track');
28681 // inline 
28682 };
28683
28684 Roo.htmleditor.TidyWriter.inline_elements = [
28685         'SPAN','STRONG','B','EM','I','FONT','STRIKE','U','VAR',
28686         'CITE','DFN','CODE','MARK','Q','SUP','SUB','SAMP', 'A'
28687 ];
28688 Roo.htmleditor.TidyWriter.shortend_elements = [
28689     'AREA','BASE','BASEFONT','BR','COL','FRAME','HR','IMG','INPUT',
28690     'ISINDEX','LINK','','META','PARAM','EMBED','SOURCE','WBR','TRACK'
28691 ];
28692
28693 Roo.htmleditor.TidyWriter.whitespace_elements = [
28694     'PRE','SCRIPT','NOSCRIPT','STYLE','TEXTAREA','VIDEO','AUDIO','IFRAME','OBJECT','CODE'
28695 ];/***
28696  * This is based loosely on tinymce 
28697  * @class Roo.htmleditor.TidyEntities
28698  * @static
28699  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
28700  *
28701  * Not 100% sure this is actually used or needed.
28702  */
28703
28704 Roo.htmleditor.TidyEntities = {
28705     
28706     /**
28707      * initialize data..
28708      */
28709     init : function (){
28710      
28711         this.namedEntities = this.buildEntitiesLookup(this.namedEntitiesData, 32);
28712        
28713     },
28714
28715
28716     buildEntitiesLookup: function(items, radix) {
28717         var i, chr, entity, lookup = {};
28718         if (!items) {
28719             return {};
28720         }
28721         items = typeof(items) == 'string' ? items.split(',') : items;
28722         radix = radix || 10;
28723         // Build entities lookup table
28724         for (i = 0; i < items.length; i += 2) {
28725             chr = String.fromCharCode(parseInt(items[i], radix));
28726             // Only add non base entities
28727             if (!this.baseEntities[chr]) {
28728                 entity = '&' + items[i + 1] + ';';
28729                 lookup[chr] = entity;
28730                 lookup[entity] = chr;
28731             }
28732         }
28733         return lookup;
28734         
28735     },
28736     
28737     asciiMap : {
28738             128: '€',
28739             130: '‚',
28740             131: 'ƒ',
28741             132: '„',
28742             133: '…',
28743             134: '†',
28744             135: '‡',
28745             136: 'ˆ',
28746             137: '‰',
28747             138: 'Š',
28748             139: '‹',
28749             140: 'Œ',
28750             142: 'Ž',
28751             145: '‘',
28752             146: '’',
28753             147: '“',
28754             148: '”',
28755             149: '•',
28756             150: '–',
28757             151: '—',
28758             152: '˜',
28759             153: '™',
28760             154: 'š',
28761             155: '›',
28762             156: 'œ',
28763             158: 'ž',
28764             159: 'Ÿ'
28765     },
28766     // Raw entities
28767     baseEntities : {
28768         '"': '&quot;',
28769         // Needs to be escaped since the YUI compressor would otherwise break the code
28770         '\'': '&#39;',
28771         '<': '&lt;',
28772         '>': '&gt;',
28773         '&': '&amp;',
28774         '`': '&#96;'
28775     },
28776     // Reverse lookup table for raw entities
28777     reverseEntities : {
28778         '&lt;': '<',
28779         '&gt;': '>',
28780         '&amp;': '&',
28781         '&quot;': '"',
28782         '&apos;': '\''
28783     },
28784     
28785     attrsCharsRegExp : /[&<>\"\u0060\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
28786     textCharsRegExp : /[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
28787     rawCharsRegExp : /[<>&\"\']/g,
28788     entityRegExp : /&#([a-z0-9]+);?|&([a-z0-9]+);/gi,
28789     namedEntities  : false,
28790     namedEntitiesData : [ 
28791         '50',
28792         'nbsp',
28793         '51',
28794         'iexcl',
28795         '52',
28796         'cent',
28797         '53',
28798         'pound',
28799         '54',
28800         'curren',
28801         '55',
28802         'yen',
28803         '56',
28804         'brvbar',
28805         '57',
28806         'sect',
28807         '58',
28808         'uml',
28809         '59',
28810         'copy',
28811         '5a',
28812         'ordf',
28813         '5b',
28814         'laquo',
28815         '5c',
28816         'not',
28817         '5d',
28818         'shy',
28819         '5e',
28820         'reg',
28821         '5f',
28822         'macr',
28823         '5g',
28824         'deg',
28825         '5h',
28826         'plusmn',
28827         '5i',
28828         'sup2',
28829         '5j',
28830         'sup3',
28831         '5k',
28832         'acute',
28833         '5l',
28834         'micro',
28835         '5m',
28836         'para',
28837         '5n',
28838         'middot',
28839         '5o',
28840         'cedil',
28841         '5p',
28842         'sup1',
28843         '5q',
28844         'ordm',
28845         '5r',
28846         'raquo',
28847         '5s',
28848         'frac14',
28849         '5t',
28850         'frac12',
28851         '5u',
28852         'frac34',
28853         '5v',
28854         'iquest',
28855         '60',
28856         'Agrave',
28857         '61',
28858         'Aacute',
28859         '62',
28860         'Acirc',
28861         '63',
28862         'Atilde',
28863         '64',
28864         'Auml',
28865         '65',
28866         'Aring',
28867         '66',
28868         'AElig',
28869         '67',
28870         'Ccedil',
28871         '68',
28872         'Egrave',
28873         '69',
28874         'Eacute',
28875         '6a',
28876         'Ecirc',
28877         '6b',
28878         'Euml',
28879         '6c',
28880         'Igrave',
28881         '6d',
28882         'Iacute',
28883         '6e',
28884         'Icirc',
28885         '6f',
28886         'Iuml',
28887         '6g',
28888         'ETH',
28889         '6h',
28890         'Ntilde',
28891         '6i',
28892         'Ograve',
28893         '6j',
28894         'Oacute',
28895         '6k',
28896         'Ocirc',
28897         '6l',
28898         'Otilde',
28899         '6m',
28900         'Ouml',
28901         '6n',
28902         'times',
28903         '6o',
28904         'Oslash',
28905         '6p',
28906         'Ugrave',
28907         '6q',
28908         'Uacute',
28909         '6r',
28910         'Ucirc',
28911         '6s',
28912         'Uuml',
28913         '6t',
28914         'Yacute',
28915         '6u',
28916         'THORN',
28917         '6v',
28918         'szlig',
28919         '70',
28920         'agrave',
28921         '71',
28922         'aacute',
28923         '72',
28924         'acirc',
28925         '73',
28926         'atilde',
28927         '74',
28928         'auml',
28929         '75',
28930         'aring',
28931         '76',
28932         'aelig',
28933         '77',
28934         'ccedil',
28935         '78',
28936         'egrave',
28937         '79',
28938         'eacute',
28939         '7a',
28940         'ecirc',
28941         '7b',
28942         'euml',
28943         '7c',
28944         'igrave',
28945         '7d',
28946         'iacute',
28947         '7e',
28948         'icirc',
28949         '7f',
28950         'iuml',
28951         '7g',
28952         'eth',
28953         '7h',
28954         'ntilde',
28955         '7i',
28956         'ograve',
28957         '7j',
28958         'oacute',
28959         '7k',
28960         'ocirc',
28961         '7l',
28962         'otilde',
28963         '7m',
28964         'ouml',
28965         '7n',
28966         'divide',
28967         '7o',
28968         'oslash',
28969         '7p',
28970         'ugrave',
28971         '7q',
28972         'uacute',
28973         '7r',
28974         'ucirc',
28975         '7s',
28976         'uuml',
28977         '7t',
28978         'yacute',
28979         '7u',
28980         'thorn',
28981         '7v',
28982         'yuml',
28983         'ci',
28984         'fnof',
28985         'sh',
28986         'Alpha',
28987         'si',
28988         'Beta',
28989         'sj',
28990         'Gamma',
28991         'sk',
28992         'Delta',
28993         'sl',
28994         'Epsilon',
28995         'sm',
28996         'Zeta',
28997         'sn',
28998         'Eta',
28999         'so',
29000         'Theta',
29001         'sp',
29002         'Iota',
29003         'sq',
29004         'Kappa',
29005         'sr',
29006         'Lambda',
29007         'ss',
29008         'Mu',
29009         'st',
29010         'Nu',
29011         'su',
29012         'Xi',
29013         'sv',
29014         'Omicron',
29015         't0',
29016         'Pi',
29017         't1',
29018         'Rho',
29019         't3',
29020         'Sigma',
29021         't4',
29022         'Tau',
29023         't5',
29024         'Upsilon',
29025         't6',
29026         'Phi',
29027         't7',
29028         'Chi',
29029         't8',
29030         'Psi',
29031         't9',
29032         'Omega',
29033         'th',
29034         'alpha',
29035         'ti',
29036         'beta',
29037         'tj',
29038         'gamma',
29039         'tk',
29040         'delta',
29041         'tl',
29042         'epsilon',
29043         'tm',
29044         'zeta',
29045         'tn',
29046         'eta',
29047         'to',
29048         'theta',
29049         'tp',
29050         'iota',
29051         'tq',
29052         'kappa',
29053         'tr',
29054         'lambda',
29055         'ts',
29056         'mu',
29057         'tt',
29058         'nu',
29059         'tu',
29060         'xi',
29061         'tv',
29062         'omicron',
29063         'u0',
29064         'pi',
29065         'u1',
29066         'rho',
29067         'u2',
29068         'sigmaf',
29069         'u3',
29070         'sigma',
29071         'u4',
29072         'tau',
29073         'u5',
29074         'upsilon',
29075         'u6',
29076         'phi',
29077         'u7',
29078         'chi',
29079         'u8',
29080         'psi',
29081         'u9',
29082         'omega',
29083         'uh',
29084         'thetasym',
29085         'ui',
29086         'upsih',
29087         'um',
29088         'piv',
29089         '812',
29090         'bull',
29091         '816',
29092         'hellip',
29093         '81i',
29094         'prime',
29095         '81j',
29096         'Prime',
29097         '81u',
29098         'oline',
29099         '824',
29100         'frasl',
29101         '88o',
29102         'weierp',
29103         '88h',
29104         'image',
29105         '88s',
29106         'real',
29107         '892',
29108         'trade',
29109         '89l',
29110         'alefsym',
29111         '8cg',
29112         'larr',
29113         '8ch',
29114         'uarr',
29115         '8ci',
29116         'rarr',
29117         '8cj',
29118         'darr',
29119         '8ck',
29120         'harr',
29121         '8dl',
29122         'crarr',
29123         '8eg',
29124         'lArr',
29125         '8eh',
29126         'uArr',
29127         '8ei',
29128         'rArr',
29129         '8ej',
29130         'dArr',
29131         '8ek',
29132         'hArr',
29133         '8g0',
29134         'forall',
29135         '8g2',
29136         'part',
29137         '8g3',
29138         'exist',
29139         '8g5',
29140         'empty',
29141         '8g7',
29142         'nabla',
29143         '8g8',
29144         'isin',
29145         '8g9',
29146         'notin',
29147         '8gb',
29148         'ni',
29149         '8gf',
29150         'prod',
29151         '8gh',
29152         'sum',
29153         '8gi',
29154         'minus',
29155         '8gn',
29156         'lowast',
29157         '8gq',
29158         'radic',
29159         '8gt',
29160         'prop',
29161         '8gu',
29162         'infin',
29163         '8h0',
29164         'ang',
29165         '8h7',
29166         'and',
29167         '8h8',
29168         'or',
29169         '8h9',
29170         'cap',
29171         '8ha',
29172         'cup',
29173         '8hb',
29174         'int',
29175         '8hk',
29176         'there4',
29177         '8hs',
29178         'sim',
29179         '8i5',
29180         'cong',
29181         '8i8',
29182         'asymp',
29183         '8j0',
29184         'ne',
29185         '8j1',
29186         'equiv',
29187         '8j4',
29188         'le',
29189         '8j5',
29190         'ge',
29191         '8k2',
29192         'sub',
29193         '8k3',
29194         'sup',
29195         '8k4',
29196         'nsub',
29197         '8k6',
29198         'sube',
29199         '8k7',
29200         'supe',
29201         '8kl',
29202         'oplus',
29203         '8kn',
29204         'otimes',
29205         '8l5',
29206         'perp',
29207         '8m5',
29208         'sdot',
29209         '8o8',
29210         'lceil',
29211         '8o9',
29212         'rceil',
29213         '8oa',
29214         'lfloor',
29215         '8ob',
29216         'rfloor',
29217         '8p9',
29218         'lang',
29219         '8pa',
29220         'rang',
29221         '9ea',
29222         'loz',
29223         '9j0',
29224         'spades',
29225         '9j3',
29226         'clubs',
29227         '9j5',
29228         'hearts',
29229         '9j6',
29230         'diams',
29231         'ai',
29232         'OElig',
29233         'aj',
29234         'oelig',
29235         'b0',
29236         'Scaron',
29237         'b1',
29238         'scaron',
29239         'bo',
29240         'Yuml',
29241         'm6',
29242         'circ',
29243         'ms',
29244         'tilde',
29245         '802',
29246         'ensp',
29247         '803',
29248         'emsp',
29249         '809',
29250         'thinsp',
29251         '80c',
29252         'zwnj',
29253         '80d',
29254         'zwj',
29255         '80e',
29256         'lrm',
29257         '80f',
29258         'rlm',
29259         '80j',
29260         'ndash',
29261         '80k',
29262         'mdash',
29263         '80o',
29264         'lsquo',
29265         '80p',
29266         'rsquo',
29267         '80q',
29268         'sbquo',
29269         '80s',
29270         'ldquo',
29271         '80t',
29272         'rdquo',
29273         '80u',
29274         'bdquo',
29275         '810',
29276         'dagger',
29277         '811',
29278         'Dagger',
29279         '81g',
29280         'permil',
29281         '81p',
29282         'lsaquo',
29283         '81q',
29284         'rsaquo',
29285         '85c',
29286         'euro'
29287     ],
29288
29289          
29290     /**
29291      * Encodes the specified string using raw entities. This means only the required XML base entities will be encoded.
29292      *
29293      * @method encodeRaw
29294      * @param {String} text Text to encode.
29295      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
29296      * @return {String} Entity encoded text.
29297      */
29298     encodeRaw: function(text, attr)
29299     {
29300         var t = this;
29301         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
29302             return t.baseEntities[chr] || chr;
29303         });
29304     },
29305     /**
29306      * Encoded the specified text with both the attributes and text entities. This function will produce larger text contents
29307      * since it doesn't know if the context is within a attribute or text node. This was added for compatibility
29308      * and is exposed as the DOMUtils.encode function.
29309      *
29310      * @method encodeAllRaw
29311      * @param {String} text Text to encode.
29312      * @return {String} Entity encoded text.
29313      */
29314     encodeAllRaw: function(text) {
29315         var t = this;
29316         return ('' + text).replace(this.rawCharsRegExp, function(chr) {
29317             return t.baseEntities[chr] || chr;
29318         });
29319     },
29320     /**
29321      * Encodes the specified string using numeric entities. The core entities will be
29322      * encoded as named ones but all non lower ascii characters will be encoded into numeric entities.
29323      *
29324      * @method encodeNumeric
29325      * @param {String} text Text to encode.
29326      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
29327      * @return {String} Entity encoded text.
29328      */
29329     encodeNumeric: function(text, attr) {
29330         var t = this;
29331         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
29332             // Multi byte sequence convert it to a single entity
29333             if (chr.length > 1) {
29334                 return '&#' + (1024 * (chr.charCodeAt(0) - 55296) + (chr.charCodeAt(1) - 56320) + 65536) + ';';
29335             }
29336             return t.baseEntities[chr] || '&#' + chr.charCodeAt(0) + ';';
29337         });
29338     },
29339     /**
29340      * Encodes the specified string using named entities. The core entities will be encoded
29341      * as named ones but all non lower ascii characters will be encoded into named entities.
29342      *
29343      * @method encodeNamed
29344      * @param {String} text Text to encode.
29345      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
29346      * @param {Object} entities Optional parameter with entities to use.
29347      * @return {String} Entity encoded text.
29348      */
29349     encodeNamed: function(text, attr, entities) {
29350         var t = this;
29351         entities = entities || this.namedEntities;
29352         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
29353             return t.baseEntities[chr] || entities[chr] || chr;
29354         });
29355     },
29356     /**
29357      * Returns an encode function based on the name(s) and it's optional entities.
29358      *
29359      * @method getEncodeFunc
29360      * @param {String} name Comma separated list of encoders for example named,numeric.
29361      * @param {String} entities Optional parameter with entities to use instead of the built in set.
29362      * @return {function} Encode function to be used.
29363      */
29364     getEncodeFunc: function(name, entities) {
29365         entities = this.buildEntitiesLookup(entities) || this.namedEntities;
29366         var t = this;
29367         function encodeNamedAndNumeric(text, attr) {
29368             return text.replace(attr ? t.attrsCharsRegExp : t.textCharsRegExp, function(chr) {
29369                 return t.baseEntities[chr] || entities[chr] || '&#' + chr.charCodeAt(0) + ';' || chr;
29370             });
29371         }
29372
29373         function encodeCustomNamed(text, attr) {
29374             return t.encodeNamed(text, attr, entities);
29375         }
29376         // Replace + with , to be compatible with previous TinyMCE versions
29377         name = this.makeMap(name.replace(/\+/g, ','));
29378         // Named and numeric encoder
29379         if (name.named && name.numeric) {
29380             return this.encodeNamedAndNumeric;
29381         }
29382         // Named encoder
29383         if (name.named) {
29384             // Custom names
29385             if (entities) {
29386                 return encodeCustomNamed;
29387             }
29388             return this.encodeNamed;
29389         }
29390         // Numeric
29391         if (name.numeric) {
29392             return this.encodeNumeric;
29393         }
29394         // Raw encoder
29395         return this.encodeRaw;
29396     },
29397     /**
29398      * Decodes the specified string, this will replace entities with raw UTF characters.
29399      *
29400      * @method decode
29401      * @param {String} text Text to entity decode.
29402      * @return {String} Entity decoded string.
29403      */
29404     decode: function(text)
29405     {
29406         var  t = this;
29407         return text.replace(this.entityRegExp, function(all, numeric) {
29408             if (numeric) {
29409                 numeric = 'x' === numeric.charAt(0).toLowerCase() ? parseInt(numeric.substr(1), 16) : parseInt(numeric, 10);
29410                 // Support upper UTF
29411                 if (numeric > 65535) {
29412                     numeric -= 65536;
29413                     return String.fromCharCode(55296 + (numeric >> 10), 56320 + (1023 & numeric));
29414                 }
29415                 return t.asciiMap[numeric] || String.fromCharCode(numeric);
29416             }
29417             return t.reverseEntities[all] || t.namedEntities[all] || t.nativeDecode(all);
29418         });
29419     },
29420     nativeDecode : function (text) {
29421         return text;
29422     },
29423     makeMap : function (items, delim, map) {
29424                 var i;
29425                 items = items || [];
29426                 delim = delim || ',';
29427                 if (typeof items == "string") {
29428                         items = items.split(delim);
29429                 }
29430                 map = map || {};
29431                 i = items.length;
29432                 while (i--) {
29433                         map[items[i]] = {};
29434                 }
29435                 return map;
29436         }
29437 };
29438     
29439     
29440     
29441 Roo.htmleditor.TidyEntities.init();
29442 /**
29443  * @class Roo.htmleditor.KeyEnter
29444  * Handle Enter press..
29445  * @cfg {Roo.HtmlEditorCore} core the editor.
29446  * @constructor
29447  * Create a new Filter.
29448  * @param {Object} config Configuration options
29449  */
29450
29451
29452
29453
29454
29455 Roo.htmleditor.KeyEnter = function(cfg) {
29456     Roo.apply(this, cfg);
29457     // this does not actually call walk as it's really just a abstract class
29458  
29459     Roo.get(this.core.doc.body).on('keypress', this.keypress, this);
29460 }
29461
29462 //Roo.htmleditor.KeyEnter.i = 0;
29463
29464
29465 Roo.htmleditor.KeyEnter.prototype = {
29466     
29467     core : false,
29468     
29469     keypress : function(e)
29470     {
29471         if (e.charCode != 13 && e.charCode != 10) {
29472             Roo.log([e.charCode,e]);
29473             return true;
29474         }
29475         e.preventDefault();
29476         // https://stackoverflow.com/questions/18552336/prevent-contenteditable-adding-div-on-enter-chrome
29477         var doc = this.core.doc;
29478           //add a new line
29479        
29480     
29481         var sel = this.core.getSelection();
29482         var range = sel.getRangeAt(0);
29483         var n = range.commonAncestorContainer;
29484         var pc = range.closest([ 'ol', 'ul']);
29485         var pli = range.closest('li');
29486         if (!pc || e.ctrlKey) {
29487             // on it list, or ctrl pressed.
29488             if (!e.ctrlKey) {
29489                 sel.insertNode('br', 'after'); 
29490             } else {
29491                 // only do this if we have ctrl key..
29492                 var br = doc.createElement('br');
29493                 br.className = 'clear';
29494                 br.setAttribute('style', 'clear: both');
29495                 sel.insertNode(br, 'after'); 
29496             }
29497             
29498          
29499             this.core.undoManager.addEvent();
29500             this.core.fireEditorEvent(e);
29501             return false;
29502         }
29503         
29504         // deal with <li> insetion
29505         if (pli.innerText.trim() == '' &&
29506             pli.previousSibling &&
29507             pli.previousSibling.nodeName == 'LI' &&
29508             pli.previousSibling.innerText.trim() ==  '') {
29509             pli.parentNode.removeChild(pli.previousSibling);
29510             sel.cursorAfter(pc);
29511             this.core.undoManager.addEvent();
29512             this.core.fireEditorEvent(e);
29513             return false;
29514         }
29515     
29516         var li = doc.createElement('LI');
29517         li.innerHTML = '&nbsp;';
29518         if (!pli || !pli.firstSibling) {
29519             pc.appendChild(li);
29520         } else {
29521             pli.parentNode.insertBefore(li, pli.firstSibling);
29522         }
29523         sel.cursorText (li.firstChild);
29524       
29525         this.core.undoManager.addEvent();
29526         this.core.fireEditorEvent(e);
29527
29528         return false;
29529         
29530     
29531         
29532         
29533          
29534     }
29535 };
29536      
29537 /**
29538  * @class Roo.htmleditor.Block
29539  * Base class for html editor blocks - do not use it directly .. extend it..
29540  * @cfg {DomElement} node The node to apply stuff to.
29541  * @cfg {String} friendly_name the name that appears in the context bar about this block
29542  * @cfg {Object} Context menu - see Roo.form.HtmlEditor.ToolbarContext
29543  
29544  * @constructor
29545  * Create a new Filter.
29546  * @param {Object} config Configuration options
29547  */
29548
29549 Roo.htmleditor.Block  = function(cfg)
29550 {
29551     // do nothing .. should not be called really.
29552 }
29553 /**
29554  * factory method to get the block from an element (using cache if necessary)
29555  * @static
29556  * @param {HtmlElement} the dom element
29557  */
29558 Roo.htmleditor.Block.factory = function(node)
29559 {
29560     var cc = Roo.htmleditor.Block.cache;
29561     var id = Roo.get(node).id;
29562     if (typeof(cc[id]) != 'undefined' && (!cc[id].node || cc[id].node.closest('body'))) {
29563         Roo.htmleditor.Block.cache[id].readElement(node);
29564         return Roo.htmleditor.Block.cache[id];
29565     }
29566     var db  = node.getAttribute('data-block');
29567     if (!db) {
29568         db = node.nodeName.toLowerCase().toUpperCaseFirst();
29569     }
29570     var cls = Roo.htmleditor['Block' + db];
29571     if (typeof(cls) == 'undefined') {
29572         //Roo.log(node.getAttribute('data-block'));
29573         Roo.log("OOps missing block : " + 'Block' + db);
29574         return false;
29575     }
29576     Roo.htmleditor.Block.cache[id] = new cls({ node: node });
29577     return Roo.htmleditor.Block.cache[id];  /// should trigger update element
29578 };
29579
29580 /**
29581  * initalize all Elements from content that are 'blockable'
29582  * @static
29583  * @param the body element
29584  */
29585 Roo.htmleditor.Block.initAll = function(body, type)
29586 {
29587     if (typeof(type) == 'undefined') {
29588         var ia = Roo.htmleditor.Block.initAll;
29589         ia(body,'table');
29590         ia(body,'td');
29591         ia(body,'figure');
29592         return;
29593     }
29594     Roo.each(Roo.get(body).query(type), function(e) {
29595         Roo.htmleditor.Block.factory(e);    
29596     },this);
29597 };
29598 // question goes here... do we need to clear out this cache sometimes?
29599 // or show we make it relivant to the htmleditor.
29600 Roo.htmleditor.Block.cache = {};
29601
29602 Roo.htmleditor.Block.prototype = {
29603     
29604     node : false,
29605     
29606      // used by context menu
29607     friendly_name : 'Based Block',
29608     
29609     // text for button to delete this element
29610     deleteTitle : false,
29611     
29612     context : false,
29613     /**
29614      * Update a node with values from this object
29615      * @param {DomElement} node
29616      */
29617     updateElement : function(node)
29618     {
29619         Roo.DomHelper.update(node === undefined ? this.node : node, this.toObject());
29620     },
29621      /**
29622      * convert to plain HTML for calling insertAtCursor..
29623      */
29624     toHTML : function()
29625     {
29626         return Roo.DomHelper.markup(this.toObject());
29627     },
29628     /**
29629      * used by readEleemnt to extract data from a node
29630      * may need improving as it's pretty basic
29631      
29632      * @param {DomElement} node
29633      * @param {String} tag - tag to find, eg. IMG ?? might be better to use DomQuery ?
29634      * @param {String} attribute (use html - for contents, style for using next param as style, or false to return the node)
29635      * @param {String} style the style property - eg. text-align
29636      */
29637     getVal : function(node, tag, attr, style)
29638     {
29639         var n = node;
29640         if (tag !== true && n.tagName != tag.toUpperCase()) {
29641             // in theory we could do figure[3] << 3rd figure? or some more complex search..?
29642             // but kiss for now.
29643             n = node.getElementsByTagName(tag).item(0);
29644         }
29645         if (!n) {
29646             return '';
29647         }
29648         if (attr === false) {
29649             return n;
29650         }
29651         if (attr == 'html') {
29652             return n.innerHTML;
29653         }
29654         if (attr == 'style') {
29655             return n.style[style]; 
29656         }
29657         
29658         return n.hasAttribute(attr) ? n.getAttribute(attr) : '';
29659             
29660     },
29661     /**
29662      * create a DomHelper friendly object - for use with 
29663      * Roo.DomHelper.markup / overwrite / etc..
29664      * (override this)
29665      */
29666     toObject : function()
29667     {
29668         return {};
29669     },
29670       /**
29671      * Read a node that has a 'data-block' property - and extract the values from it.
29672      * @param {DomElement} node - the node
29673      */
29674     readElement : function(node)
29675     {
29676         
29677     } 
29678     
29679     
29680 };
29681
29682  
29683
29684 /**
29685  * @class Roo.htmleditor.BlockFigure
29686  * Block that has an image and a figcaption
29687  * @cfg {String} image_src the url for the image
29688  * @cfg {String} align (left|right) alignment for the block default left
29689  * @cfg {String} caption the text to appear below  (and in the alt tag)
29690  * @cfg {String} caption_display (block|none) display or not the caption
29691  * @cfg {String|number} image_width the width of the image number or %?
29692  * @cfg {String|number} image_height the height of the image number or %?
29693  * 
29694  * @constructor
29695  * Create a new Filter.
29696  * @param {Object} config Configuration options
29697  */
29698
29699 Roo.htmleditor.BlockFigure = function(cfg)
29700 {
29701     if (cfg.node) {
29702         this.readElement(cfg.node);
29703         this.updateElement(cfg.node);
29704     }
29705     Roo.apply(this, cfg);
29706 }
29707 Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, {
29708  
29709     
29710     // setable values.
29711     image_src: '',
29712     align: 'center',
29713     caption : '',
29714     caption_display : 'block',
29715     width : '100%',
29716     cls : '',
29717     href: '',
29718     video_url : '',
29719     
29720     // margin: '2%', not used
29721     
29722     text_align: 'left', //   (left|right) alignment for the text caption default left. - not used at present
29723
29724     
29725     // used by context menu
29726     friendly_name : 'Image with caption',
29727     deleteTitle : "Delete Image and Caption",
29728     
29729     contextMenu : function(toolbar)
29730     {
29731         
29732         var block = function() {
29733             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
29734         };
29735         
29736         
29737         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
29738         
29739         var syncValue = toolbar.editorcore.syncValue;
29740         
29741         var fields = {};
29742         
29743         return [
29744              {
29745                 xtype : 'TextItem',
29746                 text : "Source: ",
29747                 xns : rooui.Toolbar  //Boostrap?
29748             },
29749             {
29750                 xtype : 'Button',
29751                 text: 'Change Image URL',
29752                  
29753                 listeners : {
29754                     click: function (btn, state)
29755                     {
29756                         var b = block();
29757                         
29758                         Roo.MessageBox.show({
29759                             title : "Image Source URL",
29760                             msg : "Enter the url for the image",
29761                             buttons: Roo.MessageBox.OKCANCEL,
29762                             fn: function(btn, val){
29763                                 if (btn != 'ok') {
29764                                     return;
29765                                 }
29766                                 b.image_src = val;
29767                                 b.updateElement();
29768                                 syncValue();
29769                                 toolbar.editorcore.onEditorEvent();
29770                             },
29771                             minWidth:250,
29772                             prompt:true,
29773                             //multiline: multiline,
29774                             modal : true,
29775                             value : b.image_src
29776                         });
29777                     }
29778                 },
29779                 xns : rooui.Toolbar
29780             },
29781          
29782             {
29783                 xtype : 'Button',
29784                 text: 'Change Link URL',
29785                  
29786                 listeners : {
29787                     click: function (btn, state)
29788                     {
29789                         var b = block();
29790                         
29791                         Roo.MessageBox.show({
29792                             title : "Link URL",
29793                             msg : "Enter the url for the link - leave blank to have no link",
29794                             buttons: Roo.MessageBox.OKCANCEL,
29795                             fn: function(btn, val){
29796                                 if (btn != 'ok') {
29797                                     return;
29798                                 }
29799                                 b.href = val;
29800                                 b.updateElement();
29801                                 syncValue();
29802                                 toolbar.editorcore.onEditorEvent();
29803                             },
29804                             minWidth:250,
29805                             prompt:true,
29806                             //multiline: multiline,
29807                             modal : true,
29808                             value : b.href
29809                         });
29810                     }
29811                 },
29812                 xns : rooui.Toolbar
29813             },
29814             {
29815                 xtype : 'Button',
29816                 text: 'Show Video URL',
29817                  
29818                 listeners : {
29819                     click: function (btn, state)
29820                     {
29821                         Roo.MessageBox.alert("Video URL",
29822                             block().video_url == '' ? 'This image is not linked ot a video' :
29823                                 'The image is linked to: <a target="_new" href="' + block().video_url + '">' + block().video_url + '</a>');
29824                     }
29825                 },
29826                 xns : rooui.Toolbar
29827             },
29828             
29829             
29830             {
29831                 xtype : 'TextItem',
29832                 text : "Width: ",
29833                 xns : rooui.Toolbar  //Boostrap?
29834             },
29835             {
29836                 xtype : 'ComboBox',
29837                 allowBlank : false,
29838                 displayField : 'val',
29839                 editable : true,
29840                 listWidth : 100,
29841                 triggerAction : 'all',
29842                 typeAhead : true,
29843                 valueField : 'val',
29844                 width : 70,
29845                 name : 'width',
29846                 listeners : {
29847                     select : function (combo, r, index)
29848                     {
29849                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29850                         var b = block();
29851                         b.width = r.get('val');
29852                         b.updateElement();
29853                         syncValue();
29854                         toolbar.editorcore.onEditorEvent();
29855                     }
29856                 },
29857                 xns : rooui.form,
29858                 store : {
29859                     xtype : 'SimpleStore',
29860                     data : [
29861                         ['100%'],
29862                         ['80%'],
29863                         ['50%'],
29864                         ['20%'],
29865                         ['10%']
29866                     ],
29867                     fields : [ 'val'],
29868                     xns : Roo.data
29869                 }
29870             },
29871             {
29872                 xtype : 'TextItem',
29873                 text : "Align: ",
29874                 xns : rooui.Toolbar  //Boostrap?
29875             },
29876             {
29877                 xtype : 'ComboBox',
29878                 allowBlank : false,
29879                 displayField : 'val',
29880                 editable : true,
29881                 listWidth : 100,
29882                 triggerAction : 'all',
29883                 typeAhead : true,
29884                 valueField : 'val',
29885                 width : 70,
29886                 name : 'align',
29887                 listeners : {
29888                     select : function (combo, r, index)
29889                     {
29890                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29891                         var b = block();
29892                         b.align = r.get('val');
29893                         b.updateElement();
29894                         syncValue();
29895                         toolbar.editorcore.onEditorEvent();
29896                     }
29897                 },
29898                 xns : rooui.form,
29899                 store : {
29900                     xtype : 'SimpleStore',
29901                     data : [
29902                         ['left'],
29903                         ['right'],
29904                         ['center']
29905                     ],
29906                     fields : [ 'val'],
29907                     xns : Roo.data
29908                 }
29909             },
29910             
29911               
29912             {
29913                 xtype : 'Button',
29914                 text: 'Hide Caption',
29915                 name : 'caption_display',
29916                 pressed : false,
29917                 enableToggle : true,
29918                 setValue : function(v) {
29919                     // this trigger toggle.
29920                      
29921                     this.setText(v ? "Hide Caption" : "Show Caption");
29922                     this.setPressed(v != 'block');
29923                 },
29924                 listeners : {
29925                     toggle: function (btn, state)
29926                     {
29927                         var b  = block();
29928                         b.caption_display = b.caption_display == 'block' ? 'none' : 'block';
29929                         this.setText(b.caption_display == 'block' ? "Hide Caption" : "Show Caption");
29930                         b.updateElement();
29931                         syncValue();
29932                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29933                         toolbar.editorcore.onEditorEvent();
29934                     }
29935                 },
29936                 xns : rooui.Toolbar
29937             }
29938         ];
29939         
29940     },
29941     /**
29942      * create a DomHelper friendly object - for use with
29943      * Roo.DomHelper.markup / overwrite / etc..
29944      */
29945     toObject : function()
29946     {
29947         var d = document.createElement('div');
29948         d.innerHTML = this.caption;
29949         
29950         var m = this.width != '100%' && this.align == 'center' ? '0 auto' : 0; 
29951         
29952         var iw = this.align == 'center' ? this.width : '100%';
29953         var img =   {
29954             tag : 'img',
29955             contenteditable : 'false',
29956             src : this.image_src,
29957             alt : d.innerText.replace(/\n/g, " ").replace(/\s+/g, ' ').trim(), // removeHTML and reduce spaces..
29958             style: {
29959                 width : iw,
29960                 maxWidth : iw + ' !important', // this is not getting rendered?
29961                 margin : m  
29962                 
29963             },
29964             width: this.align == 'center' ?  this.width : '100%' 
29965
29966         };
29967         
29968         /*
29969         '<div class="{0}" width="420" height="315" src="{1}" frameborder="0" allowfullscreen>' +
29970                     '<a href="{2}">' + 
29971                         '<img class="{0}-thumbnail" src="{3}/Images/{4}/{5}#image-{4}" />' + 
29972                     '</a>' + 
29973                 '</div>',
29974         */
29975                 
29976         if (this.href.length > 0) {
29977             img = {
29978                 tag : 'a',
29979                 href: this.href,
29980                 contenteditable : 'true',
29981                 cn : [
29982                     img
29983                 ]
29984             };
29985         }
29986         
29987         
29988         if (this.video_url.length > 0) {
29989             img = {
29990                 tag : 'div',
29991                 cls : this.cls,
29992                 frameborder : 0,
29993                 allowfullscreen : true,
29994                 width : 420,  // these are for video tricks - that we replace the outer
29995                 height : 315,
29996                 src : this.video_url,
29997                 cn : [
29998                     img
29999                 ]
30000             };
30001         }
30002
30003
30004   
30005         var ret =   {
30006             tag: 'figure',
30007             'data-block' : 'Figure',
30008             'data-width' : this.width,
30009             'data-caption' : this.caption, 
30010             'data-caption-display' : this.caption_display,
30011             contenteditable : 'false',
30012             
30013             style : {
30014                 display: 'block',
30015                 float :  this.align ,
30016                 maxWidth :  this.align == 'center' ? '100% !important' : (this.width + ' !important'),
30017                 width : this.align == 'center' ? '100%' : this.width,
30018                 margin:  '0px',
30019                 padding: this.align == 'center' ? '0' : '0 10px' ,
30020                 textAlign : this.align   // seems to work for email..
30021                 
30022             },
30023             
30024             align : this.align,
30025             cn : [
30026                 img
30027             ]
30028         };
30029
30030         // show figcaption only if caption_display is 'block'
30031         if(this.caption_display == 'block') {
30032             ret['cn'].push({
30033                 tag: 'figcaption',
30034                 style : {
30035                     textAlign : 'left',
30036                     fontSize : '16px',
30037                     lineHeight : '24px',
30038                     display : this.caption_display,
30039                     maxWidth : (this.align == 'center' ?  this.width : '100%' ) + ' !important',
30040                     margin: m,
30041                     width: this.align == 'center' ?  this.width : '100%' 
30042                 
30043                      
30044                 },
30045                 cls : this.cls.length > 0 ? (this.cls  + '-thumbnail' ) : '',
30046                 cn : [
30047                     {
30048                         tag: 'div',
30049                         style  : {
30050                             marginTop : '16px',
30051                             textAlign : 'start'
30052                         },
30053                         align: 'left',
30054                         cn : [
30055                             {
30056                                 // we can not rely on yahoo syndication to use CSS elements - so have to use  '<i>' to encase stuff.
30057                                 tag : 'i',
30058                                 contenteditable : Roo.htmleditor.BlockFigure.caption_edit,
30059                                 html : this.caption.length ? this.caption : "Caption" // fake caption
30060                             }
30061                             
30062                         ]
30063                     }
30064                     
30065                 ]
30066                 
30067             });
30068         }
30069         return ret;
30070          
30071     },
30072     
30073     readElement : function(node)
30074     {
30075         // this should not really come from the link...
30076         this.video_url = this.getVal(node, 'div', 'src');
30077         this.cls = this.getVal(node, 'div', 'class');
30078         this.href = this.getVal(node, 'a', 'href');
30079         
30080         
30081         this.image_src = this.getVal(node, 'img', 'src');
30082          
30083         this.align = this.getVal(node, 'figure', 'align');
30084
30085         // caption display is stored in figure
30086         this.caption_display = this.getVal(node, true, 'data-caption-display');
30087
30088         // backward compatible
30089         // it was stored in figcaption
30090         if(this.caption_display == '') {
30091             this.caption_display = this.getVal(node, 'figcaption', 'data-display');
30092         }
30093
30094         // read caption from figcaption
30095         var figcaption = this.getVal(node, 'figcaption', false);
30096
30097         if (figcaption !== '') {
30098             this.caption = this.getVal(figcaption, 'i', 'html');
30099         }
30100                 
30101
30102         // read caption from data-caption in figure if no caption from figcaption
30103         var dc = this.getVal(node, true, 'data-caption');
30104
30105         if(this.caption_display == 'none' && dc && dc.length){
30106             this.caption = dc;
30107         }
30108
30109         //this.text_align = this.getVal(node, 'figcaption', 'style','text-align');
30110         this.width = this.getVal(node, true, 'data-width');
30111         //this.margin = this.getVal(node, 'figure', 'style', 'margin');
30112         
30113     },
30114     removeNode : function()
30115     {
30116         return this.node;
30117     }
30118     
30119   
30120    
30121      
30122     
30123     
30124     
30125     
30126 });
30127
30128 Roo.apply(Roo.htmleditor.BlockFigure, {
30129     caption_edit : true
30130 });
30131
30132  
30133
30134 /**
30135  * @class Roo.htmleditor.BlockTable
30136  * Block that manages a table
30137  * 
30138  * @constructor
30139  * Create a new Filter.
30140  * @param {Object} config Configuration options
30141  */
30142
30143 Roo.htmleditor.BlockTable = function(cfg)
30144 {
30145     if (cfg.node) {
30146         this.readElement(cfg.node);
30147         this.updateElement(cfg.node);
30148     }
30149     Roo.apply(this, cfg);
30150     if (!cfg.node) {
30151         this.rows = [];
30152         for(var r = 0; r < this.no_row; r++) {
30153             this.rows[r] = [];
30154             for(var c = 0; c < this.no_col; c++) {
30155                 this.rows[r][c] = this.emptyCell();
30156             }
30157         }
30158     }
30159     
30160     
30161 }
30162 Roo.extend(Roo.htmleditor.BlockTable, Roo.htmleditor.Block, {
30163  
30164     rows : false,
30165     no_col : 1,
30166     no_row : 1,
30167     
30168     
30169     width: '100%',
30170     
30171     // used by context menu
30172     friendly_name : 'Table',
30173     deleteTitle : 'Delete Table',
30174     // context menu is drawn once..
30175     
30176     contextMenu : function(toolbar)
30177     {
30178         
30179         var block = function() {
30180             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
30181         };
30182         
30183         
30184         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
30185         
30186         var syncValue = toolbar.editorcore.syncValue;
30187         
30188         var fields = {};
30189         
30190         return [
30191             {
30192                 xtype : 'TextItem',
30193                 text : "Width: ",
30194                 xns : rooui.Toolbar  //Boostrap?
30195             },
30196             {
30197                 xtype : 'ComboBox',
30198                 allowBlank : false,
30199                 displayField : 'val',
30200                 editable : true,
30201                 listWidth : 100,
30202                 triggerAction : 'all',
30203                 typeAhead : true,
30204                 valueField : 'val',
30205                 width : 100,
30206                 name : 'width',
30207                 listeners : {
30208                     select : function (combo, r, index)
30209                     {
30210                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30211                         var b = block();
30212                         b.width = r.get('val');
30213                         b.updateElement();
30214                         syncValue();
30215                         toolbar.editorcore.onEditorEvent();
30216                     }
30217                 },
30218                 xns : rooui.form,
30219                 store : {
30220                     xtype : 'SimpleStore',
30221                     data : [
30222                         ['100%'],
30223                         ['auto']
30224                     ],
30225                     fields : [ 'val'],
30226                     xns : Roo.data
30227                 }
30228             },
30229             // -------- Cols
30230             
30231             {
30232                 xtype : 'TextItem',
30233                 text : "Columns: ",
30234                 xns : rooui.Toolbar  //Boostrap?
30235             },
30236          
30237             {
30238                 xtype : 'Button',
30239                 text: '-',
30240                 listeners : {
30241                     click : function (_self, e)
30242                     {
30243                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30244                         block().removeColumn();
30245                         syncValue();
30246                         toolbar.editorcore.onEditorEvent();
30247                     }
30248                 },
30249                 xns : rooui.Toolbar
30250             },
30251             {
30252                 xtype : 'Button',
30253                 text: '+',
30254                 listeners : {
30255                     click : function (_self, e)
30256                     {
30257                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30258                         block().addColumn();
30259                         syncValue();
30260                         toolbar.editorcore.onEditorEvent();
30261                     }
30262                 },
30263                 xns : rooui.Toolbar
30264             },
30265             // -------- ROWS
30266             {
30267                 xtype : 'TextItem',
30268                 text : "Rows: ",
30269                 xns : rooui.Toolbar  //Boostrap?
30270             },
30271          
30272             {
30273                 xtype : 'Button',
30274                 text: '-',
30275                 listeners : {
30276                     click : function (_self, e)
30277                     {
30278                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30279                         block().removeRow();
30280                         syncValue();
30281                         toolbar.editorcore.onEditorEvent();
30282                     }
30283                 },
30284                 xns : rooui.Toolbar
30285             },
30286             {
30287                 xtype : 'Button',
30288                 text: '+',
30289                 listeners : {
30290                     click : function (_self, e)
30291                     {
30292                         block().addRow();
30293                         syncValue();
30294                         toolbar.editorcore.onEditorEvent();
30295                     }
30296                 },
30297                 xns : rooui.Toolbar
30298             },
30299             // -------- ROWS
30300             {
30301                 xtype : 'Button',
30302                 text: 'Reset Column Widths',
30303                 listeners : {
30304                     
30305                     click : function (_self, e)
30306                     {
30307                         block().resetWidths();
30308                         syncValue();
30309                         toolbar.editorcore.onEditorEvent();
30310                     }
30311                 },
30312                 xns : rooui.Toolbar
30313             } 
30314             
30315             
30316             
30317         ];
30318         
30319     },
30320     
30321     
30322   /**
30323      * create a DomHelper friendly object - for use with
30324      * Roo.DomHelper.markup / overwrite / etc..
30325      * ?? should it be called with option to hide all editing features?
30326      */
30327     toObject : function()
30328     {
30329         
30330         var ret = {
30331             tag : 'table',
30332             contenteditable : 'false', // this stops cell selection from picking the table.
30333             'data-block' : 'Table',
30334             style : {
30335                 width:  this.width,
30336                 border : 'solid 1px #000', // ??? hard coded?
30337                 'border-collapse' : 'collapse' 
30338             },
30339             cn : [
30340                 { tag : 'tbody' , cn : [] }
30341             ]
30342         };
30343         
30344         // do we have a head = not really 
30345         var ncols = 0;
30346         Roo.each(this.rows, function( row ) {
30347             var tr = {
30348                 tag: 'tr',
30349                 style : {
30350                     margin: '6px',
30351                     border : 'solid 1px #000',
30352                     textAlign : 'left' 
30353                 },
30354                 cn : [ ]
30355             };
30356             
30357             ret.cn[0].cn.push(tr);
30358             // does the row have any properties? ?? height?
30359             var nc = 0;
30360             Roo.each(row, function( cell ) {
30361                 
30362                 var td = {
30363                     tag : 'td',
30364                     contenteditable :  'true',
30365                     'data-block' : 'Td',
30366                     html : cell.html,
30367                     style : cell.style
30368                 };
30369                 if (cell.colspan > 1) {
30370                     td.colspan = cell.colspan ;
30371                     nc += cell.colspan;
30372                 } else {
30373                     nc++;
30374                 }
30375                 if (cell.rowspan > 1) {
30376                     td.rowspan = cell.rowspan ;
30377                 }
30378                 
30379                 
30380                 // widths ?
30381                 tr.cn.push(td);
30382                     
30383                 
30384             }, this);
30385             ncols = Math.max(nc, ncols);
30386             
30387             
30388         }, this);
30389         // add the header row..
30390         
30391         ncols++;
30392          
30393         
30394         return ret;
30395          
30396     },
30397     
30398     readElement : function(node)
30399     {
30400         node  = node ? node : this.node ;
30401         this.width = this.getVal(node, true, 'style', 'width') || '100%';
30402         
30403         this.rows = [];
30404         this.no_row = 0;
30405         var trs = Array.from(node.rows);
30406         trs.forEach(function(tr) {
30407             var row =  [];
30408             this.rows.push(row);
30409             
30410             this.no_row++;
30411             var no_column = 0;
30412             Array.from(tr.cells).forEach(function(td) {
30413                 
30414                 var add = {
30415                     colspan : td.hasAttribute('colspan') ? td.getAttribute('colspan')*1 : 1,
30416                     rowspan : td.hasAttribute('rowspan') ? td.getAttribute('rowspan')*1 : 1,
30417                     style : td.hasAttribute('style') ? td.getAttribute('style') : '',
30418                     html : td.innerHTML
30419                 };
30420                 no_column += add.colspan;
30421                      
30422                 
30423                 row.push(add);
30424                 
30425                 
30426             },this);
30427             this.no_col = Math.max(this.no_col, no_column);
30428             
30429             
30430         },this);
30431         
30432         
30433     },
30434     normalizeRows: function()
30435     {
30436         var ret= [];
30437         var rid = -1;
30438         this.rows.forEach(function(row) {
30439             rid++;
30440             ret[rid] = [];
30441             row = this.normalizeRow(row);
30442             var cid = 0;
30443             row.forEach(function(c) {
30444                 while (typeof(ret[rid][cid]) != 'undefined') {
30445                     cid++;
30446                 }
30447                 if (typeof(ret[rid]) == 'undefined') {
30448                     ret[rid] = [];
30449                 }
30450                 ret[rid][cid] = c;
30451                 c.row = rid;
30452                 c.col = cid;
30453                 if (c.rowspan < 2) {
30454                     return;
30455                 }
30456                 
30457                 for(var i = 1 ;i < c.rowspan; i++) {
30458                     if (typeof(ret[rid+i]) == 'undefined') {
30459                         ret[rid+i] = [];
30460                     }
30461                     ret[rid+i][cid] = c;
30462                 }
30463             });
30464         }, this);
30465         return ret;
30466     
30467     },
30468     
30469     normalizeRow: function(row)
30470     {
30471         var ret= [];
30472         row.forEach(function(c) {
30473             if (c.colspan < 2) {
30474                 ret.push(c);
30475                 return;
30476             }
30477             for(var i =0 ;i < c.colspan; i++) {
30478                 ret.push(c);
30479             }
30480         });
30481         return ret;
30482     
30483     },
30484     
30485     deleteColumn : function(sel)
30486     {
30487         if (!sel || sel.type != 'col') {
30488             return;
30489         }
30490         if (this.no_col < 2) {
30491             return;
30492         }
30493         
30494         this.rows.forEach(function(row) {
30495             var cols = this.normalizeRow(row);
30496             var col = cols[sel.col];
30497             if (col.colspan > 1) {
30498                 col.colspan --;
30499             } else {
30500                 row.remove(col);
30501             }
30502             
30503         }, this);
30504         this.no_col--;
30505         
30506     },
30507     removeColumn : function()
30508     {
30509         this.deleteColumn({
30510             type: 'col',
30511             col : this.no_col-1
30512         });
30513         this.updateElement();
30514     },
30515     
30516      
30517     addColumn : function()
30518     {
30519         
30520         this.rows.forEach(function(row) {
30521             row.push(this.emptyCell());
30522            
30523         }, this);
30524         this.updateElement();
30525     },
30526     
30527     deleteRow : function(sel)
30528     {
30529         if (!sel || sel.type != 'row') {
30530             return;
30531         }
30532         
30533         if (this.no_row < 2) {
30534             return;
30535         }
30536         
30537         var rows = this.normalizeRows();
30538         
30539         
30540         rows[sel.row].forEach(function(col) {
30541             if (col.rowspan > 1) {
30542                 col.rowspan--;
30543             } else {
30544                 col.remove = 1; // flage it as removed.
30545             }
30546             
30547         }, this);
30548         var newrows = [];
30549         this.rows.forEach(function(row) {
30550             newrow = [];
30551             row.forEach(function(c) {
30552                 if (typeof(c.remove) == 'undefined') {
30553                     newrow.push(c);
30554                 }
30555                 
30556             });
30557             if (newrow.length > 0) {
30558                 newrows.push(row);
30559             }
30560         });
30561         this.rows =  newrows;
30562         
30563         
30564         
30565         this.no_row--;
30566         this.updateElement();
30567         
30568     },
30569     removeRow : function()
30570     {
30571         this.deleteRow({
30572             type: 'row',
30573             row : this.no_row-1
30574         });
30575         
30576     },
30577     
30578      
30579     addRow : function()
30580     {
30581         
30582         var row = [];
30583         for (var i = 0; i < this.no_col; i++ ) {
30584             
30585             row.push(this.emptyCell());
30586            
30587         }
30588         this.rows.push(row);
30589         this.updateElement();
30590         
30591     },
30592      
30593     // the default cell object... at present...
30594     emptyCell : function() {
30595         return (new Roo.htmleditor.BlockTd({})).toObject();
30596         
30597      
30598     },
30599     
30600     removeNode : function()
30601     {
30602         return this.node;
30603     },
30604     
30605     
30606     
30607     resetWidths : function()
30608     {
30609         Array.from(this.node.getElementsByTagName('td')).forEach(function(n) {
30610             var nn = Roo.htmleditor.Block.factory(n);
30611             nn.width = '';
30612             nn.updateElement(n);
30613         });
30614     }
30615     
30616     
30617     
30618     
30619 })
30620
30621 /**
30622  *
30623  * editing a TD?
30624  *
30625  * since selections really work on the table cell, then editing really should work from there
30626  *
30627  * The original plan was to support merging etc... - but that may not be needed yet..
30628  *
30629  * So this simple version will support:
30630  *   add/remove cols
30631  *   adjust the width +/-
30632  *   reset the width...
30633  *   
30634  *
30635  */
30636
30637
30638  
30639
30640 /**
30641  * @class Roo.htmleditor.BlockTable
30642  * Block that manages a table
30643  * 
30644  * @constructor
30645  * Create a new Filter.
30646  * @param {Object} config Configuration options
30647  */
30648
30649 Roo.htmleditor.BlockTd = function(cfg)
30650 {
30651     if (cfg.node) {
30652         this.readElement(cfg.node);
30653         this.updateElement(cfg.node);
30654     }
30655     Roo.apply(this, cfg);
30656      
30657     
30658     
30659 }
30660 Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, {
30661  
30662     node : false,
30663     
30664     width: '',
30665     textAlign : 'left',
30666     valign : 'top',
30667     
30668     colspan : 1,
30669     rowspan : 1,
30670     
30671     
30672     // used by context menu
30673     friendly_name : 'Table Cell',
30674     deleteTitle : false, // use our customer delete
30675     
30676     // context menu is drawn once..
30677     
30678     contextMenu : function(toolbar)
30679     {
30680         
30681         var cell = function() {
30682             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
30683         };
30684         
30685         var table = function() {
30686             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode.closest('table'));
30687         };
30688         
30689         var lr = false;
30690         var saveSel = function()
30691         {
30692             lr = toolbar.editorcore.getSelection().getRangeAt(0);
30693         }
30694         var restoreSel = function()
30695         {
30696             if (lr) {
30697                 (function() {
30698                     toolbar.editorcore.focus();
30699                     var cr = toolbar.editorcore.getSelection();
30700                     cr.removeAllRanges();
30701                     cr.addRange(lr);
30702                     toolbar.editorcore.onEditorEvent();
30703                 }).defer(10, this);
30704                 
30705                 
30706             }
30707         }
30708         
30709         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
30710         
30711         var syncValue = toolbar.editorcore.syncValue;
30712         
30713         var fields = {};
30714         
30715         return [
30716             {
30717                 xtype : 'Button',
30718                 text : 'Edit Table',
30719                 listeners : {
30720                     click : function() {
30721                         var t = toolbar.tb.selectedNode.closest('table');
30722                         toolbar.editorcore.selectNode(t);
30723                         toolbar.editorcore.onEditorEvent();                        
30724                     }
30725                 }
30726                 
30727             },
30728               
30729            
30730              
30731             {
30732                 xtype : 'TextItem',
30733                 text : "Column Width: ",
30734                  xns : rooui.Toolbar 
30735                
30736             },
30737             {
30738                 xtype : 'Button',
30739                 text: '-',
30740                 listeners : {
30741                     click : function (_self, e)
30742                     {
30743                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30744                         cell().shrinkColumn();
30745                         syncValue();
30746                          toolbar.editorcore.onEditorEvent();
30747                     }
30748                 },
30749                 xns : rooui.Toolbar
30750             },
30751             {
30752                 xtype : 'Button',
30753                 text: '+',
30754                 listeners : {
30755                     click : function (_self, e)
30756                     {
30757                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30758                         cell().growColumn();
30759                         syncValue();
30760                         toolbar.editorcore.onEditorEvent();
30761                     }
30762                 },
30763                 xns : rooui.Toolbar
30764             },
30765             
30766             {
30767                 xtype : 'TextItem',
30768                 text : "Vertical Align: ",
30769                 xns : rooui.Toolbar  //Boostrap?
30770             },
30771             {
30772                 xtype : 'ComboBox',
30773                 allowBlank : false,
30774                 displayField : 'val',
30775                 editable : true,
30776                 listWidth : 100,
30777                 triggerAction : 'all',
30778                 typeAhead : true,
30779                 valueField : 'val',
30780                 width : 100,
30781                 name : 'valign',
30782                 listeners : {
30783                     select : function (combo, r, index)
30784                     {
30785                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30786                         var b = cell();
30787                         b.valign = r.get('val');
30788                         b.updateElement();
30789                         syncValue();
30790                         toolbar.editorcore.onEditorEvent();
30791                     }
30792                 },
30793                 xns : rooui.form,
30794                 store : {
30795                     xtype : 'SimpleStore',
30796                     data : [
30797                         ['top'],
30798                         ['middle'],
30799                         ['bottom'] // there are afew more... 
30800                     ],
30801                     fields : [ 'val'],
30802                     xns : Roo.data
30803                 }
30804             },
30805             
30806             {
30807                 xtype : 'TextItem',
30808                 text : "Merge Cells: ",
30809                  xns : rooui.Toolbar 
30810                
30811             },
30812             
30813             
30814             {
30815                 xtype : 'Button',
30816                 text: 'Right',
30817                 listeners : {
30818                     click : function (_self, e)
30819                     {
30820                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30821                         cell().mergeRight();
30822                         //block().growColumn();
30823                         syncValue();
30824                         toolbar.editorcore.onEditorEvent();
30825                     }
30826                 },
30827                 xns : rooui.Toolbar
30828             },
30829              
30830             {
30831                 xtype : 'Button',
30832                 text: 'Below',
30833                 listeners : {
30834                     click : function (_self, e)
30835                     {
30836                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30837                         cell().mergeBelow();
30838                         //block().growColumn();
30839                         syncValue();
30840                         toolbar.editorcore.onEditorEvent();
30841                     }
30842                 },
30843                 xns : rooui.Toolbar
30844             },
30845             {
30846                 xtype : 'TextItem',
30847                 text : "| ",
30848                  xns : rooui.Toolbar 
30849                
30850             },
30851             
30852             {
30853                 xtype : 'Button',
30854                 text: 'Split',
30855                 listeners : {
30856                     click : function (_self, e)
30857                     {
30858                         //toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30859                         cell().split();
30860                         syncValue();
30861                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30862                         toolbar.editorcore.onEditorEvent();
30863                                              
30864                     }
30865                 },
30866                 xns : rooui.Toolbar
30867             },
30868             {
30869                 xtype : 'Fill',
30870                 xns : rooui.Toolbar 
30871                
30872             },
30873         
30874           
30875             {
30876                 xtype : 'Button',
30877                 text: 'Delete',
30878                  
30879                 xns : rooui.Toolbar,
30880                 menu : {
30881                     xtype : 'Menu',
30882                     xns : rooui.menu,
30883                     items : [
30884                         {
30885                             xtype : 'Item',
30886                             html: 'Column',
30887                             listeners : {
30888                                 click : function (_self, e)
30889                                 {
30890                                     var t = table();
30891                                     
30892                                     cell().deleteColumn();
30893                                     syncValue();
30894                                     toolbar.editorcore.selectNode(t.node);
30895                                     toolbar.editorcore.onEditorEvent();   
30896                                 }
30897                             },
30898                             xns : rooui.menu
30899                         },
30900                         {
30901                             xtype : 'Item',
30902                             html: 'Row',
30903                             listeners : {
30904                                 click : function (_self, e)
30905                                 {
30906                                     var t = table();
30907                                     cell().deleteRow();
30908                                     syncValue();
30909                                     
30910                                     toolbar.editorcore.selectNode(t.node);
30911                                     toolbar.editorcore.onEditorEvent();   
30912                                                          
30913                                 }
30914                             },
30915                             xns : rooui.menu
30916                         },
30917                        {
30918                             xtype : 'Separator',
30919                             xns : rooui.menu
30920                         },
30921                         {
30922                             xtype : 'Item',
30923                             html: 'Table',
30924                             listeners : {
30925                                 click : function (_self, e)
30926                                 {
30927                                     var t = table();
30928                                     var nn = t.node.nextSibling || t.node.previousSibling;
30929                                     t.node.parentNode.removeChild(t.node);
30930                                     if (nn) { 
30931                                         toolbar.editorcore.selectNode(nn, true);
30932                                     }
30933                                     toolbar.editorcore.onEditorEvent();   
30934                                                          
30935                                 }
30936                             },
30937                             xns : rooui.menu
30938                         }
30939                     ]
30940                 }
30941             }
30942             
30943             // align... << fixme
30944             
30945         ];
30946         
30947     },
30948     
30949     
30950   /**
30951      * create a DomHelper friendly object - for use with
30952      * Roo.DomHelper.markup / overwrite / etc..
30953      * ?? should it be called with option to hide all editing features?
30954      */
30955  /**
30956      * create a DomHelper friendly object - for use with
30957      * Roo.DomHelper.markup / overwrite / etc..
30958      * ?? should it be called with option to hide all editing features?
30959      */
30960     toObject : function()
30961     {
30962         var ret = {
30963             tag : 'td',
30964             contenteditable : 'true', // this stops cell selection from picking the table.
30965             'data-block' : 'Td',
30966             valign : this.valign,
30967             style : {  
30968                 'text-align' :  this.textAlign,
30969                 border : 'solid 1px rgb(0, 0, 0)', // ??? hard coded?
30970                 'border-collapse' : 'collapse',
30971                 padding : '6px', // 8 for desktop / 4 for mobile
30972                 'vertical-align': this.valign
30973             },
30974             html : this.html
30975         };
30976         if (this.width != '') {
30977             ret.width = this.width;
30978             ret.style.width = this.width;
30979         }
30980         
30981         
30982         if (this.colspan > 1) {
30983             ret.colspan = this.colspan ;
30984         } 
30985         if (this.rowspan > 1) {
30986             ret.rowspan = this.rowspan ;
30987         }
30988         
30989            
30990         
30991         return ret;
30992          
30993     },
30994     
30995     readElement : function(node)
30996     {
30997         node  = node ? node : this.node ;
30998         this.width = node.style.width;
30999         this.colspan = Math.max(1,1*node.getAttribute('colspan'));
31000         this.rowspan = Math.max(1,1*node.getAttribute('rowspan'));
31001         this.html = node.innerHTML;
31002         if (node.style.textAlign != '') {
31003             this.textAlign = node.style.textAlign;
31004         }
31005         
31006         
31007     },
31008      
31009     // the default cell object... at present...
31010     emptyCell : function() {
31011         return {
31012             colspan :  1,
31013             rowspan :  1,
31014             textAlign : 'left',
31015             html : "&nbsp;" // is this going to be editable now?
31016         };
31017      
31018     },
31019     
31020     removeNode : function()
31021     {
31022         return this.node.closest('table');
31023          
31024     },
31025     
31026     cellData : false,
31027     
31028     colWidths : false,
31029     
31030     toTableArray  : function()
31031     {
31032         var ret = [];
31033         var tab = this.node.closest('tr').closest('table');
31034         Array.from(tab.rows).forEach(function(r, ri){
31035             ret[ri] = [];
31036         });
31037         var rn = 0;
31038         this.colWidths = [];
31039         var all_auto = true;
31040         Array.from(tab.rows).forEach(function(r, ri){
31041             
31042             var cn = 0;
31043             Array.from(r.cells).forEach(function(ce, ci){
31044                 var c =  {
31045                     cell : ce,
31046                     row : rn,
31047                     col: cn,
31048                     colspan : ce.colSpan,
31049                     rowspan : ce.rowSpan
31050                 };
31051                 if (ce.isEqualNode(this.node)) {
31052                     this.cellData = c;
31053                 }
31054                 // if we have been filled up by a row?
31055                 if (typeof(ret[rn][cn]) != 'undefined') {
31056                     while(typeof(ret[rn][cn]) != 'undefined') {
31057                         cn++;
31058                     }
31059                     c.col = cn;
31060                 }
31061                 
31062                 if (typeof(this.colWidths[cn]) == 'undefined' && c.colspan < 2) {
31063                     this.colWidths[cn] =   ce.style.width;
31064                     if (this.colWidths[cn] != '') {
31065                         all_auto = false;
31066                     }
31067                 }
31068                 
31069                 
31070                 if (c.colspan < 2 && c.rowspan < 2 ) {
31071                     ret[rn][cn] = c;
31072                     cn++;
31073                     return;
31074                 }
31075                 for(var j = 0; j < c.rowspan; j++) {
31076                     if (typeof(ret[rn+j]) == 'undefined') {
31077                         continue; // we have a problem..
31078                     }
31079                     ret[rn+j][cn] = c;
31080                     for(var i = 0; i < c.colspan; i++) {
31081                         ret[rn+j][cn+i] = c;
31082                     }
31083                 }
31084                 
31085                 cn += c.colspan;
31086             }, this);
31087             rn++;
31088         }, this);
31089         
31090         // initalize widths.?
31091         // either all widths or no widths..
31092         if (all_auto) {
31093             this.colWidths[0] = false; // no widths flag.
31094         }
31095         
31096         
31097         return ret;
31098         
31099     },
31100     
31101     
31102     
31103     
31104     mergeRight: function()
31105     {
31106          
31107         // get the contents of the next cell along..
31108         var tr = this.node.closest('tr');
31109         var i = Array.prototype.indexOf.call(tr.childNodes, this.node);
31110         if (i >= tr.childNodes.length - 1) {
31111             return; // no cells on right to merge with.
31112         }
31113         var table = this.toTableArray();
31114         
31115         if (typeof(table[this.cellData.row][this.cellData.col+this.cellData.colspan]) == 'undefined') {
31116             return; // nothing right?
31117         }
31118         var rc = table[this.cellData.row][this.cellData.col+this.cellData.colspan];
31119         // right cell - must be same rowspan and on the same row.
31120         if (rc.rowspan != this.cellData.rowspan || rc.row != this.cellData.row) {
31121             return; // right hand side is not same rowspan.
31122         }
31123         
31124         
31125         
31126         this.node.innerHTML += ' ' + rc.cell.innerHTML;
31127         tr.removeChild(rc.cell);
31128         this.colspan += rc.colspan;
31129         this.node.setAttribute('colspan', this.colspan);
31130
31131         var table = this.toTableArray();
31132         this.normalizeWidths(table);
31133         this.updateWidths(table);
31134     },
31135     
31136     
31137     mergeBelow : function()
31138     {
31139         var table = this.toTableArray();
31140         if (typeof(table[this.cellData.row+this.cellData.rowspan]) == 'undefined') {
31141             return; // no row below
31142         }
31143         if (typeof(table[this.cellData.row+this.cellData.rowspan][this.cellData.col]) == 'undefined') {
31144             return; // nothing right?
31145         }
31146         var rc = table[this.cellData.row+this.cellData.rowspan][this.cellData.col];
31147         
31148         if (rc.colspan != this.cellData.colspan || rc.col != this.cellData.col) {
31149             return; // right hand side is not same rowspan.
31150         }
31151         this.node.innerHTML =  this.node.innerHTML + rc.cell.innerHTML ;
31152         rc.cell.parentNode.removeChild(rc.cell);
31153         this.rowspan += rc.rowspan;
31154         this.node.setAttribute('rowspan', this.rowspan);
31155     },
31156     
31157     split: function()
31158     {
31159         if (this.node.rowSpan < 2 && this.node.colSpan < 2) {
31160             return;
31161         }
31162         var table = this.toTableArray();
31163         var cd = this.cellData;
31164         this.rowspan = 1;
31165         this.colspan = 1;
31166         
31167         for(var r = cd.row; r < cd.row + cd.rowspan; r++) {
31168              
31169             
31170             for(var c = cd.col; c < cd.col + cd.colspan; c++) {
31171                 if (r == cd.row && c == cd.col) {
31172                     this.node.removeAttribute('rowspan');
31173                     this.node.removeAttribute('colspan');
31174                 }
31175                  
31176                 var ntd = this.node.cloneNode(); // which col/row should be 0..
31177                 ntd.removeAttribute('id'); 
31178                 ntd.style.width  = this.colWidths[c];
31179                 ntd.innerHTML = '';
31180                 table[r][c] = { cell : ntd, col : c, row: r , colspan : 1 , rowspan : 1   };
31181             }
31182             
31183         }
31184         this.redrawAllCells(table);
31185         
31186     },
31187     
31188     
31189     
31190     redrawAllCells: function(table)
31191     {
31192         
31193          
31194         var tab = this.node.closest('tr').closest('table');
31195         var ctr = tab.rows[0].parentNode;
31196         Array.from(tab.rows).forEach(function(r, ri){
31197             
31198             Array.from(r.cells).forEach(function(ce, ci){
31199                 ce.parentNode.removeChild(ce);
31200             });
31201             r.parentNode.removeChild(r);
31202         });
31203         for(var r = 0 ; r < table.length; r++) {
31204             var re = tab.rows[r];
31205             
31206             var re = tab.ownerDocument.createElement('tr');
31207             ctr.appendChild(re);
31208             for(var c = 0 ; c < table[r].length; c++) {
31209                 if (table[r][c].cell === false) {
31210                     continue;
31211                 }
31212                 
31213                 re.appendChild(table[r][c].cell);
31214                  
31215                 table[r][c].cell = false;
31216             }
31217         }
31218         
31219     },
31220     updateWidths : function(table)
31221     {
31222         for(var r = 0 ; r < table.length; r++) {
31223            
31224             for(var c = 0 ; c < table[r].length; c++) {
31225                 if (table[r][c].cell === false) {
31226                     continue;
31227                 }
31228                 
31229                 if (this.colWidths[0] != false && table[r][c].colspan < 2) {
31230                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
31231                     el.width = Math.floor(this.colWidths[c])  +'%';
31232                     el.updateElement(el.node);
31233                 }
31234                 if (this.colWidths[0] != false && table[r][c].colspan > 1) {
31235                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
31236                     var width = 0;
31237                     var lv = false;
31238                     for(var i = 0; i < table[r][c].colspan; i ++) {
31239                         if (typeof(this.colWidths[c + i]) != 'undefined') {
31240                             lv = this.colWidths[c + i];
31241                         } else {
31242                             this.colWidths[c + i] = lv;
31243                         }
31244                         width += Math.floor(this.colWidths[c + i]);
31245                     }
31246                     el.width = width  +'%';
31247                     el.updateElement(el.node);
31248                 }
31249                 table[r][c].cell = false; // done
31250             }
31251         }
31252     },
31253     normalizeWidths : function(table)
31254     {
31255         if (this.colWidths[0] === false) {
31256             var nw = 100.0 / this.colWidths.length;
31257             this.colWidths.forEach(function(w,i) {
31258                 this.colWidths[i] = nw;
31259             },this);
31260             return;
31261         }
31262     
31263         var t = 0, missing = [];
31264         
31265         this.colWidths.forEach(function(w,i) {
31266             //if you mix % and
31267             this.colWidths[i] = this.colWidths[i] == '' ? 0 : (this.colWidths[i]+'').replace(/[^0-9]+/g,'')*1;
31268             var add =  this.colWidths[i];
31269             if (add > 0) {
31270                 t+=add;
31271                 return;
31272             }
31273             missing.push(i);
31274             
31275             
31276         },this);
31277         var nc = this.colWidths.length;
31278         if (missing.length) {
31279             var mult = (nc - missing.length) / (1.0 * nc);
31280             var t = mult * t;
31281             var ew = (100 -t) / (1.0 * missing.length);
31282             this.colWidths.forEach(function(w,i) {
31283                 if (w > 0) {
31284                     this.colWidths[i] = w * mult;
31285                     return;
31286                 }
31287                 
31288                 this.colWidths[i] = ew;
31289             }, this);
31290             // have to make up numbers..
31291              
31292         }
31293         // now we should have all the widths..
31294         
31295     
31296     },
31297     
31298     shrinkColumn : function()
31299     {
31300         var table = this.toTableArray();
31301         this.normalizeWidths(table);
31302         var col = this.cellData.col;
31303         var nw = this.colWidths[col] * 0.8;
31304         if (nw < 5) {
31305             return;
31306         }
31307         var otherAdd = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
31308         this.colWidths.forEach(function(w,i) {
31309             if (i == col) {
31310                  this.colWidths[i] = nw;
31311                 return;
31312             }
31313             if (typeof(this.colWidths[i]) == 'undefined') {
31314                 this.colWidths[i] = otherAdd;
31315             } else {
31316                 this.colWidths[i] += otherAdd;
31317             }
31318         }, this);
31319         this.updateWidths(table);
31320          
31321     },
31322     growColumn : function()
31323     {
31324         var table = this.toTableArray();
31325         this.normalizeWidths(table);
31326         var col = this.cellData.col;
31327         var nw = this.colWidths[col] * 1.2;
31328         if (nw > 90) {
31329             return;
31330         }
31331         var otherSub = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
31332         this.colWidths.forEach(function(w,i) {
31333             if (i == col) {
31334                 this.colWidths[i] = nw;
31335                 return;
31336             }
31337             if (typeof(this.colWidths[i]) == 'undefined') {
31338                 this.colWidths[i] = otherSub;
31339             } else {
31340                 this.colWidths[i] -= otherSub;
31341             }
31342             
31343         }, this);
31344         this.updateWidths(table);
31345          
31346     },
31347     deleteRow : function()
31348     {
31349         // delete this rows 'tr'
31350         // if any of the cells in this row have a rowspan > 1 && row!= this row..
31351         // then reduce the rowspan.
31352         var table = this.toTableArray();
31353         // this.cellData.row;
31354         for (var i =0;i< table[this.cellData.row].length ; i++) {
31355             var c = table[this.cellData.row][i];
31356             if (c.row != this.cellData.row) {
31357                 
31358                 c.rowspan--;
31359                 c.cell.setAttribute('rowspan', c.rowspan);
31360                 continue;
31361             }
31362             if (c.rowspan > 1) {
31363                 c.rowspan--;
31364                 c.cell.setAttribute('rowspan', c.rowspan);
31365             }
31366         }
31367         table.splice(this.cellData.row,1);
31368         this.redrawAllCells(table);
31369         
31370     },
31371     deleteColumn : function()
31372     {
31373         var table = this.toTableArray();
31374         
31375         for (var i =0;i< table.length ; i++) {
31376             var c = table[i][this.cellData.col];
31377             if (c.col != this.cellData.col) {
31378                 table[i][this.cellData.col].colspan--;
31379             } else if (c.colspan > 1) {
31380                 c.colspan--;
31381                 c.cell.setAttribute('colspan', c.colspan);
31382             }
31383             table[i].splice(this.cellData.col,1);
31384         }
31385         
31386         this.redrawAllCells(table);
31387     }
31388     
31389     
31390     
31391     
31392 })
31393
31394 //<script type="text/javascript">
31395
31396 /*
31397  * Based  Ext JS Library 1.1.1
31398  * Copyright(c) 2006-2007, Ext JS, LLC.
31399  * LGPL
31400  *
31401  */
31402  
31403 /**
31404  * @class Roo.HtmlEditorCore
31405  * @extends Roo.Component
31406  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
31407  *
31408  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
31409  */
31410
31411 Roo.HtmlEditorCore = function(config){
31412     
31413     
31414     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
31415     
31416     
31417     this.addEvents({
31418         /**
31419          * @event initialize
31420          * Fires when the editor is fully initialized (including the iframe)
31421          * @param {Roo.HtmlEditorCore} this
31422          */
31423         initialize: true,
31424         /**
31425          * @event activate
31426          * Fires when the editor is first receives the focus. Any insertion must wait
31427          * until after this event.
31428          * @param {Roo.HtmlEditorCore} this
31429          */
31430         activate: true,
31431          /**
31432          * @event beforesync
31433          * Fires before the textarea is updated with content from the editor iframe. Return false
31434          * to cancel the sync.
31435          * @param {Roo.HtmlEditorCore} this
31436          * @param {String} html
31437          */
31438         beforesync: true,
31439          /**
31440          * @event beforepush
31441          * Fires before the iframe editor is updated with content from the textarea. Return false
31442          * to cancel the push.
31443          * @param {Roo.HtmlEditorCore} this
31444          * @param {String} html
31445          */
31446         beforepush: true,
31447          /**
31448          * @event sync
31449          * Fires when the textarea is updated with content from the editor iframe.
31450          * @param {Roo.HtmlEditorCore} this
31451          * @param {String} html
31452          */
31453         sync: true,
31454          /**
31455          * @event push
31456          * Fires when the iframe editor is updated with content from the textarea.
31457          * @param {Roo.HtmlEditorCore} this
31458          * @param {String} html
31459          */
31460         push: true,
31461         
31462         /**
31463          * @event editorevent
31464          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
31465          * @param {Roo.HtmlEditorCore} this
31466          */
31467         editorevent: true 
31468         
31469         
31470     });
31471     
31472     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
31473     
31474     // defaults : white / black...
31475     this.applyBlacklists();
31476     
31477     
31478     
31479 };
31480
31481
31482 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
31483
31484
31485      /**
31486      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
31487      */
31488     
31489     owner : false,
31490     
31491      /**
31492      * @cfg {String} css styling for resizing. (used on bootstrap only)
31493      */
31494     resize : false,
31495      /**
31496      * @cfg {Number} height (in pixels)
31497      */   
31498     height: 300,
31499    /**
31500      * @cfg {Number} width (in pixels)
31501      */   
31502     width: 500,
31503      /**
31504      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
31505      *         if you are doing an email editor, this probably needs disabling, it's designed
31506      */
31507     autoClean: true,
31508     
31509     /**
31510      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
31511      */
31512     enableBlocks : true,
31513     /**
31514      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
31515      * 
31516      */
31517     stylesheets: false,
31518      /**
31519      * @cfg {String} language default en - language of text (usefull for rtl languages)
31520      * 
31521      */
31522     language: 'en',
31523     
31524     /**
31525      * @cfg {boolean} allowComments - default false - allow comments in HTML source
31526      *          - by default they are stripped - if you are editing email you may need this.
31527      */
31528     allowComments: false,
31529     // id of frame..
31530     frameId: false,
31531     
31532     // private properties
31533     validationEvent : false,
31534     deferHeight: true,
31535     initialized : false,
31536     activated : false,
31537     sourceEditMode : false,
31538     onFocus : Roo.emptyFn,
31539     iframePad:3,
31540     hideMode:'offsets',
31541     
31542     clearUp: true,
31543     
31544     // blacklist + whitelisted elements..
31545     black: false,
31546     white: false,
31547      
31548     bodyCls : '',
31549
31550     
31551     undoManager : false,
31552     /**
31553      * Protected method that will not generally be called directly. It
31554      * is called when the editor initializes the iframe with HTML contents. Override this method if you
31555      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
31556      */
31557     getDocMarkup : function(){
31558         // body styles..
31559         var st = '';
31560         
31561         // inherit styels from page...?? 
31562         if (this.stylesheets === false) {
31563             
31564             Roo.get(document.head).select('style').each(function(node) {
31565                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
31566             });
31567             
31568             Roo.get(document.head).select('link').each(function(node) { 
31569                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
31570             });
31571             
31572         } else if (!this.stylesheets.length) {
31573                 // simple..
31574                 st = '<style type="text/css">' +
31575                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
31576                    '</style>';
31577         } else {
31578             for (var i in this.stylesheets) {
31579                 if (typeof(this.stylesheets[i]) != 'string') {
31580                     continue;
31581                 }
31582                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
31583             }
31584             
31585         }
31586         
31587         st +=  '<style type="text/css">' +
31588             'IMG { cursor: pointer } ' +
31589         '</style>';
31590         
31591         st += '<meta name="google" content="notranslate">';
31592         
31593         var cls = 'notranslate roo-htmleditor-body';
31594         
31595         if(this.bodyCls.length){
31596             cls += ' ' + this.bodyCls;
31597         }
31598         
31599         return '<html  class="notranslate" translate="no"><head>' + st  +
31600             //<style type="text/css">' +
31601             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
31602             //'</style>' +
31603             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
31604     },
31605
31606     // private
31607     onRender : function(ct, position)
31608     {
31609         var _t = this;
31610         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
31611         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
31612         
31613         
31614         this.el.dom.style.border = '0 none';
31615         this.el.dom.setAttribute('tabIndex', -1);
31616         this.el.addClass('x-hidden hide');
31617         
31618         
31619         
31620         if(Roo.isIE){ // fix IE 1px bogus margin
31621             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
31622         }
31623        
31624         
31625         this.frameId = Roo.id();
31626         
31627         var ifcfg = {
31628             tag: 'iframe',
31629             cls: 'form-control', // bootstrap..
31630             id: this.frameId,
31631             name: this.frameId,
31632             frameBorder : 'no',
31633             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
31634         };
31635         if (this.resize) {
31636             ifcfg.style = { resize : this.resize };
31637         }
31638         
31639         var iframe = this.owner.wrap.createChild(ifcfg, this.el); 
31640         
31641         
31642         this.iframe = iframe.dom;
31643
31644         this.assignDocWin();
31645         
31646         this.doc.designMode = 'on';
31647        
31648         this.doc.open();
31649         this.doc.write(this.getDocMarkup());
31650         this.doc.close();
31651
31652         
31653         var task = { // must defer to wait for browser to be ready
31654             run : function(){
31655                 //console.log("run task?" + this.doc.readyState);
31656                 this.assignDocWin();
31657                 if(this.doc.body || this.doc.readyState == 'complete'){
31658                     try {
31659                         this.doc.designMode="on";
31660                         
31661                     } catch (e) {
31662                         return;
31663                     }
31664                     Roo.TaskMgr.stop(task);
31665                     this.initEditor.defer(10, this);
31666                 }
31667             },
31668             interval : 10,
31669             duration: 10000,
31670             scope: this
31671         };
31672         Roo.TaskMgr.start(task);
31673
31674     },
31675
31676     // private
31677     onResize : function(w, h)
31678     {
31679          Roo.log('resize: ' +w + ',' + h );
31680         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
31681         if(!this.iframe){
31682             return;
31683         }
31684         if(typeof w == 'number'){
31685             
31686             this.iframe.style.width = w + 'px';
31687         }
31688         if(typeof h == 'number'){
31689             
31690             this.iframe.style.height = h + 'px';
31691             if(this.doc){
31692                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
31693             }
31694         }
31695         
31696     },
31697
31698     /**
31699      * Toggles the editor between standard and source edit mode.
31700      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
31701      */
31702     toggleSourceEdit : function(sourceEditMode){
31703         
31704         this.sourceEditMode = sourceEditMode === true;
31705         
31706         if(this.sourceEditMode){
31707  
31708             Roo.get(this.iframe).addClass(['x-hidden','hide', 'd-none']);     //FIXME - what's the BS styles for these
31709             
31710         }else{
31711             Roo.get(this.iframe).removeClass(['x-hidden','hide', 'd-none']);
31712             //this.iframe.className = '';
31713             this.deferFocus();
31714         }
31715         //this.setSize(this.owner.wrap.getSize());
31716         //this.fireEvent('editmodechange', this, this.sourceEditMode);
31717     },
31718
31719     
31720   
31721
31722     /**
31723      * Protected method that will not generally be called directly. If you need/want
31724      * custom HTML cleanup, this is the method you should override.
31725      * @param {String} html The HTML to be cleaned
31726      * return {String} The cleaned HTML
31727      */
31728     cleanHtml : function(html)
31729     {
31730         html = String(html);
31731         if(html.length > 5){
31732             if(Roo.isSafari){ // strip safari nonsense
31733                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
31734             }
31735         }
31736         if(html == '&nbsp;'){
31737             html = '';
31738         }
31739         return html;
31740     },
31741
31742     /**
31743      * HTML Editor -> Textarea
31744      * Protected method that will not generally be called directly. Syncs the contents
31745      * of the editor iframe with the textarea.
31746      */
31747     syncValue : function()
31748     {
31749         //Roo.log("HtmlEditorCore:syncValue (EDITOR->TEXT)");
31750         if(this.initialized){
31751             
31752             if (this.undoManager) {
31753                 this.undoManager.addEvent();
31754             }
31755
31756             
31757             var bd = (this.doc.body || this.doc.documentElement);
31758            
31759             
31760             var sel = this.win.getSelection();
31761             
31762             var div = document.createElement('div');
31763             div.innerHTML = bd.innerHTML;
31764             var gtx = div.getElementsByClassName('gtx-trans-icon'); // google translate - really annoying and difficult to get rid of.
31765             if (gtx.length > 0) {
31766                 var rm = gtx.item(0).parentNode;
31767                 rm.parentNode.removeChild(rm);
31768             }
31769             
31770            
31771             if (this.enableBlocks) {
31772                 Array.from(bd.getElementsByTagName('img')).forEach(function(img) {
31773                     var fig = img.closest('figure');
31774                     if (fig) {
31775                         var bf = new Roo.htmleditor.BlockFigure({
31776                             node : fig
31777                         });
31778                         bf.updateElement();
31779                     }
31780                     
31781                 });
31782                 new Roo.htmleditor.FilterBlock({ node : div });
31783             }
31784             
31785             var html = div.innerHTML;
31786             
31787             //?? tidy?
31788             if (this.autoClean) {
31789                 new Roo.htmleditor.FilterBlack({ node : div, tag : this.black});
31790                 new Roo.htmleditor.FilterAttributes({
31791                     node : div,
31792                     attrib_white : [
31793                             'href',
31794                             'src',
31795                             'name',
31796                             'align',
31797                             'colspan',
31798                             'rowspan',
31799                             'data-display',
31800                             'data-caption-display',
31801                             'data-width',
31802                             'data-caption',
31803                             'start' ,
31804                             'style',
31805                             // youtube embed.
31806                             'class',
31807                             'allowfullscreen',
31808                             'frameborder',
31809                             'width',
31810                             'height',
31811                             'alt'
31812                             ],
31813                     attrib_clean : ['href', 'src' ] 
31814                 });
31815                 
31816                 var tidy = new Roo.htmleditor.TidySerializer({
31817                     inner:  true
31818                 });
31819                 html  = tidy.serialize(div);
31820                 
31821             }
31822             
31823             
31824             if(Roo.isSafari){
31825                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
31826                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
31827                 if(m && m[1]){
31828                     html = '<div style="'+m[0]+'">' + html + '</div>';
31829                 }
31830             }
31831             html = this.cleanHtml(html);
31832             // fix up the special chars.. normaly like back quotes in word...
31833             // however we do not want to do this with chinese..
31834             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
31835                 
31836                 var cc = match.charCodeAt();
31837
31838                 // Get the character value, handling surrogate pairs
31839                 if (match.length == 2) {
31840                     // It's a surrogate pair, calculate the Unicode code point
31841                     var high = match.charCodeAt(0) - 0xD800;
31842                     var low  = match.charCodeAt(1) - 0xDC00;
31843                     cc = (high * 0x400) + low + 0x10000;
31844                 }  else if (
31845                     (cc >= 0x4E00 && cc < 0xA000 ) ||
31846                     (cc >= 0x3400 && cc < 0x4E00 ) ||
31847                     (cc >= 0xf900 && cc < 0xfb00 )
31848                 ) {
31849                         return match;
31850                 }  
31851          
31852                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
31853                 return "&#" + cc + ";";
31854                 
31855                 
31856             });
31857             
31858             
31859              
31860             if(this.owner.fireEvent('beforesync', this, html) !== false){
31861                 this.el.dom.value = html;
31862                 this.owner.fireEvent('sync', this, html);
31863             }
31864         }
31865     },
31866
31867     /**
31868      * TEXTAREA -> EDITABLE
31869      * Protected method that will not generally be called directly. Pushes the value of the textarea
31870      * into the iframe editor.
31871      */
31872     pushValue : function()
31873     {
31874         //Roo.log("HtmlEditorCore:pushValue (TEXT->EDITOR)");
31875         if(this.initialized){
31876             var v = this.el.dom.value.trim();
31877             
31878             
31879             if(this.owner.fireEvent('beforepush', this, v) !== false){
31880                 var d = (this.doc.body || this.doc.documentElement);
31881                 d.innerHTML = v;
31882                  
31883                 this.el.dom.value = d.innerHTML;
31884                 this.owner.fireEvent('push', this, v);
31885             }
31886             if (this.autoClean) {
31887                 new Roo.htmleditor.FilterParagraph({node : this.doc.body}); // paragraphs
31888                 new Roo.htmleditor.FilterSpan({node : this.doc.body}); // empty spans
31889             }
31890             if (this.enableBlocks) {
31891                 Roo.htmleditor.Block.initAll(this.doc.body);
31892             }
31893             
31894             this.updateLanguage();
31895             
31896             var lc = this.doc.body.lastChild;
31897             if (lc && lc.nodeType == 1 && lc.getAttribute("contenteditable") == "false") {
31898                 // add an extra line at the end.
31899                 this.doc.body.appendChild(this.doc.createElement('br'));
31900             }
31901             
31902             
31903         }
31904     },
31905
31906     // private
31907     deferFocus : function(){
31908         this.focus.defer(10, this);
31909     },
31910
31911     // doc'ed in Field
31912     focus : function(){
31913         if(this.win && !this.sourceEditMode){
31914             this.win.focus();
31915         }else{
31916             this.el.focus();
31917         }
31918     },
31919     
31920     assignDocWin: function()
31921     {
31922         var iframe = this.iframe;
31923         
31924          if(Roo.isIE){
31925             this.doc = iframe.contentWindow.document;
31926             this.win = iframe.contentWindow;
31927         } else {
31928 //            if (!Roo.get(this.frameId)) {
31929 //                return;
31930 //            }
31931 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
31932 //            this.win = Roo.get(this.frameId).dom.contentWindow;
31933             
31934             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
31935                 return;
31936             }
31937             
31938             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
31939             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
31940         }
31941     },
31942     
31943     // private
31944     initEditor : function(){
31945         //console.log("INIT EDITOR");
31946         this.assignDocWin();
31947         
31948         
31949         
31950         this.doc.designMode="on";
31951         this.doc.open();
31952         this.doc.write(this.getDocMarkup());
31953         this.doc.close();
31954         
31955         var dbody = (this.doc.body || this.doc.documentElement);
31956         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
31957         // this copies styles from the containing element into thsi one..
31958         // not sure why we need all of this..
31959         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
31960         
31961         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
31962         //ss['background-attachment'] = 'fixed'; // w3c
31963         dbody.bgProperties = 'fixed'; // ie
31964         dbody.setAttribute("translate", "no");
31965         
31966         //Roo.DomHelper.applyStyles(dbody, ss);
31967         Roo.EventManager.on(this.doc, {
31968              
31969             'mouseup': this.onEditorEvent,
31970             'dblclick': this.onEditorEvent,
31971             'click': this.onEditorEvent,
31972             'keyup': this.onEditorEvent,
31973             
31974             buffer:100,
31975             scope: this
31976         });
31977         Roo.EventManager.on(this.doc, {
31978             'paste': this.onPasteEvent,
31979             scope : this
31980         });
31981         if(Roo.isGecko){
31982             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
31983         }
31984         //??? needed???
31985         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
31986             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
31987         }
31988         this.initialized = true;
31989
31990         
31991         // initialize special key events - enter
31992         new Roo.htmleditor.KeyEnter({core : this});
31993         
31994          
31995         
31996         this.owner.fireEvent('initialize', this);
31997         this.pushValue();
31998     },
31999     // this is to prevent a href clicks resulting in a redirect?
32000    
32001     onPasteEvent : function(e,v)
32002     {
32003         // I think we better assume paste is going to be a dirty load of rubish from word..
32004         
32005         // even pasting into a 'email version' of this widget will have to clean up that mess.
32006         var cd = (e.browserEvent.clipboardData || window.clipboardData);
32007         
32008         // check what type of paste - if it's an image, then handle it differently.
32009         if (cd.files && cd.files.length > 0 && cd.types.indexOf('text/html') < 0) {
32010             // pasting images? 
32011             var urlAPI = (window.createObjectURL && window) || 
32012                 (window.URL && URL.revokeObjectURL && URL) || 
32013                 (window.webkitURL && webkitURL);
32014             
32015             var r = new FileReader();
32016             var t = this;
32017             r.addEventListener('load',function()
32018             {
32019                 
32020                 var d = (new DOMParser().parseFromString('<img src="' + r.result+ '">', 'text/html')).body;
32021                 // is insert asycn?
32022                 if (t.enableBlocks) {
32023                     
32024                     Array.from(d.getElementsByTagName('img')).forEach(function(img) {
32025                         if (img.closest('figure')) { // assume!! that it's aready
32026                             return;
32027                         }
32028                         var fig  = new Roo.htmleditor.BlockFigure({
32029                             image_src  : img.src
32030                         });
32031                         fig.updateElement(img); // replace it..
32032                         
32033                     });
32034                 }
32035                 t.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
32036                 t.owner.fireEvent('paste', this);
32037             });
32038             r.readAsDataURL(cd.files[0]);
32039             
32040             e.preventDefault();
32041             
32042             return false;
32043         }
32044         if (cd.types.indexOf('text/html') < 0 ) {
32045             return false;
32046         }
32047         var images = [];
32048         var html = cd.getData('text/html'); // clipboard event
32049         if (cd.types.indexOf('text/rtf') > -1) {
32050             var parser = new Roo.rtf.Parser(cd.getData('text/rtf'));
32051             images = parser.doc ? parser.doc.getElementsByType('pict') : [];
32052         }
32053         // Roo.log(images);
32054         // Roo.log(imgs);
32055         // fixme..
32056         images = images.filter(function(g) { return !g.path.match(/^rtf\/(head|pgdsctbl|listtable|footerf)/); }) // ignore headers/footers etc.
32057                        .map(function(g) { return g.toDataURL(); })
32058                        .filter(function(g) { return g != 'about:blank'; });
32059         
32060         //Roo.log(html);
32061         html = this.cleanWordChars(html);
32062         
32063         var d = (new DOMParser().parseFromString(html, 'text/html')).body;
32064         
32065         
32066         var sn = this.getParentElement();
32067         // check if d contains a table, and prevent nesting??
32068         //Roo.log(d.getElementsByTagName('table'));
32069         //Roo.log(sn);
32070         //Roo.log(sn.closest('table'));
32071         if (d.getElementsByTagName('table').length && sn && sn.closest('table')) {
32072             e.preventDefault();
32073             this.insertAtCursor("You can not nest tables");
32074             //Roo.log("prevent?"); // fixme - 
32075             return false;
32076         }
32077         
32078         
32079         
32080         if (images.length > 0) {
32081             // replace all v:imagedata - with img.
32082             var ar = Array.from(d.getElementsByTagName('v:imagedata'));
32083             Roo.each(ar, function(node) {
32084                 node.parentNode.insertBefore(d.ownerDocument.createElement('img'), node );
32085                 node.parentNode.removeChild(node);
32086             });
32087             
32088             
32089             Roo.each(d.getElementsByTagName('img'), function(img, i) {
32090                 img.setAttribute('src', images[i]);
32091             });
32092         }
32093         if (this.autoClean) {
32094             new Roo.htmleditor.FilterWord({ node : d });
32095             
32096             new Roo.htmleditor.FilterStyleToTag({ node : d });
32097             new Roo.htmleditor.FilterAttributes({
32098                 node : d,
32099                 attrib_white : [
32100                     'href',
32101                     'src',
32102                     'name',
32103                     'align',
32104                     'colspan',
32105                     'rowspan' 
32106                 /*  THESE ARE NOT ALLWOED FOR PASTE
32107                  *    'data-display',
32108                     'data-caption-display',
32109                     'data-width',
32110                     'data-caption',
32111                     'start' ,
32112                     'style',
32113                     // youtube embed.
32114                     'class',
32115                     'allowfullscreen',
32116                     'frameborder',
32117                     'width',
32118                     'height',
32119                     'alt'
32120                     */
32121                     ],
32122                 attrib_clean : ['href', 'src' ] 
32123             });
32124             new Roo.htmleditor.FilterBlack({ node : d, tag : this.black});
32125             // should be fonts..
32126             new Roo.htmleditor.FilterKeepChildren({node : d, tag : [ 'FONT', ':' ]} );
32127             new Roo.htmleditor.FilterParagraph({ node : d });
32128             new Roo.htmleditor.FilterHashLink({node : d});
32129             new Roo.htmleditor.FilterSpan({ node : d });
32130             new Roo.htmleditor.FilterLongBr({ node : d });
32131             new Roo.htmleditor.FilterComment({ node : d });
32132             
32133             
32134         }
32135         if (this.enableBlocks) {
32136                 
32137             Array.from(d.getElementsByTagName('img')).forEach(function(img) {
32138                 if (img.closest('figure')) { // assume!! that it's aready
32139                     return;
32140                 }
32141                 var fig  = new Roo.htmleditor.BlockFigure({
32142                     image_src  : img.src
32143                 });
32144                 fig.updateElement(img); // replace it..
32145                 
32146             });
32147         }
32148         
32149         
32150         this.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
32151         if (this.enableBlocks) {
32152             Roo.htmleditor.Block.initAll(this.doc.body);
32153         }
32154          
32155         
32156         e.preventDefault();
32157         this.owner.fireEvent('paste', this);
32158         return false;
32159         // default behaveiour should be our local cleanup paste? (optional?)
32160         // for simple editor - we want to hammer the paste and get rid of everything... - so over-rideable..
32161         //this.owner.fireEvent('paste', e, v);
32162     },
32163     // private
32164     onDestroy : function(){
32165         
32166         
32167         
32168         if(this.rendered){
32169             
32170             //for (var i =0; i < this.toolbars.length;i++) {
32171             //    // fixme - ask toolbars for heights?
32172             //    this.toolbars[i].onDestroy();
32173            // }
32174             
32175             //this.wrap.dom.innerHTML = '';
32176             //this.wrap.remove();
32177         }
32178     },
32179
32180     // private
32181     onFirstFocus : function(){
32182         
32183         this.assignDocWin();
32184         this.undoManager = new Roo.lib.UndoManager(100,(this.doc.body || this.doc.documentElement));
32185         
32186         this.activated = true;
32187          
32188     
32189         if(Roo.isGecko){ // prevent silly gecko errors
32190             this.win.focus();
32191             var s = this.win.getSelection();
32192             if(!s.focusNode || s.focusNode.nodeType != 3){
32193                 var r = s.getRangeAt(0);
32194                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
32195                 r.collapse(true);
32196                 this.deferFocus();
32197             }
32198             try{
32199                 this.execCmd('useCSS', true);
32200                 this.execCmd('styleWithCSS', false);
32201             }catch(e){}
32202         }
32203         this.owner.fireEvent('activate', this);
32204     },
32205
32206     // private
32207     adjustFont: function(btn){
32208         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
32209         //if(Roo.isSafari){ // safari
32210         //    adjust *= 2;
32211        // }
32212         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
32213         if(Roo.isSafari){ // safari
32214             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
32215             v =  (v < 10) ? 10 : v;
32216             v =  (v > 48) ? 48 : v;
32217             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
32218             
32219         }
32220         
32221         
32222         v = Math.max(1, v+adjust);
32223         
32224         this.execCmd('FontSize', v  );
32225     },
32226
32227     onEditorEvent : function(e)
32228     {
32229          
32230         
32231         if (e && (e.ctrlKey || e.metaKey) && e.keyCode === 90) {
32232             return; // we do not handle this.. (undo manager does..)
32233         }
32234         // clicking a 'block'?
32235         
32236         // in theory this detects if the last element is not a br, then we try and do that.
32237         // its so clicking in space at bottom triggers adding a br and moving the cursor.
32238         if (e &&
32239             e.target.nodeName == 'BODY' &&
32240             e.type == "mouseup" &&
32241             this.doc.body.lastChild
32242            ) {
32243             var lc = this.doc.body.lastChild;
32244             // gtx-trans is google translate plugin adding crap.
32245             while ((lc.nodeType == 3 && lc.nodeValue == '') || lc.id == 'gtx-trans') {
32246                 lc = lc.previousSibling;
32247             }
32248             if (lc.nodeType == 1 && lc.nodeName != 'BR') {
32249             // if last element is <BR> - then dont do anything.
32250             
32251                 var ns = this.doc.createElement('br');
32252                 this.doc.body.appendChild(ns);
32253                 range = this.doc.createRange();
32254                 range.setStartAfter(ns);
32255                 range.collapse(true);
32256                 var sel = this.win.getSelection();
32257                 sel.removeAllRanges();
32258                 sel.addRange(range);
32259             }
32260         }
32261         
32262         
32263         
32264         this.fireEditorEvent(e);
32265       //  this.updateToolbar();
32266         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
32267     },
32268     
32269     fireEditorEvent: function(e)
32270     {
32271         this.owner.fireEvent('editorevent', this, e);
32272     },
32273
32274     insertTag : function(tg)
32275     {
32276         // could be a bit smarter... -> wrap the current selected tRoo..
32277         if (tg.toLowerCase() == 'span' ||
32278             tg.toLowerCase() == 'code' ||
32279             tg.toLowerCase() == 'sup' ||
32280             tg.toLowerCase() == 'sub' 
32281             ) {
32282             
32283             range = this.createRange(this.getSelection());
32284             var wrappingNode = this.doc.createElement(tg.toLowerCase());
32285             wrappingNode.appendChild(range.extractContents());
32286             range.insertNode(wrappingNode);
32287
32288             return;
32289             
32290             
32291             
32292         }
32293         this.execCmd("formatblock",   tg);
32294         this.undoManager.addEvent(); 
32295     },
32296     
32297     insertText : function(txt)
32298     {
32299         
32300         
32301         var range = this.createRange();
32302         range.deleteContents();
32303                //alert(Sender.getAttribute('label'));
32304                
32305         range.insertNode(this.doc.createTextNode(txt));
32306         this.undoManager.addEvent();
32307     } ,
32308     
32309      
32310
32311     /**
32312      * Executes a Midas editor command on the editor document and performs necessary focus and
32313      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
32314      * @param {String} cmd The Midas command
32315      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
32316      */
32317     relayCmd : function(cmd, value)
32318     {
32319         
32320         switch (cmd) {
32321             case 'justifyleft':
32322             case 'justifyright':
32323             case 'justifycenter':
32324                 // if we are in a cell, then we will adjust the
32325                 var n = this.getParentElement();
32326                 var td = n.closest('td');
32327                 if (td) {
32328                     var bl = Roo.htmleditor.Block.factory(td);
32329                     bl.textAlign = cmd.replace('justify','');
32330                     bl.updateElement();
32331                     this.owner.fireEvent('editorevent', this);
32332                     return;
32333                 }
32334                 this.execCmd('styleWithCSS', true); // 
32335                 break;
32336             case 'bold':
32337             case 'italic':
32338             case 'underline':                
32339                 // if there is no selection, then we insert, and set the curson inside it..
32340                 this.execCmd('styleWithCSS', false); 
32341                 break;
32342                 
32343         
32344             default:
32345                 break;
32346         }
32347         
32348         
32349         this.win.focus();
32350         this.execCmd(cmd, value);
32351         this.owner.fireEvent('editorevent', this);
32352         //this.updateToolbar();
32353         this.owner.deferFocus();
32354     },
32355
32356     /**
32357      * Executes a Midas editor command directly on the editor document.
32358      * For visual commands, you should use {@link #relayCmd} instead.
32359      * <b>This should only be called after the editor is initialized.</b>
32360      * @param {String} cmd The Midas command
32361      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
32362      */
32363     execCmd : function(cmd, value){
32364         this.doc.execCommand(cmd, false, value === undefined ? null : value);
32365         this.syncValue();
32366     },
32367  
32368  
32369    
32370     /**
32371      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
32372      * to insert tRoo.
32373      * @param {String} text | dom node.. 
32374      */
32375     insertAtCursor : function(text)
32376     {
32377         
32378         if(!this.activated){
32379             return;
32380         }
32381          
32382         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
32383             this.win.focus();
32384             
32385             
32386             // from jquery ui (MIT licenced)
32387             var range, node;
32388             var win = this.win;
32389             
32390             if (win.getSelection && win.getSelection().getRangeAt) {
32391                 
32392                 // delete the existing?
32393                 
32394                 this.createRange(this.getSelection()).deleteContents();
32395                 range = win.getSelection().getRangeAt(0);
32396                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
32397                 range.insertNode(node);
32398                 range = range.cloneRange();
32399                 range.collapse(false);
32400                  
32401                 win.getSelection().removeAllRanges();
32402                 win.getSelection().addRange(range);
32403                 
32404                 
32405                 
32406             } else if (win.document.selection && win.document.selection.createRange) {
32407                 // no firefox support
32408                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
32409                 win.document.selection.createRange().pasteHTML(txt);
32410             
32411             } else {
32412                 // no firefox support
32413                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
32414                 this.execCmd('InsertHTML', txt);
32415             } 
32416             this.syncValue();
32417             
32418             this.deferFocus();
32419         }
32420     },
32421  // private
32422     mozKeyPress : function(e){
32423         if(e.ctrlKey){
32424             var c = e.getCharCode(), cmd;
32425           
32426             if(c > 0){
32427                 c = String.fromCharCode(c).toLowerCase();
32428                 switch(c){
32429                     case 'b':
32430                         cmd = 'bold';
32431                         break;
32432                     case 'i':
32433                         cmd = 'italic';
32434                         break;
32435                     
32436                     case 'u':
32437                         cmd = 'underline';
32438                         break;
32439                     
32440                     //case 'v':
32441                       //  this.cleanUpPaste.defer(100, this);
32442                       //  return;
32443                         
32444                 }
32445                 if(cmd){
32446                     
32447                     this.relayCmd(cmd);
32448                     //this.win.focus();
32449                     //this.execCmd(cmd);
32450                     //this.deferFocus();
32451                     e.preventDefault();
32452                 }
32453                 
32454             }
32455         }
32456     },
32457
32458     // private
32459     fixKeys : function(){ // load time branching for fastest keydown performance
32460         
32461         
32462         if(Roo.isIE){
32463             return function(e){
32464                 var k = e.getKey(), r;
32465                 if(k == e.TAB){
32466                     e.stopEvent();
32467                     r = this.doc.selection.createRange();
32468                     if(r){
32469                         r.collapse(true);
32470                         r.pasteHTML('&#160;&#160;&#160;&#160;');
32471                         this.deferFocus();
32472                     }
32473                     return;
32474                 }
32475                 /// this is handled by Roo.htmleditor.KeyEnter
32476                  /*
32477                 if(k == e.ENTER){
32478                     r = this.doc.selection.createRange();
32479                     if(r){
32480                         var target = r.parentElement();
32481                         if(!target || target.tagName.toLowerCase() != 'li'){
32482                             e.stopEvent();
32483                             r.pasteHTML('<br/>');
32484                             r.collapse(false);
32485                             r.select();
32486                         }
32487                     }
32488                 }
32489                 */
32490                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
32491                 //    this.cleanUpPaste.defer(100, this);
32492                 //    return;
32493                 //}
32494                 
32495                 
32496             };
32497         }else if(Roo.isOpera){
32498             return function(e){
32499                 var k = e.getKey();
32500                 if(k == e.TAB){
32501                     e.stopEvent();
32502                     this.win.focus();
32503                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
32504                     this.deferFocus();
32505                 }
32506                
32507                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
32508                 //    this.cleanUpPaste.defer(100, this);
32509                  //   return;
32510                 //}
32511                 
32512             };
32513         }else if(Roo.isSafari){
32514             return function(e){
32515                 var k = e.getKey();
32516                 
32517                 if(k == e.TAB){
32518                     e.stopEvent();
32519                     this.execCmd('InsertText','\t');
32520                     this.deferFocus();
32521                     return;
32522                 }
32523                  this.mozKeyPress(e);
32524                 
32525                //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
32526                  //   this.cleanUpPaste.defer(100, this);
32527                  //   return;
32528                // }
32529                 
32530              };
32531         }
32532     }(),
32533     
32534     getAllAncestors: function()
32535     {
32536         var p = this.getSelectedNode();
32537         var a = [];
32538         if (!p) {
32539             a.push(p); // push blank onto stack..
32540             p = this.getParentElement();
32541         }
32542         
32543         
32544         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
32545             a.push(p);
32546             p = p.parentNode;
32547         }
32548         a.push(this.doc.body);
32549         return a;
32550     },
32551     lastSel : false,
32552     lastSelNode : false,
32553     
32554     
32555     getSelection : function() 
32556     {
32557         this.assignDocWin();
32558         return Roo.lib.Selection.wrap(Roo.isIE ? this.doc.selection : this.win.getSelection(), this.doc);
32559     },
32560     /**
32561      * Select a dom node
32562      * @param {DomElement} node the node to select
32563      */
32564     selectNode : function(node, collapse)
32565     {
32566         var nodeRange = node.ownerDocument.createRange();
32567         try {
32568             nodeRange.selectNode(node);
32569         } catch (e) {
32570             nodeRange.selectNodeContents(node);
32571         }
32572         if (collapse === true) {
32573             nodeRange.collapse(true);
32574         }
32575         //
32576         var s = this.win.getSelection();
32577         s.removeAllRanges();
32578         s.addRange(nodeRange);
32579     },
32580     
32581     getSelectedNode: function() 
32582     {
32583         // this may only work on Gecko!!!
32584         
32585         // should we cache this!!!!
32586         
32587          
32588          
32589         var range = this.createRange(this.getSelection()).cloneRange();
32590         
32591         if (Roo.isIE) {
32592             var parent = range.parentElement();
32593             while (true) {
32594                 var testRange = range.duplicate();
32595                 testRange.moveToElementText(parent);
32596                 if (testRange.inRange(range)) {
32597                     break;
32598                 }
32599                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
32600                     break;
32601                 }
32602                 parent = parent.parentElement;
32603             }
32604             return parent;
32605         }
32606         
32607         // is ancestor a text element.
32608         var ac =  range.commonAncestorContainer;
32609         if (ac.nodeType == 3) {
32610             ac = ac.parentNode;
32611         }
32612         
32613         var ar = ac.childNodes;
32614          
32615         var nodes = [];
32616         var other_nodes = [];
32617         var has_other_nodes = false;
32618         for (var i=0;i<ar.length;i++) {
32619             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
32620                 continue;
32621             }
32622             // fullly contained node.
32623             
32624             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
32625                 nodes.push(ar[i]);
32626                 continue;
32627             }
32628             
32629             // probably selected..
32630             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
32631                 other_nodes.push(ar[i]);
32632                 continue;
32633             }
32634             // outer..
32635             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
32636                 continue;
32637             }
32638             
32639             
32640             has_other_nodes = true;
32641         }
32642         if (!nodes.length && other_nodes.length) {
32643             nodes= other_nodes;
32644         }
32645         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
32646             return false;
32647         }
32648         
32649         return nodes[0];
32650     },
32651     
32652     
32653     createRange: function(sel)
32654     {
32655         // this has strange effects when using with 
32656         // top toolbar - not sure if it's a great idea.
32657         //this.editor.contentWindow.focus();
32658         if (typeof sel != "undefined") {
32659             try {
32660                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
32661             } catch(e) {
32662                 return this.doc.createRange();
32663             }
32664         } else {
32665             return this.doc.createRange();
32666         }
32667     },
32668     getParentElement: function()
32669     {
32670         
32671         this.assignDocWin();
32672         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
32673         
32674         var range = this.createRange(sel);
32675          
32676         try {
32677             var p = range.commonAncestorContainer;
32678             while (p.nodeType == 3) { // text node
32679                 p = p.parentNode;
32680             }
32681             return p;
32682         } catch (e) {
32683             return null;
32684         }
32685     
32686     },
32687     /***
32688      *
32689      * Range intersection.. the hard stuff...
32690      *  '-1' = before
32691      *  '0' = hits..
32692      *  '1' = after.
32693      *         [ -- selected range --- ]
32694      *   [fail]                        [fail]
32695      *
32696      *    basically..
32697      *      if end is before start or  hits it. fail.
32698      *      if start is after end or hits it fail.
32699      *
32700      *   if either hits (but other is outside. - then it's not 
32701      *   
32702      *    
32703      **/
32704     
32705     
32706     // @see http://www.thismuchiknow.co.uk/?p=64.
32707     rangeIntersectsNode : function(range, node)
32708     {
32709         var nodeRange = node.ownerDocument.createRange();
32710         try {
32711             nodeRange.selectNode(node);
32712         } catch (e) {
32713             nodeRange.selectNodeContents(node);
32714         }
32715     
32716         var rangeStartRange = range.cloneRange();
32717         rangeStartRange.collapse(true);
32718     
32719         var rangeEndRange = range.cloneRange();
32720         rangeEndRange.collapse(false);
32721     
32722         var nodeStartRange = nodeRange.cloneRange();
32723         nodeStartRange.collapse(true);
32724     
32725         var nodeEndRange = nodeRange.cloneRange();
32726         nodeEndRange.collapse(false);
32727     
32728         return rangeStartRange.compareBoundaryPoints(
32729                  Range.START_TO_START, nodeEndRange) == -1 &&
32730                rangeEndRange.compareBoundaryPoints(
32731                  Range.START_TO_START, nodeStartRange) == 1;
32732         
32733          
32734     },
32735     rangeCompareNode : function(range, node)
32736     {
32737         var nodeRange = node.ownerDocument.createRange();
32738         try {
32739             nodeRange.selectNode(node);
32740         } catch (e) {
32741             nodeRange.selectNodeContents(node);
32742         }
32743         
32744         
32745         range.collapse(true);
32746     
32747         nodeRange.collapse(true);
32748      
32749         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
32750         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
32751          
32752         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
32753         
32754         var nodeIsBefore   =  ss == 1;
32755         var nodeIsAfter    = ee == -1;
32756         
32757         if (nodeIsBefore && nodeIsAfter) {
32758             return 0; // outer
32759         }
32760         if (!nodeIsBefore && nodeIsAfter) {
32761             return 1; //right trailed.
32762         }
32763         
32764         if (nodeIsBefore && !nodeIsAfter) {
32765             return 2;  // left trailed.
32766         }
32767         // fully contined.
32768         return 3;
32769     },
32770  
32771     cleanWordChars : function(input) {// change the chars to hex code
32772         
32773        var swapCodes  = [ 
32774             [    8211, "&#8211;" ], 
32775             [    8212, "&#8212;" ], 
32776             [    8216,  "'" ],  
32777             [    8217, "'" ],  
32778             [    8220, '"' ],  
32779             [    8221, '"' ],  
32780             [    8226, "*" ],  
32781             [    8230, "..." ]
32782         ]; 
32783         var output = input;
32784         Roo.each(swapCodes, function(sw) { 
32785             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
32786             
32787             output = output.replace(swapper, sw[1]);
32788         });
32789         
32790         return output;
32791     },
32792     
32793      
32794     
32795         
32796     
32797     cleanUpChild : function (node)
32798     {
32799         
32800         new Roo.htmleditor.FilterComment({node : node});
32801         new Roo.htmleditor.FilterAttributes({
32802                 node : node,
32803                 attrib_black : this.ablack,
32804                 attrib_clean : this.aclean,
32805                 style_white : this.cwhite,
32806                 style_black : this.cblack
32807         });
32808         new Roo.htmleditor.FilterBlack({ node : node, tag : this.black});
32809         new Roo.htmleditor.FilterKeepChildren({node : node, tag : this.tag_remove} );
32810          
32811         
32812     },
32813     
32814     /**
32815      * Clean up MS wordisms...
32816      * @deprecated - use filter directly
32817      */
32818     cleanWord : function(node)
32819     {
32820         new Roo.htmleditor.FilterWord({ node : node ? node : this.doc.body });
32821         new Roo.htmleditor.FilterKeepChildren({node : node ? node : this.doc.body, tag : [ 'FONT', ':' ]} );
32822         
32823     },
32824    
32825     
32826     /**
32827
32828      * @deprecated - use filters
32829      */
32830     cleanTableWidths : function(node)
32831     {
32832         new Roo.htmleditor.FilterTableWidth({ node : node ? node : this.doc.body});
32833         
32834  
32835     },
32836     
32837      
32838         
32839     applyBlacklists : function()
32840     {
32841         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
32842         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
32843         
32844         this.aclean = typeof(this.owner.aclean) != 'undefined' && this.owner.aclean ? this.owner.aclean :  Roo.HtmlEditorCore.aclean;
32845         this.ablack = typeof(this.owner.ablack) != 'undefined' && this.owner.ablack ? this.owner.ablack :  Roo.HtmlEditorCore.ablack;
32846         this.tag_remove = typeof(this.owner.tag_remove) != 'undefined' && this.owner.tag_remove ? this.owner.tag_remove :  Roo.HtmlEditorCore.tag_remove;
32847         
32848         this.white = [];
32849         this.black = [];
32850         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
32851             if (b.indexOf(tag) > -1) {
32852                 return;
32853             }
32854             this.white.push(tag);
32855             
32856         }, this);
32857         
32858         Roo.each(w, function(tag) {
32859             if (b.indexOf(tag) > -1) {
32860                 return;
32861             }
32862             if (this.white.indexOf(tag) > -1) {
32863                 return;
32864             }
32865             this.white.push(tag);
32866             
32867         }, this);
32868         
32869         
32870         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
32871             if (w.indexOf(tag) > -1) {
32872                 return;
32873             }
32874             this.black.push(tag);
32875             
32876         }, this);
32877         
32878         Roo.each(b, function(tag) {
32879             if (w.indexOf(tag) > -1) {
32880                 return;
32881             }
32882             if (this.black.indexOf(tag) > -1) {
32883                 return;
32884             }
32885             this.black.push(tag);
32886             
32887         }, this);
32888         
32889         
32890         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
32891         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
32892         
32893         this.cwhite = [];
32894         this.cblack = [];
32895         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
32896             if (b.indexOf(tag) > -1) {
32897                 return;
32898             }
32899             this.cwhite.push(tag);
32900             
32901         }, this);
32902         
32903         Roo.each(w, function(tag) {
32904             if (b.indexOf(tag) > -1) {
32905                 return;
32906             }
32907             if (this.cwhite.indexOf(tag) > -1) {
32908                 return;
32909             }
32910             this.cwhite.push(tag);
32911             
32912         }, this);
32913         
32914         
32915         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
32916             if (w.indexOf(tag) > -1) {
32917                 return;
32918             }
32919             this.cblack.push(tag);
32920             
32921         }, this);
32922         
32923         Roo.each(b, function(tag) {
32924             if (w.indexOf(tag) > -1) {
32925                 return;
32926             }
32927             if (this.cblack.indexOf(tag) > -1) {
32928                 return;
32929             }
32930             this.cblack.push(tag);
32931             
32932         }, this);
32933     },
32934     
32935     setStylesheets : function(stylesheets)
32936     {
32937         if(typeof(stylesheets) == 'string'){
32938             Roo.get(this.iframe.contentDocument.head).createChild({
32939                 tag : 'link',
32940                 rel : 'stylesheet',
32941                 type : 'text/css',
32942                 href : stylesheets
32943             });
32944             
32945             return;
32946         }
32947         var _this = this;
32948      
32949         Roo.each(stylesheets, function(s) {
32950             if(!s.length){
32951                 return;
32952             }
32953             
32954             Roo.get(_this.iframe.contentDocument.head).createChild({
32955                 tag : 'link',
32956                 rel : 'stylesheet',
32957                 type : 'text/css',
32958                 href : s
32959             });
32960         });
32961
32962         
32963     },
32964     
32965     
32966     updateLanguage : function()
32967     {
32968         if (!this.iframe || !this.iframe.contentDocument) {
32969             return;
32970         }
32971         Roo.get(this.iframe.contentDocument.body).attr("lang", this.language);
32972     },
32973     
32974     
32975     removeStylesheets : function()
32976     {
32977         var _this = this;
32978         
32979         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
32980             s.remove();
32981         });
32982     },
32983     
32984     setStyle : function(style)
32985     {
32986         Roo.get(this.iframe.contentDocument.head).createChild({
32987             tag : 'style',
32988             type : 'text/css',
32989             html : style
32990         });
32991
32992         return;
32993     }
32994     
32995     // hide stuff that is not compatible
32996     /**
32997      * @event blur
32998      * @hide
32999      */
33000     /**
33001      * @event change
33002      * @hide
33003      */
33004     /**
33005      * @event focus
33006      * @hide
33007      */
33008     /**
33009      * @event specialkey
33010      * @hide
33011      */
33012     /**
33013      * @cfg {String} fieldClass @hide
33014      */
33015     /**
33016      * @cfg {String} focusClass @hide
33017      */
33018     /**
33019      * @cfg {String} autoCreate @hide
33020      */
33021     /**
33022      * @cfg {String} inputType @hide
33023      */
33024     /**
33025      * @cfg {String} invalidClass @hide
33026      */
33027     /**
33028      * @cfg {String} invalidText @hide
33029      */
33030     /**
33031      * @cfg {String} msgFx @hide
33032      */
33033     /**
33034      * @cfg {String} validateOnBlur @hide
33035      */
33036 });
33037
33038 Roo.HtmlEditorCore.white = [
33039         'AREA', 'BR', 'IMG', 'INPUT', 'HR', 'WBR',
33040         
33041        'ADDRESS', 'BLOCKQUOTE', 'CENTER', 'DD',      'DIR',       'DIV', 
33042        'DL',      'DT',         'H1',     'H2',      'H3',        'H4', 
33043        'H5',      'H6',         'HR',     'ISINDEX', 'LISTING',   'MARQUEE', 
33044        'MENU',    'MULTICOL',   'OL',     'P',       'PLAINTEXT', 'PRE', 
33045        'TABLE',   'UL',         'XMP', 
33046        
33047        'CAPTION', 'COL', 'COLGROUP', 'TBODY', 'TD', 'TFOOT', 'TH', 
33048       'THEAD',   'TR', 
33049      
33050       'DIR', 'MENU', 'OL', 'UL', 'DL',
33051        
33052       'EMBED',  'OBJECT'
33053 ];
33054
33055
33056 Roo.HtmlEditorCore.black = [
33057     //    'embed',  'object', // enable - backend responsiblity to clean thiese
33058         'APPLET', // 
33059         'BASE',   'BASEFONT', 'BGSOUND', 'BLINK',  'BODY', 
33060         'FRAME',  'FRAMESET', 'HEAD',    'HTML',   'ILAYER', 
33061         'IFRAME', 'LAYER',  'LINK',     'META',    'OBJECT',   
33062         'SCRIPT', 'STYLE' ,'TITLE',  'XML',
33063         //'FONT' // CLEAN LATER..
33064         'COLGROUP', 'COL'   // messy tables.
33065         
33066         
33067 ];
33068 Roo.HtmlEditorCore.clean = [ // ?? needed???
33069      'SCRIPT', 'STYLE', 'TITLE', 'XML'
33070 ];
33071 Roo.HtmlEditorCore.tag_remove = [
33072     'FONT', 'TBODY'  
33073 ];
33074 // attributes..
33075
33076 Roo.HtmlEditorCore.ablack = [
33077     'on'
33078 ];
33079     
33080 Roo.HtmlEditorCore.aclean = [ 
33081     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
33082 ];
33083
33084 // protocols..
33085 Roo.HtmlEditorCore.pwhite= [
33086         'http',  'https',  'mailto'
33087 ];
33088
33089 // white listed style attributes.
33090 Roo.HtmlEditorCore.cwhite= [
33091       //  'text-align', /// default is to allow most things..
33092       
33093          
33094 //        'font-size'//??
33095 ];
33096
33097 // black listed style attributes.
33098 Roo.HtmlEditorCore.cblack= [
33099       //  'font-size' -- this can be set by the project 
33100 ];
33101
33102
33103
33104
33105     /*
33106  * - LGPL
33107  *
33108  * HtmlEditor
33109  * 
33110  */
33111
33112 /**
33113  * @class Roo.bootstrap.form.HtmlEditor
33114  * @extends Roo.bootstrap.form.TextArea
33115  * Bootstrap HtmlEditor class
33116
33117  * @constructor
33118  * Create a new HtmlEditor
33119  * @param {Object} config The config object
33120  */
33121
33122 Roo.bootstrap.form.HtmlEditor = function(config){
33123
33124     this.addEvents({
33125             /**
33126              * @event initialize
33127              * Fires when the editor is fully initialized (including the iframe)
33128              * @param {Roo.bootstrap.form.HtmlEditor} this
33129              */
33130             initialize: true,
33131             /**
33132              * @event activate
33133              * Fires when the editor is first receives the focus. Any insertion must wait
33134              * until after this event.
33135              * @param {Roo.bootstrap.form.HtmlEditor} this
33136              */
33137             activate: true,
33138              /**
33139              * @event beforesync
33140              * Fires before the textarea is updated with content from the editor iframe. Return false
33141              * to cancel the sync.
33142              * @param {Roo.bootstrap.form.HtmlEditor} this
33143              * @param {String} html
33144              */
33145             beforesync: true,
33146              /**
33147              * @event beforepush
33148              * Fires before the iframe editor is updated with content from the textarea. Return false
33149              * to cancel the push.
33150              * @param {Roo.bootstrap.form.HtmlEditor} this
33151              * @param {String} html
33152              */
33153             beforepush: true,
33154              /**
33155              * @event sync
33156              * Fires when the textarea is updated with content from the editor iframe.
33157              * @param {Roo.bootstrap.form.HtmlEditor} this
33158              * @param {String} html
33159              */
33160             sync: true,
33161              /**
33162              * @event push
33163              * Fires when the iframe editor is updated with content from the textarea.
33164              * @param {Roo.bootstrap.form.HtmlEditor} this
33165              * @param {String} html
33166              */
33167             push: true,
33168              /**
33169              * @event editmodechange
33170              * Fires when the editor switches edit modes
33171              * @param {Roo.bootstrap.form.HtmlEditor} this
33172              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
33173              */
33174             editmodechange: true,
33175             /**
33176              * @event editorevent
33177              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
33178              * @param {Roo.bootstrap.form.HtmlEditor} this
33179              */
33180             editorevent: true,
33181             /**
33182              * @event firstfocus
33183              * Fires when on first focus - needed by toolbars..
33184              * @param {Roo.bootstrap.form.HtmlEditor} this
33185              */
33186             firstfocus: true,
33187             /**
33188              * @event autosave
33189              * Auto save the htmlEditor value as a file into Events
33190              * @param {Roo.bootstrap.form.HtmlEditor} this
33191              */
33192             autosave: true,
33193             /**
33194              * @event savedpreview
33195              * preview the saved version of htmlEditor
33196              * @param {Roo.bootstrap.form.HtmlEditor} this
33197              */
33198             savedpreview: true,
33199              /**
33200             * @event stylesheetsclick
33201             * Fires when press the Sytlesheets button
33202             * @param {Roo.HtmlEditorCore} this
33203             */
33204             stylesheetsclick: true,
33205             /**
33206             * @event paste
33207             * Fires when press user pastes into the editor
33208             * @param {Roo.HtmlEditorCore} this
33209             */
33210             paste: true,
33211             /**
33212             * @event imageadd
33213             * Fires when on any editor when an image is added (excluding paste)
33214             * @param {Roo.bootstrap.form.HtmlEditor} this
33215             */
33216            imageadd: true ,
33217             /**
33218             * @event imageupdated
33219             * Fires when on any editor when an image is changed (excluding paste)
33220             * @param {Roo.bootstrap.form.HtmlEditor} this
33221             * @param {HTMLElement} img could also be a figure if blocks are enabled
33222             */
33223            imageupdate: true ,
33224            /**
33225             * @event imagedelete
33226             * Fires when on any editor when an image is deleted
33227             * @param {Roo.bootstrap.form.HtmlEditor} this
33228             * @param {HTMLElement} img could also be a figure if blocks are enabled
33229             * @param {HTMLElement} oldSrc source of image being replaced
33230             */
33231            imagedelete: true  
33232     });
33233     Roo.bootstrap.form.HtmlEditor.superclass.constructor.call(this, config);
33234     if (!this.toolbars) {
33235         this.toolbars = [];
33236     }
33237     
33238     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
33239     
33240 };
33241
33242
33243 Roo.extend(Roo.bootstrap.form.HtmlEditor, Roo.bootstrap.form.TextArea,  {
33244     
33245     
33246       /**
33247      * @cfg {Array|boolean} toolbars Array of toolbars, or names of toolbars. - true for standard, and false for none.
33248      */
33249     toolbars : true,
33250     
33251      /**
33252     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
33253     */
33254     btns : [],
33255    
33256      /**
33257      * @cfg {String} resize  (none|both|horizontal|vertical) - css resize of element
33258      */
33259     resize : false,
33260      /**
33261      * @cfg {Number} height (in pixels)
33262      */   
33263     height: 300,
33264    /**
33265      * @cfg {Number} width (in pixels)
33266      */   
33267     width: false,
33268     
33269     /**
33270      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
33271      * 
33272      */
33273     stylesheets: false,
33274     
33275     // id of frame..
33276     frameId: false,
33277     
33278     // private properties
33279     validationEvent : false,
33280     deferHeight: true,
33281     initialized : false,
33282     activated : false,
33283     
33284     onFocus : Roo.emptyFn,
33285     iframePad:3,
33286     hideMode:'offsets',
33287     
33288     tbContainer : false,
33289     
33290     bodyCls : '',
33291
33292     linkDialogCls : '',
33293     
33294     toolbarContainer :function() {
33295         return this.wrap.select('.x-html-editor-tb',true).first();
33296     },
33297
33298     /**
33299      * Protected method that will not generally be called directly. It
33300      * is called when the editor creates its toolbar. Override this method if you need to
33301      * add custom toolbar buttons.
33302      * @param {HtmlEditor} editor
33303      */
33304     createToolbar : function()
33305     {
33306         //Roo.log('renewing');
33307         //Roo.log("create toolbars");
33308         if (this.toolbars === false) {
33309             return;
33310         }
33311         if (this.toolbars === true) {
33312             this.toolbars = [ 'Standard' ];
33313         }
33314         
33315         var ar = Array.from(this.toolbars);
33316         this.toolbars = [];
33317         ar.forEach(function(t,i) {
33318             if (typeof(t) == 'string') {
33319                 t = {
33320                     xtype : t
33321                 };
33322             }
33323             if (typeof(t) == 'object' && typeof(t.xtype) == 'string') {
33324                 t.editor = this;
33325                 t.xns = t.xns || Roo.bootstrap.form.HtmlEditorToolbar;
33326                 t = Roo.factory(t);
33327             }
33328             this.toolbars[i] = t;
33329             this.toolbars[i].render(this.toolbarContainer());
33330         }, this);
33331         
33332         
33333     },
33334
33335      
33336     // private
33337     onRender : function(ct, position)
33338     {
33339        // Roo.log("Call onRender: " + this.xtype);
33340         var _t = this;
33341         Roo.bootstrap.form.HtmlEditor.superclass.onRender.call(this, ct, position);
33342       
33343         this.wrap = this.inputEl().wrap({
33344             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
33345         });
33346         
33347         this.editorcore.onRender(ct, position);
33348          
33349          
33350         this.createToolbar(this);
33351        
33352         
33353           
33354         
33355     },
33356
33357     // private
33358     onResize : function(w, h)
33359     {
33360         Roo.log('resize: ' +w + ',' + h );
33361         Roo.bootstrap.form.HtmlEditor.superclass.onResize.apply(this, arguments);
33362         var ew = false;
33363         var eh = false;
33364         
33365         if(this.inputEl() ){
33366             if(typeof w == 'number'){
33367                 var aw = w - this.wrap.getFrameWidth('lr');
33368                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
33369                 ew = aw;
33370             }
33371             if(typeof h == 'number'){
33372                  var tbh = -11;  // fixme it needs to tool bar size!
33373                 for (var i =0; i < this.toolbars.length;i++) {
33374                     // fixme - ask toolbars for heights?
33375                     tbh += this.toolbars[i].el.getHeight();
33376                     //if (this.toolbars[i].footer) {
33377                     //    tbh += this.toolbars[i].footer.el.getHeight();
33378                     //}
33379                 }
33380               
33381                 
33382                 
33383                 
33384                 
33385                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
33386                 ah -= 5; // knock a few pixes off for look..
33387                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
33388                 var eh = ah;
33389             }
33390         }
33391         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
33392         this.editorcore.onResize(ew,eh);
33393         
33394     },
33395
33396     /**
33397      * Toggles the editor between standard and source edit mode.
33398      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
33399      */
33400     toggleSourceEdit : function(sourceEditMode)
33401     {
33402         this.editorcore.toggleSourceEdit(sourceEditMode);
33403         
33404         if(this.editorcore.sourceEditMode){
33405             Roo.log('editor - showing textarea');
33406             
33407 //            Roo.log('in');
33408 //            Roo.log(this.syncValue());
33409             this.syncValue();
33410             this.inputEl().removeClass(['hide', 'x-hidden']);
33411             this.inputEl().dom.removeAttribute('tabIndex');
33412             this.inputEl().focus();
33413         }else{
33414             Roo.log('editor - hiding textarea');
33415 //            Roo.log('out')
33416 //            Roo.log(this.pushValue()); 
33417             this.pushValue();
33418             
33419             this.inputEl().addClass(['hide', 'x-hidden']);
33420             this.inputEl().dom.setAttribute('tabIndex', -1);
33421             //this.deferFocus();
33422         }
33423          
33424         //if(this.resizable){
33425         //    this.setSize(this.wrap.getSize());
33426         //}
33427         
33428         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
33429     },
33430  
33431     // private (for BoxComponent)
33432     adjustSize : Roo.BoxComponent.prototype.adjustSize,
33433
33434     // private (for BoxComponent)
33435     getResizeEl : function(){
33436         return this.wrap;
33437     },
33438
33439     // private (for BoxComponent)
33440     getPositionEl : function(){
33441         return this.wrap;
33442     },
33443
33444     // private
33445     initEvents : function(){
33446         this.originalValue = this.getValue();
33447     },
33448
33449 //    /**
33450 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
33451 //     * @method
33452 //     */
33453 //    markInvalid : Roo.emptyFn,
33454 //    /**
33455 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
33456 //     * @method
33457 //     */
33458 //    clearInvalid : Roo.emptyFn,
33459
33460     setValue : function(v){
33461         Roo.bootstrap.form.HtmlEditor.superclass.setValue.call(this, v);
33462         this.editorcore.pushValue();
33463     },
33464
33465      
33466     // private
33467     deferFocus : function(){
33468         this.focus.defer(10, this);
33469     },
33470
33471     // doc'ed in Field
33472     focus : function(){
33473         this.editorcore.focus();
33474         
33475     },
33476       
33477
33478     // private
33479     onDestroy : function(){
33480         
33481         
33482         
33483         if(this.rendered){
33484             
33485             for (var i =0; i < this.toolbars.length;i++) {
33486                 // fixme - ask toolbars for heights?
33487                 this.toolbars[i].onDestroy();
33488             }
33489             
33490             this.wrap.dom.innerHTML = '';
33491             this.wrap.remove();
33492         }
33493     },
33494
33495     // private
33496     onFirstFocus : function(){
33497         //Roo.log("onFirstFocus");
33498         this.editorcore.onFirstFocus();
33499          for (var i =0; i < this.toolbars.length;i++) {
33500             this.toolbars[i].onFirstFocus();
33501         }
33502         
33503     },
33504     
33505     // private
33506     syncValue : function()
33507     {   
33508         this.editorcore.syncValue();
33509     },
33510     
33511     pushValue : function()
33512     {   
33513         this.editorcore.pushValue();
33514     }
33515      
33516     
33517     // hide stuff that is not compatible
33518     /**
33519      * @event blur
33520      * @hide
33521      */
33522     /**
33523      * @event change
33524      * @hide
33525      */
33526     /**
33527      * @event focus
33528      * @hide
33529      */
33530     /**
33531      * @event specialkey
33532      * @hide
33533      */
33534     /**
33535      * @cfg {String} fieldClass @hide
33536      */
33537     /**
33538      * @cfg {String} focusClass @hide
33539      */
33540     /**
33541      * @cfg {String} autoCreate @hide
33542      */
33543     /**
33544      * @cfg {String} inputType @hide
33545      */
33546      
33547     /**
33548      * @cfg {String} invalidText @hide
33549      */
33550     /**
33551      * @cfg {String} msgFx @hide
33552      */
33553     /**
33554      * @cfg {String} validateOnBlur @hide
33555      */
33556 });
33557  
33558     
33559    
33560    
33561    
33562       
33563 /**
33564  * @class Roo.bootstrap.form.HtmlEditorToolbar.Standard
33565  * @parent Roo.bootstrap.form.HtmlEditor
33566  * @extends Roo.bootstrap.nav.Simplebar
33567  * Basic Toolbar
33568  * 
33569  * @example
33570  * Usage:
33571  *
33572  new Roo.bootstrap.form.HtmlEditor({
33573     ....
33574     toolbars : [
33575         new Roo.bootstrap.form.HtmlEditorToolbar.Standard({
33576             disable : { fonts: 1 , format: 1, ..., ... , ...],
33577             btns : [ .... ]
33578         })
33579     }
33580      
33581  * 
33582  * @cfg {Object} disable List of elements to disable..
33583  * @cfg {Array} btns List of additional buttons.
33584  * 
33585  * 
33586  * NEEDS Extra CSS? 
33587  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
33588  */
33589  
33590 Roo.bootstrap.form.HtmlEditorToolbar.Standard = function(config)
33591 {
33592     
33593     Roo.apply(this, config);
33594     
33595     // default disabled, based on 'good practice'..
33596     this.disable = this.disable || {};
33597     Roo.applyIf(this.disable, {
33598         fontSize : true,
33599         colors : true,
33600         specialElements : true
33601     });
33602     Roo.bootstrap.form.HtmlEditorToolbar.Standard.superclass.constructor.call(this, config);
33603     
33604     this.editor = config.editor;
33605     this.editorcore = config.editor.editorcore;
33606     
33607     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.btnid; });
33608     
33609     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
33610     // dont call parent... till later.
33611 }
33612 Roo.extend(Roo.bootstrap.form.HtmlEditorToolbar.Standard, Roo.bootstrap.nav.Simplebar,  {
33613      
33614     bar : true,
33615     
33616     editor : false,
33617     editorcore : false,
33618     
33619     
33620     formats : [
33621         "p" ,  
33622         "h1","h2","h3","h4","h5","h6", 
33623         "pre", "code", 
33624         "abbr", "acronym", "address", "cite", "samp", "var",
33625         'div','span'
33626     ],
33627     
33628     
33629     deleteBtn: false,
33630     
33631     onRender : function(ct, position)
33632     {
33633        // Roo.log("Call onRender: " + this.xtype);
33634         
33635        Roo.bootstrap.form.HtmlEditorToolbar.Standard.superclass.onRender.call(this, ct, position);
33636        Roo.log(this.el);
33637        this.el.dom.style.marginBottom = '0';
33638        var _this = this;
33639        var editorcore = this.editorcore;
33640        var editor= this.editor;
33641        
33642        var children = [];
33643        var btn = function(id, cmd , toggle, handler, html){
33644        
33645             var  event = toggle ? 'toggle' : 'click';
33646        
33647             var a = {
33648                 size : 'sm',
33649                 xtype: 'Button',
33650                 xns: Roo.bootstrap,
33651                 //glyphicon : id,
33652                 btnid : id,
33653                 fa: id,
33654                 cls : 'roo-html-editor-btn-' + id,
33655                 cmd : cmd, // why id || cmd
33656                 enableToggle: toggle !== false,
33657                 html : html || '',
33658                 pressed : toggle ? false : null,
33659                 listeners : {}
33660             };
33661             a.listeners[toggle ? 'toggle' : 'click'] = function() {
33662                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
33663             };
33664             children.push(a);
33665             return a;
33666        }
33667        
33668     //    var cb_box = function...
33669         
33670         var style = {
33671                 xtype: 'Button',
33672                 size : 'sm',
33673                 xns: Roo.bootstrap,
33674                 fa : 'font',
33675                 cls : 'roo-html-editor-font-chooser',
33676                 //html : 'submit'
33677                 menu : {
33678                     xtype: 'Menu',
33679                     xns: Roo.bootstrap,
33680                     items:  []
33681                 }
33682         };
33683         Roo.each(this.formats, function(f) {
33684             style.menu.items.push({
33685                 xtype :'MenuItem',
33686                 xns: Roo.bootstrap,
33687                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
33688                 tagname : f,
33689                 listeners : {
33690                     click : function()
33691                     {
33692                         editorcore.insertTag(this.tagname);
33693                         editor.focus();
33694                     }
33695                 }
33696                 
33697             });
33698         });
33699         children.push(style);   
33700         
33701         btn('bold',         'bold',true);
33702         btn('italic',       'italic',true);
33703         btn('underline',     'underline',true);
33704         btn('align-left',   'justifyleft',true);
33705         btn('align-center', 'justifycenter',true);
33706         btn('align-right' , 'justifyright',true);
33707         btn('link', false, true, this.onLinkClick);
33708         
33709         
33710         btn('image', false, true, this.onImageClick);
33711         btn('list','insertunorderedlist',true);
33712         btn('list-ol','insertorderedlist',true);
33713
33714         btn('pencil', false,true, function(btn){
33715                 Roo.log(this);
33716                 this.toggleSourceEdit(btn.pressed);
33717         });
33718         
33719         if (this.editor.btns.length > 0) {
33720             for (var i = 0; i<this.editor.btns.length; i++) {
33721                 children.push(this.editor.btns[i]);
33722             }
33723         }
33724         
33725         
33726          
33727         this.xtype = 'NavSimplebar'; // why?
33728         
33729         for(var i=0;i< children.length;i++) {
33730             
33731             this.buttons.add(this.addxtypeChild(children[i]));
33732             
33733         }
33734         this.buildToolbarDelete();
33735
33736         editor.on('editorevent', this.updateToolbar, this);
33737     },
33738     
33739     buildToolbarDelete : function()
33740     {
33741         
33742        /* this.addxtypeChild({
33743             xtype : 'Element',
33744             xns : Roo.bootstrap,
33745             cls : 'roo-htmleditor-fill'
33746         });
33747         */
33748         this.deleteBtn = this.addxtypeChild({
33749             size : 'sm',
33750             xtype: 'Button',
33751             xns: Roo.bootstrap,
33752             fa: 'trash',
33753             listeners : {
33754                 click : this.onDelete.createDelegate(this)
33755             }
33756         });
33757         this.deleteBtn.hide();     
33758         
33759     },
33760     
33761     onImageClick : function()
33762     {
33763         if (this.input) {
33764             this.input.un('change', this.onFileSelected, this);
33765         }
33766         this.input = Roo.get(document.body).createChild({ 
33767           tag: 'input', 
33768           type : 'file', 
33769           style : 'display:none', 
33770           multiple: 'multiple'
33771        });
33772         this.input.on('change', this.onFileSelected, this);
33773         this.input.dom.click();
33774     },
33775     
33776     onFileSelected : function(e)
33777     {
33778          e.preventDefault();
33779         
33780         if(typeof(this.input.dom.files) == 'undefined' || !this.input.dom.files.length){
33781             return;
33782         }
33783     
33784          
33785         this.addFiles(Array.prototype.slice.call(this.input.dom.files), false);
33786     },
33787     
33788     addFiles : function(far, fire_add) {
33789
33790          
33791         var editor =  this.editorcore;
33792   
33793         if (!far.length) {
33794             if (fire_add) {
33795                 this.editor.syncValue();
33796                 editor.owner.fireEvent('editorevent', editor.owner, false);
33797                 editor.owner.fireEvent('imageadd', editor.owner, false);
33798             }
33799             return;
33800         }
33801         
33802         var f = far.pop();
33803         
33804         if (!f.type.match(/^image/)) {
33805             this.addFiles(far, fire_add);
33806             return;
33807         }
33808          
33809         var sn = this.selectedNode;
33810         
33811         var bl = sn  && this.editorcore.enableBlocks ? Roo.htmleditor.Block.factory(sn) : false;
33812         
33813         
33814         var reader = new FileReader();
33815         reader.addEventListener('load', (function() {
33816             if (bl) {
33817                 var oldSrc = bl.image_src;
33818                 bl.image_src = reader.result;
33819                 //bl.caption = f.name;
33820                 bl.updateElement(sn);
33821                 this.editor.syncValue();
33822                 editor.owner.fireEvent('editorevent', editor.owner, false);
33823                 editor.owner.fireEvent('imageupdate', editor.owner, sn, oldSrc);
33824                 // we only do the first file!! and replace.
33825                 return;
33826             }
33827             if (this.editorcore.enableBlocks) {
33828                 var fig = new Roo.htmleditor.BlockFigure({
33829                     image_src :  reader.result,
33830                     caption : '',
33831                     caption_display : 'none'  //default to hide captions..
33832                  });
33833                 editor.insertAtCursor(fig.toHTML());
33834                 this.addFiles(far, true);
33835                 return;
33836             }
33837             // just a standard img..
33838             if (sn && sn.tagName.toUpperCase() == 'IMG') {
33839                 var oldSrc = sn.src;
33840                 sn.src = reader.result;
33841                 this.editor.syncValue();
33842                 editor.owner.fireEvent('editorevent', editor.owner, false);
33843                 editor.owner.fireEvent('imageupdate', editor.owner, sn, oldSrc);
33844                 return;
33845             }
33846             editor.insertAtCursor('<img src="' + reader.result +'">');
33847             this.addFiles(far, true);
33848             
33849         }).createDelegate(this));
33850         reader.readAsDataURL(f);
33851         
33852     
33853      },
33854     
33855     
33856     onBtnClick : function(id)
33857     {
33858        this.editorcore.relayCmd(id);
33859        this.editorcore.focus();
33860     },
33861     
33862     onLinkClick : function(btn) {
33863         var url = this.selectedNode && this.selectedNode.tagName.toUpperCase() == 'A' ?
33864                 this.selectedNode.getAttribute('href') : '';
33865             
33866         Roo.bootstrap.MessageBox.show({
33867             title : "Add / Edit Link URL",
33868             msg : "Enter the URL for the link",
33869             buttons: Roo.bootstrap.MessageBox.OKCANCEL,
33870             minWidth: 250,
33871             scope : this,
33872             prompt:true,
33873             multiline: false,
33874             modal : true,
33875             value : url,
33876             fn:  function(pressed, newurl) {
33877                 if (pressed != 'ok') {
33878                     this.editorcore.focus();
33879                     return;
33880                 }
33881                 if (url != '') {
33882                     this.selectedNode.setAttribute('href', newurl);
33883                     this.editor.syncValue();
33884                     return;
33885                 }
33886                 if(newurl && newurl .match(/http(s):\/\/.+/)) {
33887                     this.editorcore.relayCmd('createlink', newurl);
33888                 }
33889                 this.editorcore.focus();
33890             },
33891             cls : this.editorcore.linkDialogCls
33892         });
33893     },
33894     /**
33895      * Protected method that will not generally be called directly. It triggers
33896      * a toolbar update by reading the markup state of the current selection in the editor.
33897      */
33898     updateToolbar: function(editor ,ev, sel){
33899
33900         if(!this.editorcore.activated){
33901             this.editor.onFirstFocus(); // is this neeed?
33902             return;
33903         }
33904
33905         var btns = this.buttons; 
33906         var doc = this.editorcore.doc;
33907         var hasToggle  = false;
33908         btns.each(function(e) {
33909             if (e.enableToggle && e.cmd) {
33910                 hasToggle = hasToggle  || (['align-left', 'align-right', 'align-center', 'image' , 'link', 'underline'].indexOf(e.btnid) < 0 && doc.queryCommandState(e.cmd));
33911                 e.setActive(doc.queryCommandState(e.cmd));
33912             }
33913         }, this);
33914         
33915         
33916         if (ev &&
33917             (ev.type == 'mouseup' || ev.type == 'click' ) &&
33918             ev.target && ev.target.tagName != 'BODY' ) { // && ev.target.tagName == 'IMG') {
33919             // they have click on an image...
33920             // let's see if we can change the selection...
33921             sel = ev.target;
33922             
33923         }
33924         
33925         var ans = this.editorcore.getAllAncestors();
33926         if (!sel) { 
33927             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
33928             sel = sel ? sel : this.editorcore.doc.body;
33929             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
33930             
33931         }
33932         
33933         var lastSel = this.selectedNode;
33934         this.selectedNode = sel;
33935          
33936         // ok see if we are editing a block?
33937         
33938         var db = false;
33939         // you are not actually selecting the block.
33940         if (sel && sel.hasAttribute('data-block')) {
33941             db = sel;
33942         } else if (sel && sel.closest('[data-block]')) {
33943             db = sel.closest('[data-block]');
33944         }
33945         
33946         Array.from(this.editorcore.doc.body.querySelectorAll('.roo-ed-selection')).forEach(function(e) {
33947             e.classList.remove('roo-ed-selection');
33948         });
33949         
33950         var block = false;
33951         if (db && this.editorcore.enableBlocks) {
33952             block = Roo.htmleditor.Block.factory(db);
33953             
33954             if (block) {
33955                 db.className =  (db.classList.length > 0  ? db.className + ' ' : '') +
33956                     ' roo-ed-selection';
33957                 sel = this.selectedNode = db;
33958             }
33959         }
33960         
33961         // highlight the 'a'..
33962         var tn = sel && sel.tagName.toUpperCase() || '';
33963         if (!block && sel && tn != 'A') {
33964             var asel = sel.closest('A');
33965             if (asel) {
33966                 sel = asel;
33967             }
33968         }
33969        
33970         btns.get('link').setActive(tn == 'A' && this.selectedNode.hasAttribute('href'));
33971         btns.get('image').setActive(tn == 'IMG' || this.editorcore.enableBlocks && tn == 'FIGURE');
33972         btns.get('underline').setActive(tn == 'U' || sel.closest('u') ? true : false);
33973         
33974         Roo.bootstrap.menu.Manager.hideAll();
33975          
33976         
33977         
33978         
33979         
33980         // handle delete button..
33981         if (hasToggle || (tn.length && tn == 'BODY')) {
33982             this.deleteBtn.hide();
33983             return;
33984             
33985         }
33986         this.deleteBtn.show();
33987         
33988         
33989         
33990         //this.editorsyncValue();
33991     },
33992     onFirstFocus: function() {
33993         this.buttons.each(function(item){
33994            item.enable();
33995         });
33996     },
33997     
33998     onDelete : function()
33999     {
34000         var range = this.editorcore.createRange();
34001         var selection = this.editorcore.getSelection();
34002         var sn = this.selectedNode;
34003         range.setStart(sn,0);
34004         range.setEnd(sn,0); 
34005         
34006         
34007         if (sn.hasAttribute('data-block')) {
34008             var block = Roo.htmleditor.Block.factory(this.selectedNode);
34009             if (block) {
34010                 sn = block.removeNode();
34011                 sn.parentNode.removeChild(sn);
34012                 selection.removeAllRanges();
34013                 selection.addRange(range);
34014                 this.updateToolbar(null, null, null);
34015                 if (sn.tagName.toUpperCase() == 'FIGURE') {
34016                     this.editor.syncValue();
34017                     this.editor.fireEvent('imagedelete', this.editor, sn);
34018                 }
34019                 
34020                 this.selectedNode = false;
34021                 this.editorcore.fireEditorEvent(false);
34022                 return;
34023             }   
34024              
34025         }
34026         if (!sn) {
34027             return; // should not really happen..
34028         }
34029         if (sn && sn.tagName == 'BODY') {
34030             return;
34031         }
34032         var stn =  sn.childNodes[0] || sn.nextSibling || sn.previousSibling || sn.parentNode;
34033         
34034         // remove and keep parents.
34035         a = new Roo.htmleditor.FilterKeepChildren({tag : false});
34036         a.replaceTag(sn);
34037         
34038         selection.removeAllRanges();
34039         selection.addRange(range);
34040         if (sn.tagName.toUpperCase() == 'IMG"') {
34041             this.editor.syncValue();
34042             this.editor.fireEvent('imagedelete', this.editor, sn);
34043         }
34044         
34045         this.selectedNode = false;
34046         this.editorcore.fireEditorEvent(false);
34047         
34048         
34049     },
34050     
34051     
34052     toggleSourceEdit : function(sourceEditMode){
34053         
34054           
34055         if(sourceEditMode){
34056             Roo.log("disabling buttons");
34057            this.buttons.each( function(item){
34058                 if(item.cmd != 'pencil'){
34059                     item.disable();
34060                 }
34061             });
34062           
34063         }else{
34064             Roo.log("enabling buttons");
34065             if(this.editorcore.initialized){
34066                 this.buttons.each( function(item){
34067                     item.enable();
34068                 });
34069             }
34070             
34071         }
34072         Roo.log("calling toggole on editor");
34073         // tell the editor that it's been pressed..
34074         this.editor.toggleSourceEdit(sourceEditMode);
34075        
34076     }
34077 });
34078
34079
34080
34081
34082  
34083 /*
34084  * - LGPL
34085  */
34086
34087 /**
34088  * @class Roo.bootstrap.form.Markdown
34089  * @extends Roo.bootstrap.form.TextArea
34090  * Bootstrap Showdown editable area
34091  * @cfg {string} content
34092  * 
34093  * @constructor
34094  * Create a new Showdown
34095  */
34096
34097 Roo.bootstrap.form.Markdown = function(config){
34098     Roo.bootstrap.form.Markdown.superclass.constructor.call(this, config);
34099    
34100 };
34101
34102 Roo.extend(Roo.bootstrap.form.Markdown, Roo.bootstrap.form.TextArea,  {
34103     
34104     editing :false,
34105     
34106     initEvents : function()
34107     {
34108         
34109         Roo.bootstrap.form.TextArea.prototype.initEvents.call(this);
34110         this.markdownEl = this.el.createChild({
34111             cls : 'roo-markdown-area'
34112         });
34113         this.inputEl().addClass('d-none');
34114         if (this.getValue() == '') {
34115             this.markdownEl.dom.innerHTML = String.format('<span class="roo-placeholder">{0}</span>', this.placeholder || '');
34116             
34117         } else {
34118             this.markdownEl.dom.innerHTML = Roo.Markdown.toHtml(Roo.util.Format.htmlEncode(this.getValue()));
34119         }
34120         this.markdownEl.on('click', this.toggleTextEdit, this);
34121         this.on('blur', this.toggleTextEdit, this);
34122         this.on('specialkey', this.resizeTextArea, this);
34123     },
34124     
34125     toggleTextEdit : function()
34126     {
34127         var sh = this.markdownEl.getHeight();
34128         this.inputEl().addClass('d-none');
34129         this.markdownEl.addClass('d-none');
34130         if (!this.editing) {
34131             // show editor?
34132             this.inputEl().setHeight(Math.min(500, Math.max(sh,(this.getValue().split("\n").length+1) * 30)));
34133             this.inputEl().removeClass('d-none');
34134             this.inputEl().focus();
34135             this.editing = true;
34136             return;
34137         }
34138         // show showdown...
34139         this.updateMarkdown();
34140         this.markdownEl.removeClass('d-none');
34141         this.editing = false;
34142         return;
34143     },
34144     updateMarkdown : function()
34145     {
34146         if (this.getValue() == '') {
34147             this.markdownEl.dom.innerHTML = String.format('<span class="roo-placeholder">{0}</span>', this.placeholder || '');
34148             return;
34149         }
34150  
34151         this.markdownEl.dom.innerHTML = Roo.Markdown.toHtml(Roo.util.Format.htmlEncode(this.getValue()));
34152     },
34153     
34154     resizeTextArea: function () {
34155         
34156         var sh = 100;
34157         Roo.log([sh, this.getValue().split("\n").length * 30]);
34158         this.inputEl().setHeight(Math.min(500, Math.max(sh, (this.getValue().split("\n").length +1) * 30)));
34159     },
34160     setValue : function(val)
34161     {
34162         Roo.bootstrap.form.TextArea.prototype.setValue.call(this,val);
34163         if (!this.editing) {
34164             this.updateMarkdown();
34165         }
34166         
34167     },
34168     focus : function()
34169     {
34170         if (!this.editing) {
34171             this.toggleTextEdit();
34172         }
34173         
34174     }
34175
34176
34177 });/*
34178  * Based on:
34179  * Ext JS Library 1.1.1
34180  * Copyright(c) 2006-2007, Ext JS, LLC.
34181  *
34182  * Originally Released Under LGPL - original licence link has changed is not relivant.
34183  *
34184  * Fork - LGPL
34185  * <script type="text/javascript">
34186  */
34187  
34188 /**
34189  * @class Roo.bootstrap.PagingToolbar
34190  * @extends Roo.bootstrap.nav.Simplebar
34191  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
34192  * @constructor
34193  * Create a new PagingToolbar
34194  * @param {Object} config The config object
34195  * @param {Roo.data.Store} store
34196  */
34197 Roo.bootstrap.PagingToolbar = function(config)
34198 {
34199     // old args format still supported... - xtype is prefered..
34200         // created from xtype...
34201     
34202     this.ds = config.dataSource;
34203     
34204     if (config.store && !this.ds) {
34205         this.store= Roo.factory(config.store, Roo.data);
34206         this.ds = this.store;
34207         this.ds.xmodule = this.xmodule || false;
34208     }
34209     
34210     this.toolbarItems = [];
34211     if (config.items) {
34212         this.toolbarItems = config.items;
34213     }
34214     
34215     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
34216     
34217     this.cursor = 0;
34218     
34219     if (this.ds) { 
34220         this.bind(this.ds);
34221     }
34222     
34223     if (Roo.bootstrap.version == 4) {
34224         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
34225     } else {
34226         this.navgroup = new Roo.bootstrap.nav.Group({ cls: 'pagination' });
34227     }
34228     
34229 };
34230
34231 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.nav.Simplebar, {
34232     /**
34233      * @cfg {Roo.bootstrap.Button} buttons[]
34234      * Buttons for the toolbar
34235      */
34236      /**
34237      * @cfg {Roo.data.Store} store
34238      * The underlying data store providing the paged data
34239      */
34240     /**
34241      * @cfg {String/HTMLElement/Element} container
34242      * container The id or element that will contain the toolbar
34243      */
34244     /**
34245      * @cfg {Boolean} displayInfo
34246      * True to display the displayMsg (defaults to false)
34247      */
34248     /**
34249      * @cfg {Number} pageSize
34250      * The number of records to display per page (defaults to 20)
34251      */
34252     pageSize: 20,
34253     /**
34254      * @cfg {String} displayMsg
34255      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
34256      */
34257     displayMsg : 'Displaying {0} - {1} of {2}',
34258     /**
34259      * @cfg {String} emptyMsg
34260      * The message to display when no records are found (defaults to "No data to display")
34261      */
34262     emptyMsg : 'No data to display',
34263     /**
34264      * Customizable piece of the default paging text (defaults to "Page")
34265      * @type String
34266      */
34267     beforePageText : "Page",
34268     /**
34269      * Customizable piece of the default paging text (defaults to "of %0")
34270      * @type String
34271      */
34272     afterPageText : "of {0}",
34273     /**
34274      * Customizable piece of the default paging text (defaults to "First Page")
34275      * @type String
34276      */
34277     firstText : "First Page",
34278     /**
34279      * Customizable piece of the default paging text (defaults to "Previous Page")
34280      * @type String
34281      */
34282     prevText : "Previous Page",
34283     /**
34284      * Customizable piece of the default paging text (defaults to "Next Page")
34285      * @type String
34286      */
34287     nextText : "Next Page",
34288     /**
34289      * Customizable piece of the default paging text (defaults to "Last Page")
34290      * @type String
34291      */
34292     lastText : "Last Page",
34293     /**
34294      * Customizable piece of the default paging text (defaults to "Refresh")
34295      * @type String
34296      */
34297     refreshText : "Refresh",
34298
34299     buttons : false,
34300     // private
34301     onRender : function(ct, position) 
34302     {
34303         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
34304         this.navgroup.parentId = this.id;
34305         this.navgroup.onRender(this.el, null);
34306         // add the buttons to the navgroup
34307         
34308         if(this.displayInfo){
34309             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
34310             this.displayEl = this.el.select('.x-paging-info', true).first();
34311 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
34312 //            this.displayEl = navel.el.select('span',true).first();
34313         }
34314         
34315         var _this = this;
34316         
34317         if(this.buttons){
34318             Roo.each(_this.buttons, function(e){ // this might need to use render????
34319                Roo.factory(e).render(_this.el);
34320             });
34321         }
34322             
34323         Roo.each(_this.toolbarItems, function(e) {
34324             _this.navgroup.addItem(e);
34325         });
34326         
34327         
34328         this.first = this.navgroup.addItem({
34329             tooltip: this.firstText,
34330             cls: "prev btn-outline-secondary",
34331             html : ' <i class="fa fa-step-backward"></i>',
34332             disabled: true,
34333             preventDefault: true,
34334             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
34335         });
34336         
34337         this.prev =  this.navgroup.addItem({
34338             tooltip: this.prevText,
34339             cls: "prev btn-outline-secondary",
34340             html : ' <i class="fa fa-backward"></i>',
34341             disabled: true,
34342             preventDefault: true,
34343             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
34344         });
34345     //this.addSeparator();
34346         
34347         
34348         var field = this.navgroup.addItem( {
34349             tagtype : 'span',
34350             cls : 'x-paging-position  btn-outline-secondary',
34351              disabled: true,
34352             html : this.beforePageText  +
34353                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
34354                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
34355          } ); //?? escaped?
34356         
34357         this.field = field.el.select('input', true).first();
34358         this.field.on("keydown", this.onPagingKeydown, this);
34359         this.field.on("focus", function(){this.dom.select();});
34360     
34361     
34362         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
34363         //this.field.setHeight(18);
34364         //this.addSeparator();
34365         this.next = this.navgroup.addItem({
34366             tooltip: this.nextText,
34367             cls: "next btn-outline-secondary",
34368             html : ' <i class="fa fa-forward"></i>',
34369             disabled: true,
34370             preventDefault: true,
34371             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
34372         });
34373         this.last = this.navgroup.addItem({
34374             tooltip: this.lastText,
34375             html : ' <i class="fa fa-step-forward"></i>',
34376             cls: "next btn-outline-secondary",
34377             disabled: true,
34378             preventDefault: true,
34379             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
34380         });
34381     //this.addSeparator();
34382         this.loading = this.navgroup.addItem({
34383             tooltip: this.refreshText,
34384             cls: "btn-outline-secondary",
34385             html : ' <i class="fa fa-refresh"></i>',
34386             preventDefault: true,
34387             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
34388         });
34389         
34390     },
34391
34392     // private
34393     updateInfo : function(){
34394         if(this.displayEl){
34395             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
34396             var msg = count == 0 ?
34397                 this.emptyMsg :
34398                 String.format(
34399                     this.displayMsg,
34400                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
34401                 );
34402             this.displayEl.update(msg);
34403         }
34404     },
34405
34406     // private
34407     onLoad : function(ds, r, o)
34408     {
34409         this.cursor = o.params && o.params.start ? o.params.start : 0;
34410         
34411         var d = this.getPageData(),
34412             ap = d.activePage,
34413             ps = d.pages;
34414         
34415         
34416         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
34417         this.field.dom.value = ap;
34418         this.first.setDisabled(ap == 1);
34419         this.prev.setDisabled(ap == 1);
34420         this.next.setDisabled(ap == ps);
34421         this.last.setDisabled(ap == ps);
34422         this.loading.enable();
34423         this.updateInfo();
34424     },
34425
34426     // private
34427     getPageData : function(){
34428         var total = this.ds.getTotalCount();
34429         return {
34430             total : total,
34431             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
34432             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
34433         };
34434     },
34435
34436     // private
34437     onLoadError : function(proxy, o){
34438         this.loading.enable();
34439         if (this.ds.events.loadexception.listeners.length  < 2) {
34440             // nothing has been assigned to loadexception except this...
34441             // so 
34442             Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
34443
34444         }
34445     },
34446
34447     // private
34448     onPagingKeydown : function(e){
34449         var k = e.getKey();
34450         var d = this.getPageData();
34451         if(k == e.RETURN){
34452             var v = this.field.dom.value, pageNum;
34453             if(!v || isNaN(pageNum = parseInt(v, 10))){
34454                 this.field.dom.value = d.activePage;
34455                 return;
34456             }
34457             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
34458             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
34459             e.stopEvent();
34460         }
34461         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))
34462         {
34463           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
34464           this.field.dom.value = pageNum;
34465           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
34466           e.stopEvent();
34467         }
34468         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
34469         {
34470           var v = this.field.dom.value, pageNum; 
34471           var increment = (e.shiftKey) ? 10 : 1;
34472           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
34473                 increment *= -1;
34474           }
34475           if(!v || isNaN(pageNum = parseInt(v, 10))) {
34476             this.field.dom.value = d.activePage;
34477             return;
34478           }
34479           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
34480           {
34481             this.field.dom.value = parseInt(v, 10) + increment;
34482             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
34483             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
34484           }
34485           e.stopEvent();
34486         }
34487     },
34488
34489     // private
34490     beforeLoad : function(){
34491         if(this.loading){
34492             this.loading.disable();
34493         }
34494     },
34495
34496     // private
34497     onClick : function(which){
34498         
34499         var ds = this.ds;
34500         if (!ds) {
34501             return;
34502         }
34503         
34504         switch(which){
34505             case "first":
34506                 ds.load({params:{start: 0, limit: this.pageSize}});
34507             break;
34508             case "prev":
34509                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
34510             break;
34511             case "next":
34512                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
34513             break;
34514             case "last":
34515                 var total = ds.getTotalCount();
34516                 var extra = total % this.pageSize;
34517                 var lastStart = extra ? (total - extra) : total-this.pageSize;
34518                 ds.load({params:{start: lastStart, limit: this.pageSize}});
34519             break;
34520             case "refresh":
34521                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
34522             break;
34523         }
34524     },
34525
34526     /**
34527      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
34528      * @param {Roo.data.Store} store The data store to unbind
34529      */
34530     unbind : function(ds){
34531         ds.un("beforeload", this.beforeLoad, this);
34532         ds.un("load", this.onLoad, this);
34533         ds.un("loadexception", this.onLoadError, this);
34534         ds.un("remove", this.updateInfo, this);
34535         ds.un("add", this.updateInfo, this);
34536         this.ds = undefined;
34537     },
34538
34539     /**
34540      * Binds the paging toolbar to the specified {@link Roo.data.Store}
34541      * @param {Roo.data.Store} store The data store to bind
34542      */
34543     bind : function(ds){
34544         ds.on("beforeload", this.beforeLoad, this);
34545         ds.on("load", this.onLoad, this);
34546         ds.on("loadexception", this.onLoadError, this);
34547         ds.on("remove", this.updateInfo, this);
34548         ds.on("add", this.updateInfo, this);
34549         this.ds = ds;
34550     }
34551 });/*
34552  * - LGPL
34553  *
34554  * element
34555  * 
34556  */
34557
34558 /**
34559  * @class Roo.bootstrap.MessageBar
34560  * @extends Roo.bootstrap.Component
34561  * Bootstrap MessageBar class
34562  * @cfg {String} html contents of the MessageBar
34563  * @cfg {String} weight (info | success | warning | danger) default info
34564  * @cfg {String} beforeClass insert the bar before the given class
34565  * @cfg {Boolean} closable (true | false) default false
34566  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
34567  * 
34568  * @constructor
34569  * Create a new Element
34570  * @param {Object} config The config object
34571  */
34572
34573 Roo.bootstrap.MessageBar = function(config){
34574     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
34575 };
34576
34577 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
34578     
34579     html: '',
34580     weight: 'info',
34581     closable: false,
34582     fixed: false,
34583     beforeClass: 'bootstrap-sticky-wrap',
34584     
34585     getAutoCreate : function(){
34586         
34587         var cfg = {
34588             tag: 'div',
34589             cls: 'alert alert-dismissable alert-' + this.weight,
34590             cn: [
34591                 {
34592                     tag: 'span',
34593                     cls: 'message',
34594                     html: this.html || ''
34595                 }
34596             ]
34597         };
34598         
34599         if(this.fixed){
34600             cfg.cls += ' alert-messages-fixed';
34601         }
34602         
34603         if(this.closable){
34604             cfg.cn.push({
34605                 tag: 'button',
34606                 cls: 'close',
34607                 html: 'x'
34608             });
34609         }
34610         
34611         return cfg;
34612     },
34613     
34614     onRender : function(ct, position)
34615     {
34616         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
34617         
34618         if(!this.el){
34619             var cfg = Roo.apply({},  this.getAutoCreate());
34620             cfg.id = Roo.id();
34621             
34622             if (this.cls) {
34623                 cfg.cls += ' ' + this.cls;
34624             }
34625             if (this.style) {
34626                 cfg.style = this.style;
34627             }
34628             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
34629             
34630             this.el.setVisibilityMode(Roo.Element.DISPLAY);
34631         }
34632         
34633         this.el.select('>button.close').on('click', this.hide, this);
34634         
34635     },
34636     
34637     show : function()
34638     {
34639         if (!this.rendered) {
34640             this.render();
34641         }
34642         
34643         this.el.show();
34644         
34645         this.fireEvent('show', this);
34646         
34647     },
34648     
34649     hide : function()
34650     {
34651         if (!this.rendered) {
34652             this.render();
34653         }
34654         
34655         this.el.hide();
34656         
34657         this.fireEvent('hide', this);
34658     },
34659     
34660     update : function()
34661     {
34662 //        var e = this.el.dom.firstChild;
34663 //        
34664 //        if(this.closable){
34665 //            e = e.nextSibling;
34666 //        }
34667 //        
34668 //        e.data = this.html || '';
34669
34670         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
34671     }
34672    
34673 });
34674
34675  
34676
34677      /*
34678  * - LGPL
34679  *
34680  * Graph
34681  * 
34682  */
34683
34684
34685 /**
34686  * @class Roo.bootstrap.Graph
34687  * @extends Roo.bootstrap.Component
34688  * Bootstrap Graph class
34689 > Prameters
34690  -sm {number} sm 4
34691  -md {number} md 5
34692  @cfg {String} graphtype  bar | vbar | pie
34693  @cfg {number} g_x coodinator | centre x (pie)
34694  @cfg {number} g_y coodinator | centre y (pie)
34695  @cfg {number} g_r radius (pie)
34696  @cfg {number} g_height height of the chart (respected by all elements in the set)
34697  @cfg {number} g_width width of the chart (respected by all elements in the set)
34698  @cfg {Object} title The title of the chart
34699     
34700  -{Array}  values
34701  -opts (object) options for the chart 
34702      o {
34703      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
34704      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
34705      o vgutter (number)
34706      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.
34707      o stacked (boolean) whether or not to tread values as in a stacked bar chart
34708      o to
34709      o stretch (boolean)
34710      o }
34711  -opts (object) options for the pie
34712      o{
34713      o cut
34714      o startAngle (number)
34715      o endAngle (number)
34716      } 
34717  *
34718  * @constructor
34719  * Create a new Input
34720  * @param {Object} config The config object
34721  */
34722
34723 Roo.bootstrap.Graph = function(config){
34724     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
34725     
34726     this.addEvents({
34727         // img events
34728         /**
34729          * @event click
34730          * The img click event for the img.
34731          * @param {Roo.EventObject} e
34732          */
34733         "click" : true
34734     });
34735 };
34736
34737 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
34738     
34739     sm: 4,
34740     md: 5,
34741     graphtype: 'bar',
34742     g_height: 250,
34743     g_width: 400,
34744     g_x: 50,
34745     g_y: 50,
34746     g_r: 30,
34747     opts:{
34748         //g_colors: this.colors,
34749         g_type: 'soft',
34750         g_gutter: '20%'
34751
34752     },
34753     title : false,
34754
34755     getAutoCreate : function(){
34756         
34757         var cfg = {
34758             tag: 'div',
34759             html : null
34760         };
34761         
34762         
34763         return  cfg;
34764     },
34765
34766     onRender : function(ct,position){
34767         
34768         
34769         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
34770         
34771         if (typeof(Raphael) == 'undefined') {
34772             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
34773             return;
34774         }
34775         
34776         this.raphael = Raphael(this.el.dom);
34777         
34778                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
34779                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
34780                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
34781                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
34782                 /*
34783                 r.text(160, 10, "Single Series Chart").attr(txtattr);
34784                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
34785                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
34786                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
34787                 
34788                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
34789                 r.barchart(330, 10, 300, 220, data1);
34790                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
34791                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
34792                 */
34793                 
34794                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
34795                 // r.barchart(30, 30, 560, 250,  xdata, {
34796                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
34797                 //     axis : "0 0 1 1",
34798                 //     axisxlabels :  xdata
34799                 //     //yvalues : cols,
34800                    
34801                 // });
34802 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
34803 //        
34804 //        this.load(null,xdata,{
34805 //                axis : "0 0 1 1",
34806 //                axisxlabels :  xdata
34807 //                });
34808
34809     },
34810
34811     load : function(graphtype,xdata,opts)
34812     {
34813         this.raphael.clear();
34814         if(!graphtype) {
34815             graphtype = this.graphtype;
34816         }
34817         if(!opts){
34818             opts = this.opts;
34819         }
34820         var r = this.raphael,
34821             fin = function () {
34822                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
34823             },
34824             fout = function () {
34825                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
34826             },
34827             pfin = function() {
34828                 this.sector.stop();
34829                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
34830
34831                 if (this.label) {
34832                     this.label[0].stop();
34833                     this.label[0].attr({ r: 7.5 });
34834                     this.label[1].attr({ "font-weight": 800 });
34835                 }
34836             },
34837             pfout = function() {
34838                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
34839
34840                 if (this.label) {
34841                     this.label[0].animate({ r: 5 }, 500, "bounce");
34842                     this.label[1].attr({ "font-weight": 400 });
34843                 }
34844             };
34845
34846         switch(graphtype){
34847             case 'bar':
34848                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
34849                 break;
34850             case 'hbar':
34851                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
34852                 break;
34853             case 'pie':
34854 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
34855 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
34856 //            
34857                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
34858                 
34859                 break;
34860
34861         }
34862         
34863         if(this.title){
34864             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
34865         }
34866         
34867     },
34868     
34869     setTitle: function(o)
34870     {
34871         this.title = o;
34872     },
34873     
34874     initEvents: function() {
34875         
34876         if(!this.href){
34877             this.el.on('click', this.onClick, this);
34878         }
34879     },
34880     
34881     onClick : function(e)
34882     {
34883         Roo.log('img onclick');
34884         this.fireEvent('click', this, e);
34885     }
34886    
34887 });
34888
34889  
34890 Roo.bootstrap.dash = {};/*
34891  * - LGPL
34892  *
34893  * numberBox
34894  * 
34895  */
34896 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
34897
34898 /**
34899  * @class Roo.bootstrap.dash.NumberBox
34900  * @extends Roo.bootstrap.Component
34901  * Bootstrap NumberBox class
34902  * @cfg {String} headline Box headline
34903  * @cfg {String} content Box content
34904  * @cfg {String} icon Box icon
34905  * @cfg {String} footer Footer text
34906  * @cfg {String} fhref Footer href
34907  * 
34908  * @constructor
34909  * Create a new NumberBox
34910  * @param {Object} config The config object
34911  */
34912
34913
34914 Roo.bootstrap.dash.NumberBox = function(config){
34915     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
34916     
34917 };
34918
34919 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
34920     
34921     headline : '',
34922     content : '',
34923     icon : '',
34924     footer : '',
34925     fhref : '',
34926     ficon : '',
34927     
34928     getAutoCreate : function(){
34929         
34930         var cfg = {
34931             tag : 'div',
34932             cls : 'small-box ',
34933             cn : [
34934                 {
34935                     tag : 'div',
34936                     cls : 'inner',
34937                     cn :[
34938                         {
34939                             tag : 'h3',
34940                             cls : 'roo-headline',
34941                             html : this.headline
34942                         },
34943                         {
34944                             tag : 'p',
34945                             cls : 'roo-content',
34946                             html : this.content
34947                         }
34948                     ]
34949                 }
34950             ]
34951         };
34952         
34953         if(this.icon){
34954             cfg.cn.push({
34955                 tag : 'div',
34956                 cls : 'icon',
34957                 cn :[
34958                     {
34959                         tag : 'i',
34960                         cls : 'ion ' + this.icon
34961                     }
34962                 ]
34963             });
34964         }
34965         
34966         if(this.footer){
34967             var footer = {
34968                 tag : 'a',
34969                 cls : 'small-box-footer',
34970                 href : this.fhref || '#',
34971                 html : this.footer
34972             };
34973             
34974             cfg.cn.push(footer);
34975             
34976         }
34977         
34978         return  cfg;
34979     },
34980
34981     onRender : function(ct,position){
34982         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
34983
34984
34985        
34986                 
34987     },
34988
34989     setHeadline: function (value)
34990     {
34991         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
34992     },
34993     
34994     setFooter: function (value, href)
34995     {
34996         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
34997         
34998         if(href){
34999             this.el.select('a.small-box-footer',true).first().attr('href', href);
35000         }
35001         
35002     },
35003
35004     setContent: function (value)
35005     {
35006         this.el.select('.roo-content',true).first().dom.innerHTML = value;
35007     },
35008
35009     initEvents: function() 
35010     {   
35011         
35012     }
35013     
35014 });
35015
35016  
35017 /*
35018  * - LGPL
35019  *
35020  * TabBox
35021  * 
35022  */
35023 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
35024
35025 /**
35026  * @class Roo.bootstrap.dash.TabBox
35027  * @extends Roo.bootstrap.Component
35028  * @children Roo.bootstrap.dash.TabPane
35029  * Bootstrap TabBox class
35030  * @cfg {String} title Title of the TabBox
35031  * @cfg {String} icon Icon of the TabBox
35032  * @cfg {Boolean} showtabs (true|false) show the tabs default true
35033  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
35034  * 
35035  * @constructor
35036  * Create a new TabBox
35037  * @param {Object} config The config object
35038  */
35039
35040
35041 Roo.bootstrap.dash.TabBox = function(config){
35042     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
35043     this.addEvents({
35044         // raw events
35045         /**
35046          * @event addpane
35047          * When a pane is added
35048          * @param {Roo.bootstrap.dash.TabPane} pane
35049          */
35050         "addpane" : true,
35051         /**
35052          * @event activatepane
35053          * When a pane is activated
35054          * @param {Roo.bootstrap.dash.TabPane} pane
35055          */
35056         "activatepane" : true
35057         
35058          
35059     });
35060     
35061     this.panes = [];
35062 };
35063
35064 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
35065
35066     title : '',
35067     icon : false,
35068     showtabs : true,
35069     tabScrollable : false,
35070     
35071     getChildContainer : function()
35072     {
35073         return this.el.select('.tab-content', true).first();
35074     },
35075     
35076     getAutoCreate : function(){
35077         
35078         var header = {
35079             tag: 'li',
35080             cls: 'pull-left header',
35081             html: this.title,
35082             cn : []
35083         };
35084         
35085         if(this.icon){
35086             header.cn.push({
35087                 tag: 'i',
35088                 cls: 'fa ' + this.icon
35089             });
35090         }
35091         
35092         var h = {
35093             tag: 'ul',
35094             cls: 'nav nav-tabs pull-right',
35095             cn: [
35096                 header
35097             ]
35098         };
35099         
35100         if(this.tabScrollable){
35101             h = {
35102                 tag: 'div',
35103                 cls: 'tab-header',
35104                 cn: [
35105                     {
35106                         tag: 'ul',
35107                         cls: 'nav nav-tabs pull-right',
35108                         cn: [
35109                             header
35110                         ]
35111                     }
35112                 ]
35113             };
35114         }
35115         
35116         var cfg = {
35117             tag: 'div',
35118             cls: 'nav-tabs-custom',
35119             cn: [
35120                 h,
35121                 {
35122                     tag: 'div',
35123                     cls: 'tab-content no-padding',
35124                     cn: []
35125                 }
35126             ]
35127         };
35128
35129         return  cfg;
35130     },
35131     initEvents : function()
35132     {
35133         //Roo.log('add add pane handler');
35134         this.on('addpane', this.onAddPane, this);
35135     },
35136      /**
35137      * Updates the box title
35138      * @param {String} html to set the title to.
35139      */
35140     setTitle : function(value)
35141     {
35142         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
35143     },
35144     onAddPane : function(pane)
35145     {
35146         this.panes.push(pane);
35147         //Roo.log('addpane');
35148         //Roo.log(pane);
35149         // tabs are rendere left to right..
35150         if(!this.showtabs){
35151             return;
35152         }
35153         
35154         var ctr = this.el.select('.nav-tabs', true).first();
35155          
35156          
35157         var existing = ctr.select('.nav-tab',true);
35158         var qty = existing.getCount();;
35159         
35160         
35161         var tab = ctr.createChild({
35162             tag : 'li',
35163             cls : 'nav-tab' + (qty ? '' : ' active'),
35164             cn : [
35165                 {
35166                     tag : 'a',
35167                     href:'#',
35168                     html : pane.title
35169                 }
35170             ]
35171         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
35172         pane.tab = tab;
35173         
35174         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
35175         if (!qty) {
35176             pane.el.addClass('active');
35177         }
35178         
35179                 
35180     },
35181     onTabClick : function(ev,un,ob,pane)
35182     {
35183         //Roo.log('tab - prev default');
35184         ev.preventDefault();
35185         
35186         
35187         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
35188         pane.tab.addClass('active');
35189         //Roo.log(pane.title);
35190         this.getChildContainer().select('.tab-pane',true).removeClass('active');
35191         // technically we should have a deactivate event.. but maybe add later.
35192         // and it should not de-activate the selected tab...
35193         this.fireEvent('activatepane', pane);
35194         pane.el.addClass('active');
35195         pane.fireEvent('activate');
35196         
35197         
35198     },
35199     
35200     getActivePane : function()
35201     {
35202         var r = false;
35203         Roo.each(this.panes, function(p) {
35204             if(p.el.hasClass('active')){
35205                 r = p;
35206                 return false;
35207             }
35208             
35209             return;
35210         });
35211         
35212         return r;
35213     }
35214     
35215     
35216 });
35217
35218  
35219 /*
35220  * - LGPL
35221  *
35222  * Tab pane
35223  * 
35224  */
35225 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
35226 /**
35227  * @class Roo.bootstrap.TabPane
35228  * @extends Roo.bootstrap.Component
35229  * @children  Roo.bootstrap.Graph Roo.bootstrap.Column
35230  * Bootstrap TabPane class
35231  * @cfg {Boolean} active (false | true) Default false
35232  * @cfg {String} title title of panel
35233
35234  * 
35235  * @constructor
35236  * Create a new TabPane
35237  * @param {Object} config The config object
35238  */
35239
35240 Roo.bootstrap.dash.TabPane = function(config){
35241     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
35242     
35243     this.addEvents({
35244         // raw events
35245         /**
35246          * @event activate
35247          * When a pane is activated
35248          * @param {Roo.bootstrap.dash.TabPane} pane
35249          */
35250         "activate" : true
35251          
35252     });
35253 };
35254
35255 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
35256     
35257     active : false,
35258     title : '',
35259     
35260     // the tabBox that this is attached to.
35261     tab : false,
35262      
35263     getAutoCreate : function() 
35264     {
35265         var cfg = {
35266             tag: 'div',
35267             cls: 'tab-pane'
35268         };
35269         
35270         if(this.active){
35271             cfg.cls += ' active';
35272         }
35273         
35274         return cfg;
35275     },
35276     initEvents  : function()
35277     {
35278         //Roo.log('trigger add pane handler');
35279         this.parent().fireEvent('addpane', this)
35280     },
35281     
35282      /**
35283      * Updates the tab title 
35284      * @param {String} html to set the title to.
35285      */
35286     setTitle: function(str)
35287     {
35288         if (!this.tab) {
35289             return;
35290         }
35291         this.title = str;
35292         this.tab.select('a', true).first().dom.innerHTML = str;
35293         
35294     }
35295     
35296     
35297     
35298 });
35299
35300  
35301
35302
35303  /*
35304  * - LGPL
35305  *
35306  * Tooltip
35307  * 
35308  */
35309
35310 /**
35311  * @class Roo.bootstrap.Tooltip
35312  * Bootstrap Tooltip class
35313  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
35314  * to determine which dom element triggers the tooltip.
35315  * 
35316  * It needs to add support for additional attributes like tooltip-position
35317  * 
35318  * @constructor
35319  * Create a new Toolti
35320  * @param {Object} config The config object
35321  */
35322
35323 Roo.bootstrap.Tooltip = function(config){
35324     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
35325     
35326     this.alignment = Roo.bootstrap.Tooltip.alignment;
35327     
35328     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
35329         this.alignment = config.alignment;
35330     }
35331     
35332 };
35333
35334 Roo.apply(Roo.bootstrap.Tooltip, {
35335     /**
35336      * @function init initialize tooltip monitoring.
35337      * @static
35338      */
35339     currentEl : false,
35340     currentTip : false,
35341     currentRegion : false,
35342     
35343     //  init : delay?
35344     
35345     init : function()
35346     {
35347         Roo.get(document).on('mouseover', this.enter ,this);
35348         Roo.get(document).on('mouseout', this.leave, this);
35349          
35350         
35351         this.currentTip = new Roo.bootstrap.Tooltip();
35352     },
35353     
35354     enter : function(ev)
35355     {
35356         var dom = ev.getTarget();
35357         
35358         //Roo.log(['enter',dom]);
35359         var el = Roo.fly(dom);
35360         if (this.currentEl) {
35361             //Roo.log(dom);
35362             //Roo.log(this.currentEl);
35363             //Roo.log(this.currentEl.contains(dom));
35364             if (this.currentEl == el) {
35365                 return;
35366             }
35367             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
35368                 return;
35369             }
35370
35371         }
35372         
35373         if (this.currentTip.el) {
35374             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
35375         }    
35376         //Roo.log(ev);
35377         
35378         if(!el || el.dom == document){
35379             return;
35380         }
35381         
35382         var bindEl = el; 
35383         var pel = false;
35384         if (!el.attr('tooltip')) {
35385             pel = el.findParent("[tooltip]");
35386             if (pel) {
35387                 bindEl = Roo.get(pel);
35388             }
35389         }
35390         
35391        
35392         
35393         // you can not look for children, as if el is the body.. then everythign is the child..
35394         if (!pel && !el.attr('tooltip')) { //
35395             if (!el.select("[tooltip]").elements.length) {
35396                 return;
35397             }
35398             // is the mouse over this child...?
35399             bindEl = el.select("[tooltip]").first();
35400             var xy = ev.getXY();
35401             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
35402                 //Roo.log("not in region.");
35403                 return;
35404             }
35405             //Roo.log("child element over..");
35406             
35407         }
35408         this.currentEl = el;
35409         this.currentTip.bind(bindEl);
35410         this.currentRegion = Roo.lib.Region.getRegion(dom);
35411         this.currentTip.enter();
35412         
35413     },
35414     leave : function(ev)
35415     {
35416         var dom = ev.getTarget();
35417         //Roo.log(['leave',dom]);
35418         if (!this.currentEl) {
35419             return;
35420         }
35421         
35422         
35423         if (dom != this.currentEl.dom) {
35424             return;
35425         }
35426         var xy = ev.getXY();
35427         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
35428             return;
35429         }
35430         // only activate leave if mouse cursor is outside... bounding box..
35431         
35432         
35433         
35434         
35435         if (this.currentTip) {
35436             this.currentTip.leave();
35437         }
35438         //Roo.log('clear currentEl');
35439         this.currentEl = false;
35440         
35441         
35442     },
35443     alignment : {
35444         'left' : ['r-l', [-2,0], 'right'],
35445         'right' : ['l-r', [2,0], 'left'],
35446         'bottom' : ['t-b', [0,2], 'top'],
35447         'top' : [ 'b-t', [0,-2], 'bottom']
35448     }
35449     
35450 });
35451
35452
35453 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
35454     
35455     
35456     bindEl : false,
35457     
35458     delay : null, // can be { show : 300 , hide: 500}
35459     
35460     timeout : null,
35461     
35462     hoverState : null, //???
35463     
35464     placement : 'bottom', 
35465     
35466     alignment : false,
35467     
35468     getAutoCreate : function(){
35469     
35470         var cfg = {
35471            cls : 'tooltip',   
35472            role : 'tooltip',
35473            cn : [
35474                 {
35475                     cls : 'tooltip-arrow arrow'
35476                 },
35477                 {
35478                     cls : 'tooltip-inner'
35479                 }
35480            ]
35481         };
35482         
35483         return cfg;
35484     },
35485     bind : function(el)
35486     {
35487         this.bindEl = el;
35488     },
35489     
35490     initEvents : function()
35491     {
35492         this.arrowEl = this.el.select('.arrow', true).first();
35493         this.innerEl = this.el.select('.tooltip-inner', true).first();
35494     },
35495     
35496     enter : function () {
35497        
35498         if (this.timeout != null) {
35499             clearTimeout(this.timeout);
35500         }
35501         
35502         this.hoverState = 'in';
35503          //Roo.log("enter - show");
35504         if (!this.delay || !this.delay.show) {
35505             this.show();
35506             return;
35507         }
35508         var _t = this;
35509         this.timeout = setTimeout(function () {
35510             if (_t.hoverState == 'in') {
35511                 _t.show();
35512             }
35513         }, this.delay.show);
35514     },
35515     leave : function()
35516     {
35517         clearTimeout(this.timeout);
35518     
35519         this.hoverState = 'out';
35520          if (!this.delay || !this.delay.hide) {
35521             this.hide();
35522             return;
35523         }
35524        
35525         var _t = this;
35526         this.timeout = setTimeout(function () {
35527             //Roo.log("leave - timeout");
35528             
35529             if (_t.hoverState == 'out') {
35530                 _t.hide();
35531                 Roo.bootstrap.Tooltip.currentEl = false;
35532             }
35533         }, delay);
35534     },
35535     
35536     show : function (msg)
35537     {
35538         if (!this.el) {
35539             this.render(document.body);
35540         }
35541         // set content.
35542         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
35543         
35544         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
35545         
35546         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
35547         
35548         this.el.removeClass(['fade','top','bottom', 'left', 'right','in',
35549                              'bs-tooltip-top','bs-tooltip-bottom', 'bs-tooltip-left', 'bs-tooltip-right']);
35550
35551         if(this.bindEl.attr('tooltip-class')) {
35552             this.el.addClass(this.bindEl.attr('tooltip-class'));
35553         }
35554         
35555         var placement = typeof this.placement == 'function' ?
35556             this.placement.call(this, this.el, on_el) :
35557             this.placement;
35558         
35559         if(this.bindEl.attr('tooltip-placement')) {
35560             placement = this.bindEl.attr('tooltip-placement');
35561         }
35562             
35563         var autoToken = /\s?auto?\s?/i;
35564         var autoPlace = autoToken.test(placement);
35565         if (autoPlace) {
35566             placement = placement.replace(autoToken, '') || 'top';
35567         }
35568         
35569         //this.el.detach()
35570         //this.el.setXY([0,0]);
35571         this.el.show();
35572         //this.el.dom.style.display='block';
35573         
35574         //this.el.appendTo(on_el);
35575         
35576         var p = this.getPosition();
35577         var box = this.el.getBox();
35578         
35579         if (autoPlace) {
35580             // fixme..
35581         }
35582         
35583         var align = this.alignment[placement];
35584         
35585         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
35586         
35587         if(placement == 'top' || placement == 'bottom'){
35588             if(xy[0] < 0){
35589                 placement = 'right';
35590             }
35591             
35592             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
35593                 placement = 'left';
35594             }
35595             
35596             var scroll = Roo.select('body', true).first().getScroll();
35597             
35598             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
35599                 placement = 'top';
35600             }
35601             
35602             align = this.alignment[placement];
35603             
35604             this.arrowEl.setLeft((this.innerEl.getWidth()/2) - 5);
35605             
35606         }
35607         
35608         var elems = document.getElementsByTagName('div');
35609         var highest = Number.MIN_SAFE_INTEGER || -(Math.pow(2, 53) - 1);
35610         for (var i = 0; i < elems.length; i++) {
35611           var zindex = Number.parseInt(
35612                 document.defaultView.getComputedStyle(elems[i], null).getPropertyValue("z-index"),
35613                 10
35614           );
35615           if (zindex > highest) {
35616             highest = zindex;
35617           }
35618         }
35619         
35620         
35621         
35622         this.el.dom.style.zIndex = highest;
35623         
35624         this.el.alignTo(this.bindEl, align[0],align[1]);
35625         //var arrow = this.el.select('.arrow',true).first();
35626         //arrow.set(align[2], 
35627         
35628         this.el.addClass(placement);
35629         this.el.addClass("bs-tooltip-"+ placement);
35630         
35631         this.el.addClass('in fade show');
35632         
35633         this.hoverState = null;
35634         
35635         if (this.el.hasClass('fade')) {
35636             // fade it?
35637         }
35638         
35639         
35640         
35641         
35642         
35643     },
35644     hide : function()
35645     {
35646          
35647         if (!this.el) {
35648             return;
35649         }
35650         //this.el.setXY([0,0]);
35651         if(this.bindEl.attr('tooltip-class')) {
35652             this.el.removeClass(this.bindEl.attr('tooltip-class'));
35653         }
35654         this.el.removeClass(['show', 'in']);
35655         //this.el.hide();
35656         
35657     }
35658     
35659 });
35660  
35661
35662  /*
35663  * - LGPL
35664  *
35665  * Location Picker
35666  * 
35667  */
35668
35669 /**
35670  * @class Roo.bootstrap.LocationPicker
35671  * @extends Roo.bootstrap.Component
35672  * Bootstrap LocationPicker class
35673  * @cfg {Number} latitude Position when init default 0
35674  * @cfg {Number} longitude Position when init default 0
35675  * @cfg {Number} zoom default 15
35676  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
35677  * @cfg {Boolean} mapTypeControl default false
35678  * @cfg {Boolean} disableDoubleClickZoom default false
35679  * @cfg {Boolean} scrollwheel default true
35680  * @cfg {Boolean} streetViewControl default false
35681  * @cfg {Number} radius default 0
35682  * @cfg {String} locationName
35683  * @cfg {Boolean} draggable default true
35684  * @cfg {Boolean} enableAutocomplete default false
35685  * @cfg {Boolean} enableReverseGeocode default true
35686  * @cfg {String} markerTitle
35687  * 
35688  * @constructor
35689  * Create a new LocationPicker
35690  * @param {Object} config The config object
35691  */
35692
35693
35694 Roo.bootstrap.LocationPicker = function(config){
35695     
35696     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
35697     
35698     this.addEvents({
35699         /**
35700          * @event initial
35701          * Fires when the picker initialized.
35702          * @param {Roo.bootstrap.LocationPicker} this
35703          * @param {Google Location} location
35704          */
35705         initial : true,
35706         /**
35707          * @event positionchanged
35708          * Fires when the picker position changed.
35709          * @param {Roo.bootstrap.LocationPicker} this
35710          * @param {Google Location} location
35711          */
35712         positionchanged : true,
35713         /**
35714          * @event resize
35715          * Fires when the map resize.
35716          * @param {Roo.bootstrap.LocationPicker} this
35717          */
35718         resize : true,
35719         /**
35720          * @event show
35721          * Fires when the map show.
35722          * @param {Roo.bootstrap.LocationPicker} this
35723          */
35724         show : true,
35725         /**
35726          * @event hide
35727          * Fires when the map hide.
35728          * @param {Roo.bootstrap.LocationPicker} this
35729          */
35730         hide : true,
35731         /**
35732          * @event mapClick
35733          * Fires when click the map.
35734          * @param {Roo.bootstrap.LocationPicker} this
35735          * @param {Map event} e
35736          */
35737         mapClick : true,
35738         /**
35739          * @event mapRightClick
35740          * Fires when right click the map.
35741          * @param {Roo.bootstrap.LocationPicker} this
35742          * @param {Map event} e
35743          */
35744         mapRightClick : true,
35745         /**
35746          * @event markerClick
35747          * Fires when click the marker.
35748          * @param {Roo.bootstrap.LocationPicker} this
35749          * @param {Map event} e
35750          */
35751         markerClick : true,
35752         /**
35753          * @event markerRightClick
35754          * Fires when right click the marker.
35755          * @param {Roo.bootstrap.LocationPicker} this
35756          * @param {Map event} e
35757          */
35758         markerRightClick : true,
35759         /**
35760          * @event OverlayViewDraw
35761          * Fires when OverlayView Draw
35762          * @param {Roo.bootstrap.LocationPicker} this
35763          */
35764         OverlayViewDraw : true,
35765         /**
35766          * @event OverlayViewOnAdd
35767          * Fires when OverlayView Draw
35768          * @param {Roo.bootstrap.LocationPicker} this
35769          */
35770         OverlayViewOnAdd : true,
35771         /**
35772          * @event OverlayViewOnRemove
35773          * Fires when OverlayView Draw
35774          * @param {Roo.bootstrap.LocationPicker} this
35775          */
35776         OverlayViewOnRemove : true,
35777         /**
35778          * @event OverlayViewShow
35779          * Fires when OverlayView Draw
35780          * @param {Roo.bootstrap.LocationPicker} this
35781          * @param {Pixel} cpx
35782          */
35783         OverlayViewShow : true,
35784         /**
35785          * @event OverlayViewHide
35786          * Fires when OverlayView Draw
35787          * @param {Roo.bootstrap.LocationPicker} this
35788          */
35789         OverlayViewHide : true,
35790         /**
35791          * @event loadexception
35792          * Fires when load google lib failed.
35793          * @param {Roo.bootstrap.LocationPicker} this
35794          */
35795         loadexception : true
35796     });
35797         
35798 };
35799
35800 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
35801     
35802     gMapContext: false,
35803     
35804     latitude: 0,
35805     longitude: 0,
35806     zoom: 15,
35807     mapTypeId: false,
35808     mapTypeControl: false,
35809     disableDoubleClickZoom: false,
35810     scrollwheel: true,
35811     streetViewControl: false,
35812     radius: 0,
35813     locationName: '',
35814     draggable: true,
35815     enableAutocomplete: false,
35816     enableReverseGeocode: true,
35817     markerTitle: '',
35818     
35819     getAutoCreate: function()
35820     {
35821
35822         var cfg = {
35823             tag: 'div',
35824             cls: 'roo-location-picker'
35825         };
35826         
35827         return cfg
35828     },
35829     
35830     initEvents: function(ct, position)
35831     {       
35832         if(!this.el.getWidth() || this.isApplied()){
35833             return;
35834         }
35835         
35836         this.el.setVisibilityMode(Roo.Element.DISPLAY);
35837         
35838         this.initial();
35839     },
35840     
35841     initial: function()
35842     {
35843         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
35844             this.fireEvent('loadexception', this);
35845             return;
35846         }
35847         
35848         if(!this.mapTypeId){
35849             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
35850         }
35851         
35852         this.gMapContext = this.GMapContext();
35853         
35854         this.initOverlayView();
35855         
35856         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
35857         
35858         var _this = this;
35859                 
35860         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
35861             _this.setPosition(_this.gMapContext.marker.position);
35862         });
35863         
35864         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
35865             _this.fireEvent('mapClick', this, event);
35866             
35867         });
35868
35869         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
35870             _this.fireEvent('mapRightClick', this, event);
35871             
35872         });
35873         
35874         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
35875             _this.fireEvent('markerClick', this, event);
35876             
35877         });
35878
35879         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
35880             _this.fireEvent('markerRightClick', this, event);
35881             
35882         });
35883         
35884         this.setPosition(this.gMapContext.location);
35885         
35886         this.fireEvent('initial', this, this.gMapContext.location);
35887     },
35888     
35889     initOverlayView: function()
35890     {
35891         var _this = this;
35892         
35893         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
35894             
35895             draw: function()
35896             {
35897                 _this.fireEvent('OverlayViewDraw', _this);
35898             },
35899             
35900             onAdd: function()
35901             {
35902                 _this.fireEvent('OverlayViewOnAdd', _this);
35903             },
35904             
35905             onRemove: function()
35906             {
35907                 _this.fireEvent('OverlayViewOnRemove', _this);
35908             },
35909             
35910             show: function(cpx)
35911             {
35912                 _this.fireEvent('OverlayViewShow', _this, cpx);
35913             },
35914             
35915             hide: function()
35916             {
35917                 _this.fireEvent('OverlayViewHide', _this);
35918             }
35919             
35920         });
35921     },
35922     
35923     fromLatLngToContainerPixel: function(event)
35924     {
35925         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
35926     },
35927     
35928     isApplied: function() 
35929     {
35930         return this.getGmapContext() == false ? false : true;
35931     },
35932     
35933     getGmapContext: function() 
35934     {
35935         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
35936     },
35937     
35938     GMapContext: function() 
35939     {
35940         var position = new google.maps.LatLng(this.latitude, this.longitude);
35941         
35942         var _map = new google.maps.Map(this.el.dom, {
35943             center: position,
35944             zoom: this.zoom,
35945             mapTypeId: this.mapTypeId,
35946             mapTypeControl: this.mapTypeControl,
35947             disableDoubleClickZoom: this.disableDoubleClickZoom,
35948             scrollwheel: this.scrollwheel,
35949             streetViewControl: this.streetViewControl,
35950             locationName: this.locationName,
35951             draggable: this.draggable,
35952             enableAutocomplete: this.enableAutocomplete,
35953             enableReverseGeocode: this.enableReverseGeocode
35954         });
35955         
35956         var _marker = new google.maps.Marker({
35957             position: position,
35958             map: _map,
35959             title: this.markerTitle,
35960             draggable: this.draggable
35961         });
35962         
35963         return {
35964             map: _map,
35965             marker: _marker,
35966             circle: null,
35967             location: position,
35968             radius: this.radius,
35969             locationName: this.locationName,
35970             addressComponents: {
35971                 formatted_address: null,
35972                 addressLine1: null,
35973                 addressLine2: null,
35974                 streetName: null,
35975                 streetNumber: null,
35976                 city: null,
35977                 district: null,
35978                 state: null,
35979                 stateOrProvince: null
35980             },
35981             settings: this,
35982             domContainer: this.el.dom,
35983             geodecoder: new google.maps.Geocoder()
35984         };
35985     },
35986     
35987     drawCircle: function(center, radius, options) 
35988     {
35989         if (this.gMapContext.circle != null) {
35990             this.gMapContext.circle.setMap(null);
35991         }
35992         if (radius > 0) {
35993             radius *= 1;
35994             options = Roo.apply({}, options, {
35995                 strokeColor: "#0000FF",
35996                 strokeOpacity: .35,
35997                 strokeWeight: 2,
35998                 fillColor: "#0000FF",
35999                 fillOpacity: .2
36000             });
36001             
36002             options.map = this.gMapContext.map;
36003             options.radius = radius;
36004             options.center = center;
36005             this.gMapContext.circle = new google.maps.Circle(options);
36006             return this.gMapContext.circle;
36007         }
36008         
36009         return null;
36010     },
36011     
36012     setPosition: function(location) 
36013     {
36014         this.gMapContext.location = location;
36015         this.gMapContext.marker.setPosition(location);
36016         this.gMapContext.map.panTo(location);
36017         this.drawCircle(location, this.gMapContext.radius, {});
36018         
36019         var _this = this;
36020         
36021         if (this.gMapContext.settings.enableReverseGeocode) {
36022             this.gMapContext.geodecoder.geocode({
36023                 latLng: this.gMapContext.location
36024             }, function(results, status) {
36025                 
36026                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
36027                     _this.gMapContext.locationName = results[0].formatted_address;
36028                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
36029                     
36030                     _this.fireEvent('positionchanged', this, location);
36031                 }
36032             });
36033             
36034             return;
36035         }
36036         
36037         this.fireEvent('positionchanged', this, location);
36038     },
36039     
36040     resize: function()
36041     {
36042         google.maps.event.trigger(this.gMapContext.map, "resize");
36043         
36044         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
36045         
36046         this.fireEvent('resize', this);
36047     },
36048     
36049     setPositionByLatLng: function(latitude, longitude)
36050     {
36051         this.setPosition(new google.maps.LatLng(latitude, longitude));
36052     },
36053     
36054     getCurrentPosition: function() 
36055     {
36056         return {
36057             latitude: this.gMapContext.location.lat(),
36058             longitude: this.gMapContext.location.lng()
36059         };
36060     },
36061     
36062     getAddressName: function() 
36063     {
36064         return this.gMapContext.locationName;
36065     },
36066     
36067     getAddressComponents: function() 
36068     {
36069         return this.gMapContext.addressComponents;
36070     },
36071     
36072     address_component_from_google_geocode: function(address_components) 
36073     {
36074         var result = {};
36075         
36076         for (var i = 0; i < address_components.length; i++) {
36077             var component = address_components[i];
36078             if (component.types.indexOf("postal_code") >= 0) {
36079                 result.postalCode = component.short_name;
36080             } else if (component.types.indexOf("street_number") >= 0) {
36081                 result.streetNumber = component.short_name;
36082             } else if (component.types.indexOf("route") >= 0) {
36083                 result.streetName = component.short_name;
36084             } else if (component.types.indexOf("neighborhood") >= 0) {
36085                 result.city = component.short_name;
36086             } else if (component.types.indexOf("locality") >= 0) {
36087                 result.city = component.short_name;
36088             } else if (component.types.indexOf("sublocality") >= 0) {
36089                 result.district = component.short_name;
36090             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
36091                 result.stateOrProvince = component.short_name;
36092             } else if (component.types.indexOf("country") >= 0) {
36093                 result.country = component.short_name;
36094             }
36095         }
36096         
36097         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
36098         result.addressLine2 = "";
36099         return result;
36100     },
36101     
36102     setZoomLevel: function(zoom)
36103     {
36104         this.gMapContext.map.setZoom(zoom);
36105     },
36106     
36107     show: function()
36108     {
36109         if(!this.el){
36110             return;
36111         }
36112         
36113         this.el.show();
36114         
36115         this.resize();
36116         
36117         this.fireEvent('show', this);
36118     },
36119     
36120     hide: function()
36121     {
36122         if(!this.el){
36123             return;
36124         }
36125         
36126         this.el.hide();
36127         
36128         this.fireEvent('hide', this);
36129     }
36130     
36131 });
36132
36133 Roo.apply(Roo.bootstrap.LocationPicker, {
36134     
36135     OverlayView : function(map, options)
36136     {
36137         options = options || {};
36138         
36139         this.setMap(map);
36140     }
36141     
36142     
36143 });/**
36144  * @class Roo.bootstrap.Alert
36145  * @extends Roo.bootstrap.Component
36146  * Bootstrap Alert class - shows an alert area box
36147  * eg
36148  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
36149   Enter a valid email address
36150 </div>
36151  * @licence LGPL
36152  * @cfg {String} title The title of alert
36153  * @cfg {String} html The content of alert
36154  * @cfg {String} weight (success|info|warning|danger) Weight of the message
36155  * @cfg {String} fa font-awesomeicon
36156  * @cfg {Number} seconds default:-1 Number of seconds until it disapears (-1 means never.)
36157  * @cfg {Boolean} close true to show a x closer
36158  * 
36159  * 
36160  * @constructor
36161  * Create a new alert
36162  * @param {Object} config The config object
36163  */
36164
36165
36166 Roo.bootstrap.Alert = function(config){
36167     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
36168     
36169 };
36170
36171 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
36172     
36173     title: '',
36174     html: '',
36175     weight: false,
36176     fa: false,
36177     faicon: false, // BC
36178     close : false,
36179     
36180     
36181     getAutoCreate : function()
36182     {
36183         
36184         var cfg = {
36185             tag : 'div',
36186             cls : 'alert',
36187             cn : [
36188                 {
36189                     tag: 'button',
36190                     type :  "button",
36191                     cls: "close",
36192                     html : '×',
36193                     style : this.close ? '' : 'display:none'
36194                 },
36195                 {
36196                     tag : 'i',
36197                     cls : 'roo-alert-icon'
36198                     
36199                 },
36200                 {
36201                     tag : 'b',
36202                     cls : 'roo-alert-title',
36203                     html : this.title
36204                 },
36205                 {
36206                     tag : 'span',
36207                     cls : 'roo-alert-text',
36208                     html : this.html
36209                 }
36210             ]
36211         };
36212         
36213         if(this.faicon){
36214             cfg.cn[0].cls += ' fa ' + this.faicon;
36215         }
36216         if(this.fa){
36217             cfg.cn[0].cls += ' fa ' + this.fa;
36218         }
36219         
36220         if(this.weight){
36221             cfg.cls += ' alert-' + this.weight;
36222         }
36223         
36224         return cfg;
36225     },
36226     
36227     initEvents: function() 
36228     {
36229         this.el.setVisibilityMode(Roo.Element.DISPLAY);
36230         this.titleEl =  this.el.select('.roo-alert-title',true).first();
36231         this.iconEl = this.el.select('.roo-alert-icon',true).first();
36232         this.htmlEl = this.el.select('.roo-alert-text',true).first();
36233         if (this.seconds > 0) {
36234             this.hide.defer(this.seconds, this);
36235         }
36236     },
36237     /**
36238      * Set the Title Message HTML
36239      * @param {String} html
36240      */
36241     setTitle : function(str)
36242     {
36243         this.titleEl.dom.innerHTML = str;
36244     },
36245      
36246      /**
36247      * Set the Body Message HTML
36248      * @param {String} html
36249      */
36250     setHtml : function(str)
36251     {
36252         this.htmlEl.dom.innerHTML = str;
36253     },
36254     /**
36255      * Set the Weight of the alert
36256      * @param {String} (success|info|warning|danger) weight
36257      */
36258     
36259     setWeight : function(weight)
36260     {
36261         if(this.weight){
36262             this.el.removeClass('alert-' + this.weight);
36263         }
36264         
36265         this.weight = weight;
36266         
36267         this.el.addClass('alert-' + this.weight);
36268     },
36269       /**
36270      * Set the Icon of the alert
36271      * @param {String} see fontawsome names (name without the 'fa-' bit)
36272      */
36273     setIcon : function(icon)
36274     {
36275         if(this.faicon){
36276             this.alertEl.removeClass(['fa', 'fa-' + this.faicon]);
36277         }
36278         
36279         this.faicon = icon;
36280         
36281         this.alertEl.addClass(['fa', 'fa-' + this.faicon]);
36282     },
36283     /**
36284      * Hide the Alert
36285      */
36286     hide: function() 
36287     {
36288         this.el.hide();   
36289     },
36290     /**
36291      * Show the Alert
36292      */
36293     show: function() 
36294     {  
36295         this.el.show();   
36296     }
36297     
36298 });
36299
36300  
36301 /*
36302 * Licence: LGPL
36303 */
36304
36305 /**
36306  * @class Roo.bootstrap.UploadCropbox
36307  * @extends Roo.bootstrap.Component
36308  * Bootstrap UploadCropbox class
36309  * @cfg {String} emptyText show when image has been loaded
36310  * @cfg {String} rotateNotify show when image too small to rotate
36311  * @cfg {Number} errorTimeout default 3000
36312  * @cfg {Number} minWidth default 300
36313  * @cfg {Number} minHeight default 300
36314  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
36315  * @cfg {Boolean} isDocument (true|false) default false
36316  * @cfg {String} url action url
36317  * @cfg {String} paramName default 'imageUpload'
36318  * @cfg {String} method default POST
36319  * @cfg {Boolean} loadMask (true|false) default true
36320  * @cfg {Boolean} loadingText default 'Loading...'
36321  * 
36322  * @constructor
36323  * Create a new UploadCropbox
36324  * @param {Object} config The config object
36325  */
36326
36327 Roo.bootstrap.UploadCropbox = function(config){
36328     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
36329     
36330     this.addEvents({
36331         /**
36332          * @event beforeselectfile
36333          * Fire before select file
36334          * @param {Roo.bootstrap.UploadCropbox} this
36335          */
36336         "beforeselectfile" : true,
36337         /**
36338          * @event initial
36339          * Fire after initEvent
36340          * @param {Roo.bootstrap.UploadCropbox} this
36341          */
36342         "initial" : true,
36343         /**
36344          * @event crop
36345          * Fire after initEvent
36346          * @param {Roo.bootstrap.UploadCropbox} this
36347          * @param {String} data
36348          */
36349         "crop" : true,
36350         /**
36351          * @event prepare
36352          * Fire when preparing the file data
36353          * @param {Roo.bootstrap.UploadCropbox} this
36354          * @param {Object} file
36355          */
36356         "prepare" : true,
36357         /**
36358          * @event exception
36359          * Fire when get exception
36360          * @param {Roo.bootstrap.UploadCropbox} this
36361          * @param {XMLHttpRequest} xhr
36362          */
36363         "exception" : true,
36364         /**
36365          * @event beforeloadcanvas
36366          * Fire before load the canvas
36367          * @param {Roo.bootstrap.UploadCropbox} this
36368          * @param {String} src
36369          */
36370         "beforeloadcanvas" : true,
36371         /**
36372          * @event trash
36373          * Fire when trash image
36374          * @param {Roo.bootstrap.UploadCropbox} this
36375          */
36376         "trash" : true,
36377         /**
36378          * @event download
36379          * Fire when download the image
36380          * @param {Roo.bootstrap.UploadCropbox} this
36381          */
36382         "download" : true,
36383         /**
36384          * @event footerbuttonclick
36385          * Fire when footerbuttonclick
36386          * @param {Roo.bootstrap.UploadCropbox} this
36387          * @param {String} type
36388          */
36389         "footerbuttonclick" : true,
36390         /**
36391          * @event resize
36392          * Fire when resize
36393          * @param {Roo.bootstrap.UploadCropbox} this
36394          */
36395         "resize" : true,
36396         /**
36397          * @event rotate
36398          * Fire when rotate the image
36399          * @param {Roo.bootstrap.UploadCropbox} this
36400          * @param {String} pos
36401          */
36402         "rotate" : true,
36403         /**
36404          * @event inspect
36405          * Fire when inspect the file
36406          * @param {Roo.bootstrap.UploadCropbox} this
36407          * @param {Object} file
36408          */
36409         "inspect" : true,
36410         /**
36411          * @event upload
36412          * Fire when xhr upload the file
36413          * @param {Roo.bootstrap.UploadCropbox} this
36414          * @param {Object} data
36415          */
36416         "upload" : true,
36417         /**
36418          * @event arrange
36419          * Fire when arrange the file data
36420          * @param {Roo.bootstrap.UploadCropbox} this
36421          * @param {Object} formData
36422          */
36423         "arrange" : true
36424     });
36425     
36426     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
36427 };
36428
36429 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
36430     
36431     emptyText : 'Click to upload image',
36432     rotateNotify : 'Image is too small to rotate',
36433     errorTimeout : 3000,
36434     scale : 0,
36435     baseScale : 1,
36436     rotate : 0,
36437     dragable : false,
36438     pinching : false,
36439     mouseX : 0,
36440     mouseY : 0,
36441     cropData : false,
36442     minWidth : 300,
36443     minHeight : 300,
36444     file : false,
36445     exif : {},
36446     baseRotate : 1,
36447     cropType : 'image/jpeg',
36448     buttons : false,
36449     canvasLoaded : false,
36450     isDocument : false,
36451     method : 'POST',
36452     paramName : 'imageUpload',
36453     loadMask : true,
36454     loadingText : 'Loading...',
36455     maskEl : false,
36456     
36457     getAutoCreate : function()
36458     {
36459         var cfg = {
36460             tag : 'div',
36461             cls : 'roo-upload-cropbox',
36462             cn : [
36463                 {
36464                     tag : 'input',
36465                     cls : 'roo-upload-cropbox-selector',
36466                     type : 'file'
36467                 },
36468                 {
36469                     tag : 'div',
36470                     cls : 'roo-upload-cropbox-body',
36471                     style : 'cursor:pointer',
36472                     cn : [
36473                         {
36474                             tag : 'div',
36475                             cls : 'roo-upload-cropbox-preview'
36476                         },
36477                         {
36478                             tag : 'div',
36479                             cls : 'roo-upload-cropbox-thumb'
36480                         },
36481                         {
36482                             tag : 'div',
36483                             cls : 'roo-upload-cropbox-empty-notify',
36484                             html : this.emptyText
36485                         },
36486                         {
36487                             tag : 'div',
36488                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
36489                             html : this.rotateNotify
36490                         }
36491                     ]
36492                 },
36493                 {
36494                     tag : 'div',
36495                     cls : 'roo-upload-cropbox-footer',
36496                     cn : {
36497                         tag : 'div',
36498                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
36499                         cn : []
36500                     }
36501                 }
36502             ]
36503         };
36504         
36505         return cfg;
36506     },
36507     
36508     onRender : function(ct, position)
36509     {
36510         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
36511         
36512         if (this.buttons.length) {
36513             
36514             Roo.each(this.buttons, function(bb) {
36515                 
36516                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
36517                 
36518                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
36519                 
36520             }, this);
36521         }
36522         
36523         if(this.loadMask){
36524             this.maskEl = this.el;
36525         }
36526     },
36527     
36528     initEvents : function()
36529     {
36530         this.urlAPI = (window.createObjectURL && window) || 
36531                                 (window.URL && URL.revokeObjectURL && URL) || 
36532                                 (window.webkitURL && webkitURL);
36533                         
36534         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
36535         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
36536         
36537         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
36538         this.selectorEl.hide();
36539         
36540         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
36541         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
36542         
36543         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
36544         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
36545         this.thumbEl.hide();
36546         
36547         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
36548         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
36549         
36550         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
36551         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
36552         this.errorEl.hide();
36553         
36554         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
36555         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
36556         this.footerEl.hide();
36557         
36558         this.setThumbBoxSize();
36559         
36560         this.bind();
36561         
36562         this.resize();
36563         
36564         this.fireEvent('initial', this);
36565     },
36566
36567     bind : function()
36568     {
36569         var _this = this;
36570         
36571         window.addEventListener("resize", function() { _this.resize(); } );
36572         
36573         this.bodyEl.on('click', this.beforeSelectFile, this);
36574         
36575         if(Roo.isTouch){
36576             this.bodyEl.on('touchstart', this.onTouchStart, this);
36577             this.bodyEl.on('touchmove', this.onTouchMove, this);
36578             this.bodyEl.on('touchend', this.onTouchEnd, this);
36579         }
36580         
36581         if(!Roo.isTouch){
36582             this.bodyEl.on('mousedown', this.onMouseDown, this);
36583             this.bodyEl.on('mousemove', this.onMouseMove, this);
36584             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
36585             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
36586             Roo.get(document).on('mouseup', this.onMouseUp, this);
36587         }
36588         
36589         this.selectorEl.on('change', this.onFileSelected, this);
36590     },
36591     
36592     reset : function()
36593     {    
36594         this.scale = 0;
36595         this.baseScale = 1;
36596         this.rotate = 0;
36597         this.baseRotate = 1;
36598         this.dragable = false;
36599         this.pinching = false;
36600         this.mouseX = 0;
36601         this.mouseY = 0;
36602         this.cropData = false;
36603         this.notifyEl.dom.innerHTML = this.emptyText;
36604         
36605         this.selectorEl.dom.value = '';
36606         
36607     },
36608     
36609     resize : function()
36610     {
36611         if(this.fireEvent('resize', this) != false){
36612             this.setThumbBoxPosition();
36613             this.setCanvasPosition();
36614         }
36615     },
36616     
36617     onFooterButtonClick : function(e, el, o, type)
36618     {
36619         switch (type) {
36620             case 'rotate-left' :
36621                 this.onRotateLeft(e);
36622                 break;
36623             case 'rotate-right' :
36624                 this.onRotateRight(e);
36625                 break;
36626             case 'picture' :
36627                 this.beforeSelectFile(e);
36628                 break;
36629             case 'trash' :
36630                 this.trash(e);
36631                 break;
36632             case 'crop' :
36633                 this.crop(e);
36634                 break;
36635             case 'download' :
36636                 this.download(e);
36637                 break;
36638             default :
36639                 break;
36640         }
36641         
36642         this.fireEvent('footerbuttonclick', this, type);
36643     },
36644     
36645     beforeSelectFile : function(e)
36646     {
36647         e.preventDefault();
36648         
36649         if(this.fireEvent('beforeselectfile', this) != false){
36650             this.selectorEl.dom.click();
36651         }
36652     },
36653     
36654     onFileSelected : function(e)
36655     {
36656         e.preventDefault();
36657         
36658         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
36659             return;
36660         }
36661         
36662         var file = this.selectorEl.dom.files[0];
36663         
36664         if(this.fireEvent('inspect', this, file) != false){
36665             this.prepare(file);
36666         }
36667         
36668     },
36669     
36670     trash : function(e)
36671     {
36672         this.fireEvent('trash', this);
36673     },
36674     
36675     download : function(e)
36676     {
36677         this.fireEvent('download', this);
36678     },
36679     
36680     loadCanvas : function(src)
36681     {   
36682         if(this.fireEvent('beforeloadcanvas', this, src) != false){
36683             
36684             this.reset();
36685             
36686             this.imageEl = document.createElement('img');
36687             
36688             var _this = this;
36689             
36690             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
36691             
36692             this.imageEl.src = src;
36693         }
36694     },
36695     
36696     onLoadCanvas : function()
36697     {   
36698         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
36699         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
36700         
36701         this.bodyEl.un('click', this.beforeSelectFile, this);
36702         
36703         this.notifyEl.hide();
36704         this.thumbEl.show();
36705         this.footerEl.show();
36706         
36707         this.baseRotateLevel();
36708         
36709         if(this.isDocument){
36710             this.setThumbBoxSize();
36711         }
36712         
36713         this.setThumbBoxPosition();
36714         
36715         this.baseScaleLevel();
36716         
36717         this.draw();
36718         
36719         this.resize();
36720         
36721         this.canvasLoaded = true;
36722         
36723         if(this.loadMask){
36724             this.maskEl.unmask();
36725         }
36726         
36727     },
36728     
36729     setCanvasPosition : function()
36730     {   
36731         if(!this.canvasEl){
36732             return;
36733         }
36734         
36735         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
36736         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
36737         
36738         this.previewEl.setLeft(pw);
36739         this.previewEl.setTop(ph);
36740         
36741     },
36742     
36743     onMouseDown : function(e)
36744     {   
36745         e.stopEvent();
36746         
36747         this.dragable = true;
36748         this.pinching = false;
36749         
36750         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
36751             this.dragable = false;
36752             return;
36753         }
36754         
36755         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
36756         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
36757         
36758     },
36759     
36760     onMouseMove : function(e)
36761     {   
36762         e.stopEvent();
36763         
36764         if(!this.canvasLoaded){
36765             return;
36766         }
36767         
36768         if (!this.dragable){
36769             return;
36770         }
36771         
36772         var minX = Math.ceil(this.thumbEl.getLeft(true));
36773         var minY = Math.ceil(this.thumbEl.getTop(true));
36774         
36775         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
36776         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
36777         
36778         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
36779         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
36780         
36781         x = x - this.mouseX;
36782         y = y - this.mouseY;
36783         
36784         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
36785         var bgY = Math.ceil(y + this.previewEl.getTop(true));
36786         
36787         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
36788         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
36789         
36790         this.previewEl.setLeft(bgX);
36791         this.previewEl.setTop(bgY);
36792         
36793         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
36794         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
36795     },
36796     
36797     onMouseUp : function(e)
36798     {   
36799         e.stopEvent();
36800         
36801         this.dragable = false;
36802     },
36803     
36804     onMouseWheel : function(e)
36805     {   
36806         e.stopEvent();
36807         
36808         this.startScale = this.scale;
36809         
36810         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
36811         
36812         if(!this.zoomable()){
36813             this.scale = this.startScale;
36814             return;
36815         }
36816         
36817         this.draw();
36818         
36819         return;
36820     },
36821     
36822     zoomable : function()
36823     {
36824         var minScale = this.thumbEl.getWidth() / this.minWidth;
36825         
36826         if(this.minWidth < this.minHeight){
36827             minScale = this.thumbEl.getHeight() / this.minHeight;
36828         }
36829         
36830         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
36831         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
36832         
36833         if(
36834                 this.isDocument &&
36835                 (this.rotate == 0 || this.rotate == 180) && 
36836                 (
36837                     width > this.imageEl.OriginWidth || 
36838                     height > this.imageEl.OriginHeight ||
36839                     (width < this.minWidth && height < this.minHeight)
36840                 )
36841         ){
36842             return false;
36843         }
36844         
36845         if(
36846                 this.isDocument &&
36847                 (this.rotate == 90 || this.rotate == 270) && 
36848                 (
36849                     width > this.imageEl.OriginWidth || 
36850                     height > this.imageEl.OriginHeight ||
36851                     (width < this.minHeight && height < this.minWidth)
36852                 )
36853         ){
36854             return false;
36855         }
36856         
36857         if(
36858                 !this.isDocument &&
36859                 (this.rotate == 0 || this.rotate == 180) && 
36860                 (
36861                     width < this.minWidth || 
36862                     width > this.imageEl.OriginWidth || 
36863                     height < this.minHeight || 
36864                     height > this.imageEl.OriginHeight
36865                 )
36866         ){
36867             return false;
36868         }
36869         
36870         if(
36871                 !this.isDocument &&
36872                 (this.rotate == 90 || this.rotate == 270) && 
36873                 (
36874                     width < this.minHeight || 
36875                     width > this.imageEl.OriginWidth || 
36876                     height < this.minWidth || 
36877                     height > this.imageEl.OriginHeight
36878                 )
36879         ){
36880             return false;
36881         }
36882         
36883         return true;
36884         
36885     },
36886     
36887     onRotateLeft : function(e)
36888     {   
36889         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
36890             
36891             var minScale = this.thumbEl.getWidth() / this.minWidth;
36892             
36893             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
36894             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
36895             
36896             this.startScale = this.scale;
36897             
36898             while (this.getScaleLevel() < minScale){
36899             
36900                 this.scale = this.scale + 1;
36901                 
36902                 if(!this.zoomable()){
36903                     break;
36904                 }
36905                 
36906                 if(
36907                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
36908                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
36909                 ){
36910                     continue;
36911                 }
36912                 
36913                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
36914
36915                 this.draw();
36916                 
36917                 return;
36918             }
36919             
36920             this.scale = this.startScale;
36921             
36922             this.onRotateFail();
36923             
36924             return false;
36925         }
36926         
36927         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
36928
36929         if(this.isDocument){
36930             this.setThumbBoxSize();
36931             this.setThumbBoxPosition();
36932             this.setCanvasPosition();
36933         }
36934         
36935         this.draw();
36936         
36937         this.fireEvent('rotate', this, 'left');
36938         
36939     },
36940     
36941     onRotateRight : function(e)
36942     {
36943         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
36944             
36945             var minScale = this.thumbEl.getWidth() / this.minWidth;
36946         
36947             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
36948             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
36949             
36950             this.startScale = this.scale;
36951             
36952             while (this.getScaleLevel() < minScale){
36953             
36954                 this.scale = this.scale + 1;
36955                 
36956                 if(!this.zoomable()){
36957                     break;
36958                 }
36959                 
36960                 if(
36961                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
36962                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
36963                 ){
36964                     continue;
36965                 }
36966                 
36967                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
36968
36969                 this.draw();
36970                 
36971                 return;
36972             }
36973             
36974             this.scale = this.startScale;
36975             
36976             this.onRotateFail();
36977             
36978             return false;
36979         }
36980         
36981         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
36982
36983         if(this.isDocument){
36984             this.setThumbBoxSize();
36985             this.setThumbBoxPosition();
36986             this.setCanvasPosition();
36987         }
36988         
36989         this.draw();
36990         
36991         this.fireEvent('rotate', this, 'right');
36992     },
36993     
36994     onRotateFail : function()
36995     {
36996         this.errorEl.show(true);
36997         
36998         var _this = this;
36999         
37000         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
37001     },
37002     
37003     draw : function()
37004     {
37005         this.previewEl.dom.innerHTML = '';
37006         
37007         var canvasEl = document.createElement("canvas");
37008         
37009         var contextEl = canvasEl.getContext("2d");
37010         
37011         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
37012         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
37013         var center = this.imageEl.OriginWidth / 2;
37014         
37015         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
37016             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
37017             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
37018             center = this.imageEl.OriginHeight / 2;
37019         }
37020         
37021         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
37022         
37023         contextEl.translate(center, center);
37024         contextEl.rotate(this.rotate * Math.PI / 180);
37025
37026         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
37027         
37028         this.canvasEl = document.createElement("canvas");
37029         
37030         this.contextEl = this.canvasEl.getContext("2d");
37031         
37032         switch (this.rotate) {
37033             case 0 :
37034                 
37035                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
37036                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
37037                 
37038                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
37039                 
37040                 break;
37041             case 90 : 
37042                 
37043                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
37044                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
37045                 
37046                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
37047                     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);
37048                     break;
37049                 }
37050                 
37051                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
37052                 
37053                 break;
37054             case 180 :
37055                 
37056                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
37057                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
37058                 
37059                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
37060                     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);
37061                     break;
37062                 }
37063                 
37064                 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);
37065                 
37066                 break;
37067             case 270 :
37068                 
37069                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
37070                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
37071         
37072                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
37073                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
37074                     break;
37075                 }
37076                 
37077                 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);
37078                 
37079                 break;
37080             default : 
37081                 break;
37082         }
37083         
37084         this.previewEl.appendChild(this.canvasEl);
37085         
37086         this.setCanvasPosition();
37087     },
37088     
37089     crop : function()
37090     {
37091         if(!this.canvasLoaded){
37092             return;
37093         }
37094         
37095         var imageCanvas = document.createElement("canvas");
37096         
37097         var imageContext = imageCanvas.getContext("2d");
37098         
37099         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
37100         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
37101         
37102         var center = imageCanvas.width / 2;
37103         
37104         imageContext.translate(center, center);
37105         
37106         imageContext.rotate(this.rotate * Math.PI / 180);
37107         
37108         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
37109         
37110         var canvas = document.createElement("canvas");
37111         
37112         var context = canvas.getContext("2d");
37113                 
37114         canvas.width = this.minWidth;
37115         canvas.height = this.minHeight;
37116
37117         switch (this.rotate) {
37118             case 0 :
37119                 
37120                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
37121                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
37122                 
37123                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
37124                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
37125                 
37126                 var targetWidth = this.minWidth - 2 * x;
37127                 var targetHeight = this.minHeight - 2 * y;
37128                 
37129                 var scale = 1;
37130                 
37131                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
37132                     scale = targetWidth / width;
37133                 }
37134                 
37135                 if(x > 0 && y == 0){
37136                     scale = targetHeight / height;
37137                 }
37138                 
37139                 if(x > 0 && y > 0){
37140                     scale = targetWidth / width;
37141                     
37142                     if(width < height){
37143                         scale = targetHeight / height;
37144                     }
37145                 }
37146                 
37147                 context.scale(scale, scale);
37148                 
37149                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
37150                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
37151
37152                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
37153                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
37154
37155                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
37156                 
37157                 break;
37158             case 90 : 
37159                 
37160                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
37161                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
37162                 
37163                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
37164                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
37165                 
37166                 var targetWidth = this.minWidth - 2 * x;
37167                 var targetHeight = this.minHeight - 2 * y;
37168                 
37169                 var scale = 1;
37170                 
37171                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
37172                     scale = targetWidth / width;
37173                 }
37174                 
37175                 if(x > 0 && y == 0){
37176                     scale = targetHeight / height;
37177                 }
37178                 
37179                 if(x > 0 && y > 0){
37180                     scale = targetWidth / width;
37181                     
37182                     if(width < height){
37183                         scale = targetHeight / height;
37184                     }
37185                 }
37186                 
37187                 context.scale(scale, scale);
37188                 
37189                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
37190                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
37191
37192                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
37193                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
37194                 
37195                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
37196                 
37197                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
37198                 
37199                 break;
37200             case 180 :
37201                 
37202                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
37203                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
37204                 
37205                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
37206                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
37207                 
37208                 var targetWidth = this.minWidth - 2 * x;
37209                 var targetHeight = this.minHeight - 2 * y;
37210                 
37211                 var scale = 1;
37212                 
37213                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
37214                     scale = targetWidth / width;
37215                 }
37216                 
37217                 if(x > 0 && y == 0){
37218                     scale = targetHeight / height;
37219                 }
37220                 
37221                 if(x > 0 && y > 0){
37222                     scale = targetWidth / width;
37223                     
37224                     if(width < height){
37225                         scale = targetHeight / height;
37226                     }
37227                 }
37228                 
37229                 context.scale(scale, scale);
37230                 
37231                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
37232                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
37233
37234                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
37235                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
37236
37237                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
37238                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
37239                 
37240                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
37241                 
37242                 break;
37243             case 270 :
37244                 
37245                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
37246                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
37247                 
37248                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
37249                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
37250                 
37251                 var targetWidth = this.minWidth - 2 * x;
37252                 var targetHeight = this.minHeight - 2 * y;
37253                 
37254                 var scale = 1;
37255                 
37256                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
37257                     scale = targetWidth / width;
37258                 }
37259                 
37260                 if(x > 0 && y == 0){
37261                     scale = targetHeight / height;
37262                 }
37263                 
37264                 if(x > 0 && y > 0){
37265                     scale = targetWidth / width;
37266                     
37267                     if(width < height){
37268                         scale = targetHeight / height;
37269                     }
37270                 }
37271                 
37272                 context.scale(scale, scale);
37273                 
37274                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
37275                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
37276
37277                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
37278                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
37279                 
37280                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
37281                 
37282                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
37283                 
37284                 break;
37285             default : 
37286                 break;
37287         }
37288         
37289         this.cropData = canvas.toDataURL(this.cropType);
37290         
37291         if(this.fireEvent('crop', this, this.cropData) !== false){
37292             this.process(this.file, this.cropData);
37293         }
37294         
37295         return;
37296         
37297     },
37298     
37299     setThumbBoxSize : function()
37300     {
37301         var width, height;
37302         
37303         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
37304             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
37305             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
37306             
37307             this.minWidth = width;
37308             this.minHeight = height;
37309             
37310             if(this.rotate == 90 || this.rotate == 270){
37311                 this.minWidth = height;
37312                 this.minHeight = width;
37313             }
37314         }
37315         
37316         height = 300;
37317         width = Math.ceil(this.minWidth * height / this.minHeight);
37318         
37319         if(this.minWidth > this.minHeight){
37320             width = 300;
37321             height = Math.ceil(this.minHeight * width / this.minWidth);
37322         }
37323         
37324         this.thumbEl.setStyle({
37325             width : width + 'px',
37326             height : height + 'px'
37327         });
37328
37329         return;
37330             
37331     },
37332     
37333     setThumbBoxPosition : function()
37334     {
37335         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
37336         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
37337         
37338         this.thumbEl.setLeft(x);
37339         this.thumbEl.setTop(y);
37340         
37341     },
37342     
37343     baseRotateLevel : function()
37344     {
37345         this.baseRotate = 1;
37346         
37347         if(
37348                 typeof(this.exif) != 'undefined' &&
37349                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
37350                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
37351         ){
37352             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
37353         }
37354         
37355         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
37356         
37357     },
37358     
37359     baseScaleLevel : function()
37360     {
37361         var width, height;
37362         
37363         if(this.isDocument){
37364             
37365             if(this.baseRotate == 6 || this.baseRotate == 8){
37366             
37367                 height = this.thumbEl.getHeight();
37368                 this.baseScale = height / this.imageEl.OriginWidth;
37369
37370                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
37371                     width = this.thumbEl.getWidth();
37372                     this.baseScale = width / this.imageEl.OriginHeight;
37373                 }
37374
37375                 return;
37376             }
37377
37378             height = this.thumbEl.getHeight();
37379             this.baseScale = height / this.imageEl.OriginHeight;
37380
37381             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
37382                 width = this.thumbEl.getWidth();
37383                 this.baseScale = width / this.imageEl.OriginWidth;
37384             }
37385
37386             return;
37387         }
37388         
37389         if(this.baseRotate == 6 || this.baseRotate == 8){
37390             
37391             width = this.thumbEl.getHeight();
37392             this.baseScale = width / this.imageEl.OriginHeight;
37393             
37394             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
37395                 height = this.thumbEl.getWidth();
37396                 this.baseScale = height / this.imageEl.OriginHeight;
37397             }
37398             
37399             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
37400                 height = this.thumbEl.getWidth();
37401                 this.baseScale = height / this.imageEl.OriginHeight;
37402                 
37403                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
37404                     width = this.thumbEl.getHeight();
37405                     this.baseScale = width / this.imageEl.OriginWidth;
37406                 }
37407             }
37408             
37409             return;
37410         }
37411         
37412         width = this.thumbEl.getWidth();
37413         this.baseScale = width / this.imageEl.OriginWidth;
37414         
37415         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
37416             height = this.thumbEl.getHeight();
37417             this.baseScale = height / this.imageEl.OriginHeight;
37418         }
37419         
37420         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
37421             
37422             height = this.thumbEl.getHeight();
37423             this.baseScale = height / this.imageEl.OriginHeight;
37424             
37425             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
37426                 width = this.thumbEl.getWidth();
37427                 this.baseScale = width / this.imageEl.OriginWidth;
37428             }
37429             
37430         }
37431         
37432         return;
37433     },
37434     
37435     getScaleLevel : function()
37436     {
37437         return this.baseScale * Math.pow(1.1, this.scale);
37438     },
37439     
37440     onTouchStart : function(e)
37441     {
37442         if(!this.canvasLoaded){
37443             this.beforeSelectFile(e);
37444             return;
37445         }
37446         
37447         var touches = e.browserEvent.touches;
37448         
37449         if(!touches){
37450             return;
37451         }
37452         
37453         if(touches.length == 1){
37454             this.onMouseDown(e);
37455             return;
37456         }
37457         
37458         if(touches.length != 2){
37459             return;
37460         }
37461         
37462         var coords = [];
37463         
37464         for(var i = 0, finger; finger = touches[i]; i++){
37465             coords.push(finger.pageX, finger.pageY);
37466         }
37467         
37468         var x = Math.pow(coords[0] - coords[2], 2);
37469         var y = Math.pow(coords[1] - coords[3], 2);
37470         
37471         this.startDistance = Math.sqrt(x + y);
37472         
37473         this.startScale = this.scale;
37474         
37475         this.pinching = true;
37476         this.dragable = false;
37477         
37478     },
37479     
37480     onTouchMove : function(e)
37481     {
37482         if(!this.pinching && !this.dragable){
37483             return;
37484         }
37485         
37486         var touches = e.browserEvent.touches;
37487         
37488         if(!touches){
37489             return;
37490         }
37491         
37492         if(this.dragable){
37493             this.onMouseMove(e);
37494             return;
37495         }
37496         
37497         var coords = [];
37498         
37499         for(var i = 0, finger; finger = touches[i]; i++){
37500             coords.push(finger.pageX, finger.pageY);
37501         }
37502         
37503         var x = Math.pow(coords[0] - coords[2], 2);
37504         var y = Math.pow(coords[1] - coords[3], 2);
37505         
37506         this.endDistance = Math.sqrt(x + y);
37507         
37508         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
37509         
37510         if(!this.zoomable()){
37511             this.scale = this.startScale;
37512             return;
37513         }
37514         
37515         this.draw();
37516         
37517     },
37518     
37519     onTouchEnd : function(e)
37520     {
37521         this.pinching = false;
37522         this.dragable = false;
37523         
37524     },
37525     
37526     process : function(file, crop)
37527     {
37528         if(this.loadMask){
37529             this.maskEl.mask(this.loadingText);
37530         }
37531         
37532         this.xhr = new XMLHttpRequest();
37533         
37534         file.xhr = this.xhr;
37535
37536         this.xhr.open(this.method, this.url, true);
37537         
37538         var headers = {
37539             "Accept": "application/json",
37540             "Cache-Control": "no-cache",
37541             "X-Requested-With": "XMLHttpRequest"
37542         };
37543         
37544         for (var headerName in headers) {
37545             var headerValue = headers[headerName];
37546             if (headerValue) {
37547                 this.xhr.setRequestHeader(headerName, headerValue);
37548             }
37549         }
37550         
37551         var _this = this;
37552         
37553         this.xhr.onload = function()
37554         {
37555             _this.xhrOnLoad(_this.xhr);
37556         }
37557         
37558         this.xhr.onerror = function()
37559         {
37560             _this.xhrOnError(_this.xhr);
37561         }
37562         
37563         var formData = new FormData();
37564
37565         formData.append('returnHTML', 'NO');
37566         
37567         if(crop){
37568             formData.append('crop', crop);
37569         }
37570         
37571         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
37572             formData.append(this.paramName, file, file.name);
37573         }
37574         
37575         if(typeof(file.filename) != 'undefined'){
37576             formData.append('filename', file.filename);
37577         }
37578         
37579         if(typeof(file.mimetype) != 'undefined'){
37580             formData.append('mimetype', file.mimetype);
37581         }
37582         
37583         if(this.fireEvent('arrange', this, formData) != false){
37584             this.xhr.send(formData);
37585         };
37586     },
37587     
37588     xhrOnLoad : function(xhr)
37589     {
37590         if(this.loadMask){
37591             this.maskEl.unmask();
37592         }
37593         
37594         if (xhr.readyState !== 4) {
37595             this.fireEvent('exception', this, xhr);
37596             return;
37597         }
37598
37599         var response = Roo.decode(xhr.responseText);
37600         
37601         if(!response.success){
37602             this.fireEvent('exception', this, xhr);
37603             return;
37604         }
37605         
37606         var response = Roo.decode(xhr.responseText);
37607         
37608         this.fireEvent('upload', this, response);
37609         
37610     },
37611     
37612     xhrOnError : function()
37613     {
37614         if(this.loadMask){
37615             this.maskEl.unmask();
37616         }
37617         
37618         Roo.log('xhr on error');
37619         
37620         var response = Roo.decode(xhr.responseText);
37621           
37622         Roo.log(response);
37623         
37624     },
37625     
37626     prepare : function(file)
37627     {   
37628         if(this.loadMask){
37629             this.maskEl.mask(this.loadingText);
37630         }
37631         
37632         this.file = false;
37633         this.exif = {};
37634         
37635         if(typeof(file) === 'string'){
37636             this.loadCanvas(file);
37637             return;
37638         }
37639         
37640         if(!file || !this.urlAPI){
37641             return;
37642         }
37643         
37644         this.file = file;
37645         this.cropType = file.type;
37646         
37647         var _this = this;
37648         
37649         if(this.fireEvent('prepare', this, this.file) != false){
37650             
37651             var reader = new FileReader();
37652             
37653             reader.onload = function (e) {
37654                 if (e.target.error) {
37655                     Roo.log(e.target.error);
37656                     return;
37657                 }
37658                 
37659                 var buffer = e.target.result,
37660                     dataView = new DataView(buffer),
37661                     offset = 2,
37662                     maxOffset = dataView.byteLength - 4,
37663                     markerBytes,
37664                     markerLength;
37665                 
37666                 if (dataView.getUint16(0) === 0xffd8) {
37667                     while (offset < maxOffset) {
37668                         markerBytes = dataView.getUint16(offset);
37669                         
37670                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
37671                             markerLength = dataView.getUint16(offset + 2) + 2;
37672                             if (offset + markerLength > dataView.byteLength) {
37673                                 Roo.log('Invalid meta data: Invalid segment size.');
37674                                 break;
37675                             }
37676                             
37677                             if(markerBytes == 0xffe1){
37678                                 _this.parseExifData(
37679                                     dataView,
37680                                     offset,
37681                                     markerLength
37682                                 );
37683                             }
37684                             
37685                             offset += markerLength;
37686                             
37687                             continue;
37688                         }
37689                         
37690                         break;
37691                     }
37692                     
37693                 }
37694                 
37695                 var url = _this.urlAPI.createObjectURL(_this.file);
37696                 
37697                 _this.loadCanvas(url);
37698                 
37699                 return;
37700             }
37701             
37702             reader.readAsArrayBuffer(this.file);
37703             
37704         }
37705         
37706     },
37707     
37708     parseExifData : function(dataView, offset, length)
37709     {
37710         var tiffOffset = offset + 10,
37711             littleEndian,
37712             dirOffset;
37713     
37714         if (dataView.getUint32(offset + 4) !== 0x45786966) {
37715             // No Exif data, might be XMP data instead
37716             return;
37717         }
37718         
37719         // Check for the ASCII code for "Exif" (0x45786966):
37720         if (dataView.getUint32(offset + 4) !== 0x45786966) {
37721             // No Exif data, might be XMP data instead
37722             return;
37723         }
37724         if (tiffOffset + 8 > dataView.byteLength) {
37725             Roo.log('Invalid Exif data: Invalid segment size.');
37726             return;
37727         }
37728         // Check for the two null bytes:
37729         if (dataView.getUint16(offset + 8) !== 0x0000) {
37730             Roo.log('Invalid Exif data: Missing byte alignment offset.');
37731             return;
37732         }
37733         // Check the byte alignment:
37734         switch (dataView.getUint16(tiffOffset)) {
37735         case 0x4949:
37736             littleEndian = true;
37737             break;
37738         case 0x4D4D:
37739             littleEndian = false;
37740             break;
37741         default:
37742             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
37743             return;
37744         }
37745         // Check for the TIFF tag marker (0x002A):
37746         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
37747             Roo.log('Invalid Exif data: Missing TIFF marker.');
37748             return;
37749         }
37750         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
37751         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
37752         
37753         this.parseExifTags(
37754             dataView,
37755             tiffOffset,
37756             tiffOffset + dirOffset,
37757             littleEndian
37758         );
37759     },
37760     
37761     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
37762     {
37763         var tagsNumber,
37764             dirEndOffset,
37765             i;
37766         if (dirOffset + 6 > dataView.byteLength) {
37767             Roo.log('Invalid Exif data: Invalid directory offset.');
37768             return;
37769         }
37770         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
37771         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
37772         if (dirEndOffset + 4 > dataView.byteLength) {
37773             Roo.log('Invalid Exif data: Invalid directory size.');
37774             return;
37775         }
37776         for (i = 0; i < tagsNumber; i += 1) {
37777             this.parseExifTag(
37778                 dataView,
37779                 tiffOffset,
37780                 dirOffset + 2 + 12 * i, // tag offset
37781                 littleEndian
37782             );
37783         }
37784         // Return the offset to the next directory:
37785         return dataView.getUint32(dirEndOffset, littleEndian);
37786     },
37787     
37788     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
37789     {
37790         var tag = dataView.getUint16(offset, littleEndian);
37791         
37792         this.exif[tag] = this.getExifValue(
37793             dataView,
37794             tiffOffset,
37795             offset,
37796             dataView.getUint16(offset + 2, littleEndian), // tag type
37797             dataView.getUint32(offset + 4, littleEndian), // tag length
37798             littleEndian
37799         );
37800     },
37801     
37802     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
37803     {
37804         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
37805             tagSize,
37806             dataOffset,
37807             values,
37808             i,
37809             str,
37810             c;
37811     
37812         if (!tagType) {
37813             Roo.log('Invalid Exif data: Invalid tag type.');
37814             return;
37815         }
37816         
37817         tagSize = tagType.size * length;
37818         // Determine if the value is contained in the dataOffset bytes,
37819         // or if the value at the dataOffset is a pointer to the actual data:
37820         dataOffset = tagSize > 4 ?
37821                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
37822         if (dataOffset + tagSize > dataView.byteLength) {
37823             Roo.log('Invalid Exif data: Invalid data offset.');
37824             return;
37825         }
37826         if (length === 1) {
37827             return tagType.getValue(dataView, dataOffset, littleEndian);
37828         }
37829         values = [];
37830         for (i = 0; i < length; i += 1) {
37831             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
37832         }
37833         
37834         if (tagType.ascii) {
37835             str = '';
37836             // Concatenate the chars:
37837             for (i = 0; i < values.length; i += 1) {
37838                 c = values[i];
37839                 // Ignore the terminating NULL byte(s):
37840                 if (c === '\u0000') {
37841                     break;
37842                 }
37843                 str += c;
37844             }
37845             return str;
37846         }
37847         return values;
37848     }
37849     
37850 });
37851
37852 Roo.apply(Roo.bootstrap.UploadCropbox, {
37853     tags : {
37854         'Orientation': 0x0112
37855     },
37856     
37857     Orientation: {
37858             1: 0, //'top-left',
37859 //            2: 'top-right',
37860             3: 180, //'bottom-right',
37861 //            4: 'bottom-left',
37862 //            5: 'left-top',
37863             6: 90, //'right-top',
37864 //            7: 'right-bottom',
37865             8: 270 //'left-bottom'
37866     },
37867     
37868     exifTagTypes : {
37869         // byte, 8-bit unsigned int:
37870         1: {
37871             getValue: function (dataView, dataOffset) {
37872                 return dataView.getUint8(dataOffset);
37873             },
37874             size: 1
37875         },
37876         // ascii, 8-bit byte:
37877         2: {
37878             getValue: function (dataView, dataOffset) {
37879                 return String.fromCharCode(dataView.getUint8(dataOffset));
37880             },
37881             size: 1,
37882             ascii: true
37883         },
37884         // short, 16 bit int:
37885         3: {
37886             getValue: function (dataView, dataOffset, littleEndian) {
37887                 return dataView.getUint16(dataOffset, littleEndian);
37888             },
37889             size: 2
37890         },
37891         // long, 32 bit int:
37892         4: {
37893             getValue: function (dataView, dataOffset, littleEndian) {
37894                 return dataView.getUint32(dataOffset, littleEndian);
37895             },
37896             size: 4
37897         },
37898         // rational = two long values, first is numerator, second is denominator:
37899         5: {
37900             getValue: function (dataView, dataOffset, littleEndian) {
37901                 return dataView.getUint32(dataOffset, littleEndian) /
37902                     dataView.getUint32(dataOffset + 4, littleEndian);
37903             },
37904             size: 8
37905         },
37906         // slong, 32 bit signed int:
37907         9: {
37908             getValue: function (dataView, dataOffset, littleEndian) {
37909                 return dataView.getInt32(dataOffset, littleEndian);
37910             },
37911             size: 4
37912         },
37913         // srational, two slongs, first is numerator, second is denominator:
37914         10: {
37915             getValue: function (dataView, dataOffset, littleEndian) {
37916                 return dataView.getInt32(dataOffset, littleEndian) /
37917                     dataView.getInt32(dataOffset + 4, littleEndian);
37918             },
37919             size: 8
37920         }
37921     },
37922     
37923     footer : {
37924         STANDARD : [
37925             {
37926                 tag : 'div',
37927                 cls : 'btn-group roo-upload-cropbox-rotate-left',
37928                 action : 'rotate-left',
37929                 cn : [
37930                     {
37931                         tag : 'button',
37932                         cls : 'btn btn-default',
37933                         html : '<i class="fa fa-undo"></i>'
37934                     }
37935                 ]
37936             },
37937             {
37938                 tag : 'div',
37939                 cls : 'btn-group roo-upload-cropbox-picture',
37940                 action : 'picture',
37941                 cn : [
37942                     {
37943                         tag : 'button',
37944                         cls : 'btn btn-default',
37945                         html : '<i class="fa fa-picture-o"></i>'
37946                     }
37947                 ]
37948             },
37949             {
37950                 tag : 'div',
37951                 cls : 'btn-group roo-upload-cropbox-rotate-right',
37952                 action : 'rotate-right',
37953                 cn : [
37954                     {
37955                         tag : 'button',
37956                         cls : 'btn btn-default',
37957                         html : '<i class="fa fa-repeat"></i>'
37958                     }
37959                 ]
37960             }
37961         ],
37962         DOCUMENT : [
37963             {
37964                 tag : 'div',
37965                 cls : 'btn-group roo-upload-cropbox-rotate-left',
37966                 action : 'rotate-left',
37967                 cn : [
37968                     {
37969                         tag : 'button',
37970                         cls : 'btn btn-default',
37971                         html : '<i class="fa fa-undo"></i>'
37972                     }
37973                 ]
37974             },
37975             {
37976                 tag : 'div',
37977                 cls : 'btn-group roo-upload-cropbox-download',
37978                 action : 'download',
37979                 cn : [
37980                     {
37981                         tag : 'button',
37982                         cls : 'btn btn-default',
37983                         html : '<i class="fa fa-download"></i>'
37984                     }
37985                 ]
37986             },
37987             {
37988                 tag : 'div',
37989                 cls : 'btn-group roo-upload-cropbox-crop',
37990                 action : 'crop',
37991                 cn : [
37992                     {
37993                         tag : 'button',
37994                         cls : 'btn btn-default',
37995                         html : '<i class="fa fa-crop"></i>'
37996                     }
37997                 ]
37998             },
37999             {
38000                 tag : 'div',
38001                 cls : 'btn-group roo-upload-cropbox-trash',
38002                 action : 'trash',
38003                 cn : [
38004                     {
38005                         tag : 'button',
38006                         cls : 'btn btn-default',
38007                         html : '<i class="fa fa-trash"></i>'
38008                     }
38009                 ]
38010             },
38011             {
38012                 tag : 'div',
38013                 cls : 'btn-group roo-upload-cropbox-rotate-right',
38014                 action : 'rotate-right',
38015                 cn : [
38016                     {
38017                         tag : 'button',
38018                         cls : 'btn btn-default',
38019                         html : '<i class="fa fa-repeat"></i>'
38020                     }
38021                 ]
38022             }
38023         ],
38024         ROTATOR : [
38025             {
38026                 tag : 'div',
38027                 cls : 'btn-group roo-upload-cropbox-rotate-left',
38028                 action : 'rotate-left',
38029                 cn : [
38030                     {
38031                         tag : 'button',
38032                         cls : 'btn btn-default',
38033                         html : '<i class="fa fa-undo"></i>'
38034                     }
38035                 ]
38036             },
38037             {
38038                 tag : 'div',
38039                 cls : 'btn-group roo-upload-cropbox-rotate-right',
38040                 action : 'rotate-right',
38041                 cn : [
38042                     {
38043                         tag : 'button',
38044                         cls : 'btn btn-default',
38045                         html : '<i class="fa fa-repeat"></i>'
38046                     }
38047                 ]
38048             }
38049         ]
38050     }
38051 });
38052
38053 /*
38054 * Licence: LGPL
38055 */
38056
38057 /**
38058  * @class Roo.bootstrap.DocumentManager
38059  * @extends Roo.bootstrap.Component
38060  * Bootstrap DocumentManager class
38061  * @cfg {String} paramName default 'imageUpload'
38062  * @cfg {String} toolTipName default 'filename'
38063  * @cfg {String} method default POST
38064  * @cfg {String} url action url
38065  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
38066  * @cfg {Boolean} multiple multiple upload default true
38067  * @cfg {Number} thumbSize default 300
38068  * @cfg {String} fieldLabel
38069  * @cfg {Number} labelWidth default 4
38070  * @cfg {String} labelAlign (left|top) default left
38071  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
38072 * @cfg {Number} labellg set the width of label (1-12)
38073  * @cfg {Number} labelmd set the width of label (1-12)
38074  * @cfg {Number} labelsm set the width of label (1-12)
38075  * @cfg {Number} labelxs set the width of label (1-12)
38076  * 
38077  * @constructor
38078  * Create a new DocumentManager
38079  * @param {Object} config The config object
38080  */
38081
38082 Roo.bootstrap.DocumentManager = function(config){
38083     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
38084     
38085     this.files = [];
38086     this.delegates = [];
38087     
38088     this.addEvents({
38089         /**
38090          * @event initial
38091          * Fire when initial the DocumentManager
38092          * @param {Roo.bootstrap.DocumentManager} this
38093          */
38094         "initial" : true,
38095         /**
38096          * @event inspect
38097          * inspect selected file
38098          * @param {Roo.bootstrap.DocumentManager} this
38099          * @param {File} file
38100          */
38101         "inspect" : true,
38102         /**
38103          * @event exception
38104          * Fire when xhr load exception
38105          * @param {Roo.bootstrap.DocumentManager} this
38106          * @param {XMLHttpRequest} xhr
38107          */
38108         "exception" : true,
38109         /**
38110          * @event afterupload
38111          * Fire when xhr load exception
38112          * @param {Roo.bootstrap.DocumentManager} this
38113          * @param {XMLHttpRequest} xhr
38114          */
38115         "afterupload" : true,
38116         /**
38117          * @event prepare
38118          * prepare the form data
38119          * @param {Roo.bootstrap.DocumentManager} this
38120          * @param {Object} formData
38121          */
38122         "prepare" : true,
38123         /**
38124          * @event remove
38125          * Fire when remove the file
38126          * @param {Roo.bootstrap.DocumentManager} this
38127          * @param {Object} file
38128          */
38129         "remove" : true,
38130         /**
38131          * @event refresh
38132          * Fire after refresh the file
38133          * @param {Roo.bootstrap.DocumentManager} this
38134          */
38135         "refresh" : true,
38136         /**
38137          * @event click
38138          * Fire after click the image
38139          * @param {Roo.bootstrap.DocumentManager} this
38140          * @param {Object} file
38141          */
38142         "click" : true,
38143         /**
38144          * @event edit
38145          * Fire when upload a image and editable set to true
38146          * @param {Roo.bootstrap.DocumentManager} this
38147          * @param {Object} file
38148          */
38149         "edit" : true,
38150         /**
38151          * @event beforeselectfile
38152          * Fire before select file
38153          * @param {Roo.bootstrap.DocumentManager} this
38154          */
38155         "beforeselectfile" : true,
38156         /**
38157          * @event process
38158          * Fire before process file
38159          * @param {Roo.bootstrap.DocumentManager} this
38160          * @param {Object} file
38161          */
38162         "process" : true,
38163         /**
38164          * @event previewrendered
38165          * Fire when preview rendered
38166          * @param {Roo.bootstrap.DocumentManager} this
38167          * @param {Object} file
38168          */
38169         "previewrendered" : true,
38170         /**
38171          */
38172         "previewResize" : true
38173         
38174     });
38175 };
38176
38177 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
38178     
38179     boxes : 0,
38180     inputName : '',
38181     thumbSize : 300,
38182     multiple : true,
38183     files : false,
38184     method : 'POST',
38185     url : '',
38186     paramName : 'imageUpload',
38187     toolTipName : 'filename',
38188     fieldLabel : '',
38189     labelWidth : 4,
38190     labelAlign : 'left',
38191     editable : true,
38192     delegates : false,
38193     xhr : false, 
38194     
38195     labellg : 0,
38196     labelmd : 0,
38197     labelsm : 0,
38198     labelxs : 0,
38199     
38200     getAutoCreate : function()
38201     {   
38202         var managerWidget = {
38203             tag : 'div',
38204             cls : 'roo-document-manager',
38205             cn : [
38206                 {
38207                     tag : 'input',
38208                     cls : 'roo-document-manager-selector',
38209                     type : 'file'
38210                 },
38211                 {
38212                     tag : 'div',
38213                     cls : 'roo-document-manager-uploader',
38214                     cn : [
38215                         {
38216                             tag : 'div',
38217                             cls : 'roo-document-manager-upload-btn',
38218                             html : '<i class="fa fa-plus"></i>'
38219                         }
38220                     ]
38221                     
38222                 }
38223             ]
38224         };
38225         
38226         var content = [
38227             {
38228                 tag : 'div',
38229                 cls : 'column col-md-12',
38230                 cn : managerWidget
38231             }
38232         ];
38233         
38234         if(this.fieldLabel.length){
38235             
38236             content = [
38237                 {
38238                     tag : 'div',
38239                     cls : 'column col-md-12',
38240                     html : this.fieldLabel
38241                 },
38242                 {
38243                     tag : 'div',
38244                     cls : 'column col-md-12',
38245                     cn : managerWidget
38246                 }
38247             ];
38248
38249             if(this.labelAlign == 'left'){
38250                 content = [
38251                     {
38252                         tag : 'div',
38253                         cls : 'column',
38254                         html : this.fieldLabel
38255                     },
38256                     {
38257                         tag : 'div',
38258                         cls : 'column',
38259                         cn : managerWidget
38260                     }
38261                 ];
38262                 
38263                 if(this.labelWidth > 12){
38264                     content[0].style = "width: " + this.labelWidth + 'px';
38265                 }
38266
38267                 if(this.labelWidth < 13 && this.labelmd == 0){
38268                     this.labelmd = this.labelWidth;
38269                 }
38270
38271                 if(this.labellg > 0){
38272                     content[0].cls += ' col-lg-' + this.labellg;
38273                     content[1].cls += ' col-lg-' + (12 - this.labellg);
38274                 }
38275
38276                 if(this.labelmd > 0){
38277                     content[0].cls += ' col-md-' + this.labelmd;
38278                     content[1].cls += ' col-md-' + (12 - this.labelmd);
38279                 }
38280
38281                 if(this.labelsm > 0){
38282                     content[0].cls += ' col-sm-' + this.labelsm;
38283                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
38284                 }
38285
38286                 if(this.labelxs > 0){
38287                     content[0].cls += ' col-xs-' + this.labelxs;
38288                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
38289                 }
38290                 
38291             }
38292         }
38293         
38294         var cfg = {
38295             tag : 'div',
38296             cls : 'row clearfix',
38297             cn : content
38298         };
38299         
38300         return cfg;
38301         
38302     },
38303     
38304     initEvents : function()
38305     {
38306         this.managerEl = this.el.select('.roo-document-manager', true).first();
38307         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
38308         
38309         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
38310         this.selectorEl.hide();
38311         
38312         if(this.multiple){
38313             this.selectorEl.attr('multiple', 'multiple');
38314         }
38315         
38316         this.selectorEl.on('change', this.onFileSelected, this);
38317         
38318         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
38319         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
38320         
38321         this.uploader.on('click', this.onUploaderClick, this);
38322         
38323         this.renderProgressDialog();
38324         
38325         var _this = this;
38326         
38327         window.addEventListener("resize", function() { _this.refresh(); } );
38328         
38329         this.fireEvent('initial', this);
38330     },
38331     
38332     renderProgressDialog : function()
38333     {
38334         var _this = this;
38335         
38336         this.progressDialog = new Roo.bootstrap.Modal({
38337             cls : 'roo-document-manager-progress-dialog',
38338             allow_close : false,
38339             animate : false,
38340             title : '',
38341             buttons : [
38342                 {
38343                     name  :'cancel',
38344                     weight : 'danger',
38345                     html : 'Cancel'
38346                 }
38347             ], 
38348             listeners : { 
38349                 btnclick : function() {
38350                     _this.uploadCancel();
38351                     this.hide();
38352                 }
38353             }
38354         });
38355          
38356         this.progressDialog.render(Roo.get(document.body));
38357          
38358         this.progress = new Roo.bootstrap.Progress({
38359             cls : 'roo-document-manager-progress',
38360             active : true,
38361             striped : true
38362         });
38363         
38364         this.progress.render(this.progressDialog.getChildContainer());
38365         
38366         this.progressBar = new Roo.bootstrap.ProgressBar({
38367             cls : 'roo-document-manager-progress-bar',
38368             aria_valuenow : 0,
38369             aria_valuemin : 0,
38370             aria_valuemax : 12,
38371             panel : 'success'
38372         });
38373         
38374         this.progressBar.render(this.progress.getChildContainer());
38375     },
38376     
38377     onUploaderClick : function(e)
38378     {
38379         e.preventDefault();
38380      
38381         if(this.fireEvent('beforeselectfile', this) != false){
38382             this.selectorEl.dom.click();
38383         }
38384         
38385     },
38386     
38387     onFileSelected : function(e)
38388     {
38389         e.preventDefault();
38390         
38391         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
38392             return;
38393         }
38394         
38395         Roo.each(this.selectorEl.dom.files, function(file){
38396             if(this.fireEvent('inspect', this, file) != false){
38397                 this.files.push(file);
38398             }
38399         }, this);
38400         
38401         this.queue();
38402         
38403     },
38404     
38405     queue : function()
38406     {
38407         this.selectorEl.dom.value = '';
38408         
38409         if(!this.files || !this.files.length){
38410             return;
38411         }
38412         
38413         if(this.boxes > 0 && this.files.length > this.boxes){
38414             this.files = this.files.slice(0, this.boxes);
38415         }
38416         
38417         this.uploader.show();
38418         
38419         if(this.boxes > 0 && this.files.length > this.boxes - 1){
38420             this.uploader.hide();
38421         }
38422         
38423         var _this = this;
38424         
38425         var files = [];
38426         
38427         var docs = [];
38428         
38429         Roo.each(this.files, function(file){
38430             
38431             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
38432                 var f = this.renderPreview(file);
38433                 files.push(f);
38434                 return;
38435             }
38436             
38437             if(file.type.indexOf('image') != -1){
38438                 this.delegates.push(
38439                     (function(){
38440                         _this.process(file);
38441                     }).createDelegate(this)
38442                 );
38443         
38444                 return;
38445             }
38446             
38447             docs.push(
38448                 (function(){
38449                     _this.process(file);
38450                 }).createDelegate(this)
38451             );
38452             
38453         }, this);
38454         
38455         this.files = files;
38456         
38457         this.delegates = this.delegates.concat(docs);
38458         
38459         if(!this.delegates.length){
38460             this.refresh();
38461             return;
38462         }
38463         
38464         this.progressBar.aria_valuemax = this.delegates.length;
38465         
38466         this.arrange();
38467         
38468         return;
38469     },
38470     
38471     arrange : function()
38472     {
38473         if(!this.delegates.length){
38474             this.progressDialog.hide();
38475             this.refresh();
38476             return;
38477         }
38478         
38479         var delegate = this.delegates.shift();
38480         
38481         this.progressDialog.show();
38482         
38483         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
38484         
38485         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
38486         
38487         delegate();
38488     },
38489     
38490     refresh : function()
38491     {
38492         this.uploader.show();
38493         
38494         if(this.boxes > 0 && this.files.length > this.boxes - 1){
38495             this.uploader.hide();
38496         }
38497         
38498         Roo.isTouch ? this.closable(false) : this.closable(true);
38499         
38500         this.fireEvent('refresh', this);
38501     },
38502     
38503     onRemove : function(e, el, o)
38504     {
38505         e.preventDefault();
38506         
38507         this.fireEvent('remove', this, o);
38508         
38509     },
38510     
38511     remove : function(o)
38512     {
38513         var files = [];
38514         
38515         Roo.each(this.files, function(file){
38516             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
38517                 files.push(file);
38518                 return;
38519             }
38520
38521             o.target.remove();
38522
38523         }, this);
38524         
38525         this.files = files;
38526         
38527         this.refresh();
38528     },
38529     
38530     clear : function()
38531     {
38532         Roo.each(this.files, function(file){
38533             if(!file.target){
38534                 return;
38535             }
38536             
38537             file.target.remove();
38538
38539         }, this);
38540         
38541         this.files = [];
38542         
38543         this.refresh();
38544     },
38545     
38546     onClick : function(e, el, o)
38547     {
38548         e.preventDefault();
38549         
38550         this.fireEvent('click', this, o);
38551         
38552     },
38553     
38554     closable : function(closable)
38555     {
38556         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
38557             
38558             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
38559             
38560             if(closable){
38561                 el.show();
38562                 return;
38563             }
38564             
38565             el.hide();
38566             
38567         }, this);
38568     },
38569     
38570     xhrOnLoad : function(xhr)
38571     {
38572         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
38573             el.remove();
38574         }, this);
38575         
38576         if (xhr.readyState !== 4) {
38577             this.arrange();
38578             this.fireEvent('exception', this, xhr);
38579             return;
38580         }
38581
38582         var response = Roo.decode(xhr.responseText);
38583         
38584         if(!response.success){
38585             this.arrange();
38586             this.fireEvent('exception', this, xhr);
38587             return;
38588         }
38589         
38590         var file = this.renderPreview(response.data);
38591         
38592         this.files.push(file);
38593         
38594         this.arrange();
38595         
38596         this.fireEvent('afterupload', this, xhr);
38597         
38598     },
38599     
38600     xhrOnError : function(xhr)
38601     {
38602         Roo.log('xhr on error');
38603         
38604         var response = Roo.decode(xhr.responseText);
38605           
38606         Roo.log(response);
38607         
38608         this.arrange();
38609     },
38610     
38611     process : function(file)
38612     {
38613         if(this.fireEvent('process', this, file) !== false){
38614             if(this.editable && file.type.indexOf('image') != -1){
38615                 this.fireEvent('edit', this, file);
38616                 return;
38617             }
38618
38619             this.uploadStart(file, false);
38620
38621             return;
38622         }
38623         
38624     },
38625     
38626     uploadStart : function(file, crop)
38627     {
38628         this.xhr = new XMLHttpRequest();
38629         
38630         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
38631             this.arrange();
38632             return;
38633         }
38634         
38635         file.xhr = this.xhr;
38636             
38637         this.managerEl.createChild({
38638             tag : 'div',
38639             cls : 'roo-document-manager-loading',
38640             cn : [
38641                 {
38642                     tag : 'div',
38643                     tooltip : file.name,
38644                     cls : 'roo-document-manager-thumb',
38645                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
38646                 }
38647             ]
38648
38649         });
38650
38651         this.xhr.open(this.method, this.url, true);
38652         
38653         var headers = {
38654             "Accept": "application/json",
38655             "Cache-Control": "no-cache",
38656             "X-Requested-With": "XMLHttpRequest"
38657         };
38658         
38659         for (var headerName in headers) {
38660             var headerValue = headers[headerName];
38661             if (headerValue) {
38662                 this.xhr.setRequestHeader(headerName, headerValue);
38663             }
38664         }
38665         
38666         var _this = this;
38667         
38668         this.xhr.onload = function()
38669         {
38670             _this.xhrOnLoad(_this.xhr);
38671         }
38672         
38673         this.xhr.onerror = function()
38674         {
38675             _this.xhrOnError(_this.xhr);
38676         }
38677         
38678         var formData = new FormData();
38679
38680         formData.append('returnHTML', 'NO');
38681         
38682         if(crop){
38683             formData.append('crop', crop);
38684         }
38685         
38686         formData.append(this.paramName, file, file.name);
38687         
38688         var options = {
38689             file : file, 
38690             manually : false
38691         };
38692         
38693         if(this.fireEvent('prepare', this, formData, options) != false){
38694             
38695             if(options.manually){
38696                 return;
38697             }
38698             
38699             this.xhr.send(formData);
38700             return;
38701         };
38702         
38703         this.uploadCancel();
38704     },
38705     
38706     uploadCancel : function()
38707     {
38708         if (this.xhr) {
38709             this.xhr.abort();
38710         }
38711         
38712         this.delegates = [];
38713         
38714         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
38715             el.remove();
38716         }, this);
38717         
38718         this.arrange();
38719     },
38720     
38721     renderPreview : function(file)
38722     {
38723         if(typeof(file.target) != 'undefined' && file.target){
38724             return file;
38725         }
38726         
38727         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
38728         
38729         var previewEl = this.managerEl.createChild({
38730             tag : 'div',
38731             cls : 'roo-document-manager-preview',
38732             cn : [
38733                 {
38734                     tag : 'div',
38735                     tooltip : file[this.toolTipName],
38736                     cls : 'roo-document-manager-thumb',
38737                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
38738                 },
38739                 {
38740                     tag : 'button',
38741                     cls : 'close',
38742                     html : '<i class="fa fa-times-circle"></i>'
38743                 }
38744             ]
38745         });
38746
38747         var close = previewEl.select('button.close', true).first();
38748
38749         close.on('click', this.onRemove, this, file);
38750
38751         file.target = previewEl;
38752
38753         var image = previewEl.select('img', true).first();
38754         
38755         var _this = this;
38756         
38757         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
38758         
38759         image.on('click', this.onClick, this, file);
38760         
38761         this.fireEvent('previewrendered', this, file);
38762         
38763         return file;
38764         
38765     },
38766     
38767     onPreviewLoad : function(file, image)
38768     {
38769         if(typeof(file.target) == 'undefined' || !file.target){
38770             return;
38771         }
38772         
38773         var width = image.dom.naturalWidth || image.dom.width;
38774         var height = image.dom.naturalHeight || image.dom.height;
38775         
38776         if(!this.previewResize) {
38777             return;
38778         }
38779         
38780         if(width > height){
38781             file.target.addClass('wide');
38782             return;
38783         }
38784         
38785         file.target.addClass('tall');
38786         return;
38787         
38788     },
38789     
38790     uploadFromSource : function(file, crop)
38791     {
38792         this.xhr = new XMLHttpRequest();
38793         
38794         this.managerEl.createChild({
38795             tag : 'div',
38796             cls : 'roo-document-manager-loading',
38797             cn : [
38798                 {
38799                     tag : 'div',
38800                     tooltip : file.name,
38801                     cls : 'roo-document-manager-thumb',
38802                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
38803                 }
38804             ]
38805
38806         });
38807
38808         this.xhr.open(this.method, this.url, true);
38809         
38810         var headers = {
38811             "Accept": "application/json",
38812             "Cache-Control": "no-cache",
38813             "X-Requested-With": "XMLHttpRequest"
38814         };
38815         
38816         for (var headerName in headers) {
38817             var headerValue = headers[headerName];
38818             if (headerValue) {
38819                 this.xhr.setRequestHeader(headerName, headerValue);
38820             }
38821         }
38822         
38823         var _this = this;
38824         
38825         this.xhr.onload = function()
38826         {
38827             _this.xhrOnLoad(_this.xhr);
38828         }
38829         
38830         this.xhr.onerror = function()
38831         {
38832             _this.xhrOnError(_this.xhr);
38833         }
38834         
38835         var formData = new FormData();
38836
38837         formData.append('returnHTML', 'NO');
38838         
38839         formData.append('crop', crop);
38840         
38841         if(typeof(file.filename) != 'undefined'){
38842             formData.append('filename', file.filename);
38843         }
38844         
38845         if(typeof(file.mimetype) != 'undefined'){
38846             formData.append('mimetype', file.mimetype);
38847         }
38848         
38849         Roo.log(formData);
38850         
38851         if(this.fireEvent('prepare', this, formData) != false){
38852             this.xhr.send(formData);
38853         };
38854     }
38855 });
38856
38857 /*
38858 * Licence: LGPL
38859 */
38860
38861 /**
38862  * @class Roo.bootstrap.DocumentViewer
38863  * @extends Roo.bootstrap.Component
38864  * Bootstrap DocumentViewer class
38865  * @cfg {Boolean} showDownload (true|false) show download button (default true)
38866  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
38867  * 
38868  * @constructor
38869  * Create a new DocumentViewer
38870  * @param {Object} config The config object
38871  */
38872
38873 Roo.bootstrap.DocumentViewer = function(config){
38874     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
38875     
38876     this.addEvents({
38877         /**
38878          * @event initial
38879          * Fire after initEvent
38880          * @param {Roo.bootstrap.DocumentViewer} this
38881          */
38882         "initial" : true,
38883         /**
38884          * @event click
38885          * Fire after click
38886          * @param {Roo.bootstrap.DocumentViewer} this
38887          */
38888         "click" : true,
38889         /**
38890          * @event download
38891          * Fire after download button
38892          * @param {Roo.bootstrap.DocumentViewer} this
38893          */
38894         "download" : true,
38895         /**
38896          * @event trash
38897          * Fire after trash button
38898          * @param {Roo.bootstrap.DocumentViewer} this
38899          */
38900         "trash" : true
38901         
38902     });
38903 };
38904
38905 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
38906     
38907     showDownload : true,
38908     
38909     showTrash : true,
38910     
38911     getAutoCreate : function()
38912     {
38913         var cfg = {
38914             tag : 'div',
38915             cls : 'roo-document-viewer',
38916             cn : [
38917                 {
38918                     tag : 'div',
38919                     cls : 'roo-document-viewer-body',
38920                     cn : [
38921                         {
38922                             tag : 'div',
38923                             cls : 'roo-document-viewer-thumb',
38924                             cn : [
38925                                 {
38926                                     tag : 'img',
38927                                     cls : 'roo-document-viewer-image'
38928                                 }
38929                             ]
38930                         }
38931                     ]
38932                 },
38933                 {
38934                     tag : 'div',
38935                     cls : 'roo-document-viewer-footer',
38936                     cn : {
38937                         tag : 'div',
38938                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
38939                         cn : [
38940                             {
38941                                 tag : 'div',
38942                                 cls : 'btn-group roo-document-viewer-download',
38943                                 cn : [
38944                                     {
38945                                         tag : 'button',
38946                                         cls : 'btn btn-default',
38947                                         html : '<i class="fa fa-download"></i>'
38948                                     }
38949                                 ]
38950                             },
38951                             {
38952                                 tag : 'div',
38953                                 cls : 'btn-group roo-document-viewer-trash',
38954                                 cn : [
38955                                     {
38956                                         tag : 'button',
38957                                         cls : 'btn btn-default',
38958                                         html : '<i class="fa fa-trash"></i>'
38959                                     }
38960                                 ]
38961                             }
38962                         ]
38963                     }
38964                 }
38965             ]
38966         };
38967         
38968         return cfg;
38969     },
38970     
38971     initEvents : function()
38972     {
38973         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
38974         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
38975         
38976         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
38977         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
38978         
38979         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
38980         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
38981         
38982         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
38983         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
38984         
38985         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
38986         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
38987         
38988         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
38989         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
38990         
38991         this.bodyEl.on('click', this.onClick, this);
38992         this.downloadBtn.on('click', this.onDownload, this);
38993         this.trashBtn.on('click', this.onTrash, this);
38994         
38995         this.downloadBtn.hide();
38996         this.trashBtn.hide();
38997         
38998         if(this.showDownload){
38999             this.downloadBtn.show();
39000         }
39001         
39002         if(this.showTrash){
39003             this.trashBtn.show();
39004         }
39005         
39006         if(!this.showDownload && !this.showTrash) {
39007             this.footerEl.hide();
39008         }
39009         
39010     },
39011     
39012     initial : function()
39013     {
39014         this.fireEvent('initial', this);
39015         
39016     },
39017     
39018     onClick : function(e)
39019     {
39020         e.preventDefault();
39021         
39022         this.fireEvent('click', this);
39023     },
39024     
39025     onDownload : function(e)
39026     {
39027         e.preventDefault();
39028         
39029         this.fireEvent('download', this);
39030     },
39031     
39032     onTrash : function(e)
39033     {
39034         e.preventDefault();
39035         
39036         this.fireEvent('trash', this);
39037     }
39038     
39039 });
39040 /*
39041  * - LGPL
39042  *
39043  * FieldLabel
39044  * 
39045  */
39046
39047 /**
39048  * @class Roo.bootstrap.form.FieldLabel
39049  * @extends Roo.bootstrap.Component
39050  * Bootstrap FieldLabel class
39051  * @cfg {String} html contents of the element
39052  * @cfg {String} tag tag of the element default label
39053  * @cfg {String} cls class of the element
39054  * @cfg {String} target label target 
39055  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
39056  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
39057  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
39058  * @cfg {String} iconTooltip default "This field is required"
39059  * @cfg {String} indicatorpos (left|right) default left
39060  * 
39061  * @constructor
39062  * Create a new FieldLabel
39063  * @param {Object} config The config object
39064  */
39065
39066 Roo.bootstrap.form.FieldLabel = function(config){
39067     Roo.bootstrap.Element.superclass.constructor.call(this, config);
39068     
39069     this.addEvents({
39070             /**
39071              * @event invalid
39072              * Fires after the field has been marked as invalid.
39073              * @param {Roo.form.FieldLabel} this
39074              * @param {String} msg The validation message
39075              */
39076             invalid : true,
39077             /**
39078              * @event valid
39079              * Fires after the field has been validated with no errors.
39080              * @param {Roo.form.FieldLabel} this
39081              */
39082             valid : true
39083         });
39084 };
39085
39086 Roo.extend(Roo.bootstrap.form.FieldLabel, Roo.bootstrap.Component,  {
39087     
39088     tag: 'label',
39089     cls: '',
39090     html: '',
39091     target: '',
39092     allowBlank : true,
39093     invalidClass : 'has-warning',
39094     validClass : 'has-success',
39095     iconTooltip : 'This field is required',
39096     indicatorpos : 'left',
39097     
39098     getAutoCreate : function(){
39099         
39100         var cls = "";
39101         if (!this.allowBlank) {
39102             cls  = "visible";
39103         }
39104         
39105         var cfg = {
39106             tag : this.tag,
39107             cls : 'roo-bootstrap-field-label ' + this.cls,
39108             for : this.target,
39109             cn : [
39110                 {
39111                     tag : 'i',
39112                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
39113                     tooltip : this.iconTooltip
39114                 },
39115                 {
39116                     tag : 'span',
39117                     html : this.html
39118                 }
39119             ] 
39120         };
39121         
39122         if(this.indicatorpos == 'right'){
39123             var cfg = {
39124                 tag : this.tag,
39125                 cls : 'roo-bootstrap-field-label ' + this.cls,
39126                 for : this.target,
39127                 cn : [
39128                     {
39129                         tag : 'span',
39130                         html : this.html
39131                     },
39132                     {
39133                         tag : 'i',
39134                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
39135                         tooltip : this.iconTooltip
39136                     }
39137                 ] 
39138             };
39139         }
39140         
39141         return cfg;
39142     },
39143     
39144     initEvents: function() 
39145     {
39146         Roo.bootstrap.Element.superclass.initEvents.call(this);
39147         
39148         this.indicator = this.indicatorEl();
39149         
39150         if(this.indicator){
39151             this.indicator.removeClass('visible');
39152             this.indicator.addClass('invisible');
39153         }
39154         
39155         Roo.bootstrap.form.FieldLabel.register(this);
39156     },
39157     
39158     indicatorEl : function()
39159     {
39160         var indicator = this.el.select('i.roo-required-indicator',true).first();
39161         
39162         if(!indicator){
39163             return false;
39164         }
39165         
39166         return indicator;
39167         
39168     },
39169     
39170     /**
39171      * Mark this field as valid
39172      */
39173     markValid : function()
39174     {
39175         if(this.indicator){
39176             this.indicator.removeClass('visible');
39177             this.indicator.addClass('invisible');
39178         }
39179         if (Roo.bootstrap.version == 3) {
39180             this.el.removeClass(this.invalidClass);
39181             this.el.addClass(this.validClass);
39182         } else {
39183             this.el.removeClass('is-invalid');
39184             this.el.addClass('is-valid');
39185         }
39186         
39187         
39188         this.fireEvent('valid', this);
39189     },
39190     
39191     /**
39192      * Mark this field as invalid
39193      * @param {String} msg The validation message
39194      */
39195     markInvalid : function(msg)
39196     {
39197         if(this.indicator){
39198             this.indicator.removeClass('invisible');
39199             this.indicator.addClass('visible');
39200         }
39201           if (Roo.bootstrap.version == 3) {
39202             this.el.removeClass(this.validClass);
39203             this.el.addClass(this.invalidClass);
39204         } else {
39205             this.el.removeClass('is-valid');
39206             this.el.addClass('is-invalid');
39207         }
39208         
39209         
39210         this.fireEvent('invalid', this, msg);
39211     }
39212     
39213    
39214 });
39215
39216 Roo.apply(Roo.bootstrap.form.FieldLabel, {
39217     
39218     groups: {},
39219     
39220      /**
39221     * register a FieldLabel Group
39222     * @param {Roo.bootstrap.form.FieldLabel} the FieldLabel to add
39223     */
39224     register : function(label)
39225     {
39226         if(this.groups.hasOwnProperty(label.target)){
39227             return;
39228         }
39229      
39230         this.groups[label.target] = label;
39231         
39232     },
39233     /**
39234     * fetch a FieldLabel Group based on the target
39235     * @param {string} target
39236     * @returns {Roo.bootstrap.form.FieldLabel} the CheckBox group
39237     */
39238     get: function(target) {
39239         if (typeof(this.groups[target]) == 'undefined') {
39240             return false;
39241         }
39242         
39243         return this.groups[target] ;
39244     }
39245 });
39246
39247  
39248
39249  /*
39250  * - LGPL
39251  *
39252  * page DateSplitField.
39253  * 
39254  */
39255
39256
39257 /**
39258  * @class Roo.bootstrap.form.DateSplitField
39259  * @extends Roo.bootstrap.Component
39260  * Bootstrap DateSplitField class
39261  * @cfg {string} fieldLabel - the label associated
39262  * @cfg {Number} labelWidth set the width of label (0-12)
39263  * @cfg {String} labelAlign (top|left)
39264  * @cfg {Boolean} dayAllowBlank (true|false) default false
39265  * @cfg {Boolean} monthAllowBlank (true|false) default false
39266  * @cfg {Boolean} yearAllowBlank (true|false) default false
39267  * @cfg {string} dayPlaceholder 
39268  * @cfg {string} monthPlaceholder
39269  * @cfg {string} yearPlaceholder
39270  * @cfg {string} dayFormat default 'd'
39271  * @cfg {string} monthFormat default 'm'
39272  * @cfg {string} yearFormat default 'Y'
39273  * @cfg {Number} labellg set the width of label (1-12)
39274  * @cfg {Number} labelmd set the width of label (1-12)
39275  * @cfg {Number} labelsm set the width of label (1-12)
39276  * @cfg {Number} labelxs set the width of label (1-12)
39277
39278  *     
39279  * @constructor
39280  * Create a new DateSplitField
39281  * @param {Object} config The config object
39282  */
39283
39284 Roo.bootstrap.form.DateSplitField = function(config){
39285     Roo.bootstrap.form.DateSplitField.superclass.constructor.call(this, config);
39286     
39287     this.addEvents({
39288         // raw events
39289          /**
39290          * @event years
39291          * getting the data of years
39292          * @param {Roo.bootstrap.form.DateSplitField} this
39293          * @param {Object} years
39294          */
39295         "years" : true,
39296         /**
39297          * @event days
39298          * getting the data of days
39299          * @param {Roo.bootstrap.form.DateSplitField} this
39300          * @param {Object} days
39301          */
39302         "days" : true,
39303         /**
39304          * @event invalid
39305          * Fires after the field has been marked as invalid.
39306          * @param {Roo.form.Field} this
39307          * @param {String} msg The validation message
39308          */
39309         invalid : true,
39310        /**
39311          * @event valid
39312          * Fires after the field has been validated with no errors.
39313          * @param {Roo.form.Field} this
39314          */
39315         valid : true
39316     });
39317 };
39318
39319 Roo.extend(Roo.bootstrap.form.DateSplitField, Roo.bootstrap.Component,  {
39320     
39321     fieldLabel : '',
39322     labelAlign : 'top',
39323     labelWidth : 3,
39324     dayAllowBlank : false,
39325     monthAllowBlank : false,
39326     yearAllowBlank : false,
39327     dayPlaceholder : '',
39328     monthPlaceholder : '',
39329     yearPlaceholder : '',
39330     dayFormat : 'd',
39331     monthFormat : 'm',
39332     yearFormat : 'Y',
39333     isFormField : true,
39334     labellg : 0,
39335     labelmd : 0,
39336     labelsm : 0,
39337     labelxs : 0,
39338     
39339     getAutoCreate : function()
39340     {
39341         var cfg = {
39342             tag : 'div',
39343             cls : 'row roo-date-split-field-group',
39344             cn : [
39345                 {
39346                     tag : 'input',
39347                     type : 'hidden',
39348                     cls : 'form-hidden-field roo-date-split-field-group-value',
39349                     name : this.name
39350                 }
39351             ]
39352         };
39353         
39354         var labelCls = 'col-md-12';
39355         var contentCls = 'col-md-4';
39356         
39357         if(this.fieldLabel){
39358             
39359             var label = {
39360                 tag : 'div',
39361                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
39362                 cn : [
39363                     {
39364                         tag : 'label',
39365                         html : this.fieldLabel
39366                     }
39367                 ]
39368             };
39369             
39370             if(this.labelAlign == 'left'){
39371             
39372                 if(this.labelWidth > 12){
39373                     label.style = "width: " + this.labelWidth + 'px';
39374                 }
39375
39376                 if(this.labelWidth < 13 && this.labelmd == 0){
39377                     this.labelmd = this.labelWidth;
39378                 }
39379
39380                 if(this.labellg > 0){
39381                     labelCls = ' col-lg-' + this.labellg;
39382                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
39383                 }
39384
39385                 if(this.labelmd > 0){
39386                     labelCls = ' col-md-' + this.labelmd;
39387                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
39388                 }
39389
39390                 if(this.labelsm > 0){
39391                     labelCls = ' col-sm-' + this.labelsm;
39392                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
39393                 }
39394
39395                 if(this.labelxs > 0){
39396                     labelCls = ' col-xs-' + this.labelxs;
39397                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
39398                 }
39399             }
39400             
39401             label.cls += ' ' + labelCls;
39402             
39403             cfg.cn.push(label);
39404         }
39405         
39406         Roo.each(['day', 'month', 'year'], function(t){
39407             cfg.cn.push({
39408                 tag : 'div',
39409                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
39410             });
39411         }, this);
39412         
39413         return cfg;
39414     },
39415     
39416     inputEl: function ()
39417     {
39418         return this.el.select('.roo-date-split-field-group-value', true).first();
39419     },
39420     
39421     onRender : function(ct, position) 
39422     {
39423         var _this = this;
39424         
39425         Roo.bootstrap.DateSplitFiel.superclass.onRender.call(this, ct, position);
39426         
39427         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
39428         
39429         this.dayField = new Roo.bootstrap.form.ComboBox({
39430             allowBlank : this.dayAllowBlank,
39431             alwaysQuery : true,
39432             displayField : 'value',
39433             editable : false,
39434             fieldLabel : '',
39435             forceSelection : true,
39436             mode : 'local',
39437             placeholder : this.dayPlaceholder,
39438             selectOnFocus : true,
39439             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
39440             triggerAction : 'all',
39441             typeAhead : true,
39442             valueField : 'value',
39443             store : new Roo.data.SimpleStore({
39444                 data : (function() {    
39445                     var days = [];
39446                     _this.fireEvent('days', _this, days);
39447                     return days;
39448                 })(),
39449                 fields : [ 'value' ]
39450             }),
39451             listeners : {
39452                 select : function (_self, record, index)
39453                 {
39454                     _this.setValue(_this.getValue());
39455                 }
39456             }
39457         });
39458
39459         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
39460         
39461         this.monthField = new Roo.bootstrap.form.MonthField({
39462             after : '<i class=\"fa fa-calendar\"></i>',
39463             allowBlank : this.monthAllowBlank,
39464             placeholder : this.monthPlaceholder,
39465             readOnly : true,
39466             listeners : {
39467                 render : function (_self)
39468                 {
39469                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
39470                         e.preventDefault();
39471                         _self.focus();
39472                     });
39473                 },
39474                 select : function (_self, oldvalue, newvalue)
39475                 {
39476                     _this.setValue(_this.getValue());
39477                 }
39478             }
39479         });
39480         
39481         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
39482         
39483         this.yearField = new Roo.bootstrap.form.ComboBox({
39484             allowBlank : this.yearAllowBlank,
39485             alwaysQuery : true,
39486             displayField : 'value',
39487             editable : false,
39488             fieldLabel : '',
39489             forceSelection : true,
39490             mode : 'local',
39491             placeholder : this.yearPlaceholder,
39492             selectOnFocus : true,
39493             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
39494             triggerAction : 'all',
39495             typeAhead : true,
39496             valueField : 'value',
39497             store : new Roo.data.SimpleStore({
39498                 data : (function() {
39499                     var years = [];
39500                     _this.fireEvent('years', _this, years);
39501                     return years;
39502                 })(),
39503                 fields : [ 'value' ]
39504             }),
39505             listeners : {
39506                 select : function (_self, record, index)
39507                 {
39508                     _this.setValue(_this.getValue());
39509                 }
39510             }
39511         });
39512
39513         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
39514     },
39515     
39516     setValue : function(v, format)
39517     {
39518         this.inputEl.dom.value = v;
39519         
39520         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
39521         
39522         var d = Date.parseDate(v, f);
39523         
39524         if(!d){
39525             this.validate();
39526             return;
39527         }
39528         
39529         this.setDay(d.format(this.dayFormat));
39530         this.setMonth(d.format(this.monthFormat));
39531         this.setYear(d.format(this.yearFormat));
39532         
39533         this.validate();
39534         
39535         return;
39536     },
39537     
39538     setDay : function(v)
39539     {
39540         this.dayField.setValue(v);
39541         this.inputEl.dom.value = this.getValue();
39542         this.validate();
39543         return;
39544     },
39545     
39546     setMonth : function(v)
39547     {
39548         this.monthField.setValue(v, true);
39549         this.inputEl.dom.value = this.getValue();
39550         this.validate();
39551         return;
39552     },
39553     
39554     setYear : function(v)
39555     {
39556         this.yearField.setValue(v);
39557         this.inputEl.dom.value = this.getValue();
39558         this.validate();
39559         return;
39560     },
39561     
39562     getDay : function()
39563     {
39564         return this.dayField.getValue();
39565     },
39566     
39567     getMonth : function()
39568     {
39569         return this.monthField.getValue();
39570     },
39571     
39572     getYear : function()
39573     {
39574         return this.yearField.getValue();
39575     },
39576     
39577     getValue : function()
39578     {
39579         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
39580         
39581         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
39582         
39583         return date;
39584     },
39585     
39586     reset : function()
39587     {
39588         this.setDay('');
39589         this.setMonth('');
39590         this.setYear('');
39591         this.inputEl.dom.value = '';
39592         this.validate();
39593         return;
39594     },
39595     
39596     validate : function()
39597     {
39598         var d = this.dayField.validate();
39599         var m = this.monthField.validate();
39600         var y = this.yearField.validate();
39601         
39602         var valid = true;
39603         
39604         if(
39605                 (!this.dayAllowBlank && !d) ||
39606                 (!this.monthAllowBlank && !m) ||
39607                 (!this.yearAllowBlank && !y)
39608         ){
39609             valid = false;
39610         }
39611         
39612         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
39613             return valid;
39614         }
39615         
39616         if(valid){
39617             this.markValid();
39618             return valid;
39619         }
39620         
39621         this.markInvalid();
39622         
39623         return valid;
39624     },
39625     
39626     markValid : function()
39627     {
39628         
39629         var label = this.el.select('label', true).first();
39630         var icon = this.el.select('i.fa-star', true).first();
39631
39632         if(label && icon){
39633             icon.remove();
39634         }
39635         
39636         this.fireEvent('valid', this);
39637     },
39638     
39639      /**
39640      * Mark this field as invalid
39641      * @param {String} msg The validation message
39642      */
39643     markInvalid : function(msg)
39644     {
39645         
39646         var label = this.el.select('label', true).first();
39647         var icon = this.el.select('i.fa-star', true).first();
39648
39649         if(label && !icon){
39650             this.el.select('.roo-date-split-field-label', true).createChild({
39651                 tag : 'i',
39652                 cls : 'text-danger fa fa-lg fa-star',
39653                 tooltip : 'This field is required',
39654                 style : 'margin-right:5px;'
39655             }, label, true);
39656         }
39657         
39658         this.fireEvent('invalid', this, msg);
39659     },
39660     
39661     clearInvalid : function()
39662     {
39663         var label = this.el.select('label', true).first();
39664         var icon = this.el.select('i.fa-star', true).first();
39665
39666         if(label && icon){
39667             icon.remove();
39668         }
39669         
39670         this.fireEvent('valid', this);
39671     },
39672     
39673     getName: function()
39674     {
39675         return this.name;
39676     }
39677     
39678 });
39679
39680  
39681
39682 /**
39683  * @class Roo.bootstrap.LayoutMasonry
39684  * @extends Roo.bootstrap.Component
39685  * @children Roo.bootstrap.Element Roo.bootstrap.Img Roo.bootstrap.MasonryBrick
39686  * Bootstrap Layout Masonry class
39687  *
39688  * This is based on 
39689  * http://masonry.desandro.com
39690  *
39691  * The idea is to render all the bricks based on vertical width...
39692  *
39693  * The original code extends 'outlayer' - we might need to use that....
39694
39695  * @constructor
39696  * Create a new Element
39697  * @param {Object} config The config object
39698  */
39699
39700 Roo.bootstrap.LayoutMasonry = function(config){
39701     
39702     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
39703     
39704     this.bricks = [];
39705     
39706     Roo.bootstrap.LayoutMasonry.register(this);
39707     
39708     this.addEvents({
39709         // raw events
39710         /**
39711          * @event layout
39712          * Fire after layout the items
39713          * @param {Roo.bootstrap.LayoutMasonry} this
39714          * @param {Roo.EventObject} e
39715          */
39716         "layout" : true
39717     });
39718     
39719 };
39720
39721 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
39722     
39723     /**
39724      * @cfg {Boolean} isLayoutInstant = no animation?
39725      */   
39726     isLayoutInstant : false, // needed?
39727    
39728     /**
39729      * @cfg {Number} boxWidth  width of the columns
39730      */   
39731     boxWidth : 450,
39732     
39733       /**
39734      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
39735      */   
39736     boxHeight : 0,
39737     
39738     /**
39739      * @cfg {Number} padWidth padding below box..
39740      */   
39741     padWidth : 10, 
39742     
39743     /**
39744      * @cfg {Number} gutter gutter width..
39745      */   
39746     gutter : 10,
39747     
39748      /**
39749      * @cfg {Number} maxCols maximum number of columns
39750      */   
39751     
39752     maxCols: 0,
39753     
39754     /**
39755      * @cfg {Boolean} isAutoInitial defalut true
39756      */   
39757     isAutoInitial : true, 
39758     
39759     containerWidth: 0,
39760     
39761     /**
39762      * @cfg {Boolean} isHorizontal defalut false
39763      */   
39764     isHorizontal : false, 
39765
39766     currentSize : null,
39767     
39768     tag: 'div',
39769     
39770     cls: '',
39771     
39772     bricks: null, //CompositeElement
39773     
39774     cols : 1,
39775     
39776     _isLayoutInited : false,
39777     
39778 //    isAlternative : false, // only use for vertical layout...
39779     
39780     /**
39781      * @cfg {Number} alternativePadWidth padding below box..
39782      */   
39783     alternativePadWidth : 50,
39784     
39785     selectedBrick : [],
39786     
39787     getAutoCreate : function(){
39788         
39789         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
39790         
39791         var cfg = {
39792             tag: this.tag,
39793             cls: 'blog-masonary-wrapper ' + this.cls,
39794             cn : {
39795                 cls : 'mas-boxes masonary'
39796             }
39797         };
39798         
39799         return cfg;
39800     },
39801     
39802     getChildContainer: function( )
39803     {
39804         if (this.boxesEl) {
39805             return this.boxesEl;
39806         }
39807         
39808         this.boxesEl = this.el.select('.mas-boxes').first();
39809         
39810         return this.boxesEl;
39811     },
39812     
39813     
39814     initEvents : function()
39815     {
39816         var _this = this;
39817         
39818         if(this.isAutoInitial){
39819             Roo.log('hook children rendered');
39820             this.on('childrenrendered', function() {
39821                 Roo.log('children rendered');
39822                 _this.initial();
39823             } ,this);
39824         }
39825     },
39826     
39827     initial : function()
39828     {
39829         this.selectedBrick = [];
39830         
39831         this.currentSize = this.el.getBox(true);
39832         
39833         Roo.EventManager.onWindowResize(this.resize, this); 
39834
39835         if(!this.isAutoInitial){
39836             this.layout();
39837             return;
39838         }
39839         
39840         this.layout();
39841         
39842         return;
39843         //this.layout.defer(500,this);
39844         
39845     },
39846     
39847     resize : function()
39848     {
39849         var cs = this.el.getBox(true);
39850         
39851         if (
39852                 this.currentSize.width == cs.width && 
39853                 this.currentSize.x == cs.x && 
39854                 this.currentSize.height == cs.height && 
39855                 this.currentSize.y == cs.y 
39856         ) {
39857             Roo.log("no change in with or X or Y");
39858             return;
39859         }
39860         
39861         this.currentSize = cs;
39862         
39863         this.layout();
39864         
39865     },
39866     
39867     layout : function()
39868     {   
39869         this._resetLayout();
39870         
39871         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
39872         
39873         this.layoutItems( isInstant );
39874       
39875         this._isLayoutInited = true;
39876         
39877         this.fireEvent('layout', this);
39878         
39879     },
39880     
39881     _resetLayout : function()
39882     {
39883         if(this.isHorizontal){
39884             this.horizontalMeasureColumns();
39885             return;
39886         }
39887         
39888         this.verticalMeasureColumns();
39889         
39890     },
39891     
39892     verticalMeasureColumns : function()
39893     {
39894         this.getContainerWidth();
39895         
39896 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
39897 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
39898 //            return;
39899 //        }
39900         
39901         var boxWidth = this.boxWidth + this.padWidth;
39902         
39903         if(this.containerWidth < this.boxWidth){
39904             boxWidth = this.containerWidth
39905         }
39906         
39907         var containerWidth = this.containerWidth;
39908         
39909         var cols = Math.floor(containerWidth / boxWidth);
39910         
39911         this.cols = Math.max( cols, 1 );
39912         
39913         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
39914         
39915         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
39916         
39917         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
39918         
39919         this.colWidth = boxWidth + avail - this.padWidth;
39920         
39921         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
39922         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
39923     },
39924     
39925     horizontalMeasureColumns : function()
39926     {
39927         this.getContainerWidth();
39928         
39929         var boxWidth = this.boxWidth;
39930         
39931         if(this.containerWidth < boxWidth){
39932             boxWidth = this.containerWidth;
39933         }
39934         
39935         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
39936         
39937         this.el.setHeight(boxWidth);
39938         
39939     },
39940     
39941     getContainerWidth : function()
39942     {
39943         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
39944     },
39945     
39946     layoutItems : function( isInstant )
39947     {
39948         Roo.log(this.bricks);
39949         
39950         var items = Roo.apply([], this.bricks);
39951         
39952         if(this.isHorizontal){
39953             this._horizontalLayoutItems( items , isInstant );
39954             return;
39955         }
39956         
39957 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
39958 //            this._verticalAlternativeLayoutItems( items , isInstant );
39959 //            return;
39960 //        }
39961         
39962         this._verticalLayoutItems( items , isInstant );
39963         
39964     },
39965     
39966     _verticalLayoutItems : function ( items , isInstant)
39967     {
39968         if ( !items || !items.length ) {
39969             return;
39970         }
39971         
39972         var standard = [
39973             ['xs', 'xs', 'xs', 'tall'],
39974             ['xs', 'xs', 'tall'],
39975             ['xs', 'xs', 'sm'],
39976             ['xs', 'xs', 'xs'],
39977             ['xs', 'tall'],
39978             ['xs', 'sm'],
39979             ['xs', 'xs'],
39980             ['xs'],
39981             
39982             ['sm', 'xs', 'xs'],
39983             ['sm', 'xs'],
39984             ['sm'],
39985             
39986             ['tall', 'xs', 'xs', 'xs'],
39987             ['tall', 'xs', 'xs'],
39988             ['tall', 'xs'],
39989             ['tall']
39990             
39991         ];
39992         
39993         var queue = [];
39994         
39995         var boxes = [];
39996         
39997         var box = [];
39998         
39999         Roo.each(items, function(item, k){
40000             
40001             switch (item.size) {
40002                 // these layouts take up a full box,
40003                 case 'md' :
40004                 case 'md-left' :
40005                 case 'md-right' :
40006                 case 'wide' :
40007                     
40008                     if(box.length){
40009                         boxes.push(box);
40010                         box = [];
40011                     }
40012                     
40013                     boxes.push([item]);
40014                     
40015                     break;
40016                     
40017                 case 'xs' :
40018                 case 'sm' :
40019                 case 'tall' :
40020                     
40021                     box.push(item);
40022                     
40023                     break;
40024                 default :
40025                     break;
40026                     
40027             }
40028             
40029         }, this);
40030         
40031         if(box.length){
40032             boxes.push(box);
40033             box = [];
40034         }
40035         
40036         var filterPattern = function(box, length)
40037         {
40038             if(!box.length){
40039                 return;
40040             }
40041             
40042             var match = false;
40043             
40044             var pattern = box.slice(0, length);
40045             
40046             var format = [];
40047             
40048             Roo.each(pattern, function(i){
40049                 format.push(i.size);
40050             }, this);
40051             
40052             Roo.each(standard, function(s){
40053                 
40054                 if(String(s) != String(format)){
40055                     return;
40056                 }
40057                 
40058                 match = true;
40059                 return false;
40060                 
40061             }, this);
40062             
40063             if(!match && length == 1){
40064                 return;
40065             }
40066             
40067             if(!match){
40068                 filterPattern(box, length - 1);
40069                 return;
40070             }
40071                 
40072             queue.push(pattern);
40073
40074             box = box.slice(length, box.length);
40075
40076             filterPattern(box, 4);
40077
40078             return;
40079             
40080         }
40081         
40082         Roo.each(boxes, function(box, k){
40083             
40084             if(!box.length){
40085                 return;
40086             }
40087             
40088             if(box.length == 1){
40089                 queue.push(box);
40090                 return;
40091             }
40092             
40093             filterPattern(box, 4);
40094             
40095         }, this);
40096         
40097         this._processVerticalLayoutQueue( queue, isInstant );
40098         
40099     },
40100     
40101 //    _verticalAlternativeLayoutItems : function( items , isInstant )
40102 //    {
40103 //        if ( !items || !items.length ) {
40104 //            return;
40105 //        }
40106 //
40107 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
40108 //        
40109 //    },
40110     
40111     _horizontalLayoutItems : function ( items , isInstant)
40112     {
40113         if ( !items || !items.length || items.length < 3) {
40114             return;
40115         }
40116         
40117         items.reverse();
40118         
40119         var eItems = items.slice(0, 3);
40120         
40121         items = items.slice(3, items.length);
40122         
40123         var standard = [
40124             ['xs', 'xs', 'xs', 'wide'],
40125             ['xs', 'xs', 'wide'],
40126             ['xs', 'xs', 'sm'],
40127             ['xs', 'xs', 'xs'],
40128             ['xs', 'wide'],
40129             ['xs', 'sm'],
40130             ['xs', 'xs'],
40131             ['xs'],
40132             
40133             ['sm', 'xs', 'xs'],
40134             ['sm', 'xs'],
40135             ['sm'],
40136             
40137             ['wide', 'xs', 'xs', 'xs'],
40138             ['wide', 'xs', 'xs'],
40139             ['wide', 'xs'],
40140             ['wide'],
40141             
40142             ['wide-thin']
40143         ];
40144         
40145         var queue = [];
40146         
40147         var boxes = [];
40148         
40149         var box = [];
40150         
40151         Roo.each(items, function(item, k){
40152             
40153             switch (item.size) {
40154                 case 'md' :
40155                 case 'md-left' :
40156                 case 'md-right' :
40157                 case 'tall' :
40158                     
40159                     if(box.length){
40160                         boxes.push(box);
40161                         box = [];
40162                     }
40163                     
40164                     boxes.push([item]);
40165                     
40166                     break;
40167                     
40168                 case 'xs' :
40169                 case 'sm' :
40170                 case 'wide' :
40171                 case 'wide-thin' :
40172                     
40173                     box.push(item);
40174                     
40175                     break;
40176                 default :
40177                     break;
40178                     
40179             }
40180             
40181         }, this);
40182         
40183         if(box.length){
40184             boxes.push(box);
40185             box = [];
40186         }
40187         
40188         var filterPattern = function(box, length)
40189         {
40190             if(!box.length){
40191                 return;
40192             }
40193             
40194             var match = false;
40195             
40196             var pattern = box.slice(0, length);
40197             
40198             var format = [];
40199             
40200             Roo.each(pattern, function(i){
40201                 format.push(i.size);
40202             }, this);
40203             
40204             Roo.each(standard, function(s){
40205                 
40206                 if(String(s) != String(format)){
40207                     return;
40208                 }
40209                 
40210                 match = true;
40211                 return false;
40212                 
40213             }, this);
40214             
40215             if(!match && length == 1){
40216                 return;
40217             }
40218             
40219             if(!match){
40220                 filterPattern(box, length - 1);
40221                 return;
40222             }
40223                 
40224             queue.push(pattern);
40225
40226             box = box.slice(length, box.length);
40227
40228             filterPattern(box, 4);
40229
40230             return;
40231             
40232         }
40233         
40234         Roo.each(boxes, function(box, k){
40235             
40236             if(!box.length){
40237                 return;
40238             }
40239             
40240             if(box.length == 1){
40241                 queue.push(box);
40242                 return;
40243             }
40244             
40245             filterPattern(box, 4);
40246             
40247         }, this);
40248         
40249         
40250         var prune = [];
40251         
40252         var pos = this.el.getBox(true);
40253         
40254         var minX = pos.x;
40255         
40256         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
40257         
40258         var hit_end = false;
40259         
40260         Roo.each(queue, function(box){
40261             
40262             if(hit_end){
40263                 
40264                 Roo.each(box, function(b){
40265                 
40266                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
40267                     b.el.hide();
40268
40269                 }, this);
40270
40271                 return;
40272             }
40273             
40274             var mx = 0;
40275             
40276             Roo.each(box, function(b){
40277                 
40278                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
40279                 b.el.show();
40280
40281                 mx = Math.max(mx, b.x);
40282                 
40283             }, this);
40284             
40285             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
40286             
40287             if(maxX < minX){
40288                 
40289                 Roo.each(box, function(b){
40290                 
40291                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
40292                     b.el.hide();
40293                     
40294                 }, this);
40295                 
40296                 hit_end = true;
40297                 
40298                 return;
40299             }
40300             
40301             prune.push(box);
40302             
40303         }, this);
40304         
40305         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
40306     },
40307     
40308     /** Sets position of item in DOM
40309     * @param {Element} item
40310     * @param {Number} x - horizontal position
40311     * @param {Number} y - vertical position
40312     * @param {Boolean} isInstant - disables transitions
40313     */
40314     _processVerticalLayoutQueue : function( queue, isInstant )
40315     {
40316         var pos = this.el.getBox(true);
40317         var x = pos.x;
40318         var y = pos.y;
40319         var maxY = [];
40320         
40321         for (var i = 0; i < this.cols; i++){
40322             maxY[i] = pos.y;
40323         }
40324         
40325         Roo.each(queue, function(box, k){
40326             
40327             var col = k % this.cols;
40328             
40329             Roo.each(box, function(b,kk){
40330                 
40331                 b.el.position('absolute');
40332                 
40333                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
40334                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
40335                 
40336                 if(b.size == 'md-left' || b.size == 'md-right'){
40337                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
40338                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
40339                 }
40340                 
40341                 b.el.setWidth(width);
40342                 b.el.setHeight(height);
40343                 // iframe?
40344                 b.el.select('iframe',true).setSize(width,height);
40345                 
40346             }, this);
40347             
40348             for (var i = 0; i < this.cols; i++){
40349                 
40350                 if(maxY[i] < maxY[col]){
40351                     col = i;
40352                     continue;
40353                 }
40354                 
40355                 col = Math.min(col, i);
40356                 
40357             }
40358             
40359             x = pos.x + col * (this.colWidth + this.padWidth);
40360             
40361             y = maxY[col];
40362             
40363             var positions = [];
40364             
40365             switch (box.length){
40366                 case 1 :
40367                     positions = this.getVerticalOneBoxColPositions(x, y, box);
40368                     break;
40369                 case 2 :
40370                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
40371                     break;
40372                 case 3 :
40373                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
40374                     break;
40375                 case 4 :
40376                     positions = this.getVerticalFourBoxColPositions(x, y, box);
40377                     break;
40378                 default :
40379                     break;
40380             }
40381             
40382             Roo.each(box, function(b,kk){
40383                 
40384                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
40385                 
40386                 var sz = b.el.getSize();
40387                 
40388                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
40389                 
40390             }, this);
40391             
40392         }, this);
40393         
40394         var mY = 0;
40395         
40396         for (var i = 0; i < this.cols; i++){
40397             mY = Math.max(mY, maxY[i]);
40398         }
40399         
40400         this.el.setHeight(mY - pos.y);
40401         
40402     },
40403     
40404 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
40405 //    {
40406 //        var pos = this.el.getBox(true);
40407 //        var x = pos.x;
40408 //        var y = pos.y;
40409 //        var maxX = pos.right;
40410 //        
40411 //        var maxHeight = 0;
40412 //        
40413 //        Roo.each(items, function(item, k){
40414 //            
40415 //            var c = k % 2;
40416 //            
40417 //            item.el.position('absolute');
40418 //                
40419 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
40420 //
40421 //            item.el.setWidth(width);
40422 //
40423 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
40424 //
40425 //            item.el.setHeight(height);
40426 //            
40427 //            if(c == 0){
40428 //                item.el.setXY([x, y], isInstant ? false : true);
40429 //            } else {
40430 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
40431 //            }
40432 //            
40433 //            y = y + height + this.alternativePadWidth;
40434 //            
40435 //            maxHeight = maxHeight + height + this.alternativePadWidth;
40436 //            
40437 //        }, this);
40438 //        
40439 //        this.el.setHeight(maxHeight);
40440 //        
40441 //    },
40442     
40443     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
40444     {
40445         var pos = this.el.getBox(true);
40446         
40447         var minX = pos.x;
40448         var minY = pos.y;
40449         
40450         var maxX = pos.right;
40451         
40452         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
40453         
40454         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
40455         
40456         Roo.each(queue, function(box, k){
40457             
40458             Roo.each(box, function(b, kk){
40459                 
40460                 b.el.position('absolute');
40461                 
40462                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
40463                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
40464                 
40465                 if(b.size == 'md-left' || b.size == 'md-right'){
40466                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
40467                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
40468                 }
40469                 
40470                 b.el.setWidth(width);
40471                 b.el.setHeight(height);
40472                 
40473             }, this);
40474             
40475             if(!box.length){
40476                 return;
40477             }
40478             
40479             var positions = [];
40480             
40481             switch (box.length){
40482                 case 1 :
40483                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
40484                     break;
40485                 case 2 :
40486                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
40487                     break;
40488                 case 3 :
40489                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
40490                     break;
40491                 case 4 :
40492                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
40493                     break;
40494                 default :
40495                     break;
40496             }
40497             
40498             Roo.each(box, function(b,kk){
40499                 
40500                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
40501                 
40502                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
40503                 
40504             }, this);
40505             
40506         }, this);
40507         
40508     },
40509     
40510     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
40511     {
40512         Roo.each(eItems, function(b,k){
40513             
40514             b.size = (k == 0) ? 'sm' : 'xs';
40515             b.x = (k == 0) ? 2 : 1;
40516             b.y = (k == 0) ? 2 : 1;
40517             
40518             b.el.position('absolute');
40519             
40520             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
40521                 
40522             b.el.setWidth(width);
40523             
40524             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
40525             
40526             b.el.setHeight(height);
40527             
40528         }, this);
40529
40530         var positions = [];
40531         
40532         positions.push({
40533             x : maxX - this.unitWidth * 2 - this.gutter,
40534             y : minY
40535         });
40536         
40537         positions.push({
40538             x : maxX - this.unitWidth,
40539             y : minY + (this.unitWidth + this.gutter) * 2
40540         });
40541         
40542         positions.push({
40543             x : maxX - this.unitWidth * 3 - this.gutter * 2,
40544             y : minY
40545         });
40546         
40547         Roo.each(eItems, function(b,k){
40548             
40549             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
40550
40551         }, this);
40552         
40553     },
40554     
40555     getVerticalOneBoxColPositions : function(x, y, box)
40556     {
40557         var pos = [];
40558         
40559         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
40560         
40561         if(box[0].size == 'md-left'){
40562             rand = 0;
40563         }
40564         
40565         if(box[0].size == 'md-right'){
40566             rand = 1;
40567         }
40568         
40569         pos.push({
40570             x : x + (this.unitWidth + this.gutter) * rand,
40571             y : y
40572         });
40573         
40574         return pos;
40575     },
40576     
40577     getVerticalTwoBoxColPositions : function(x, y, box)
40578     {
40579         var pos = [];
40580         
40581         if(box[0].size == 'xs'){
40582             
40583             pos.push({
40584                 x : x,
40585                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
40586             });
40587
40588             pos.push({
40589                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
40590                 y : y
40591             });
40592             
40593             return pos;
40594             
40595         }
40596         
40597         pos.push({
40598             x : x,
40599             y : y
40600         });
40601
40602         pos.push({
40603             x : x + (this.unitWidth + this.gutter) * 2,
40604             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
40605         });
40606         
40607         return pos;
40608         
40609     },
40610     
40611     getVerticalThreeBoxColPositions : function(x, y, box)
40612     {
40613         var pos = [];
40614         
40615         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
40616             
40617             pos.push({
40618                 x : x,
40619                 y : y
40620             });
40621
40622             pos.push({
40623                 x : x + (this.unitWidth + this.gutter) * 1,
40624                 y : y
40625             });
40626             
40627             pos.push({
40628                 x : x + (this.unitWidth + this.gutter) * 2,
40629                 y : y
40630             });
40631             
40632             return pos;
40633             
40634         }
40635         
40636         if(box[0].size == 'xs' && box[1].size == 'xs'){
40637             
40638             pos.push({
40639                 x : x,
40640                 y : y
40641             });
40642
40643             pos.push({
40644                 x : x,
40645                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
40646             });
40647             
40648             pos.push({
40649                 x : x + (this.unitWidth + this.gutter) * 1,
40650                 y : y
40651             });
40652             
40653             return pos;
40654             
40655         }
40656         
40657         pos.push({
40658             x : x,
40659             y : y
40660         });
40661
40662         pos.push({
40663             x : x + (this.unitWidth + this.gutter) * 2,
40664             y : y
40665         });
40666
40667         pos.push({
40668             x : x + (this.unitWidth + this.gutter) * 2,
40669             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
40670         });
40671             
40672         return pos;
40673         
40674     },
40675     
40676     getVerticalFourBoxColPositions : function(x, y, box)
40677     {
40678         var pos = [];
40679         
40680         if(box[0].size == 'xs'){
40681             
40682             pos.push({
40683                 x : x,
40684                 y : y
40685             });
40686
40687             pos.push({
40688                 x : x,
40689                 y : y + (this.unitHeight + this.gutter) * 1
40690             });
40691             
40692             pos.push({
40693                 x : x,
40694                 y : y + (this.unitHeight + this.gutter) * 2
40695             });
40696             
40697             pos.push({
40698                 x : x + (this.unitWidth + this.gutter) * 1,
40699                 y : y
40700             });
40701             
40702             return pos;
40703             
40704         }
40705         
40706         pos.push({
40707             x : x,
40708             y : y
40709         });
40710
40711         pos.push({
40712             x : x + (this.unitWidth + this.gutter) * 2,
40713             y : y
40714         });
40715
40716         pos.push({
40717             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
40718             y : y + (this.unitHeight + this.gutter) * 1
40719         });
40720
40721         pos.push({
40722             x : x + (this.unitWidth + this.gutter) * 2,
40723             y : y + (this.unitWidth + this.gutter) * 2
40724         });
40725
40726         return pos;
40727         
40728     },
40729     
40730     getHorizontalOneBoxColPositions : function(maxX, minY, box)
40731     {
40732         var pos = [];
40733         
40734         if(box[0].size == 'md-left'){
40735             pos.push({
40736                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
40737                 y : minY
40738             });
40739             
40740             return pos;
40741         }
40742         
40743         if(box[0].size == 'md-right'){
40744             pos.push({
40745                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
40746                 y : minY + (this.unitWidth + this.gutter) * 1
40747             });
40748             
40749             return pos;
40750         }
40751         
40752         var rand = Math.floor(Math.random() * (4 - box[0].y));
40753         
40754         pos.push({
40755             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
40756             y : minY + (this.unitWidth + this.gutter) * rand
40757         });
40758         
40759         return pos;
40760         
40761     },
40762     
40763     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
40764     {
40765         var pos = [];
40766         
40767         if(box[0].size == 'xs'){
40768             
40769             pos.push({
40770                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
40771                 y : minY
40772             });
40773
40774             pos.push({
40775                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
40776                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
40777             });
40778             
40779             return pos;
40780             
40781         }
40782         
40783         pos.push({
40784             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
40785             y : minY
40786         });
40787
40788         pos.push({
40789             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
40790             y : minY + (this.unitWidth + this.gutter) * 2
40791         });
40792         
40793         return pos;
40794         
40795     },
40796     
40797     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
40798     {
40799         var pos = [];
40800         
40801         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
40802             
40803             pos.push({
40804                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
40805                 y : minY
40806             });
40807
40808             pos.push({
40809                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
40810                 y : minY + (this.unitWidth + this.gutter) * 1
40811             });
40812             
40813             pos.push({
40814                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
40815                 y : minY + (this.unitWidth + this.gutter) * 2
40816             });
40817             
40818             return pos;
40819             
40820         }
40821         
40822         if(box[0].size == 'xs' && box[1].size == 'xs'){
40823             
40824             pos.push({
40825                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
40826                 y : minY
40827             });
40828
40829             pos.push({
40830                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
40831                 y : minY
40832             });
40833             
40834             pos.push({
40835                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
40836                 y : minY + (this.unitWidth + this.gutter) * 1
40837             });
40838             
40839             return pos;
40840             
40841         }
40842         
40843         pos.push({
40844             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
40845             y : minY
40846         });
40847
40848         pos.push({
40849             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
40850             y : minY + (this.unitWidth + this.gutter) * 2
40851         });
40852
40853         pos.push({
40854             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
40855             y : minY + (this.unitWidth + this.gutter) * 2
40856         });
40857             
40858         return pos;
40859         
40860     },
40861     
40862     getHorizontalFourBoxColPositions : function(maxX, minY, box)
40863     {
40864         var pos = [];
40865         
40866         if(box[0].size == 'xs'){
40867             
40868             pos.push({
40869                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
40870                 y : minY
40871             });
40872
40873             pos.push({
40874                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
40875                 y : minY
40876             });
40877             
40878             pos.push({
40879                 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),
40880                 y : minY
40881             });
40882             
40883             pos.push({
40884                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
40885                 y : minY + (this.unitWidth + this.gutter) * 1
40886             });
40887             
40888             return pos;
40889             
40890         }
40891         
40892         pos.push({
40893             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
40894             y : minY
40895         });
40896         
40897         pos.push({
40898             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
40899             y : minY + (this.unitWidth + this.gutter) * 2
40900         });
40901         
40902         pos.push({
40903             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
40904             y : minY + (this.unitWidth + this.gutter) * 2
40905         });
40906         
40907         pos.push({
40908             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),
40909             y : minY + (this.unitWidth + this.gutter) * 2
40910         });
40911
40912         return pos;
40913         
40914     },
40915     
40916     /**
40917     * remove a Masonry Brick
40918     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
40919     */
40920     removeBrick : function(brick_id)
40921     {
40922         if (!brick_id) {
40923             return;
40924         }
40925         
40926         for (var i = 0; i<this.bricks.length; i++) {
40927             if (this.bricks[i].id == brick_id) {
40928                 this.bricks.splice(i,1);
40929                 this.el.dom.removeChild(Roo.get(brick_id).dom);
40930                 this.initial();
40931             }
40932         }
40933     },
40934     
40935     /**
40936     * adds a Masonry Brick
40937     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
40938     */
40939     addBrick : function(cfg)
40940     {
40941         var cn = new Roo.bootstrap.MasonryBrick(cfg);
40942         //this.register(cn);
40943         cn.parentId = this.id;
40944         cn.render(this.el);
40945         return cn;
40946     },
40947     
40948     /**
40949     * register a Masonry Brick
40950     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
40951     */
40952     
40953     register : function(brick)
40954     {
40955         this.bricks.push(brick);
40956         brick.masonryId = this.id;
40957     },
40958     
40959     /**
40960     * clear all the Masonry Brick
40961     */
40962     clearAll : function()
40963     {
40964         this.bricks = [];
40965         //this.getChildContainer().dom.innerHTML = "";
40966         this.el.dom.innerHTML = '';
40967     },
40968     
40969     getSelected : function()
40970     {
40971         if (!this.selectedBrick) {
40972             return false;
40973         }
40974         
40975         return this.selectedBrick;
40976     }
40977 });
40978
40979 Roo.apply(Roo.bootstrap.LayoutMasonry, {
40980     
40981     groups: {},
40982      /**
40983     * register a Masonry Layout
40984     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
40985     */
40986     
40987     register : function(layout)
40988     {
40989         this.groups[layout.id] = layout;
40990     },
40991     /**
40992     * fetch a  Masonry Layout based on the masonry layout ID
40993     * @param {string} the masonry layout to add
40994     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
40995     */
40996     
40997     get: function(layout_id) {
40998         if (typeof(this.groups[layout_id]) == 'undefined') {
40999             return false;
41000         }
41001         return this.groups[layout_id] ;
41002     }
41003     
41004     
41005     
41006 });
41007
41008  
41009
41010  /**
41011  *
41012  * This is based on 
41013  * http://masonry.desandro.com
41014  *
41015  * The idea is to render all the bricks based on vertical width...
41016  *
41017  * The original code extends 'outlayer' - we might need to use that....
41018  * 
41019  */
41020
41021
41022 /**
41023  * @class Roo.bootstrap.LayoutMasonryAuto
41024  * @extends Roo.bootstrap.Component
41025  * Bootstrap Layout Masonry class
41026  * 
41027  * @constructor
41028  * Create a new Element
41029  * @param {Object} config The config object
41030  */
41031
41032 Roo.bootstrap.LayoutMasonryAuto = function(config){
41033     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
41034 };
41035
41036 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
41037     
41038       /**
41039      * @cfg {Boolean} isFitWidth  - resize the width..
41040      */   
41041     isFitWidth : false,  // options..
41042     /**
41043      * @cfg {Boolean} isOriginLeft = left align?
41044      */   
41045     isOriginLeft : true,
41046     /**
41047      * @cfg {Boolean} isOriginTop = top align?
41048      */   
41049     isOriginTop : false,
41050     /**
41051      * @cfg {Boolean} isLayoutInstant = no animation?
41052      */   
41053     isLayoutInstant : false, // needed?
41054     /**
41055      * @cfg {Boolean} isResizingContainer = not sure if this is used..
41056      */   
41057     isResizingContainer : true,
41058     /**
41059      * @cfg {Number} columnWidth  width of the columns 
41060      */   
41061     
41062     columnWidth : 0,
41063     
41064     /**
41065      * @cfg {Number} maxCols maximum number of columns
41066      */   
41067     
41068     maxCols: 0,
41069     /**
41070      * @cfg {Number} padHeight padding below box..
41071      */   
41072     
41073     padHeight : 10, 
41074     
41075     /**
41076      * @cfg {Boolean} isAutoInitial defalut true
41077      */   
41078     
41079     isAutoInitial : true, 
41080     
41081     // private?
41082     gutter : 0,
41083     
41084     containerWidth: 0,
41085     initialColumnWidth : 0,
41086     currentSize : null,
41087     
41088     colYs : null, // array.
41089     maxY : 0,
41090     padWidth: 10,
41091     
41092     
41093     tag: 'div',
41094     cls: '',
41095     bricks: null, //CompositeElement
41096     cols : 0, // array?
41097     // element : null, // wrapped now this.el
41098     _isLayoutInited : null, 
41099     
41100     
41101     getAutoCreate : function(){
41102         
41103         var cfg = {
41104             tag: this.tag,
41105             cls: 'blog-masonary-wrapper ' + this.cls,
41106             cn : {
41107                 cls : 'mas-boxes masonary'
41108             }
41109         };
41110         
41111         return cfg;
41112     },
41113     
41114     getChildContainer: function( )
41115     {
41116         if (this.boxesEl) {
41117             return this.boxesEl;
41118         }
41119         
41120         this.boxesEl = this.el.select('.mas-boxes').first();
41121         
41122         return this.boxesEl;
41123     },
41124     
41125     
41126     initEvents : function()
41127     {
41128         var _this = this;
41129         
41130         if(this.isAutoInitial){
41131             Roo.log('hook children rendered');
41132             this.on('childrenrendered', function() {
41133                 Roo.log('children rendered');
41134                 _this.initial();
41135             } ,this);
41136         }
41137         
41138     },
41139     
41140     initial : function()
41141     {
41142         this.reloadItems();
41143
41144         this.currentSize = this.el.getBox(true);
41145
41146         /// was window resize... - let's see if this works..
41147         Roo.EventManager.onWindowResize(this.resize, this); 
41148
41149         if(!this.isAutoInitial){
41150             this.layout();
41151             return;
41152         }
41153         
41154         this.layout.defer(500,this);
41155     },
41156     
41157     reloadItems: function()
41158     {
41159         this.bricks = this.el.select('.masonry-brick', true);
41160         
41161         this.bricks.each(function(b) {
41162             //Roo.log(b.getSize());
41163             if (!b.attr('originalwidth')) {
41164                 b.attr('originalwidth',  b.getSize().width);
41165             }
41166             
41167         });
41168         
41169         Roo.log(this.bricks.elements.length);
41170     },
41171     
41172     resize : function()
41173     {
41174         Roo.log('resize');
41175         var cs = this.el.getBox(true);
41176         
41177         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
41178             Roo.log("no change in with or X");
41179             return;
41180         }
41181         this.currentSize = cs;
41182         this.layout();
41183     },
41184     
41185     layout : function()
41186     {
41187          Roo.log('layout');
41188         this._resetLayout();
41189         //this._manageStamps();
41190       
41191         // don't animate first layout
41192         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
41193         this.layoutItems( isInstant );
41194       
41195         // flag for initalized
41196         this._isLayoutInited = true;
41197     },
41198     
41199     layoutItems : function( isInstant )
41200     {
41201         //var items = this._getItemsForLayout( this.items );
41202         // original code supports filtering layout items.. we just ignore it..
41203         
41204         this._layoutItems( this.bricks , isInstant );
41205       
41206         this._postLayout();
41207     },
41208     _layoutItems : function ( items , isInstant)
41209     {
41210        //this.fireEvent( 'layout', this, items );
41211     
41212
41213         if ( !items || !items.elements.length ) {
41214           // no items, emit event with empty array
41215             return;
41216         }
41217
41218         var queue = [];
41219         items.each(function(item) {
41220             Roo.log("layout item");
41221             Roo.log(item);
41222             // get x/y object from method
41223             var position = this._getItemLayoutPosition( item );
41224             // enqueue
41225             position.item = item;
41226             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
41227             queue.push( position );
41228         }, this);
41229       
41230         this._processLayoutQueue( queue );
41231     },
41232     /** Sets position of item in DOM
41233     * @param {Element} item
41234     * @param {Number} x - horizontal position
41235     * @param {Number} y - vertical position
41236     * @param {Boolean} isInstant - disables transitions
41237     */
41238     _processLayoutQueue : function( queue )
41239     {
41240         for ( var i=0, len = queue.length; i < len; i++ ) {
41241             var obj = queue[i];
41242             obj.item.position('absolute');
41243             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
41244         }
41245     },
41246       
41247     
41248     /**
41249     * Any logic you want to do after each layout,
41250     * i.e. size the container
41251     */
41252     _postLayout : function()
41253     {
41254         this.resizeContainer();
41255     },
41256     
41257     resizeContainer : function()
41258     {
41259         if ( !this.isResizingContainer ) {
41260             return;
41261         }
41262         var size = this._getContainerSize();
41263         if ( size ) {
41264             this.el.setSize(size.width,size.height);
41265             this.boxesEl.setSize(size.width,size.height);
41266         }
41267     },
41268     
41269     
41270     
41271     _resetLayout : function()
41272     {
41273         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
41274         this.colWidth = this.el.getWidth();
41275         //this.gutter = this.el.getWidth(); 
41276         
41277         this.measureColumns();
41278
41279         // reset column Y
41280         var i = this.cols;
41281         this.colYs = [];
41282         while (i--) {
41283             this.colYs.push( 0 );
41284         }
41285     
41286         this.maxY = 0;
41287     },
41288
41289     measureColumns : function()
41290     {
41291         this.getContainerWidth();
41292       // if columnWidth is 0, default to outerWidth of first item
41293         if ( !this.columnWidth ) {
41294             var firstItem = this.bricks.first();
41295             Roo.log(firstItem);
41296             this.columnWidth  = this.containerWidth;
41297             if (firstItem && firstItem.attr('originalwidth') ) {
41298                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
41299             }
41300             // columnWidth fall back to item of first element
41301             Roo.log("set column width?");
41302                         this.initialColumnWidth = this.columnWidth  ;
41303
41304             // if first elem has no width, default to size of container
41305             
41306         }
41307         
41308         
41309         if (this.initialColumnWidth) {
41310             this.columnWidth = this.initialColumnWidth;
41311         }
41312         
41313         
41314             
41315         // column width is fixed at the top - however if container width get's smaller we should
41316         // reduce it...
41317         
41318         // this bit calcs how man columns..
41319             
41320         var columnWidth = this.columnWidth += this.gutter;
41321       
41322         // calculate columns
41323         var containerWidth = this.containerWidth + this.gutter;
41324         
41325         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
41326         // fix rounding errors, typically with gutters
41327         var excess = columnWidth - containerWidth % columnWidth;
41328         
41329         
41330         // if overshoot is less than a pixel, round up, otherwise floor it
41331         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
41332         cols = Math[ mathMethod ]( cols );
41333         this.cols = Math.max( cols, 1 );
41334         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
41335         
41336          // padding positioning..
41337         var totalColWidth = this.cols * this.columnWidth;
41338         var padavail = this.containerWidth - totalColWidth;
41339         // so for 2 columns - we need 3 'pads'
41340         
41341         var padNeeded = (1+this.cols) * this.padWidth;
41342         
41343         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
41344         
41345         this.columnWidth += padExtra
41346         //this.padWidth = Math.floor(padavail /  ( this.cols));
41347         
41348         // adjust colum width so that padding is fixed??
41349         
41350         // we have 3 columns ... total = width * 3
41351         // we have X left over... that should be used by 
41352         
41353         //if (this.expandC) {
41354             
41355         //}
41356         
41357         
41358         
41359     },
41360     
41361     getContainerWidth : function()
41362     {
41363        /* // container is parent if fit width
41364         var container = this.isFitWidth ? this.element.parentNode : this.element;
41365         // check that this.size and size are there
41366         // IE8 triggers resize on body size change, so they might not be
41367         
41368         var size = getSize( container );  //FIXME
41369         this.containerWidth = size && size.innerWidth; //FIXME
41370         */
41371          
41372         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
41373         
41374     },
41375     
41376     _getItemLayoutPosition : function( item )  // what is item?
41377     {
41378         // we resize the item to our columnWidth..
41379       
41380         item.setWidth(this.columnWidth);
41381         item.autoBoxAdjust  = false;
41382         
41383         var sz = item.getSize();
41384  
41385         // how many columns does this brick span
41386         var remainder = this.containerWidth % this.columnWidth;
41387         
41388         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
41389         // round if off by 1 pixel, otherwise use ceil
41390         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
41391         colSpan = Math.min( colSpan, this.cols );
41392         
41393         // normally this should be '1' as we dont' currently allow multi width columns..
41394         
41395         var colGroup = this._getColGroup( colSpan );
41396         // get the minimum Y value from the columns
41397         var minimumY = Math.min.apply( Math, colGroup );
41398         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
41399         
41400         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
41401          
41402         // position the brick
41403         var position = {
41404             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
41405             y: this.currentSize.y + minimumY + this.padHeight
41406         };
41407         
41408         Roo.log(position);
41409         // apply setHeight to necessary columns
41410         var setHeight = minimumY + sz.height + this.padHeight;
41411         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
41412         
41413         var setSpan = this.cols + 1 - colGroup.length;
41414         for ( var i = 0; i < setSpan; i++ ) {
41415           this.colYs[ shortColIndex + i ] = setHeight ;
41416         }
41417       
41418         return position;
41419     },
41420     
41421     /**
41422      * @param {Number} colSpan - number of columns the element spans
41423      * @returns {Array} colGroup
41424      */
41425     _getColGroup : function( colSpan )
41426     {
41427         if ( colSpan < 2 ) {
41428           // if brick spans only one column, use all the column Ys
41429           return this.colYs;
41430         }
41431       
41432         var colGroup = [];
41433         // how many different places could this brick fit horizontally
41434         var groupCount = this.cols + 1 - colSpan;
41435         // for each group potential horizontal position
41436         for ( var i = 0; i < groupCount; i++ ) {
41437           // make an array of colY values for that one group
41438           var groupColYs = this.colYs.slice( i, i + colSpan );
41439           // and get the max value of the array
41440           colGroup[i] = Math.max.apply( Math, groupColYs );
41441         }
41442         return colGroup;
41443     },
41444     /*
41445     _manageStamp : function( stamp )
41446     {
41447         var stampSize =  stamp.getSize();
41448         var offset = stamp.getBox();
41449         // get the columns that this stamp affects
41450         var firstX = this.isOriginLeft ? offset.x : offset.right;
41451         var lastX = firstX + stampSize.width;
41452         var firstCol = Math.floor( firstX / this.columnWidth );
41453         firstCol = Math.max( 0, firstCol );
41454         
41455         var lastCol = Math.floor( lastX / this.columnWidth );
41456         // lastCol should not go over if multiple of columnWidth #425
41457         lastCol -= lastX % this.columnWidth ? 0 : 1;
41458         lastCol = Math.min( this.cols - 1, lastCol );
41459         
41460         // set colYs to bottom of the stamp
41461         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
41462             stampSize.height;
41463             
41464         for ( var i = firstCol; i <= lastCol; i++ ) {
41465           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
41466         }
41467     },
41468     */
41469     
41470     _getContainerSize : function()
41471     {
41472         this.maxY = Math.max.apply( Math, this.colYs );
41473         var size = {
41474             height: this.maxY
41475         };
41476       
41477         if ( this.isFitWidth ) {
41478             size.width = this._getContainerFitWidth();
41479         }
41480       
41481         return size;
41482     },
41483     
41484     _getContainerFitWidth : function()
41485     {
41486         var unusedCols = 0;
41487         // count unused columns
41488         var i = this.cols;
41489         while ( --i ) {
41490           if ( this.colYs[i] !== 0 ) {
41491             break;
41492           }
41493           unusedCols++;
41494         }
41495         // fit container to columns that have been used
41496         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
41497     },
41498     
41499     needsResizeLayout : function()
41500     {
41501         var previousWidth = this.containerWidth;
41502         this.getContainerWidth();
41503         return previousWidth !== this.containerWidth;
41504     }
41505  
41506 });
41507
41508  
41509
41510  /*
41511  * - LGPL
41512  *
41513  * element
41514  * 
41515  */
41516
41517 /**
41518  * @class Roo.bootstrap.MasonryBrick
41519  * @extends Roo.bootstrap.Component
41520  * Bootstrap MasonryBrick class
41521  * 
41522  * @constructor
41523  * Create a new MasonryBrick
41524  * @param {Object} config The config object
41525  */
41526
41527 Roo.bootstrap.MasonryBrick = function(config){
41528     
41529     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
41530     
41531     Roo.bootstrap.MasonryBrick.register(this);
41532     
41533     this.addEvents({
41534         // raw events
41535         /**
41536          * @event click
41537          * When a MasonryBrick is clcik
41538          * @param {Roo.bootstrap.MasonryBrick} this
41539          * @param {Roo.EventObject} e
41540          */
41541         "click" : true
41542     });
41543 };
41544
41545 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
41546     
41547     /**
41548      * @cfg {String} title
41549      */   
41550     title : '',
41551     /**
41552      * @cfg {String} html
41553      */   
41554     html : '',
41555     /**
41556      * @cfg {String} bgimage
41557      */   
41558     bgimage : '',
41559     /**
41560      * @cfg {String} videourl
41561      */   
41562     videourl : '',
41563     /**
41564      * @cfg {String} cls
41565      */   
41566     cls : '',
41567     /**
41568      * @cfg {String} href
41569      */   
41570     href : '',
41571     /**
41572      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
41573      */   
41574     size : 'xs',
41575     
41576     /**
41577      * @cfg {String} placetitle (center|bottom)
41578      */   
41579     placetitle : '',
41580     
41581     /**
41582      * @cfg {Boolean} isFitContainer defalut true
41583      */   
41584     isFitContainer : true, 
41585     
41586     /**
41587      * @cfg {Boolean} preventDefault defalut false
41588      */   
41589     preventDefault : false, 
41590     
41591     /**
41592      * @cfg {Boolean} inverse defalut false
41593      */   
41594     maskInverse : false, 
41595     
41596     getAutoCreate : function()
41597     {
41598         if(!this.isFitContainer){
41599             return this.getSplitAutoCreate();
41600         }
41601         
41602         var cls = 'masonry-brick masonry-brick-full';
41603         
41604         if(this.href.length){
41605             cls += ' masonry-brick-link';
41606         }
41607         
41608         if(this.bgimage.length){
41609             cls += ' masonry-brick-image';
41610         }
41611         
41612         if(this.maskInverse){
41613             cls += ' mask-inverse';
41614         }
41615         
41616         if(!this.html.length && !this.maskInverse && !this.videourl.length){
41617             cls += ' enable-mask';
41618         }
41619         
41620         if(this.size){
41621             cls += ' masonry-' + this.size + '-brick';
41622         }
41623         
41624         if(this.placetitle.length){
41625             
41626             switch (this.placetitle) {
41627                 case 'center' :
41628                     cls += ' masonry-center-title';
41629                     break;
41630                 case 'bottom' :
41631                     cls += ' masonry-bottom-title';
41632                     break;
41633                 default:
41634                     break;
41635             }
41636             
41637         } else {
41638             if(!this.html.length && !this.bgimage.length){
41639                 cls += ' masonry-center-title';
41640             }
41641
41642             if(!this.html.length && this.bgimage.length){
41643                 cls += ' masonry-bottom-title';
41644             }
41645         }
41646         
41647         if(this.cls){
41648             cls += ' ' + this.cls;
41649         }
41650         
41651         var cfg = {
41652             tag: (this.href.length) ? 'a' : 'div',
41653             cls: cls,
41654             cn: [
41655                 {
41656                     tag: 'div',
41657                     cls: 'masonry-brick-mask'
41658                 },
41659                 {
41660                     tag: 'div',
41661                     cls: 'masonry-brick-paragraph',
41662                     cn: []
41663                 }
41664             ]
41665         };
41666         
41667         if(this.href.length){
41668             cfg.href = this.href;
41669         }
41670         
41671         var cn = cfg.cn[1].cn;
41672         
41673         if(this.title.length){
41674             cn.push({
41675                 tag: 'h4',
41676                 cls: 'masonry-brick-title',
41677                 html: this.title
41678             });
41679         }
41680         
41681         if(this.html.length){
41682             cn.push({
41683                 tag: 'p',
41684                 cls: 'masonry-brick-text',
41685                 html: this.html
41686             });
41687         }
41688         
41689         if (!this.title.length && !this.html.length) {
41690             cfg.cn[1].cls += ' hide';
41691         }
41692         
41693         if(this.bgimage.length){
41694             cfg.cn.push({
41695                 tag: 'img',
41696                 cls: 'masonry-brick-image-view',
41697                 src: this.bgimage
41698             });
41699         }
41700         
41701         if(this.videourl.length){
41702             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
41703             // youtube support only?
41704             cfg.cn.push({
41705                 tag: 'iframe',
41706                 cls: 'masonry-brick-image-view',
41707                 src: vurl,
41708                 frameborder : 0,
41709                 allowfullscreen : true
41710             });
41711         }
41712         
41713         return cfg;
41714         
41715     },
41716     
41717     getSplitAutoCreate : function()
41718     {
41719         var cls = 'masonry-brick masonry-brick-split';
41720         
41721         if(this.href.length){
41722             cls += ' masonry-brick-link';
41723         }
41724         
41725         if(this.bgimage.length){
41726             cls += ' masonry-brick-image';
41727         }
41728         
41729         if(this.size){
41730             cls += ' masonry-' + this.size + '-brick';
41731         }
41732         
41733         switch (this.placetitle) {
41734             case 'center' :
41735                 cls += ' masonry-center-title';
41736                 break;
41737             case 'bottom' :
41738                 cls += ' masonry-bottom-title';
41739                 break;
41740             default:
41741                 if(!this.bgimage.length){
41742                     cls += ' masonry-center-title';
41743                 }
41744
41745                 if(this.bgimage.length){
41746                     cls += ' masonry-bottom-title';
41747                 }
41748                 break;
41749         }
41750         
41751         if(this.cls){
41752             cls += ' ' + this.cls;
41753         }
41754         
41755         var cfg = {
41756             tag: (this.href.length) ? 'a' : 'div',
41757             cls: cls,
41758             cn: [
41759                 {
41760                     tag: 'div',
41761                     cls: 'masonry-brick-split-head',
41762                     cn: [
41763                         {
41764                             tag: 'div',
41765                             cls: 'masonry-brick-paragraph',
41766                             cn: []
41767                         }
41768                     ]
41769                 },
41770                 {
41771                     tag: 'div',
41772                     cls: 'masonry-brick-split-body',
41773                     cn: []
41774                 }
41775             ]
41776         };
41777         
41778         if(this.href.length){
41779             cfg.href = this.href;
41780         }
41781         
41782         if(this.title.length){
41783             cfg.cn[0].cn[0].cn.push({
41784                 tag: 'h4',
41785                 cls: 'masonry-brick-title',
41786                 html: this.title
41787             });
41788         }
41789         
41790         if(this.html.length){
41791             cfg.cn[1].cn.push({
41792                 tag: 'p',
41793                 cls: 'masonry-brick-text',
41794                 html: this.html
41795             });
41796         }
41797
41798         if(this.bgimage.length){
41799             cfg.cn[0].cn.push({
41800                 tag: 'img',
41801                 cls: 'masonry-brick-image-view',
41802                 src: this.bgimage
41803             });
41804         }
41805         
41806         if(this.videourl.length){
41807             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
41808             // youtube support only?
41809             cfg.cn[0].cn.cn.push({
41810                 tag: 'iframe',
41811                 cls: 'masonry-brick-image-view',
41812                 src: vurl,
41813                 frameborder : 0,
41814                 allowfullscreen : true
41815             });
41816         }
41817         
41818         return cfg;
41819     },
41820     
41821     initEvents: function() 
41822     {
41823         switch (this.size) {
41824             case 'xs' :
41825                 this.x = 1;
41826                 this.y = 1;
41827                 break;
41828             case 'sm' :
41829                 this.x = 2;
41830                 this.y = 2;
41831                 break;
41832             case 'md' :
41833             case 'md-left' :
41834             case 'md-right' :
41835                 this.x = 3;
41836                 this.y = 3;
41837                 break;
41838             case 'tall' :
41839                 this.x = 2;
41840                 this.y = 3;
41841                 break;
41842             case 'wide' :
41843                 this.x = 3;
41844                 this.y = 2;
41845                 break;
41846             case 'wide-thin' :
41847                 this.x = 3;
41848                 this.y = 1;
41849                 break;
41850                         
41851             default :
41852                 break;
41853         }
41854         
41855         if(Roo.isTouch){
41856             this.el.on('touchstart', this.onTouchStart, this);
41857             this.el.on('touchmove', this.onTouchMove, this);
41858             this.el.on('touchend', this.onTouchEnd, this);
41859             this.el.on('contextmenu', this.onContextMenu, this);
41860         } else {
41861             this.el.on('mouseenter'  ,this.enter, this);
41862             this.el.on('mouseleave', this.leave, this);
41863             this.el.on('click', this.onClick, this);
41864         }
41865         
41866         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
41867             this.parent().bricks.push(this);   
41868         }
41869         
41870     },
41871     
41872     onClick: function(e, el)
41873     {
41874         var time = this.endTimer - this.startTimer;
41875         // Roo.log(e.preventDefault());
41876         if(Roo.isTouch){
41877             if(time > 1000){
41878                 e.preventDefault();
41879                 return;
41880             }
41881         }
41882         
41883         if(!this.preventDefault){
41884             return;
41885         }
41886         
41887         e.preventDefault();
41888         
41889         if (this.activeClass != '') {
41890             this.selectBrick();
41891         }
41892         
41893         this.fireEvent('click', this, e);
41894     },
41895     
41896     enter: function(e, el)
41897     {
41898         e.preventDefault();
41899         
41900         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
41901             return;
41902         }
41903         
41904         if(this.bgimage.length && this.html.length){
41905             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
41906         }
41907     },
41908     
41909     leave: function(e, el)
41910     {
41911         e.preventDefault();
41912         
41913         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
41914             return;
41915         }
41916         
41917         if(this.bgimage.length && this.html.length){
41918             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
41919         }
41920     },
41921     
41922     onTouchStart: function(e, el)
41923     {
41924 //        e.preventDefault();
41925         
41926         this.touchmoved = false;
41927         
41928         if(!this.isFitContainer){
41929             return;
41930         }
41931         
41932         if(!this.bgimage.length || !this.html.length){
41933             return;
41934         }
41935         
41936         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
41937         
41938         this.timer = new Date().getTime();
41939         
41940     },
41941     
41942     onTouchMove: function(e, el)
41943     {
41944         this.touchmoved = true;
41945     },
41946     
41947     onContextMenu : function(e,el)
41948     {
41949         e.preventDefault();
41950         e.stopPropagation();
41951         return false;
41952     },
41953     
41954     onTouchEnd: function(e, el)
41955     {
41956 //        e.preventDefault();
41957         
41958         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
41959         
41960             this.leave(e,el);
41961             
41962             return;
41963         }
41964         
41965         if(!this.bgimage.length || !this.html.length){
41966             
41967             if(this.href.length){
41968                 window.location.href = this.href;
41969             }
41970             
41971             return;
41972         }
41973         
41974         if(!this.isFitContainer){
41975             return;
41976         }
41977         
41978         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
41979         
41980         window.location.href = this.href;
41981     },
41982     
41983     //selection on single brick only
41984     selectBrick : function() {
41985         
41986         if (!this.parentId) {
41987             return;
41988         }
41989         
41990         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
41991         var index = m.selectedBrick.indexOf(this.id);
41992         
41993         if ( index > -1) {
41994             m.selectedBrick.splice(index,1);
41995             this.el.removeClass(this.activeClass);
41996             return;
41997         }
41998         
41999         for(var i = 0; i < m.selectedBrick.length; i++) {
42000             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
42001             b.el.removeClass(b.activeClass);
42002         }
42003         
42004         m.selectedBrick = [];
42005         
42006         m.selectedBrick.push(this.id);
42007         this.el.addClass(this.activeClass);
42008         return;
42009     },
42010     
42011     isSelected : function(){
42012         return this.el.hasClass(this.activeClass);
42013         
42014     }
42015 });
42016
42017 Roo.apply(Roo.bootstrap.MasonryBrick, {
42018     
42019     //groups: {},
42020     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
42021      /**
42022     * register a Masonry Brick
42023     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
42024     */
42025     
42026     register : function(brick)
42027     {
42028         //this.groups[brick.id] = brick;
42029         this.groups.add(brick.id, brick);
42030     },
42031     /**
42032     * fetch a  masonry brick based on the masonry brick ID
42033     * @param {string} the masonry brick to add
42034     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
42035     */
42036     
42037     get: function(brick_id) 
42038     {
42039         // if (typeof(this.groups[brick_id]) == 'undefined') {
42040         //     return false;
42041         // }
42042         // return this.groups[brick_id] ;
42043         
42044         if(this.groups.key(brick_id)) {
42045             return this.groups.key(brick_id);
42046         }
42047         
42048         return false;
42049     }
42050     
42051     
42052     
42053 });
42054
42055  /*
42056  * - LGPL
42057  *
42058  * element
42059  * 
42060  */
42061
42062 /**
42063  * @class Roo.bootstrap.Brick
42064  * @extends Roo.bootstrap.Component
42065  * Bootstrap Brick class
42066  * 
42067  * @constructor
42068  * Create a new Brick
42069  * @param {Object} config The config object
42070  */
42071
42072 Roo.bootstrap.Brick = function(config){
42073     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
42074     
42075     this.addEvents({
42076         // raw events
42077         /**
42078          * @event click
42079          * When a Brick is click
42080          * @param {Roo.bootstrap.Brick} this
42081          * @param {Roo.EventObject} e
42082          */
42083         "click" : true
42084     });
42085 };
42086
42087 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
42088     
42089     /**
42090      * @cfg {String} title
42091      */   
42092     title : '',
42093     /**
42094      * @cfg {String} html
42095      */   
42096     html : '',
42097     /**
42098      * @cfg {String} bgimage
42099      */   
42100     bgimage : '',
42101     /**
42102      * @cfg {String} cls
42103      */   
42104     cls : '',
42105     /**
42106      * @cfg {String} href
42107      */   
42108     href : '',
42109     /**
42110      * @cfg {String} video
42111      */   
42112     video : '',
42113     /**
42114      * @cfg {Boolean} square
42115      */   
42116     square : true,
42117     
42118     getAutoCreate : function()
42119     {
42120         var cls = 'roo-brick';
42121         
42122         if(this.href.length){
42123             cls += ' roo-brick-link';
42124         }
42125         
42126         if(this.bgimage.length){
42127             cls += ' roo-brick-image';
42128         }
42129         
42130         if(!this.html.length && !this.bgimage.length){
42131             cls += ' roo-brick-center-title';
42132         }
42133         
42134         if(!this.html.length && this.bgimage.length){
42135             cls += ' roo-brick-bottom-title';
42136         }
42137         
42138         if(this.cls){
42139             cls += ' ' + this.cls;
42140         }
42141         
42142         var cfg = {
42143             tag: (this.href.length) ? 'a' : 'div',
42144             cls: cls,
42145             cn: [
42146                 {
42147                     tag: 'div',
42148                     cls: 'roo-brick-paragraph',
42149                     cn: []
42150                 }
42151             ]
42152         };
42153         
42154         if(this.href.length){
42155             cfg.href = this.href;
42156         }
42157         
42158         var cn = cfg.cn[0].cn;
42159         
42160         if(this.title.length){
42161             cn.push({
42162                 tag: 'h4',
42163                 cls: 'roo-brick-title',
42164                 html: this.title
42165             });
42166         }
42167         
42168         if(this.html.length){
42169             cn.push({
42170                 tag: 'p',
42171                 cls: 'roo-brick-text',
42172                 html: this.html
42173             });
42174         } else {
42175             cn.cls += ' hide';
42176         }
42177         
42178         if(this.bgimage.length){
42179             cfg.cn.push({
42180                 tag: 'img',
42181                 cls: 'roo-brick-image-view',
42182                 src: this.bgimage
42183             });
42184         }
42185         
42186         return cfg;
42187     },
42188     
42189     initEvents: function() 
42190     {
42191         if(this.title.length || this.html.length){
42192             this.el.on('mouseenter'  ,this.enter, this);
42193             this.el.on('mouseleave', this.leave, this);
42194         }
42195         
42196         Roo.EventManager.onWindowResize(this.resize, this); 
42197         
42198         if(this.bgimage.length){
42199             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
42200             this.imageEl.on('load', this.onImageLoad, this);
42201             return;
42202         }
42203         
42204         this.resize();
42205     },
42206     
42207     onImageLoad : function()
42208     {
42209         this.resize();
42210     },
42211     
42212     resize : function()
42213     {
42214         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
42215         
42216         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
42217         
42218         if(this.bgimage.length){
42219             var image = this.el.select('.roo-brick-image-view', true).first();
42220             
42221             image.setWidth(paragraph.getWidth());
42222             
42223             if(this.square){
42224                 image.setHeight(paragraph.getWidth());
42225             }
42226             
42227             this.el.setHeight(image.getHeight());
42228             paragraph.setHeight(image.getHeight());
42229             
42230         }
42231         
42232     },
42233     
42234     enter: function(e, el)
42235     {
42236         e.preventDefault();
42237         
42238         if(this.bgimage.length){
42239             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
42240             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
42241         }
42242     },
42243     
42244     leave: function(e, el)
42245     {
42246         e.preventDefault();
42247         
42248         if(this.bgimage.length){
42249             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
42250             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
42251         }
42252     }
42253     
42254 });
42255
42256  
42257
42258  /*
42259  * - LGPL
42260  *
42261  * Number field 
42262  */
42263
42264 /**
42265  * @class Roo.bootstrap.form.NumberField
42266  * @extends Roo.bootstrap.form.Input
42267  * Bootstrap NumberField class
42268  * 
42269  * 
42270  * 
42271  * 
42272  * @constructor
42273  * Create a new NumberField
42274  * @param {Object} config The config object
42275  */
42276
42277 Roo.bootstrap.form.NumberField = function(config){
42278     Roo.bootstrap.form.NumberField.superclass.constructor.call(this, config);
42279 };
42280
42281 Roo.extend(Roo.bootstrap.form.NumberField, Roo.bootstrap.form.Input, {
42282     
42283     /**
42284      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
42285      */
42286     allowDecimals : true,
42287     /**
42288      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
42289      */
42290     decimalSeparator : ".",
42291     /**
42292      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
42293      */
42294     decimalPrecision : 2,
42295     /**
42296      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
42297      */
42298     allowNegative : true,
42299     
42300     /**
42301      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
42302      */
42303     allowZero: true,
42304     /**
42305      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
42306      */
42307     minValue : Number.NEGATIVE_INFINITY,
42308     /**
42309      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
42310      */
42311     maxValue : Number.MAX_VALUE,
42312     /**
42313      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
42314      */
42315     minText : "The minimum value for this field is {0}",
42316     /**
42317      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
42318      */
42319     maxText : "The maximum value for this field is {0}",
42320     /**
42321      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
42322      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
42323      */
42324     nanText : "{0} is not a valid number",
42325     /**
42326      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
42327      */
42328     thousandsDelimiter : false,
42329     /**
42330      * @cfg {String} valueAlign alignment of value
42331      */
42332     valueAlign : "left",
42333
42334     getAutoCreate : function()
42335     {
42336         var hiddenInput = {
42337             tag: 'input',
42338             type: 'hidden',
42339             id: Roo.id(),
42340             cls: 'hidden-number-input'
42341         };
42342         
42343         if (this.name) {
42344             hiddenInput.name = this.name;
42345         }
42346         
42347         this.name = '';
42348         
42349         var cfg = Roo.bootstrap.form.NumberField.superclass.getAutoCreate.call(this);
42350         
42351         this.name = hiddenInput.name;
42352         
42353         if(cfg.cn.length > 0) {
42354             cfg.cn.push(hiddenInput);
42355         }
42356         
42357         return cfg;
42358     },
42359
42360     // private
42361     initEvents : function()
42362     {   
42363         Roo.bootstrap.form.NumberField.superclass.initEvents.call(this);
42364         
42365         var allowed = "0123456789";
42366         
42367         if(this.allowDecimals){
42368             allowed += this.decimalSeparator;
42369         }
42370         
42371         if(this.allowNegative){
42372             allowed += "-";
42373         }
42374         
42375         if(this.thousandsDelimiter) {
42376             allowed += ",";
42377         }
42378         
42379         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
42380         
42381         var keyPress = function(e){
42382             
42383             var k = e.getKey();
42384             
42385             var c = e.getCharCode();
42386             
42387             if(
42388                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
42389                     allowed.indexOf(String.fromCharCode(c)) === -1
42390             ){
42391                 e.stopEvent();
42392                 return;
42393             }
42394             
42395             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
42396                 return;
42397             }
42398             
42399             if(allowed.indexOf(String.fromCharCode(c)) === -1){
42400                 e.stopEvent();
42401             }
42402         };
42403         
42404         this.el.on("keypress", keyPress, this);
42405     },
42406     
42407     validateValue : function(value)
42408     {
42409         
42410         if(!Roo.bootstrap.form.NumberField.superclass.validateValue.call(this, value)){
42411             return false;
42412         }
42413         
42414         var num = this.parseValue(value);
42415         
42416         if(isNaN(num)){
42417             this.markInvalid(String.format(this.nanText, value));
42418             return false;
42419         }
42420         
42421         if(num < this.minValue){
42422             this.markInvalid(String.format(this.minText, this.minValue));
42423             return false;
42424         }
42425         
42426         if(num > this.maxValue){
42427             this.markInvalid(String.format(this.maxText, this.maxValue));
42428             return false;
42429         }
42430         
42431         return true;
42432     },
42433
42434     getValue : function()
42435     {
42436         var v = this.hiddenEl().getValue();
42437         
42438         return this.fixPrecision(this.parseValue(v));
42439     },
42440
42441     parseValue : function(value)
42442     {
42443         if(this.thousandsDelimiter) {
42444             value += "";
42445             r = new RegExp(",", "g");
42446             value = value.replace(r, "");
42447         }
42448         
42449         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
42450         return isNaN(value) ? '' : value;
42451     },
42452
42453     fixPrecision : function(value)
42454     {
42455         if(this.thousandsDelimiter) {
42456             value += "";
42457             r = new RegExp(",", "g");
42458             value = value.replace(r, "");
42459         }
42460         
42461         var nan = isNaN(value);
42462         
42463         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
42464             return nan ? '' : value;
42465         }
42466         return parseFloat(value).toFixed(this.decimalPrecision);
42467     },
42468
42469     setValue : function(v)
42470     {
42471         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
42472         
42473         this.value = v;
42474         
42475         if(this.rendered){
42476             
42477             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
42478             
42479             this.inputEl().dom.value = (v == '') ? '' :
42480                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
42481             
42482             if(!this.allowZero && v === '0') {
42483                 this.hiddenEl().dom.value = '';
42484                 this.inputEl().dom.value = '';
42485             }
42486             
42487             this.validate();
42488         }
42489     },
42490
42491     decimalPrecisionFcn : function(v)
42492     {
42493         return Math.floor(v);
42494     },
42495
42496     beforeBlur : function()
42497     {
42498         var v = this.parseValue(this.getRawValue());
42499         
42500         if(v || v === 0 || v === ''){
42501             this.setValue(v);
42502         }
42503     },
42504     
42505     hiddenEl : function()
42506     {
42507         return this.el.select('input.hidden-number-input',true).first();
42508     }
42509     
42510 });
42511
42512  
42513
42514 /*
42515 * Licence: LGPL
42516 */
42517
42518 /**
42519  * @class Roo.bootstrap.DocumentSlider
42520  * @extends Roo.bootstrap.Component
42521  * Bootstrap DocumentSlider class
42522  * 
42523  * @constructor
42524  * Create a new DocumentViewer
42525  * @param {Object} config The config object
42526  */
42527
42528 Roo.bootstrap.DocumentSlider = function(config){
42529     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
42530     
42531     this.files = [];
42532     
42533     this.addEvents({
42534         /**
42535          * @event initial
42536          * Fire after initEvent
42537          * @param {Roo.bootstrap.DocumentSlider} this
42538          */
42539         "initial" : true,
42540         /**
42541          * @event update
42542          * Fire after update
42543          * @param {Roo.bootstrap.DocumentSlider} this
42544          */
42545         "update" : true,
42546         /**
42547          * @event click
42548          * Fire after click
42549          * @param {Roo.bootstrap.DocumentSlider} this
42550          */
42551         "click" : true
42552     });
42553 };
42554
42555 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
42556     
42557     files : false,
42558     
42559     indicator : 0,
42560     
42561     getAutoCreate : function()
42562     {
42563         var cfg = {
42564             tag : 'div',
42565             cls : 'roo-document-slider',
42566             cn : [
42567                 {
42568                     tag : 'div',
42569                     cls : 'roo-document-slider-header',
42570                     cn : [
42571                         {
42572                             tag : 'div',
42573                             cls : 'roo-document-slider-header-title'
42574                         }
42575                     ]
42576                 },
42577                 {
42578                     tag : 'div',
42579                     cls : 'roo-document-slider-body',
42580                     cn : [
42581                         {
42582                             tag : 'div',
42583                             cls : 'roo-document-slider-prev',
42584                             cn : [
42585                                 {
42586                                     tag : 'i',
42587                                     cls : 'fa fa-chevron-left'
42588                                 }
42589                             ]
42590                         },
42591                         {
42592                             tag : 'div',
42593                             cls : 'roo-document-slider-thumb',
42594                             cn : [
42595                                 {
42596                                     tag : 'img',
42597                                     cls : 'roo-document-slider-image'
42598                                 }
42599                             ]
42600                         },
42601                         {
42602                             tag : 'div',
42603                             cls : 'roo-document-slider-next',
42604                             cn : [
42605                                 {
42606                                     tag : 'i',
42607                                     cls : 'fa fa-chevron-right'
42608                                 }
42609                             ]
42610                         }
42611                     ]
42612                 }
42613             ]
42614         };
42615         
42616         return cfg;
42617     },
42618     
42619     initEvents : function()
42620     {
42621         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
42622         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
42623         
42624         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
42625         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
42626         
42627         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
42628         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
42629         
42630         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
42631         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
42632         
42633         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
42634         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
42635         
42636         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
42637         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
42638         
42639         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
42640         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
42641         
42642         this.thumbEl.on('click', this.onClick, this);
42643         
42644         this.prevIndicator.on('click', this.prev, this);
42645         
42646         this.nextIndicator.on('click', this.next, this);
42647         
42648     },
42649     
42650     initial : function()
42651     {
42652         if(this.files.length){
42653             this.indicator = 1;
42654             this.update()
42655         }
42656         
42657         this.fireEvent('initial', this);
42658     },
42659     
42660     update : function()
42661     {
42662         this.imageEl.attr('src', this.files[this.indicator - 1]);
42663         
42664         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
42665         
42666         this.prevIndicator.show();
42667         
42668         if(this.indicator == 1){
42669             this.prevIndicator.hide();
42670         }
42671         
42672         this.nextIndicator.show();
42673         
42674         if(this.indicator == this.files.length){
42675             this.nextIndicator.hide();
42676         }
42677         
42678         this.thumbEl.scrollTo('top');
42679         
42680         this.fireEvent('update', this);
42681     },
42682     
42683     onClick : function(e)
42684     {
42685         e.preventDefault();
42686         
42687         this.fireEvent('click', this);
42688     },
42689     
42690     prev : function(e)
42691     {
42692         e.preventDefault();
42693         
42694         this.indicator = Math.max(1, this.indicator - 1);
42695         
42696         this.update();
42697     },
42698     
42699     next : function(e)
42700     {
42701         e.preventDefault();
42702         
42703         this.indicator = Math.min(this.files.length, this.indicator + 1);
42704         
42705         this.update();
42706     }
42707 });
42708 /*
42709  * - LGPL
42710  *
42711  * RadioSet
42712  *
42713  *
42714  */
42715
42716 /**
42717  * @class Roo.bootstrap.form.RadioSet
42718  * @extends Roo.bootstrap.form.Input
42719  * @children Roo.bootstrap.form.Radio
42720  * Bootstrap RadioSet class
42721  * @cfg {String} indicatorpos (left|right) default left
42722  * @cfg {Boolean} inline (true|false) inline the element (default true)
42723  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
42724  * @constructor
42725  * Create a new RadioSet
42726  * @param {Object} config The config object
42727  */
42728
42729 Roo.bootstrap.form.RadioSet = function(config){
42730     
42731     Roo.bootstrap.form.RadioSet.superclass.constructor.call(this, config);
42732     
42733     this.radioes = [];
42734     
42735     Roo.bootstrap.form.RadioSet.register(this);
42736     
42737     this.addEvents({
42738         /**
42739         * @event check
42740         * Fires when the element is checked or unchecked.
42741         * @param {Roo.bootstrap.form.RadioSet} this This radio
42742         * @param {Roo.bootstrap.form.Radio} item The checked item
42743         */
42744        check : true,
42745        /**
42746         * @event click
42747         * Fires when the element is click.
42748         * @param {Roo.bootstrap.form.RadioSet} this This radio set
42749         * @param {Roo.bootstrap.form.Radio} item The checked item
42750         * @param {Roo.EventObject} e The event object
42751         */
42752        click : true
42753     });
42754     
42755 };
42756
42757 Roo.extend(Roo.bootstrap.form.RadioSet, Roo.bootstrap.form.Input,  {
42758
42759     radioes : false,
42760     
42761     inline : true,
42762     
42763     weight : '',
42764     
42765     indicatorpos : 'left',
42766     
42767     getAutoCreate : function()
42768     {
42769         var label = {
42770             tag : 'label',
42771             cls : 'roo-radio-set-label',
42772             cn : [
42773                 {
42774                     tag : 'span',
42775                     html : this.fieldLabel
42776                 }
42777             ]
42778         };
42779         if (Roo.bootstrap.version == 3) {
42780             
42781             
42782             if(this.indicatorpos == 'left'){
42783                 label.cn.unshift({
42784                     tag : 'i',
42785                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
42786                     tooltip : 'This field is required'
42787                 });
42788             } else {
42789                 label.cn.push({
42790                     tag : 'i',
42791                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
42792                     tooltip : 'This field is required'
42793                 });
42794             }
42795         }
42796         var items = {
42797             tag : 'div',
42798             cls : 'roo-radio-set-items'
42799         };
42800         
42801         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
42802         
42803         if (align === 'left' && this.fieldLabel.length) {
42804             
42805             items = {
42806                 cls : "roo-radio-set-right", 
42807                 cn: [
42808                     items
42809                 ]
42810             };
42811             
42812             if(this.labelWidth > 12){
42813                 label.style = "width: " + this.labelWidth + 'px';
42814             }
42815             
42816             if(this.labelWidth < 13 && this.labelmd == 0){
42817                 this.labelmd = this.labelWidth;
42818             }
42819             
42820             if(this.labellg > 0){
42821                 label.cls += ' col-lg-' + this.labellg;
42822                 items.cls += ' col-lg-' + (12 - this.labellg);
42823             }
42824             
42825             if(this.labelmd > 0){
42826                 label.cls += ' col-md-' + this.labelmd;
42827                 items.cls += ' col-md-' + (12 - this.labelmd);
42828             }
42829             
42830             if(this.labelsm > 0){
42831                 label.cls += ' col-sm-' + this.labelsm;
42832                 items.cls += ' col-sm-' + (12 - this.labelsm);
42833             }
42834             
42835             if(this.labelxs > 0){
42836                 label.cls += ' col-xs-' + this.labelxs;
42837                 items.cls += ' col-xs-' + (12 - this.labelxs);
42838             }
42839         }
42840         
42841         var cfg = {
42842             tag : 'div',
42843             cls : 'roo-radio-set',
42844             cn : [
42845                 {
42846                     tag : 'input',
42847                     cls : 'roo-radio-set-input',
42848                     type : 'hidden',
42849                     name : this.name,
42850                     value : this.value ? this.value :  ''
42851                 },
42852                 label,
42853                 items
42854             ]
42855         };
42856         
42857         if(this.weight.length){
42858             cfg.cls += ' roo-radio-' + this.weight;
42859         }
42860         
42861         if(this.inline) {
42862             cfg.cls += ' roo-radio-set-inline';
42863         }
42864         
42865         var settings=this;
42866         ['xs','sm','md','lg'].map(function(size){
42867             if (settings[size]) {
42868                 cfg.cls += ' col-' + size + '-' + settings[size];
42869             }
42870         });
42871         
42872         return cfg;
42873         
42874     },
42875
42876     initEvents : function()
42877     {
42878         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
42879         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
42880         
42881         if(!this.fieldLabel.length){
42882             this.labelEl.hide();
42883         }
42884         
42885         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
42886         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
42887         
42888         this.indicator = this.indicatorEl();
42889         
42890         if(this.indicator){
42891             this.indicator.addClass('invisible');
42892         }
42893         
42894         this.originalValue = this.getValue();
42895         
42896     },
42897     
42898     inputEl: function ()
42899     {
42900         return this.el.select('.roo-radio-set-input', true).first();
42901     },
42902     
42903     getChildContainer : function()
42904     {
42905         return this.itemsEl;
42906     },
42907     
42908     register : function(item)
42909     {
42910         this.radioes.push(item);
42911         
42912     },
42913     
42914     validate : function()
42915     {   
42916         if(this.getVisibilityEl().hasClass('hidden')){
42917             return true;
42918         }
42919         
42920         var valid = false;
42921         
42922         Roo.each(this.radioes, function(i){
42923             if(!i.checked){
42924                 return;
42925             }
42926             
42927             valid = true;
42928             return false;
42929         });
42930         
42931         if(this.allowBlank) {
42932             return true;
42933         }
42934         
42935         if(this.disabled || valid){
42936             this.markValid();
42937             return true;
42938         }
42939         
42940         this.markInvalid();
42941         return false;
42942         
42943     },
42944     
42945     markValid : function()
42946     {
42947         if(this.labelEl.isVisible(true) && this.indicatorEl()){
42948             this.indicatorEl().removeClass('visible');
42949             this.indicatorEl().addClass('invisible');
42950         }
42951         
42952         
42953         if (Roo.bootstrap.version == 3) {
42954             this.el.removeClass([this.invalidClass, this.validClass]);
42955             this.el.addClass(this.validClass);
42956         } else {
42957             this.el.removeClass(['is-invalid','is-valid']);
42958             this.el.addClass(['is-valid']);
42959         }
42960         this.fireEvent('valid', this);
42961     },
42962     
42963     markInvalid : function(msg)
42964     {
42965         if(this.allowBlank || this.disabled){
42966             return;
42967         }
42968         
42969         if(this.labelEl.isVisible(true) && this.indicatorEl()){
42970             this.indicatorEl().removeClass('invisible');
42971             this.indicatorEl().addClass('visible');
42972         }
42973         if (Roo.bootstrap.version == 3) {
42974             this.el.removeClass([this.invalidClass, this.validClass]);
42975             this.el.addClass(this.invalidClass);
42976         } else {
42977             this.el.removeClass(['is-invalid','is-valid']);
42978             this.el.addClass(['is-invalid']);
42979         }
42980         
42981         this.fireEvent('invalid', this, msg);
42982         
42983     },
42984     
42985     setValue : function(v, suppressEvent)
42986     {   
42987         if(this.value === v){
42988             return;
42989         }
42990         
42991         this.value = v;
42992         
42993         if(this.rendered){
42994             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
42995         }
42996         
42997         Roo.each(this.radioes, function(i){
42998             i.checked = false;
42999             i.el.removeClass('checked');
43000         });
43001         
43002         Roo.each(this.radioes, function(i){
43003             
43004             if(i.value === v || i.value.toString() === v.toString()){
43005                 i.checked = true;
43006                 i.el.addClass('checked');
43007                 
43008                 if(suppressEvent !== true){
43009                     this.fireEvent('check', this, i);
43010                 }
43011                 
43012                 return false;
43013             }
43014             
43015         }, this);
43016         
43017         this.validate();
43018     },
43019     
43020     clearInvalid : function(){
43021         
43022         if(!this.el || this.preventMark){
43023             return;
43024         }
43025         
43026         this.el.removeClass([this.invalidClass]);
43027         
43028         this.fireEvent('valid', this);
43029     }
43030     
43031 });
43032
43033 Roo.apply(Roo.bootstrap.form.RadioSet, {
43034     
43035     groups: {},
43036     
43037     register : function(set)
43038     {
43039         this.groups[set.name] = set;
43040     },
43041     
43042     get: function(name) 
43043     {
43044         if (typeof(this.groups[name]) == 'undefined') {
43045             return false;
43046         }
43047         
43048         return this.groups[name] ;
43049     }
43050     
43051 });
43052 /*
43053  * Based on:
43054  * Ext JS Library 1.1.1
43055  * Copyright(c) 2006-2007, Ext JS, LLC.
43056  *
43057  * Originally Released Under LGPL - original licence link has changed is not relivant.
43058  *
43059  * Fork - LGPL
43060  * <script type="text/javascript">
43061  */
43062
43063
43064 /**
43065  * @class Roo.bootstrap.SplitBar
43066  * @extends Roo.util.Observable
43067  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
43068  * <br><br>
43069  * Usage:
43070  * <pre><code>
43071 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
43072                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
43073 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
43074 split.minSize = 100;
43075 split.maxSize = 600;
43076 split.animate = true;
43077 split.on('moved', splitterMoved);
43078 </code></pre>
43079  * @constructor
43080  * Create a new SplitBar
43081  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
43082  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
43083  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
43084  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
43085                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
43086                         position of the SplitBar).
43087  */
43088 Roo.bootstrap.SplitBar = function(cfg){
43089     
43090     /** @private */
43091     
43092     //{
43093     //  dragElement : elm
43094     //  resizingElement: el,
43095         // optional..
43096     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
43097     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
43098         // existingProxy ???
43099     //}
43100     
43101     this.el = Roo.get(cfg.dragElement, true);
43102     this.el.dom.unselectable = "on";
43103     /** @private */
43104     this.resizingEl = Roo.get(cfg.resizingElement, true);
43105
43106     /**
43107      * @private
43108      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
43109      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
43110      * @type Number
43111      */
43112     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
43113     
43114     /**
43115      * The minimum size of the resizing element. (Defaults to 0)
43116      * @type Number
43117      */
43118     this.minSize = 0;
43119     
43120     /**
43121      * The maximum size of the resizing element. (Defaults to 2000)
43122      * @type Number
43123      */
43124     this.maxSize = 2000;
43125     
43126     /**
43127      * Whether to animate the transition to the new size
43128      * @type Boolean
43129      */
43130     this.animate = false;
43131     
43132     /**
43133      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
43134      * @type Boolean
43135      */
43136     this.useShim = false;
43137     
43138     /** @private */
43139     this.shim = null;
43140     
43141     if(!cfg.existingProxy){
43142         /** @private */
43143         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
43144     }else{
43145         this.proxy = Roo.get(cfg.existingProxy).dom;
43146     }
43147     /** @private */
43148     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
43149     
43150     /** @private */
43151     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
43152     
43153     /** @private */
43154     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
43155     
43156     /** @private */
43157     this.dragSpecs = {};
43158     
43159     /**
43160      * @private The adapter to use to positon and resize elements
43161      */
43162     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
43163     this.adapter.init(this);
43164     
43165     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
43166         /** @private */
43167         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
43168         this.el.addClass("roo-splitbar-h");
43169     }else{
43170         /** @private */
43171         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
43172         this.el.addClass("roo-splitbar-v");
43173     }
43174     
43175     this.addEvents({
43176         /**
43177          * @event resize
43178          * Fires when the splitter is moved (alias for {@link #event-moved})
43179          * @param {Roo.bootstrap.SplitBar} this
43180          * @param {Number} newSize the new width or height
43181          */
43182         "resize" : true,
43183         /**
43184          * @event moved
43185          * Fires when the splitter is moved
43186          * @param {Roo.bootstrap.SplitBar} this
43187          * @param {Number} newSize the new width or height
43188          */
43189         "moved" : true,
43190         /**
43191          * @event beforeresize
43192          * Fires before the splitter is dragged
43193          * @param {Roo.bootstrap.SplitBar} this
43194          */
43195         "beforeresize" : true,
43196
43197         "beforeapply" : true
43198     });
43199
43200     Roo.util.Observable.call(this);
43201 };
43202
43203 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
43204     onStartProxyDrag : function(x, y){
43205         this.fireEvent("beforeresize", this);
43206         if(!this.overlay){
43207             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
43208             o.unselectable();
43209             o.enableDisplayMode("block");
43210             // all splitbars share the same overlay
43211             Roo.bootstrap.SplitBar.prototype.overlay = o;
43212         }
43213         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
43214         this.overlay.show();
43215         Roo.get(this.proxy).setDisplayed("block");
43216         var size = this.adapter.getElementSize(this);
43217         this.activeMinSize = this.getMinimumSize();;
43218         this.activeMaxSize = this.getMaximumSize();;
43219         var c1 = size - this.activeMinSize;
43220         var c2 = Math.max(this.activeMaxSize - size, 0);
43221         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
43222             this.dd.resetConstraints();
43223             this.dd.setXConstraint(
43224                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
43225                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
43226             );
43227             this.dd.setYConstraint(0, 0);
43228         }else{
43229             this.dd.resetConstraints();
43230             this.dd.setXConstraint(0, 0);
43231             this.dd.setYConstraint(
43232                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
43233                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
43234             );
43235          }
43236         this.dragSpecs.startSize = size;
43237         this.dragSpecs.startPoint = [x, y];
43238         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
43239     },
43240     
43241     /** 
43242      * @private Called after the drag operation by the DDProxy
43243      */
43244     onEndProxyDrag : function(e){
43245         Roo.get(this.proxy).setDisplayed(false);
43246         var endPoint = Roo.lib.Event.getXY(e);
43247         if(this.overlay){
43248             this.overlay.hide();
43249         }
43250         var newSize;
43251         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
43252             newSize = this.dragSpecs.startSize + 
43253                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
43254                     endPoint[0] - this.dragSpecs.startPoint[0] :
43255                     this.dragSpecs.startPoint[0] - endPoint[0]
43256                 );
43257         }else{
43258             newSize = this.dragSpecs.startSize + 
43259                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
43260                     endPoint[1] - this.dragSpecs.startPoint[1] :
43261                     this.dragSpecs.startPoint[1] - endPoint[1]
43262                 );
43263         }
43264         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
43265         if(newSize != this.dragSpecs.startSize){
43266             if(this.fireEvent('beforeapply', this, newSize) !== false){
43267                 this.adapter.setElementSize(this, newSize);
43268                 this.fireEvent("moved", this, newSize);
43269                 this.fireEvent("resize", this, newSize);
43270             }
43271         }
43272     },
43273     
43274     /**
43275      * Get the adapter this SplitBar uses
43276      * @return The adapter object
43277      */
43278     getAdapter : function(){
43279         return this.adapter;
43280     },
43281     
43282     /**
43283      * Set the adapter this SplitBar uses
43284      * @param {Object} adapter A SplitBar adapter object
43285      */
43286     setAdapter : function(adapter){
43287         this.adapter = adapter;
43288         this.adapter.init(this);
43289     },
43290     
43291     /**
43292      * Gets the minimum size for the resizing element
43293      * @return {Number} The minimum size
43294      */
43295     getMinimumSize : function(){
43296         return this.minSize;
43297     },
43298     
43299     /**
43300      * Sets the minimum size for the resizing element
43301      * @param {Number} minSize The minimum size
43302      */
43303     setMinimumSize : function(minSize){
43304         this.minSize = minSize;
43305     },
43306     
43307     /**
43308      * Gets the maximum size for the resizing element
43309      * @return {Number} The maximum size
43310      */
43311     getMaximumSize : function(){
43312         return this.maxSize;
43313     },
43314     
43315     /**
43316      * Sets the maximum size for the resizing element
43317      * @param {Number} maxSize The maximum size
43318      */
43319     setMaximumSize : function(maxSize){
43320         this.maxSize = maxSize;
43321     },
43322     
43323     /**
43324      * Sets the initialize size for the resizing element
43325      * @param {Number} size The initial size
43326      */
43327     setCurrentSize : function(size){
43328         var oldAnimate = this.animate;
43329         this.animate = false;
43330         this.adapter.setElementSize(this, size);
43331         this.animate = oldAnimate;
43332     },
43333     
43334     /**
43335      * Destroy this splitbar. 
43336      * @param {Boolean} removeEl True to remove the element
43337      */
43338     destroy : function(removeEl){
43339         if(this.shim){
43340             this.shim.remove();
43341         }
43342         this.dd.unreg();
43343         this.proxy.parentNode.removeChild(this.proxy);
43344         if(removeEl){
43345             this.el.remove();
43346         }
43347     }
43348 });
43349
43350 /**
43351  * @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.
43352  */
43353 Roo.bootstrap.SplitBar.createProxy = function(dir){
43354     var proxy = new Roo.Element(document.createElement("div"));
43355     proxy.unselectable();
43356     var cls = 'roo-splitbar-proxy';
43357     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
43358     document.body.appendChild(proxy.dom);
43359     return proxy.dom;
43360 };
43361
43362 /** 
43363  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
43364  * Default Adapter. It assumes the splitter and resizing element are not positioned
43365  * elements and only gets/sets the width of the element. Generally used for table based layouts.
43366  */
43367 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
43368 };
43369
43370 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
43371     // do nothing for now
43372     init : function(s){
43373     
43374     },
43375     /**
43376      * Called before drag operations to get the current size of the resizing element. 
43377      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
43378      */
43379      getElementSize : function(s){
43380         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
43381             return s.resizingEl.getWidth();
43382         }else{
43383             return s.resizingEl.getHeight();
43384         }
43385     },
43386     
43387     /**
43388      * Called after drag operations to set the size of the resizing element.
43389      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
43390      * @param {Number} newSize The new size to set
43391      * @param {Function} onComplete A function to be invoked when resizing is complete
43392      */
43393     setElementSize : function(s, newSize, onComplete){
43394         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
43395             if(!s.animate){
43396                 s.resizingEl.setWidth(newSize);
43397                 if(onComplete){
43398                     onComplete(s, newSize);
43399                 }
43400             }else{
43401                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
43402             }
43403         }else{
43404             
43405             if(!s.animate){
43406                 s.resizingEl.setHeight(newSize);
43407                 if(onComplete){
43408                     onComplete(s, newSize);
43409                 }
43410             }else{
43411                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
43412             }
43413         }
43414     }
43415 };
43416
43417 /** 
43418  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
43419  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
43420  * Adapter that  moves the splitter element to align with the resized sizing element. 
43421  * Used with an absolute positioned SplitBar.
43422  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
43423  * document.body, make sure you assign an id to the body element.
43424  */
43425 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
43426     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
43427     this.container = Roo.get(container);
43428 };
43429
43430 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
43431     init : function(s){
43432         this.basic.init(s);
43433     },
43434     
43435     getElementSize : function(s){
43436         return this.basic.getElementSize(s);
43437     },
43438     
43439     setElementSize : function(s, newSize, onComplete){
43440         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
43441     },
43442     
43443     moveSplitter : function(s){
43444         var yes = Roo.bootstrap.SplitBar;
43445         switch(s.placement){
43446             case yes.LEFT:
43447                 s.el.setX(s.resizingEl.getRight());
43448                 break;
43449             case yes.RIGHT:
43450                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
43451                 break;
43452             case yes.TOP:
43453                 s.el.setY(s.resizingEl.getBottom());
43454                 break;
43455             case yes.BOTTOM:
43456                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
43457                 break;
43458         }
43459     }
43460 };
43461
43462 /**
43463  * Orientation constant - Create a vertical SplitBar
43464  * @static
43465  * @type Number
43466  */
43467 Roo.bootstrap.SplitBar.VERTICAL = 1;
43468
43469 /**
43470  * Orientation constant - Create a horizontal SplitBar
43471  * @static
43472  * @type Number
43473  */
43474 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
43475
43476 /**
43477  * Placement constant - The resizing element is to the left of the splitter element
43478  * @static
43479  * @type Number
43480  */
43481 Roo.bootstrap.SplitBar.LEFT = 1;
43482
43483 /**
43484  * Placement constant - The resizing element is to the right of the splitter element
43485  * @static
43486  * @type Number
43487  */
43488 Roo.bootstrap.SplitBar.RIGHT = 2;
43489
43490 /**
43491  * Placement constant - The resizing element is positioned above the splitter element
43492  * @static
43493  * @type Number
43494  */
43495 Roo.bootstrap.SplitBar.TOP = 3;
43496
43497 /**
43498  * Placement constant - The resizing element is positioned under splitter element
43499  * @static
43500  * @type Number
43501  */
43502 Roo.bootstrap.SplitBar.BOTTOM = 4;
43503 /*
43504  * Based on:
43505  * Ext JS Library 1.1.1
43506  * Copyright(c) 2006-2007, Ext JS, LLC.
43507  *
43508  * Originally Released Under LGPL - original licence link has changed is not relivant.
43509  *
43510  * Fork - LGPL
43511  * <script type="text/javascript">
43512  */
43513
43514 /**
43515  * @class Roo.bootstrap.layout.Manager
43516  * @extends Roo.bootstrap.Component
43517  * @abstract
43518  * Base class for layout managers.
43519  */
43520 Roo.bootstrap.layout.Manager = function(config)
43521 {
43522     this.monitorWindowResize = true; // do this before we apply configuration.
43523     
43524     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
43525
43526
43527
43528
43529
43530     /** false to disable window resize monitoring @type Boolean */
43531     
43532     this.regions = {};
43533     this.addEvents({
43534         /**
43535          * @event layout
43536          * Fires when a layout is performed.
43537          * @param {Roo.layout.Manager} this
43538          */
43539         "layout" : true,
43540         /**
43541          * @event regionresized
43542          * Fires when the user resizes a region.
43543          * @param {Roo.layout.Region} region The resized region
43544          * @param {Number} newSize The new size (width for east/west, height for north/south)
43545          */
43546         "regionresized" : true,
43547         /**
43548          * @event regioncollapsed
43549          * Fires when a region is collapsed.
43550          * @param {Roo.layout.Region} region The collapsed region
43551          */
43552         "regioncollapsed" : true,
43553         /**
43554          * @event regionexpanded
43555          * Fires when a region is expanded.
43556          * @param {Roo.layout.Region} region The expanded region
43557          */
43558         "regionexpanded" : true
43559     });
43560     this.updating = false;
43561
43562     if (config.el) {
43563         this.el = Roo.get(config.el);
43564         this.initEvents();
43565     }
43566
43567 };
43568
43569 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
43570
43571
43572     regions : null,
43573
43574     monitorWindowResize : true,
43575
43576
43577     updating : false,
43578
43579
43580     onRender : function(ct, position)
43581     {
43582         if(!this.el){
43583             this.el = Roo.get(ct);
43584             this.initEvents();
43585         }
43586         //this.fireEvent('render',this);
43587     },
43588
43589
43590     initEvents: function()
43591     {
43592
43593
43594         // ie scrollbar fix
43595         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
43596             document.body.scroll = "no";
43597         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
43598             this.el.position('relative');
43599         }
43600         this.id = this.el.id;
43601         this.el.addClass("roo-layout-container");
43602         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
43603         if(this.el.dom != document.body ) {
43604             this.el.on('resize', this.layout,this);
43605             this.el.on('show', this.layout,this);
43606         }
43607
43608     },
43609
43610     /**
43611      * Returns true if this layout is currently being updated
43612      * @return {Boolean}
43613      */
43614     isUpdating : function(){
43615         return this.updating;
43616     },
43617
43618     /**
43619      * Suspend the LayoutManager from doing auto-layouts while
43620      * making multiple add or remove calls
43621      */
43622     beginUpdate : function(){
43623         this.updating = true;
43624     },
43625
43626     /**
43627      * Restore auto-layouts and optionally disable the manager from performing a layout
43628      * @param {Boolean} noLayout true to disable a layout update
43629      */
43630     endUpdate : function(noLayout){
43631         this.updating = false;
43632         if(!noLayout){
43633             this.layout();
43634         }
43635     },
43636
43637     layout: function(){
43638         // abstract...
43639     },
43640
43641     onRegionResized : function(region, newSize){
43642         this.fireEvent("regionresized", region, newSize);
43643         this.layout();
43644     },
43645
43646     onRegionCollapsed : function(region){
43647         this.fireEvent("regioncollapsed", region);
43648     },
43649
43650     onRegionExpanded : function(region){
43651         this.fireEvent("regionexpanded", region);
43652     },
43653
43654     /**
43655      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
43656      * performs box-model adjustments.
43657      * @return {Object} The size as an object {width: (the width), height: (the height)}
43658      */
43659     getViewSize : function()
43660     {
43661         var size;
43662         if(this.el.dom != document.body){
43663             size = this.el.getSize();
43664         }else{
43665             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
43666         }
43667         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
43668         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
43669         return size;
43670     },
43671
43672     /**
43673      * Returns the Element this layout is bound to.
43674      * @return {Roo.Element}
43675      */
43676     getEl : function(){
43677         return this.el;
43678     },
43679
43680     /**
43681      * Returns the specified region.
43682      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
43683      * @return {Roo.layout.Region}
43684      */
43685     getRegion : function(target){
43686         return this.regions[target.toLowerCase()];
43687     },
43688
43689     onWindowResize : function(){
43690         if(this.monitorWindowResize){
43691             this.layout();
43692         }
43693     }
43694 });
43695 /*
43696  * Based on:
43697  * Ext JS Library 1.1.1
43698  * Copyright(c) 2006-2007, Ext JS, LLC.
43699  *
43700  * Originally Released Under LGPL - original licence link has changed is not relivant.
43701  *
43702  * Fork - LGPL
43703  * <script type="text/javascript">
43704  */
43705 /**
43706  * @class Roo.bootstrap.layout.Border
43707  * @extends Roo.bootstrap.layout.Manager
43708  * @children Roo.bootstrap.panel.Content Roo.bootstrap.panel.Nest Roo.bootstrap.panel.Grid
43709  * @parent builder Roo.bootstrap.panel.Nest Roo.bootstrap.panel.Nest Roo.bootstrap.Modal
43710  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
43711  * please see: examples/bootstrap/nested.html<br><br>
43712  
43713 <b>The container the layout is rendered into can be either the body element or any other element.
43714 If it is not the body element, the container needs to either be an absolute positioned element,
43715 or you will need to add "position:relative" to the css of the container.  You will also need to specify
43716 the container size if it is not the body element.</b>
43717
43718 * @constructor
43719 * Create a new Border
43720 * @param {Object} config Configuration options
43721  */
43722 Roo.bootstrap.layout.Border = function(config){
43723     config = config || {};
43724     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
43725     
43726     
43727     
43728     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
43729         if(config[region]){
43730             config[region].region = region;
43731             this.addRegion(config[region]);
43732         }
43733     },this);
43734     
43735 };
43736
43737 Roo.bootstrap.layout.Border.regions =  ["center", "north","south","east","west"];
43738
43739 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
43740     
43741         /**
43742          * @cfg {Roo.bootstrap.layout.Region} center region to go in center
43743          */
43744         /**
43745          * @cfg {Roo.bootstrap.layout.Region} west region to go in west
43746          */
43747         /**
43748          * @cfg {Roo.bootstrap.layout.Region} east region to go in east
43749          */
43750         /**
43751          * @cfg {Roo.bootstrap.layout.Region} south region to go in south
43752          */
43753         /**
43754          * @cfg {Roo.bootstrap.layout.Region} north region to go in north
43755          */
43756         
43757         
43758         
43759         
43760     parent : false, // this might point to a 'nest' or a ???
43761     
43762     /**
43763      * Creates and adds a new region if it doesn't already exist.
43764      * @param {String} target The target region key (north, south, east, west or center).
43765      * @param {Object} config The regions config object
43766      * @return {BorderLayoutRegion} The new region
43767      */
43768     addRegion : function(config)
43769     {
43770         if(!this.regions[config.region]){
43771             var r = this.factory(config);
43772             this.bindRegion(r);
43773         }
43774         return this.regions[config.region];
43775     },
43776
43777     // private (kinda)
43778     bindRegion : function(r){
43779         this.regions[r.config.region] = r;
43780         
43781         r.on("visibilitychange",    this.layout, this);
43782         r.on("paneladded",          this.layout, this);
43783         r.on("panelremoved",        this.layout, this);
43784         r.on("invalidated",         this.layout, this);
43785         r.on("resized",             this.onRegionResized, this);
43786         r.on("collapsed",           this.onRegionCollapsed, this);
43787         r.on("expanded",            this.onRegionExpanded, this);
43788     },
43789
43790     /**
43791      * Performs a layout update.
43792      */
43793     layout : function()
43794     {
43795         if(this.updating) {
43796             return;
43797         }
43798         
43799         // render all the rebions if they have not been done alreayd?
43800         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
43801             if(this.regions[region] && !this.regions[region].bodyEl){
43802                 this.regions[region].onRender(this.el)
43803             }
43804         },this);
43805         
43806         var size = this.getViewSize();
43807         var w = size.width;
43808         var h = size.height;
43809         var centerW = w;
43810         var centerH = h;
43811         var centerY = 0;
43812         var centerX = 0;
43813         //var x = 0, y = 0;
43814
43815         var rs = this.regions;
43816         var north = rs["north"];
43817         var south = rs["south"]; 
43818         var west = rs["west"];
43819         var east = rs["east"];
43820         var center = rs["center"];
43821         //if(this.hideOnLayout){ // not supported anymore
43822             //c.el.setStyle("display", "none");
43823         //}
43824         if(north && north.isVisible()){
43825             var b = north.getBox();
43826             var m = north.getMargins();
43827             b.width = w - (m.left+m.right);
43828             b.x = m.left;
43829             b.y = m.top;
43830             centerY = b.height + b.y + m.bottom;
43831             centerH -= centerY;
43832             north.updateBox(this.safeBox(b));
43833         }
43834         if(south && south.isVisible()){
43835             var b = south.getBox();
43836             var m = south.getMargins();
43837             b.width = w - (m.left+m.right);
43838             b.x = m.left;
43839             var totalHeight = (b.height + m.top + m.bottom);
43840             b.y = h - totalHeight + m.top;
43841             centerH -= totalHeight;
43842             south.updateBox(this.safeBox(b));
43843         }
43844         if(west && west.isVisible()){
43845             var b = west.getBox();
43846             var m = west.getMargins();
43847             b.height = centerH - (m.top+m.bottom);
43848             b.x = m.left;
43849             b.y = centerY + m.top;
43850             var totalWidth = (b.width + m.left + m.right);
43851             centerX += totalWidth;
43852             centerW -= totalWidth;
43853             west.updateBox(this.safeBox(b));
43854         }
43855         if(east && east.isVisible()){
43856             var b = east.getBox();
43857             var m = east.getMargins();
43858             b.height = centerH - (m.top+m.bottom);
43859             var totalWidth = (b.width + m.left + m.right);
43860             b.x = w - totalWidth + m.left;
43861             b.y = centerY + m.top;
43862             centerW -= totalWidth;
43863             east.updateBox(this.safeBox(b));
43864         }
43865         if(center){
43866             var m = center.getMargins();
43867             var centerBox = {
43868                 x: centerX + m.left,
43869                 y: centerY + m.top,
43870                 width: centerW - (m.left+m.right),
43871                 height: centerH - (m.top+m.bottom)
43872             };
43873             //if(this.hideOnLayout){
43874                 //center.el.setStyle("display", "block");
43875             //}
43876             center.updateBox(this.safeBox(centerBox));
43877         }
43878         this.el.repaint();
43879         this.fireEvent("layout", this);
43880     },
43881
43882     // private
43883     safeBox : function(box){
43884         box.width = Math.max(0, box.width);
43885         box.height = Math.max(0, box.height);
43886         return box;
43887     },
43888
43889     /**
43890      * Adds a ContentPanel (or subclass) to this layout.
43891      * @param {String} target The target region key (north, south, east, west or center).
43892      * @param {Roo.ContentPanel} panel The panel to add
43893      * @return {Roo.ContentPanel} The added panel
43894      */
43895     add : function(target, panel){
43896          
43897         target = target.toLowerCase();
43898         return this.regions[target].add(panel);
43899     },
43900
43901     /**
43902      * Remove a ContentPanel (or subclass) to this layout.
43903      * @param {String} target The target region key (north, south, east, west or center).
43904      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
43905      * @return {Roo.ContentPanel} The removed panel
43906      */
43907     remove : function(target, panel){
43908         target = target.toLowerCase();
43909         return this.regions[target].remove(panel);
43910     },
43911
43912     /**
43913      * Searches all regions for a panel with the specified id
43914      * @param {String} panelId
43915      * @return {Roo.ContentPanel} The panel or null if it wasn't found
43916      */
43917     findPanel : function(panelId){
43918         var rs = this.regions;
43919         for(var target in rs){
43920             if(typeof rs[target] != "function"){
43921                 var p = rs[target].getPanel(panelId);
43922                 if(p){
43923                     return p;
43924                 }
43925             }
43926         }
43927         return null;
43928     },
43929
43930     /**
43931      * Searches all regions for a panel with the specified id and activates (shows) it.
43932      * @param {String/ContentPanel} panelId The panels id or the panel itself
43933      * @return {Roo.ContentPanel} The shown panel or null
43934      */
43935     showPanel : function(panelId) {
43936       var rs = this.regions;
43937       for(var target in rs){
43938          var r = rs[target];
43939          if(typeof r != "function"){
43940             if(r.hasPanel(panelId)){
43941                return r.showPanel(panelId);
43942             }
43943          }
43944       }
43945       return null;
43946    },
43947
43948    /**
43949      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
43950      * @param {Roo.state.Provider} provider (optional) An alternate state provider
43951      */
43952    /*
43953     restoreState : function(provider){
43954         if(!provider){
43955             provider = Roo.state.Manager;
43956         }
43957         var sm = new Roo.layout.StateManager();
43958         sm.init(this, provider);
43959     },
43960 */
43961  
43962  
43963     /**
43964      * Adds a xtype elements to the layout.
43965      * <pre><code>
43966
43967 layout.addxtype({
43968        xtype : 'ContentPanel',
43969        region: 'west',
43970        items: [ .... ]
43971    }
43972 );
43973
43974 layout.addxtype({
43975         xtype : 'NestedLayoutPanel',
43976         region: 'west',
43977         layout: {
43978            center: { },
43979            west: { }   
43980         },
43981         items : [ ... list of content panels or nested layout panels.. ]
43982    }
43983 );
43984 </code></pre>
43985      * @param {Object} cfg Xtype definition of item to add.
43986      */
43987     addxtype : function(cfg)
43988     {
43989         // basically accepts a pannel...
43990         // can accept a layout region..!?!?
43991         //Roo.log('Roo.layout.Border add ' + cfg.xtype)
43992         
43993         
43994         // theory?  children can only be panels??
43995         
43996         //if (!cfg.xtype.match(/Panel$/)) {
43997         //    return false;
43998         //}
43999         var ret = false;
44000         
44001         if (typeof(cfg.region) == 'undefined') {
44002             Roo.log("Failed to add Panel, region was not set");
44003             Roo.log(cfg);
44004             return false;
44005         }
44006         var region = cfg.region;
44007         delete cfg.region;
44008         
44009           
44010         var xitems = [];
44011         if (cfg.items) {
44012             xitems = cfg.items;
44013             delete cfg.items;
44014         }
44015         var nb = false;
44016         
44017         if ( region == 'center') {
44018             Roo.log("Center: " + cfg.title);
44019         }
44020         
44021         
44022         switch(cfg.xtype) 
44023         {
44024             case 'Content':  // ContentPanel (el, cfg)
44025             case 'Scroll':  // ContentPanel (el, cfg)
44026             case 'View': 
44027                 cfg.autoCreate = cfg.autoCreate || true;
44028                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
44029                 //} else {
44030                 //    var el = this.el.createChild();
44031                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
44032                 //}
44033                 
44034                 this.add(region, ret);
44035                 break;
44036             
44037             /*
44038             case 'TreePanel': // our new panel!
44039                 cfg.el = this.el.createChild();
44040                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
44041                 this.add(region, ret);
44042                 break;
44043             */
44044             
44045             case 'Nest': 
44046                 // create a new Layout (which is  a Border Layout...
44047                 
44048                 var clayout = cfg.layout;
44049                 clayout.el  = this.el.createChild();
44050                 clayout.items   = clayout.items  || [];
44051                 
44052                 delete cfg.layout;
44053                 
44054                 // replace this exitems with the clayout ones..
44055                 xitems = clayout.items;
44056                  
44057                 // force background off if it's in center...
44058                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
44059                     cfg.background = false;
44060                 }
44061                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
44062                 
44063                 
44064                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
44065                 //console.log('adding nested layout panel '  + cfg.toSource());
44066                 this.add(region, ret);
44067                 nb = {}; /// find first...
44068                 break;
44069             
44070             case 'Grid':
44071                 
44072                 // needs grid and region
44073                 
44074                 //var el = this.getRegion(region).el.createChild();
44075                 /*
44076                  *var el = this.el.createChild();
44077                 // create the grid first...
44078                 cfg.grid.container = el;
44079                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
44080                 */
44081                 
44082                 if (region == 'center' && this.active ) {
44083                     cfg.background = false;
44084                 }
44085                 
44086                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
44087                 
44088                 this.add(region, ret);
44089                 /*
44090                 if (cfg.background) {
44091                     // render grid on panel activation (if panel background)
44092                     ret.on('activate', function(gp) {
44093                         if (!gp.grid.rendered) {
44094                     //        gp.grid.render(el);
44095                         }
44096                     });
44097                 } else {
44098                   //  cfg.grid.render(el);
44099                 }
44100                 */
44101                 break;
44102            
44103            
44104             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
44105                 // it was the old xcomponent building that caused this before.
44106                 // espeically if border is the top element in the tree.
44107                 ret = this;
44108                 break; 
44109                 
44110                     
44111                 
44112                 
44113                 
44114             default:
44115                 /*
44116                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
44117                     
44118                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
44119                     this.add(region, ret);
44120                 } else {
44121                 */
44122                     Roo.log(cfg);
44123                     throw "Can not add '" + cfg.xtype + "' to Border";
44124                     return null;
44125              
44126                                 
44127              
44128         }
44129         this.beginUpdate();
44130         // add children..
44131         var region = '';
44132         var abn = {};
44133         Roo.each(xitems, function(i)  {
44134             region = nb && i.region ? i.region : false;
44135             
44136             var add = ret.addxtype(i);
44137            
44138             if (region) {
44139                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
44140                 if (!i.background) {
44141                     abn[region] = nb[region] ;
44142                 }
44143             }
44144             
44145         });
44146         this.endUpdate();
44147
44148         // make the last non-background panel active..
44149         //if (nb) { Roo.log(abn); }
44150         if (nb) {
44151             
44152             for(var r in abn) {
44153                 region = this.getRegion(r);
44154                 if (region) {
44155                     // tried using nb[r], but it does not work..
44156                      
44157                     region.showPanel(abn[r]);
44158                    
44159                 }
44160             }
44161         }
44162         return ret;
44163         
44164     },
44165     
44166     
44167 // private
44168     factory : function(cfg)
44169     {
44170         
44171         var validRegions = Roo.bootstrap.layout.Border.regions;
44172
44173         var target = cfg.region;
44174         cfg.mgr = this;
44175         
44176         var r = Roo.bootstrap.layout;
44177         Roo.log(target);
44178         switch(target){
44179             case "north":
44180                 return new r.North(cfg);
44181             case "south":
44182                 return new r.South(cfg);
44183             case "east":
44184                 return new r.East(cfg);
44185             case "west":
44186                 return new r.West(cfg);
44187             case "center":
44188                 return new r.Center(cfg);
44189         }
44190         throw 'Layout region "'+target+'" not supported.';
44191     }
44192     
44193     
44194 });
44195  /*
44196  * Based on:
44197  * Ext JS Library 1.1.1
44198  * Copyright(c) 2006-2007, Ext JS, LLC.
44199  *
44200  * Originally Released Under LGPL - original licence link has changed is not relivant.
44201  *
44202  * Fork - LGPL
44203  * <script type="text/javascript">
44204  */
44205  
44206 /**
44207  * @class Roo.bootstrap.layout.Basic
44208  * @extends Roo.util.Observable
44209  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
44210  * and does not have a titlebar, tabs or any other features. All it does is size and position 
44211  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
44212  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
44213  * @cfg {string}   region  the region that it inhabits..
44214  * @cfg {bool}   skipConfig skip config?
44215  * 
44216
44217  */
44218 Roo.bootstrap.layout.Basic = function(config){
44219     
44220     this.mgr = config.mgr;
44221     
44222     this.position = config.region;
44223     
44224     var skipConfig = config.skipConfig;
44225     
44226     this.events = {
44227         /**
44228          * @scope Roo.layout.BasicRegion
44229          */
44230         
44231         /**
44232          * @event beforeremove
44233          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
44234          * @param {Roo.layout.Region} this
44235          * @param {Roo.ContentPanel} panel The panel
44236          * @param {Object} e The cancel event object
44237          */
44238         "beforeremove" : true,
44239         /**
44240          * @event invalidated
44241          * Fires when the layout for this region is changed.
44242          * @param {Roo.layout.Region} this
44243          */
44244         "invalidated" : true,
44245         /**
44246          * @event visibilitychange
44247          * Fires when this region is shown or hidden 
44248          * @param {Roo.layout.Region} this
44249          * @param {Boolean} visibility true or false
44250          */
44251         "visibilitychange" : true,
44252         /**
44253          * @event paneladded
44254          * Fires when a panel is added. 
44255          * @param {Roo.layout.Region} this
44256          * @param {Roo.ContentPanel} panel The panel
44257          */
44258         "paneladded" : true,
44259         /**
44260          * @event panelremoved
44261          * Fires when a panel is removed. 
44262          * @param {Roo.layout.Region} this
44263          * @param {Roo.ContentPanel} panel The panel
44264          */
44265         "panelremoved" : true,
44266         /**
44267          * @event beforecollapse
44268          * Fires when this region before collapse.
44269          * @param {Roo.layout.Region} this
44270          */
44271         "beforecollapse" : true,
44272         /**
44273          * @event collapsed
44274          * Fires when this region is collapsed.
44275          * @param {Roo.layout.Region} this
44276          */
44277         "collapsed" : true,
44278         /**
44279          * @event expanded
44280          * Fires when this region is expanded.
44281          * @param {Roo.layout.Region} this
44282          */
44283         "expanded" : true,
44284         /**
44285          * @event slideshow
44286          * Fires when this region is slid into view.
44287          * @param {Roo.layout.Region} this
44288          */
44289         "slideshow" : true,
44290         /**
44291          * @event slidehide
44292          * Fires when this region slides out of view. 
44293          * @param {Roo.layout.Region} this
44294          */
44295         "slidehide" : true,
44296         /**
44297          * @event panelactivated
44298          * Fires when a panel is activated. 
44299          * @param {Roo.layout.Region} this
44300          * @param {Roo.ContentPanel} panel The activated panel
44301          */
44302         "panelactivated" : true,
44303         /**
44304          * @event resized
44305          * Fires when the user resizes this region. 
44306          * @param {Roo.layout.Region} this
44307          * @param {Number} newSize The new size (width for east/west, height for north/south)
44308          */
44309         "resized" : true
44310     };
44311     /** A collection of panels in this region. @type Roo.util.MixedCollection */
44312     this.panels = new Roo.util.MixedCollection();
44313     this.panels.getKey = this.getPanelId.createDelegate(this);
44314     this.box = null;
44315     this.activePanel = null;
44316     // ensure listeners are added...
44317     
44318     if (config.listeners || config.events) {
44319         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
44320             listeners : config.listeners || {},
44321             events : config.events || {}
44322         });
44323     }
44324     
44325     if(skipConfig !== true){
44326         this.applyConfig(config);
44327     }
44328 };
44329
44330 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
44331 {
44332     getPanelId : function(p){
44333         return p.getId();
44334     },
44335     
44336     applyConfig : function(config){
44337         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
44338         this.config = config;
44339         
44340     },
44341     
44342     /**
44343      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
44344      * the width, for horizontal (north, south) the height.
44345      * @param {Number} newSize The new width or height
44346      */
44347     resizeTo : function(newSize){
44348         var el = this.el ? this.el :
44349                  (this.activePanel ? this.activePanel.getEl() : null);
44350         if(el){
44351             switch(this.position){
44352                 case "east":
44353                 case "west":
44354                     el.setWidth(newSize);
44355                     this.fireEvent("resized", this, newSize);
44356                 break;
44357                 case "north":
44358                 case "south":
44359                     el.setHeight(newSize);
44360                     this.fireEvent("resized", this, newSize);
44361                 break;                
44362             }
44363         }
44364     },
44365     
44366     getBox : function(){
44367         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
44368     },
44369     
44370     getMargins : function(){
44371         return this.margins;
44372     },
44373     
44374     updateBox : function(box){
44375         this.box = box;
44376         var el = this.activePanel.getEl();
44377         el.dom.style.left = box.x + "px";
44378         el.dom.style.top = box.y + "px";
44379         this.activePanel.setSize(box.width, box.height);
44380     },
44381     
44382     /**
44383      * Returns the container element for this region.
44384      * @return {Roo.Element}
44385      */
44386     getEl : function(){
44387         return this.activePanel;
44388     },
44389     
44390     /**
44391      * Returns true if this region is currently visible.
44392      * @return {Boolean}
44393      */
44394     isVisible : function(){
44395         return this.activePanel ? true : false;
44396     },
44397     
44398     setActivePanel : function(panel){
44399         panel = this.getPanel(panel);
44400         if(this.activePanel && this.activePanel != panel){
44401             this.activePanel.setActiveState(false);
44402             this.activePanel.getEl().setLeftTop(-10000,-10000);
44403         }
44404         this.activePanel = panel;
44405         panel.setActiveState(true);
44406         if(this.box){
44407             panel.setSize(this.box.width, this.box.height);
44408         }
44409         this.fireEvent("panelactivated", this, panel);
44410         this.fireEvent("invalidated");
44411     },
44412     
44413     /**
44414      * Show the specified panel.
44415      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
44416      * @return {Roo.ContentPanel} The shown panel or null
44417      */
44418     showPanel : function(panel){
44419         panel = this.getPanel(panel);
44420         if(panel){
44421             this.setActivePanel(panel);
44422         }
44423         return panel;
44424     },
44425     
44426     /**
44427      * Get the active panel for this region.
44428      * @return {Roo.ContentPanel} The active panel or null
44429      */
44430     getActivePanel : function(){
44431         return this.activePanel;
44432     },
44433     
44434     /**
44435      * Add the passed ContentPanel(s)
44436      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
44437      * @return {Roo.ContentPanel} The panel added (if only one was added)
44438      */
44439     add : function(panel){
44440         if(arguments.length > 1){
44441             for(var i = 0, len = arguments.length; i < len; i++) {
44442                 this.add(arguments[i]);
44443             }
44444             return null;
44445         }
44446         if(this.hasPanel(panel)){
44447             this.showPanel(panel);
44448             return panel;
44449         }
44450         var el = panel.getEl();
44451         if(el.dom.parentNode != this.mgr.el.dom){
44452             this.mgr.el.dom.appendChild(el.dom);
44453         }
44454         if(panel.setRegion){
44455             panel.setRegion(this);
44456         }
44457         this.panels.add(panel);
44458         el.setStyle("position", "absolute");
44459         if(!panel.background){
44460             this.setActivePanel(panel);
44461             if(this.config.initialSize && this.panels.getCount()==1){
44462                 this.resizeTo(this.config.initialSize);
44463             }
44464         }
44465         this.fireEvent("paneladded", this, panel);
44466         return panel;
44467     },
44468     
44469     /**
44470      * Returns true if the panel is in this region.
44471      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
44472      * @return {Boolean}
44473      */
44474     hasPanel : function(panel){
44475         if(typeof panel == "object"){ // must be panel obj
44476             panel = panel.getId();
44477         }
44478         return this.getPanel(panel) ? true : false;
44479     },
44480     
44481     /**
44482      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
44483      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
44484      * @param {Boolean} preservePanel Overrides the config preservePanel option
44485      * @return {Roo.ContentPanel} The panel that was removed
44486      */
44487     remove : function(panel, preservePanel){
44488         panel = this.getPanel(panel);
44489         if(!panel){
44490             return null;
44491         }
44492         var e = {};
44493         this.fireEvent("beforeremove", this, panel, e);
44494         if(e.cancel === true){
44495             return null;
44496         }
44497         var panelId = panel.getId();
44498         this.panels.removeKey(panelId);
44499         return panel;
44500     },
44501     
44502     /**
44503      * Returns the panel specified or null if it's not in this region.
44504      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
44505      * @return {Roo.ContentPanel}
44506      */
44507     getPanel : function(id){
44508         if(typeof id == "object"){ // must be panel obj
44509             return id;
44510         }
44511         return this.panels.get(id);
44512     },
44513     
44514     /**
44515      * Returns this regions position (north/south/east/west/center).
44516      * @return {String} 
44517      */
44518     getPosition: function(){
44519         return this.position;    
44520     }
44521 });/*
44522  * Based on:
44523  * Ext JS Library 1.1.1
44524  * Copyright(c) 2006-2007, Ext JS, LLC.
44525  *
44526  * Originally Released Under LGPL - original licence link has changed is not relivant.
44527  *
44528  * Fork - LGPL
44529  * <script type="text/javascript">
44530  */
44531  
44532 /**
44533  * @class Roo.bootstrap.layout.Region
44534  * @extends Roo.bootstrap.layout.Basic
44535  * This class represents a region in a layout manager.
44536  
44537  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
44538  * @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})
44539  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
44540  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
44541  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
44542  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
44543  * @cfg {String}    title           The title for the region (overrides panel titles)
44544  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
44545  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
44546  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
44547  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
44548  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
44549  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
44550  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
44551  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
44552  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
44553  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
44554
44555  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
44556  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
44557  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
44558  * @cfg {Number}    width           For East/West panels
44559  * @cfg {Number}    height          For North/South panels
44560  * @cfg {Boolean}   split           To show the splitter
44561  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
44562  * 
44563  * @cfg {string}   cls             Extra CSS classes to add to region
44564  * 
44565  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
44566  * @cfg {string}   region  the region that it inhabits..
44567  *
44568
44569  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
44570  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
44571
44572  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
44573  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
44574  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
44575  */
44576 Roo.bootstrap.layout.Region = function(config)
44577 {
44578     this.applyConfig(config);
44579
44580     var mgr = config.mgr;
44581     var pos = config.region;
44582     config.skipConfig = true;
44583     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
44584     
44585     if (mgr.el) {
44586         this.onRender(mgr.el);   
44587     }
44588      
44589     this.visible = true;
44590     this.collapsed = false;
44591     this.unrendered_panels = [];
44592 };
44593
44594 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
44595
44596     position: '', // set by wrapper (eg. north/south etc..)
44597     unrendered_panels : null,  // unrendered panels.
44598     
44599     tabPosition : false,
44600     
44601     mgr: false, // points to 'Border'
44602     
44603     
44604     createBody : function(){
44605         /** This region's body element 
44606         * @type Roo.Element */
44607         this.bodyEl = this.el.createChild({
44608                 tag: "div",
44609                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
44610         });
44611     },
44612
44613     onRender: function(ctr, pos)
44614     {
44615         var dh = Roo.DomHelper;
44616         /** This region's container element 
44617         * @type Roo.Element */
44618         this.el = dh.append(ctr.dom, {
44619                 tag: "div",
44620                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
44621             }, true);
44622         /** This region's title element 
44623         * @type Roo.Element */
44624     
44625         this.titleEl = dh.append(this.el.dom,  {
44626                 tag: "div",
44627                 unselectable: "on",
44628                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
44629                 children:[
44630                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
44631                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
44632                 ]
44633             }, true);
44634         
44635         this.titleEl.enableDisplayMode();
44636         /** This region's title text element 
44637         * @type HTMLElement */
44638         this.titleTextEl = this.titleEl.dom.firstChild;
44639         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
44640         /*
44641         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
44642         this.closeBtn.enableDisplayMode();
44643         this.closeBtn.on("click", this.closeClicked, this);
44644         this.closeBtn.hide();
44645     */
44646         this.createBody(this.config);
44647         if(this.config.hideWhenEmpty){
44648             this.hide();
44649             this.on("paneladded", this.validateVisibility, this);
44650             this.on("panelremoved", this.validateVisibility, this);
44651         }
44652         if(this.autoScroll){
44653             this.bodyEl.setStyle("overflow", "auto");
44654         }else{
44655             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
44656         }
44657         //if(c.titlebar !== false){
44658             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
44659                 this.titleEl.hide();
44660             }else{
44661                 this.titleEl.show();
44662                 if(this.config.title){
44663                     this.titleTextEl.innerHTML = this.config.title;
44664                 }
44665             }
44666         //}
44667         if(this.config.collapsed){
44668             this.collapse(true);
44669         }
44670         if(this.config.hidden){
44671             this.hide();
44672         }
44673         
44674         if (this.unrendered_panels && this.unrendered_panels.length) {
44675             for (var i =0;i< this.unrendered_panels.length; i++) {
44676                 this.add(this.unrendered_panels[i]);
44677             }
44678             this.unrendered_panels = null;
44679             
44680         }
44681         
44682     },
44683     
44684     applyConfig : function(c)
44685     {
44686         /*
44687          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
44688             var dh = Roo.DomHelper;
44689             if(c.titlebar !== false){
44690                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
44691                 this.collapseBtn.on("click", this.collapse, this);
44692                 this.collapseBtn.enableDisplayMode();
44693                 /*
44694                 if(c.showPin === true || this.showPin){
44695                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
44696                     this.stickBtn.enableDisplayMode();
44697                     this.stickBtn.on("click", this.expand, this);
44698                     this.stickBtn.hide();
44699                 }
44700                 
44701             }
44702             */
44703             /** This region's collapsed element
44704             * @type Roo.Element */
44705             /*
44706              *
44707             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
44708                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
44709             ]}, true);
44710             
44711             if(c.floatable !== false){
44712                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
44713                this.collapsedEl.on("click", this.collapseClick, this);
44714             }
44715
44716             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
44717                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
44718                    id: "message", unselectable: "on", style:{"float":"left"}});
44719                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
44720              }
44721             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
44722             this.expandBtn.on("click", this.expand, this);
44723             
44724         }
44725         
44726         if(this.collapseBtn){
44727             this.collapseBtn.setVisible(c.collapsible == true);
44728         }
44729         
44730         this.cmargins = c.cmargins || this.cmargins ||
44731                          (this.position == "west" || this.position == "east" ?
44732                              {top: 0, left: 2, right:2, bottom: 0} :
44733                              {top: 2, left: 0, right:0, bottom: 2});
44734         */
44735         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
44736         
44737         
44738         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
44739         
44740         this.autoScroll = c.autoScroll || false;
44741         
44742         
44743        
44744         
44745         this.duration = c.duration || .30;
44746         this.slideDuration = c.slideDuration || .45;
44747         this.config = c;
44748        
44749     },
44750     /**
44751      * Returns true if this region is currently visible.
44752      * @return {Boolean}
44753      */
44754     isVisible : function(){
44755         return this.visible;
44756     },
44757
44758     /**
44759      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
44760      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
44761      */
44762     //setCollapsedTitle : function(title){
44763     //    title = title || "&#160;";
44764      //   if(this.collapsedTitleTextEl){
44765       //      this.collapsedTitleTextEl.innerHTML = title;
44766        // }
44767     //},
44768
44769     getBox : function(){
44770         var b;
44771       //  if(!this.collapsed){
44772             b = this.el.getBox(false, true);
44773        // }else{
44774           //  b = this.collapsedEl.getBox(false, true);
44775         //}
44776         return b;
44777     },
44778
44779     getMargins : function(){
44780         return this.margins;
44781         //return this.collapsed ? this.cmargins : this.margins;
44782     },
44783 /*
44784     highlight : function(){
44785         this.el.addClass("x-layout-panel-dragover");
44786     },
44787
44788     unhighlight : function(){
44789         this.el.removeClass("x-layout-panel-dragover");
44790     },
44791 */
44792     updateBox : function(box)
44793     {
44794         if (!this.bodyEl) {
44795             return; // not rendered yet..
44796         }
44797         
44798         this.box = box;
44799         if(!this.collapsed){
44800             this.el.dom.style.left = box.x + "px";
44801             this.el.dom.style.top = box.y + "px";
44802             this.updateBody(box.width, box.height);
44803         }else{
44804             this.collapsedEl.dom.style.left = box.x + "px";
44805             this.collapsedEl.dom.style.top = box.y + "px";
44806             this.collapsedEl.setSize(box.width, box.height);
44807         }
44808         if(this.tabs){
44809             this.tabs.autoSizeTabs();
44810         }
44811     },
44812
44813     updateBody : function(w, h)
44814     {
44815         if(w !== null){
44816             this.el.setWidth(w);
44817             w -= this.el.getBorderWidth("rl");
44818             if(this.config.adjustments){
44819                 w += this.config.adjustments[0];
44820             }
44821         }
44822         if(h !== null && h > 0){
44823             this.el.setHeight(h);
44824             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
44825             h -= this.el.getBorderWidth("tb");
44826             if(this.config.adjustments){
44827                 h += this.config.adjustments[1];
44828             }
44829             this.bodyEl.setHeight(h);
44830             if(this.tabs){
44831                 h = this.tabs.syncHeight(h);
44832             }
44833         }
44834         if(this.panelSize){
44835             w = w !== null ? w : this.panelSize.width;
44836             h = h !== null ? h : this.panelSize.height;
44837         }
44838         if(this.activePanel){
44839             var el = this.activePanel.getEl();
44840             w = w !== null ? w : el.getWidth();
44841             h = h !== null ? h : el.getHeight();
44842             this.panelSize = {width: w, height: h};
44843             this.activePanel.setSize(w, h);
44844         }
44845         if(Roo.isIE && this.tabs){
44846             this.tabs.el.repaint();
44847         }
44848     },
44849
44850     /**
44851      * Returns the container element for this region.
44852      * @return {Roo.Element}
44853      */
44854     getEl : function(){
44855         return this.el;
44856     },
44857
44858     /**
44859      * Hides this region.
44860      */
44861     hide : function(){
44862         //if(!this.collapsed){
44863             this.el.dom.style.left = "-2000px";
44864             this.el.hide();
44865         //}else{
44866          //   this.collapsedEl.dom.style.left = "-2000px";
44867          //   this.collapsedEl.hide();
44868        // }
44869         this.visible = false;
44870         this.fireEvent("visibilitychange", this, false);
44871     },
44872
44873     /**
44874      * Shows this region if it was previously hidden.
44875      */
44876     show : function(){
44877         //if(!this.collapsed){
44878             this.el.show();
44879         //}else{
44880         //    this.collapsedEl.show();
44881        // }
44882         this.visible = true;
44883         this.fireEvent("visibilitychange", this, true);
44884     },
44885 /*
44886     closeClicked : function(){
44887         if(this.activePanel){
44888             this.remove(this.activePanel);
44889         }
44890     },
44891
44892     collapseClick : function(e){
44893         if(this.isSlid){
44894            e.stopPropagation();
44895            this.slideIn();
44896         }else{
44897            e.stopPropagation();
44898            this.slideOut();
44899         }
44900     },
44901 */
44902     /**
44903      * Collapses this region.
44904      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
44905      */
44906     /*
44907     collapse : function(skipAnim, skipCheck = false){
44908         if(this.collapsed) {
44909             return;
44910         }
44911         
44912         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
44913             
44914             this.collapsed = true;
44915             if(this.split){
44916                 this.split.el.hide();
44917             }
44918             if(this.config.animate && skipAnim !== true){
44919                 this.fireEvent("invalidated", this);
44920                 this.animateCollapse();
44921             }else{
44922                 this.el.setLocation(-20000,-20000);
44923                 this.el.hide();
44924                 this.collapsedEl.show();
44925                 this.fireEvent("collapsed", this);
44926                 this.fireEvent("invalidated", this);
44927             }
44928         }
44929         
44930     },
44931 */
44932     animateCollapse : function(){
44933         // overridden
44934     },
44935
44936     /**
44937      * Expands this region if it was previously collapsed.
44938      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
44939      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
44940      */
44941     /*
44942     expand : function(e, skipAnim){
44943         if(e) {
44944             e.stopPropagation();
44945         }
44946         if(!this.collapsed || this.el.hasActiveFx()) {
44947             return;
44948         }
44949         if(this.isSlid){
44950             this.afterSlideIn();
44951             skipAnim = true;
44952         }
44953         this.collapsed = false;
44954         if(this.config.animate && skipAnim !== true){
44955             this.animateExpand();
44956         }else{
44957             this.el.show();
44958             if(this.split){
44959                 this.split.el.show();
44960             }
44961             this.collapsedEl.setLocation(-2000,-2000);
44962             this.collapsedEl.hide();
44963             this.fireEvent("invalidated", this);
44964             this.fireEvent("expanded", this);
44965         }
44966     },
44967 */
44968     animateExpand : function(){
44969         // overridden
44970     },
44971
44972     initTabs : function()
44973     {
44974         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
44975         
44976         var ts = new Roo.bootstrap.panel.Tabs({
44977             el: this.bodyEl.dom,
44978             region : this,
44979             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
44980             disableTooltips: this.config.disableTabTips,
44981             toolbar : this.config.toolbar
44982         });
44983         
44984         if(this.config.hideTabs){
44985             ts.stripWrap.setDisplayed(false);
44986         }
44987         this.tabs = ts;
44988         ts.resizeTabs = this.config.resizeTabs === true;
44989         ts.minTabWidth = this.config.minTabWidth || 40;
44990         ts.maxTabWidth = this.config.maxTabWidth || 250;
44991         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
44992         ts.monitorResize = false;
44993         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
44994         ts.bodyEl.addClass('roo-layout-tabs-body');
44995         this.panels.each(this.initPanelAsTab, this);
44996     },
44997
44998     initPanelAsTab : function(panel){
44999         var ti = this.tabs.addTab(
45000             panel.getEl().id,
45001             panel.getTitle(),
45002             null,
45003             this.config.closeOnTab && panel.isClosable(),
45004             panel.tpl
45005         );
45006         if(panel.tabTip !== undefined){
45007             ti.setTooltip(panel.tabTip);
45008         }
45009         ti.on("activate", function(){
45010               this.setActivePanel(panel);
45011         }, this);
45012         
45013         if(this.config.closeOnTab){
45014             ti.on("beforeclose", function(t, e){
45015                 e.cancel = true;
45016                 this.remove(panel);
45017             }, this);
45018         }
45019         
45020         panel.tabItem = ti;
45021         
45022         return ti;
45023     },
45024
45025     updatePanelTitle : function(panel, title)
45026     {
45027         if(this.activePanel == panel){
45028             this.updateTitle(title);
45029         }
45030         if(this.tabs){
45031             var ti = this.tabs.getTab(panel.getEl().id);
45032             ti.setText(title);
45033             if(panel.tabTip !== undefined){
45034                 ti.setTooltip(panel.tabTip);
45035             }
45036         }
45037     },
45038
45039     updateTitle : function(title){
45040         if(this.titleTextEl && !this.config.title){
45041             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
45042         }
45043     },
45044
45045     setActivePanel : function(panel)
45046     {
45047         panel = this.getPanel(panel);
45048         if(this.activePanel && this.activePanel != panel){
45049             if(this.activePanel.setActiveState(false) === false){
45050                 return;
45051             }
45052         }
45053         this.activePanel = panel;
45054         panel.setActiveState(true);
45055         if(this.panelSize){
45056             panel.setSize(this.panelSize.width, this.panelSize.height);
45057         }
45058         if(this.closeBtn){
45059             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
45060         }
45061         this.updateTitle(panel.getTitle());
45062         if(this.tabs){
45063             this.fireEvent("invalidated", this);
45064         }
45065         this.fireEvent("panelactivated", this, panel);
45066     },
45067
45068     /**
45069      * Shows the specified panel.
45070      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
45071      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
45072      */
45073     showPanel : function(panel)
45074     {
45075         panel = this.getPanel(panel);
45076         if(panel){
45077             if(this.tabs){
45078                 var tab = this.tabs.getTab(panel.getEl().id);
45079                 if(tab.isHidden()){
45080                     this.tabs.unhideTab(tab.id);
45081                 }
45082                 tab.activate();
45083             }else{
45084                 this.setActivePanel(panel);
45085             }
45086         }
45087         return panel;
45088     },
45089
45090     /**
45091      * Get the active panel for this region.
45092      * @return {Roo.ContentPanel} The active panel or null
45093      */
45094     getActivePanel : function(){
45095         return this.activePanel;
45096     },
45097
45098     validateVisibility : function(){
45099         if(this.panels.getCount() < 1){
45100             this.updateTitle("&#160;");
45101             this.closeBtn.hide();
45102             this.hide();
45103         }else{
45104             if(!this.isVisible()){
45105                 this.show();
45106             }
45107         }
45108     },
45109
45110     /**
45111      * Adds the passed ContentPanel(s) to this region.
45112      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
45113      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
45114      */
45115     add : function(panel)
45116     {
45117         if(arguments.length > 1){
45118             for(var i = 0, len = arguments.length; i < len; i++) {
45119                 this.add(arguments[i]);
45120             }
45121             return null;
45122         }
45123         
45124         // if we have not been rendered yet, then we can not really do much of this..
45125         if (!this.bodyEl) {
45126             this.unrendered_panels.push(panel);
45127             return panel;
45128         }
45129         
45130         
45131         
45132         
45133         if(this.hasPanel(panel)){
45134             this.showPanel(panel);
45135             return panel;
45136         }
45137         panel.setRegion(this);
45138         this.panels.add(panel);
45139        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
45140             // sinle panel - no tab...?? would it not be better to render it with the tabs,
45141             // and hide them... ???
45142             this.bodyEl.dom.appendChild(panel.getEl().dom);
45143             if(panel.background !== true){
45144                 this.setActivePanel(panel);
45145             }
45146             this.fireEvent("paneladded", this, panel);
45147             return panel;
45148         }
45149         */
45150         if(!this.tabs){
45151             this.initTabs();
45152         }else{
45153             this.initPanelAsTab(panel);
45154         }
45155         
45156         
45157         if(panel.background !== true){
45158             this.tabs.activate(panel.getEl().id);
45159         }
45160         this.fireEvent("paneladded", this, panel);
45161         return panel;
45162     },
45163
45164     /**
45165      * Hides the tab for the specified panel.
45166      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
45167      */
45168     hidePanel : function(panel){
45169         if(this.tabs && (panel = this.getPanel(panel))){
45170             this.tabs.hideTab(panel.getEl().id);
45171         }
45172     },
45173
45174     /**
45175      * Unhides the tab for a previously hidden panel.
45176      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
45177      */
45178     unhidePanel : function(panel){
45179         if(this.tabs && (panel = this.getPanel(panel))){
45180             this.tabs.unhideTab(panel.getEl().id);
45181         }
45182     },
45183
45184     clearPanels : function(){
45185         while(this.panels.getCount() > 0){
45186              this.remove(this.panels.first());
45187         }
45188     },
45189
45190     /**
45191      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
45192      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
45193      * @param {Boolean} preservePanel Overrides the config preservePanel option
45194      * @return {Roo.ContentPanel} The panel that was removed
45195      */
45196     remove : function(panel, preservePanel)
45197     {
45198         panel = this.getPanel(panel);
45199         if(!panel){
45200             return null;
45201         }
45202         var e = {};
45203         this.fireEvent("beforeremove", this, panel, e);
45204         if(e.cancel === true){
45205             return null;
45206         }
45207         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
45208         var panelId = panel.getId();
45209         this.panels.removeKey(panelId);
45210         if(preservePanel){
45211             document.body.appendChild(panel.getEl().dom);
45212         }
45213         if(this.tabs){
45214             this.tabs.removeTab(panel.getEl().id);
45215         }else if (!preservePanel){
45216             this.bodyEl.dom.removeChild(panel.getEl().dom);
45217         }
45218         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
45219             var p = this.panels.first();
45220             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
45221             tempEl.appendChild(p.getEl().dom);
45222             this.bodyEl.update("");
45223             this.bodyEl.dom.appendChild(p.getEl().dom);
45224             tempEl = null;
45225             this.updateTitle(p.getTitle());
45226             this.tabs = null;
45227             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
45228             this.setActivePanel(p);
45229         }
45230         panel.setRegion(null);
45231         if(this.activePanel == panel){
45232             this.activePanel = null;
45233         }
45234         if(this.config.autoDestroy !== false && preservePanel !== true){
45235             try{panel.destroy();}catch(e){}
45236         }
45237         this.fireEvent("panelremoved", this, panel);
45238         return panel;
45239     },
45240
45241     /**
45242      * Returns the TabPanel component used by this region
45243      * @return {Roo.TabPanel}
45244      */
45245     getTabs : function(){
45246         return this.tabs;
45247     },
45248
45249     createTool : function(parentEl, className){
45250         var btn = Roo.DomHelper.append(parentEl, {
45251             tag: "div",
45252             cls: "x-layout-tools-button",
45253             children: [ {
45254                 tag: "div",
45255                 cls: "roo-layout-tools-button-inner " + className,
45256                 html: "&#160;"
45257             }]
45258         }, true);
45259         btn.addClassOnOver("roo-layout-tools-button-over");
45260         return btn;
45261     }
45262 });/*
45263  * Based on:
45264  * Ext JS Library 1.1.1
45265  * Copyright(c) 2006-2007, Ext JS, LLC.
45266  *
45267  * Originally Released Under LGPL - original licence link has changed is not relivant.
45268  *
45269  * Fork - LGPL
45270  * <script type="text/javascript">
45271  */
45272  
45273
45274
45275 /**
45276  * @class Roo.layout.SplitRegion
45277  * @extends Roo.layout.Region
45278  * Adds a splitbar and other (private) useful functionality to a {@link Roo.layout.Region}.
45279  */
45280 Roo.bootstrap.layout.Split = function(config){
45281     this.cursor = config.cursor;
45282     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
45283 };
45284
45285 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
45286 {
45287     splitTip : "Drag to resize.",
45288     collapsibleSplitTip : "Drag to resize. Double click to hide.",
45289     useSplitTips : false,
45290
45291     applyConfig : function(config){
45292         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
45293     },
45294     
45295     onRender : function(ctr,pos) {
45296         
45297         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
45298         if(!this.config.split){
45299             return;
45300         }
45301         if(!this.split){
45302             
45303             var splitEl = Roo.DomHelper.append(ctr.dom,  {
45304                             tag: "div",
45305                             id: this.el.id + "-split",
45306                             cls: "roo-layout-split roo-layout-split-"+this.position,
45307                             html: "&#160;"
45308             });
45309             /** The SplitBar for this region 
45310             * @type Roo.SplitBar */
45311             // does not exist yet...
45312             Roo.log([this.position, this.orientation]);
45313             
45314             this.split = new Roo.bootstrap.SplitBar({
45315                 dragElement : splitEl,
45316                 resizingElement: this.el,
45317                 orientation : this.orientation
45318             });
45319             
45320             this.split.on("moved", this.onSplitMove, this);
45321             this.split.useShim = this.config.useShim === true;
45322             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
45323             if(this.useSplitTips){
45324                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
45325             }
45326             //if(config.collapsible){
45327             //    this.split.el.on("dblclick", this.collapse,  this);
45328             //}
45329         }
45330         if(typeof this.config.minSize != "undefined"){
45331             this.split.minSize = this.config.minSize;
45332         }
45333         if(typeof this.config.maxSize != "undefined"){
45334             this.split.maxSize = this.config.maxSize;
45335         }
45336         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
45337             this.hideSplitter();
45338         }
45339         
45340     },
45341
45342     getHMaxSize : function(){
45343          var cmax = this.config.maxSize || 10000;
45344          var center = this.mgr.getRegion("center");
45345          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
45346     },
45347
45348     getVMaxSize : function(){
45349          var cmax = this.config.maxSize || 10000;
45350          var center = this.mgr.getRegion("center");
45351          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
45352     },
45353
45354     onSplitMove : function(split, newSize){
45355         this.fireEvent("resized", this, newSize);
45356     },
45357     
45358     /** 
45359      * Returns the {@link Roo.SplitBar} for this region.
45360      * @return {Roo.SplitBar}
45361      */
45362     getSplitBar : function(){
45363         return this.split;
45364     },
45365     
45366     hide : function(){
45367         this.hideSplitter();
45368         Roo.bootstrap.layout.Split.superclass.hide.call(this);
45369     },
45370
45371     hideSplitter : function(){
45372         if(this.split){
45373             this.split.el.setLocation(-2000,-2000);
45374             this.split.el.hide();
45375         }
45376     },
45377
45378     show : function(){
45379         if(this.split){
45380             this.split.el.show();
45381         }
45382         Roo.bootstrap.layout.Split.superclass.show.call(this);
45383     },
45384     
45385     beforeSlide: function(){
45386         if(Roo.isGecko){// firefox overflow auto bug workaround
45387             this.bodyEl.clip();
45388             if(this.tabs) {
45389                 this.tabs.bodyEl.clip();
45390             }
45391             if(this.activePanel){
45392                 this.activePanel.getEl().clip();
45393                 
45394                 if(this.activePanel.beforeSlide){
45395                     this.activePanel.beforeSlide();
45396                 }
45397             }
45398         }
45399     },
45400     
45401     afterSlide : function(){
45402         if(Roo.isGecko){// firefox overflow auto bug workaround
45403             this.bodyEl.unclip();
45404             if(this.tabs) {
45405                 this.tabs.bodyEl.unclip();
45406             }
45407             if(this.activePanel){
45408                 this.activePanel.getEl().unclip();
45409                 if(this.activePanel.afterSlide){
45410                     this.activePanel.afterSlide();
45411                 }
45412             }
45413         }
45414     },
45415
45416     initAutoHide : function(){
45417         if(this.autoHide !== false){
45418             if(!this.autoHideHd){
45419                 var st = new Roo.util.DelayedTask(this.slideIn, this);
45420                 this.autoHideHd = {
45421                     "mouseout": function(e){
45422                         if(!e.within(this.el, true)){
45423                             st.delay(500);
45424                         }
45425                     },
45426                     "mouseover" : function(e){
45427                         st.cancel();
45428                     },
45429                     scope : this
45430                 };
45431             }
45432             this.el.on(this.autoHideHd);
45433         }
45434     },
45435
45436     clearAutoHide : function(){
45437         if(this.autoHide !== false){
45438             this.el.un("mouseout", this.autoHideHd.mouseout);
45439             this.el.un("mouseover", this.autoHideHd.mouseover);
45440         }
45441     },
45442
45443     clearMonitor : function(){
45444         Roo.get(document).un("click", this.slideInIf, this);
45445     },
45446
45447     // these names are backwards but not changed for compat
45448     slideOut : function(){
45449         if(this.isSlid || this.el.hasActiveFx()){
45450             return;
45451         }
45452         this.isSlid = true;
45453         if(this.collapseBtn){
45454             this.collapseBtn.hide();
45455         }
45456         this.closeBtnState = this.closeBtn.getStyle('display');
45457         this.closeBtn.hide();
45458         if(this.stickBtn){
45459             this.stickBtn.show();
45460         }
45461         this.el.show();
45462         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
45463         this.beforeSlide();
45464         this.el.setStyle("z-index", 10001);
45465         this.el.slideIn(this.getSlideAnchor(), {
45466             callback: function(){
45467                 this.afterSlide();
45468                 this.initAutoHide();
45469                 Roo.get(document).on("click", this.slideInIf, this);
45470                 this.fireEvent("slideshow", this);
45471             },
45472             scope: this,
45473             block: true
45474         });
45475     },
45476
45477     afterSlideIn : function(){
45478         this.clearAutoHide();
45479         this.isSlid = false;
45480         this.clearMonitor();
45481         this.el.setStyle("z-index", "");
45482         if(this.collapseBtn){
45483             this.collapseBtn.show();
45484         }
45485         this.closeBtn.setStyle('display', this.closeBtnState);
45486         if(this.stickBtn){
45487             this.stickBtn.hide();
45488         }
45489         this.fireEvent("slidehide", this);
45490     },
45491
45492     slideIn : function(cb){
45493         if(!this.isSlid || this.el.hasActiveFx()){
45494             Roo.callback(cb);
45495             return;
45496         }
45497         this.isSlid = false;
45498         this.beforeSlide();
45499         this.el.slideOut(this.getSlideAnchor(), {
45500             callback: function(){
45501                 this.el.setLeftTop(-10000, -10000);
45502                 this.afterSlide();
45503                 this.afterSlideIn();
45504                 Roo.callback(cb);
45505             },
45506             scope: this,
45507             block: true
45508         });
45509     },
45510     
45511     slideInIf : function(e){
45512         if(!e.within(this.el)){
45513             this.slideIn();
45514         }
45515     },
45516
45517     animateCollapse : function(){
45518         this.beforeSlide();
45519         this.el.setStyle("z-index", 20000);
45520         var anchor = this.getSlideAnchor();
45521         this.el.slideOut(anchor, {
45522             callback : function(){
45523                 this.el.setStyle("z-index", "");
45524                 this.collapsedEl.slideIn(anchor, {duration:.3});
45525                 this.afterSlide();
45526                 this.el.setLocation(-10000,-10000);
45527                 this.el.hide();
45528                 this.fireEvent("collapsed", this);
45529             },
45530             scope: this,
45531             block: true
45532         });
45533     },
45534
45535     animateExpand : function(){
45536         this.beforeSlide();
45537         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
45538         this.el.setStyle("z-index", 20000);
45539         this.collapsedEl.hide({
45540             duration:.1
45541         });
45542         this.el.slideIn(this.getSlideAnchor(), {
45543             callback : function(){
45544                 this.el.setStyle("z-index", "");
45545                 this.afterSlide();
45546                 if(this.split){
45547                     this.split.el.show();
45548                 }
45549                 this.fireEvent("invalidated", this);
45550                 this.fireEvent("expanded", this);
45551             },
45552             scope: this,
45553             block: true
45554         });
45555     },
45556
45557     anchors : {
45558         "west" : "left",
45559         "east" : "right",
45560         "north" : "top",
45561         "south" : "bottom"
45562     },
45563
45564     sanchors : {
45565         "west" : "l",
45566         "east" : "r",
45567         "north" : "t",
45568         "south" : "b"
45569     },
45570
45571     canchors : {
45572         "west" : "tl-tr",
45573         "east" : "tr-tl",
45574         "north" : "tl-bl",
45575         "south" : "bl-tl"
45576     },
45577
45578     getAnchor : function(){
45579         return this.anchors[this.position];
45580     },
45581
45582     getCollapseAnchor : function(){
45583         return this.canchors[this.position];
45584     },
45585
45586     getSlideAnchor : function(){
45587         return this.sanchors[this.position];
45588     },
45589
45590     getAlignAdj : function(){
45591         var cm = this.cmargins;
45592         switch(this.position){
45593             case "west":
45594                 return [0, 0];
45595             break;
45596             case "east":
45597                 return [0, 0];
45598             break;
45599             case "north":
45600                 return [0, 0];
45601             break;
45602             case "south":
45603                 return [0, 0];
45604             break;
45605         }
45606     },
45607
45608     getExpandAdj : function(){
45609         var c = this.collapsedEl, cm = this.cmargins;
45610         switch(this.position){
45611             case "west":
45612                 return [-(cm.right+c.getWidth()+cm.left), 0];
45613             break;
45614             case "east":
45615                 return [cm.right+c.getWidth()+cm.left, 0];
45616             break;
45617             case "north":
45618                 return [0, -(cm.top+cm.bottom+c.getHeight())];
45619             break;
45620             case "south":
45621                 return [0, cm.top+cm.bottom+c.getHeight()];
45622             break;
45623         }
45624     }
45625 });/*
45626  * Based on:
45627  * Ext JS Library 1.1.1
45628  * Copyright(c) 2006-2007, Ext JS, LLC.
45629  *
45630  * Originally Released Under LGPL - original licence link has changed is not relivant.
45631  *
45632  * Fork - LGPL
45633  * <script type="text/javascript">
45634  */
45635 /*
45636  * These classes are private internal classes
45637  */
45638 Roo.bootstrap.layout.Center = function(config){
45639     config.region = "center";
45640     Roo.bootstrap.layout.Region.call(this, config);
45641     this.visible = true;
45642     this.minWidth = config.minWidth || 20;
45643     this.minHeight = config.minHeight || 20;
45644 };
45645
45646 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
45647     hide : function(){
45648         // center panel can't be hidden
45649     },
45650     
45651     show : function(){
45652         // center panel can't be hidden
45653     },
45654     
45655     getMinWidth: function(){
45656         return this.minWidth;
45657     },
45658     
45659     getMinHeight: function(){
45660         return this.minHeight;
45661     }
45662 });
45663
45664
45665
45666
45667  
45668
45669
45670
45671
45672
45673
45674 Roo.bootstrap.layout.North = function(config)
45675 {
45676     config.region = 'north';
45677     config.cursor = 'n-resize';
45678     
45679     Roo.bootstrap.layout.Split.call(this, config);
45680     
45681     
45682     if(this.split){
45683         this.split.placement = Roo.bootstrap.SplitBar.TOP;
45684         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
45685         this.split.el.addClass("roo-layout-split-v");
45686     }
45687     //var size = config.initialSize || config.height;
45688     //if(this.el && typeof size != "undefined"){
45689     //    this.el.setHeight(size);
45690     //}
45691 };
45692 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
45693 {
45694     orientation: Roo.bootstrap.SplitBar.VERTICAL,
45695      
45696      
45697     onRender : function(ctr, pos)
45698     {
45699         Roo.bootstrap.layout.Split.prototype.onRender.call(this, ctr, pos);
45700         var size = this.config.initialSize || this.config.height;
45701         if(this.el && typeof size != "undefined"){
45702             this.el.setHeight(size);
45703         }
45704     
45705     },
45706     
45707     getBox : function(){
45708         if(this.collapsed){
45709             return this.collapsedEl.getBox();
45710         }
45711         var box = this.el.getBox();
45712         if(this.split){
45713             box.height += this.split.el.getHeight();
45714         }
45715         return box;
45716     },
45717     
45718     updateBox : function(box){
45719         if(this.split && !this.collapsed){
45720             box.height -= this.split.el.getHeight();
45721             this.split.el.setLeft(box.x);
45722             this.split.el.setTop(box.y+box.height);
45723             this.split.el.setWidth(box.width);
45724         }
45725         if(this.collapsed){
45726             this.updateBody(box.width, null);
45727         }
45728         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
45729     }
45730 });
45731
45732
45733
45734
45735
45736 Roo.bootstrap.layout.South = function(config){
45737     config.region = 'south';
45738     config.cursor = 's-resize';
45739     Roo.bootstrap.layout.Split.call(this, config);
45740     if(this.split){
45741         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
45742         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
45743         this.split.el.addClass("roo-layout-split-v");
45744     }
45745     
45746 };
45747
45748 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
45749     orientation: Roo.bootstrap.SplitBar.VERTICAL,
45750     
45751     onRender : function(ctr, pos)
45752     {
45753         Roo.bootstrap.layout.Split.prototype.onRender.call(this, ctr, pos);
45754         var size = this.config.initialSize || this.config.height;
45755         if(this.el && typeof size != "undefined"){
45756             this.el.setHeight(size);
45757         }
45758     
45759     },
45760     
45761     getBox : function(){
45762         if(this.collapsed){
45763             return this.collapsedEl.getBox();
45764         }
45765         var box = this.el.getBox();
45766         if(this.split){
45767             var sh = this.split.el.getHeight();
45768             box.height += sh;
45769             box.y -= sh;
45770         }
45771         return box;
45772     },
45773     
45774     updateBox : function(box){
45775         if(this.split && !this.collapsed){
45776             var sh = this.split.el.getHeight();
45777             box.height -= sh;
45778             box.y += sh;
45779             this.split.el.setLeft(box.x);
45780             this.split.el.setTop(box.y-sh);
45781             this.split.el.setWidth(box.width);
45782         }
45783         if(this.collapsed){
45784             this.updateBody(box.width, null);
45785         }
45786         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
45787     }
45788 });
45789
45790 Roo.bootstrap.layout.East = function(config){
45791     config.region = "east";
45792     config.cursor = "e-resize";
45793     Roo.bootstrap.layout.Split.call(this, config);
45794     if(this.split){
45795         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
45796         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
45797         this.split.el.addClass("roo-layout-split-h");
45798     }
45799     
45800 };
45801 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
45802     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
45803     
45804     onRender : function(ctr, pos)
45805     {
45806         Roo.bootstrap.layout.Split.prototype.onRender.call(this, ctr, pos);
45807         var size = this.config.initialSize || this.config.width;
45808         if(this.el && typeof size != "undefined"){
45809             this.el.setWidth(size);
45810         }
45811     
45812     },
45813     
45814     getBox : function(){
45815         if(this.collapsed){
45816             return this.collapsedEl.getBox();
45817         }
45818         var box = this.el.getBox();
45819         if(this.split){
45820             var sw = this.split.el.getWidth();
45821             box.width += sw;
45822             box.x -= sw;
45823         }
45824         return box;
45825     },
45826
45827     updateBox : function(box){
45828         if(this.split && !this.collapsed){
45829             var sw = this.split.el.getWidth();
45830             box.width -= sw;
45831             this.split.el.setLeft(box.x);
45832             this.split.el.setTop(box.y);
45833             this.split.el.setHeight(box.height);
45834             box.x += sw;
45835         }
45836         if(this.collapsed){
45837             this.updateBody(null, box.height);
45838         }
45839         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
45840     }
45841 });
45842
45843 Roo.bootstrap.layout.West = function(config){
45844     config.region = "west";
45845     config.cursor = "w-resize";
45846     
45847     Roo.bootstrap.layout.Split.call(this, config);
45848     if(this.split){
45849         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
45850         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
45851         this.split.el.addClass("roo-layout-split-h");
45852     }
45853     
45854 };
45855 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
45856     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
45857     
45858     onRender: function(ctr, pos)
45859     {
45860         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
45861         var size = this.config.initialSize || this.config.width;
45862         if(typeof size != "undefined"){
45863             this.el.setWidth(size);
45864         }
45865     },
45866     
45867     getBox : function(){
45868         if(this.collapsed){
45869             return this.collapsedEl.getBox();
45870         }
45871         var box = this.el.getBox();
45872         if (box.width == 0) {
45873             box.width = this.config.width; // kludge?
45874         }
45875         if(this.split){
45876             box.width += this.split.el.getWidth();
45877         }
45878         return box;
45879     },
45880     
45881     updateBox : function(box){
45882         if(this.split && !this.collapsed){
45883             var sw = this.split.el.getWidth();
45884             box.width -= sw;
45885             this.split.el.setLeft(box.x+box.width);
45886             this.split.el.setTop(box.y);
45887             this.split.el.setHeight(box.height);
45888         }
45889         if(this.collapsed){
45890             this.updateBody(null, box.height);
45891         }
45892         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
45893     }
45894 });/*
45895  * Based on:
45896  * Ext JS Library 1.1.1
45897  * Copyright(c) 2006-2007, Ext JS, LLC.
45898  *
45899  * Originally Released Under LGPL - original licence link has changed is not relivant.
45900  *
45901  * Fork - LGPL
45902  * <script type="text/javascript">
45903  */
45904 /**
45905  * @class Roo.bootstrap.paenl.Content
45906  * @extends Roo.util.Observable
45907  * @children Roo.bootstrap.Component
45908  * @parent builder Roo.bootstrap.layout.Border
45909  * A basic ContentPanel element. - a panel that contain any content (eg. forms etc.)
45910  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
45911  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
45912  * @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
45913  * @cfg {Boolean}   closable      True if the panel can be closed/removed
45914  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
45915  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
45916  * @cfg {Toolbar}   toolbar       A toolbar for this panel
45917  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
45918  * @cfg {String} title          The title for this panel
45919  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
45920  * @cfg {String} url            Calls {@link #setUrl} with this value
45921  * @cfg {String} region  [required] (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
45922  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
45923  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
45924  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
45925  * @cfg {Boolean} iframe      contents are an iframe - makes showing remote sources/CSS feasible..
45926  * @cfg {Boolean} badges render the badges
45927  * @cfg {String} cls  extra classes to use  
45928  * @cfg {String} background (primary|secondary|success|info|warning|danger|light|dark)
45929  
45930  * @constructor
45931  * Create a new ContentPanel.
45932  * @param {String/Object} config A string to set only the title or a config object
45933  
45934  */
45935 Roo.bootstrap.panel.Content = function( config){
45936     
45937     this.tpl = config.tpl || false;
45938     
45939     var el = config.el;
45940     var content = config.content;
45941
45942     if(config.autoCreate){ // xtype is available if this is called from factory
45943         el = Roo.id();
45944     }
45945     this.el = Roo.get(el);
45946     if(!this.el && config && config.autoCreate){
45947         if(typeof config.autoCreate == "object"){
45948             if(!config.autoCreate.id){
45949                 config.autoCreate.id = config.id||el;
45950             }
45951             this.el = Roo.DomHelper.append(document.body,
45952                         config.autoCreate, true);
45953         }else{
45954             var elcfg =  {
45955                 tag: "div",
45956                 cls: (config.cls || '') +
45957                     (config.background ? ' bg-' + config.background : '') +
45958                     " roo-layout-inactive-content",
45959                 id: config.id||el
45960             };
45961             if (config.iframe) {
45962                 elcfg.cn = [
45963                     {
45964                         tag : 'iframe',
45965                         style : 'border: 0px',
45966                         src : 'data:text/html,%3Cbody%3E%3C%2Fbody%3E'
45967                     }
45968                 ];
45969             }
45970               
45971             if (config.html) {
45972                 elcfg.html = config.html;
45973                 
45974             }
45975                         
45976             this.el = Roo.DomHelper.append(document.body, elcfg , true);
45977             if (config.iframe) {
45978                 this.iframeEl = this.el.select('iframe',true).first();
45979             }
45980             
45981         }
45982     } 
45983     this.closable = false;
45984     this.loaded = false;
45985     this.active = false;
45986    
45987       
45988     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
45989         
45990         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
45991         
45992         this.wrapEl = this.el; //this.el.wrap();
45993         var ti = [];
45994         if (config.toolbar.items) {
45995             ti = config.toolbar.items ;
45996             delete config.toolbar.items ;
45997         }
45998         
45999         var nitems = [];
46000         this.toolbar.render(this.wrapEl, 'before');
46001         for(var i =0;i < ti.length;i++) {
46002           //  Roo.log(['add child', items[i]]);
46003             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
46004         }
46005         this.toolbar.items = nitems;
46006         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
46007         delete config.toolbar;
46008         
46009     }
46010     /*
46011     // xtype created footer. - not sure if will work as we normally have to render first..
46012     if (this.footer && !this.footer.el && this.footer.xtype) {
46013         if (!this.wrapEl) {
46014             this.wrapEl = this.el.wrap();
46015         }
46016     
46017         this.footer.container = this.wrapEl.createChild();
46018          
46019         this.footer = Roo.factory(this.footer, Roo);
46020         
46021     }
46022     */
46023     
46024      if(typeof config == "string"){
46025         this.title = config;
46026     }else{
46027         Roo.apply(this, config);
46028     }
46029     
46030     if(this.resizeEl){
46031         this.resizeEl = Roo.get(this.resizeEl, true);
46032     }else{
46033         this.resizeEl = this.el;
46034     }
46035     // handle view.xtype
46036     
46037  
46038     
46039     
46040     this.addEvents({
46041         /**
46042          * @event activate
46043          * Fires when this panel is activated. 
46044          * @param {Roo.ContentPanel} this
46045          */
46046         "activate" : true,
46047         /**
46048          * @event deactivate
46049          * Fires when this panel is activated. 
46050          * @param {Roo.ContentPanel} this
46051          */
46052         "deactivate" : true,
46053
46054         /**
46055          * @event resize
46056          * Fires when this panel is resized if fitToFrame is true.
46057          * @param {Roo.ContentPanel} this
46058          * @param {Number} width The width after any component adjustments
46059          * @param {Number} height The height after any component adjustments
46060          */
46061         "resize" : true,
46062         
46063          /**
46064          * @event render
46065          * Fires when this tab is created
46066          * @param {Roo.ContentPanel} this
46067          */
46068         "render" : true,
46069         
46070           /**
46071          * @event scroll
46072          * Fires when this content is scrolled
46073          * @param {Roo.ContentPanel} this
46074          * @param {Event} scrollEvent
46075          */
46076         "scroll" : true
46077         
46078         
46079         
46080     });
46081     
46082
46083     
46084     
46085     if(this.autoScroll && !this.iframe){
46086         this.resizeEl.setStyle("overflow", "auto");
46087         this.resizeEl.on('scroll', this.onScroll, this);
46088     } else {
46089         // fix randome scrolling
46090         //this.el.on('scroll', function() {
46091         //    Roo.log('fix random scolling');
46092         //    this.scrollTo('top',0); 
46093         //});
46094     }
46095     content = content || this.content;
46096     if(content){
46097         this.setContent(content);
46098     }
46099     if(config && config.url){
46100         this.setUrl(this.url, this.params, this.loadOnce);
46101     }
46102     
46103     
46104     
46105     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
46106     
46107     if (this.view && typeof(this.view.xtype) != 'undefined') {
46108         this.view.el = this.el.appendChild(document.createElement("div"));
46109         this.view = Roo.factory(this.view); 
46110         this.view.render  &&  this.view.render(false, '');  
46111     }
46112     
46113     
46114     this.fireEvent('render', this);
46115 };
46116
46117 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
46118     
46119     cls : '',
46120     background : '',
46121     
46122     tabTip : '',
46123     
46124     iframe : false,
46125     iframeEl : false,
46126     
46127     /* Resize Element - use this to work out scroll etc. */
46128     resizeEl : false,
46129     
46130     setRegion : function(region){
46131         this.region = region;
46132         this.setActiveClass(region && !this.background);
46133     },
46134     
46135     
46136     setActiveClass: function(state)
46137     {
46138         if(state){
46139            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
46140            this.el.setStyle('position','relative');
46141         }else{
46142            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
46143            this.el.setStyle('position', 'absolute');
46144         } 
46145     },
46146     
46147     /**
46148      * Returns the toolbar for this Panel if one was configured. 
46149      * @return {Roo.Toolbar} 
46150      */
46151     getToolbar : function(){
46152         return this.toolbar;
46153     },
46154     
46155     setActiveState : function(active)
46156     {
46157         this.active = active;
46158         this.setActiveClass(active);
46159         if(!active){
46160             if(this.fireEvent("deactivate", this) === false){
46161                 return false;
46162             }
46163             return true;
46164         }
46165         this.fireEvent("activate", this);
46166         return true;
46167     },
46168     /**
46169      * Updates this panel's element (not for iframe)
46170      * @param {String} content The new content
46171      * @param {Boolean} loadScripts (optional) true to look for and process scripts
46172     */
46173     setContent : function(content, loadScripts){
46174         if (this.iframe) {
46175             return;
46176         }
46177         
46178         this.el.update(content, loadScripts);
46179     },
46180
46181     ignoreResize : function(w, h)
46182     {
46183         //return false; // always resize?
46184         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
46185             return true;
46186         }else{
46187             this.lastSize = {width: w, height: h};
46188             return false;
46189         }
46190     },
46191     /**
46192      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
46193      * @return {Roo.UpdateManager} The UpdateManager
46194      */
46195     getUpdateManager : function(){
46196         if (this.iframe) {
46197             return false;
46198         }
46199         return this.el.getUpdateManager();
46200     },
46201      /**
46202      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
46203      * Does not work with IFRAME contents
46204      * @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:
46205 <pre><code>
46206 panel.load({
46207     url: "your-url.php",
46208     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
46209     callback: yourFunction,
46210     scope: yourObject, //(optional scope)
46211     discardUrl: false,
46212     nocache: false,
46213     text: "Loading...",
46214     timeout: 30,
46215     scripts: false
46216 });
46217 </code></pre>
46218      
46219      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
46220      * 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.
46221      * @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}
46222      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
46223      * @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.
46224      * @return {Roo.ContentPanel} this
46225      */
46226     load : function(){
46227         
46228         if (this.iframe) {
46229             return this;
46230         }
46231         
46232         var um = this.el.getUpdateManager();
46233         um.update.apply(um, arguments);
46234         return this;
46235     },
46236
46237
46238     /**
46239      * 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.
46240      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
46241      * @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)
46242      * @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)
46243      * @return {Roo.UpdateManager|Boolean} The UpdateManager or false if IFRAME
46244      */
46245     setUrl : function(url, params, loadOnce){
46246         if (this.iframe) {
46247             this.iframeEl.dom.src = url;
46248             return false;
46249         }
46250         
46251         if(this.refreshDelegate){
46252             this.removeListener("activate", this.refreshDelegate);
46253         }
46254         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
46255         this.on("activate", this.refreshDelegate);
46256         return this.el.getUpdateManager();
46257     },
46258     
46259     _handleRefresh : function(url, params, loadOnce){
46260         if(!loadOnce || !this.loaded){
46261             var updater = this.el.getUpdateManager();
46262             updater.update(url, params, this._setLoaded.createDelegate(this));
46263         }
46264     },
46265     
46266     _setLoaded : function(){
46267         this.loaded = true;
46268     }, 
46269     
46270     /**
46271      * Returns this panel's id
46272      * @return {String} 
46273      */
46274     getId : function(){
46275         return this.el.id;
46276     },
46277     
46278     /** 
46279      * Returns this panel's element - used by regiosn to add.
46280      * @return {Roo.Element} 
46281      */
46282     getEl : function(){
46283         return this.wrapEl || this.el;
46284     },
46285     
46286    
46287     
46288     adjustForComponents : function(width, height)
46289     {
46290         //Roo.log('adjustForComponents ');
46291         if(this.resizeEl != this.el){
46292             width -= this.el.getFrameWidth('lr');
46293             height -= this.el.getFrameWidth('tb');
46294         }
46295         if(this.toolbar){
46296             var te = this.toolbar.getEl();
46297             te.setWidth(width);
46298             height -= te.getHeight();
46299         }
46300         if(this.footer){
46301             var te = this.footer.getEl();
46302             te.setWidth(width);
46303             height -= te.getHeight();
46304         }
46305         
46306         
46307         if(this.adjustments){
46308             width += this.adjustments[0];
46309             height += this.adjustments[1];
46310         }
46311         return {"width": width, "height": height};
46312     },
46313     
46314     setSize : function(width, height){
46315         if(this.fitToFrame && !this.ignoreResize(width, height)){
46316             if(this.fitContainer && this.resizeEl != this.el){
46317                 this.el.setSize(width, height);
46318             }
46319             var size = this.adjustForComponents(width, height);
46320             if (this.iframe) {
46321                 this.iframeEl.setSize(width,height);
46322             }
46323             
46324             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
46325             this.fireEvent('resize', this, size.width, size.height);
46326             
46327             
46328         }
46329     },
46330     
46331     /**
46332      * Returns this panel's title
46333      * @return {String} 
46334      */
46335     getTitle : function(){
46336         
46337         if (typeof(this.title) != 'object') {
46338             return this.title;
46339         }
46340         
46341         var t = '';
46342         for (var k in this.title) {
46343             if (!this.title.hasOwnProperty(k)) {
46344                 continue;
46345             }
46346             
46347             if (k.indexOf('-') >= 0) {
46348                 var s = k.split('-');
46349                 for (var i = 0; i<s.length; i++) {
46350                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
46351                 }
46352             } else {
46353                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
46354             }
46355         }
46356         return t;
46357     },
46358     
46359     /**
46360      * Set this panel's title
46361      * @param {String} title
46362      */
46363     setTitle : function(title){
46364         this.title = title;
46365         if(this.region){
46366             this.region.updatePanelTitle(this, title);
46367         }
46368     },
46369     
46370     /**
46371      * Returns true is this panel was configured to be closable
46372      * @return {Boolean} 
46373      */
46374     isClosable : function(){
46375         return this.closable;
46376     },
46377     
46378     beforeSlide : function(){
46379         this.el.clip();
46380         this.resizeEl.clip();
46381     },
46382     
46383     afterSlide : function(){
46384         this.el.unclip();
46385         this.resizeEl.unclip();
46386     },
46387     
46388     /**
46389      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
46390      *   Will fail silently if the {@link #setUrl} method has not been called.
46391      *   This does not activate the panel, just updates its content.
46392      */
46393     refresh : function(){
46394         if(this.refreshDelegate){
46395            this.loaded = false;
46396            this.refreshDelegate();
46397         }
46398     },
46399     
46400     /**
46401      * Destroys this panel
46402      */
46403     destroy : function(){
46404         this.el.removeAllListeners();
46405         var tempEl = document.createElement("span");
46406         tempEl.appendChild(this.el.dom);
46407         tempEl.innerHTML = "";
46408         this.el.remove();
46409         this.el = null;
46410     },
46411     
46412     /**
46413      * form - if the content panel contains a form - this is a reference to it.
46414      * @type {Roo.form.Form}
46415      */
46416     form : false,
46417     /**
46418      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
46419      *    This contains a reference to it.
46420      * @type {Roo.View}
46421      */
46422     view : false,
46423     
46424       /**
46425      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
46426      * <pre><code>
46427
46428 layout.addxtype({
46429        xtype : 'Form',
46430        items: [ .... ]
46431    }
46432 );
46433
46434 </code></pre>
46435      * @param {Object} cfg Xtype definition of item to add.
46436      */
46437     
46438     
46439     getChildContainer: function () {
46440         return this.getEl();
46441     },
46442     
46443     
46444     onScroll : function(e)
46445     {
46446         this.fireEvent('scroll', this, e);
46447     }
46448     
46449     
46450     /*
46451         var  ret = new Roo.factory(cfg);
46452         return ret;
46453         
46454         
46455         // add form..
46456         if (cfg.xtype.match(/^Form$/)) {
46457             
46458             var el;
46459             //if (this.footer) {
46460             //    el = this.footer.container.insertSibling(false, 'before');
46461             //} else {
46462                 el = this.el.createChild();
46463             //}
46464
46465             this.form = new  Roo.form.Form(cfg);
46466             
46467             
46468             if ( this.form.allItems.length) {
46469                 this.form.render(el.dom);
46470             }
46471             return this.form;
46472         }
46473         // should only have one of theses..
46474         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
46475             // views.. should not be just added - used named prop 'view''
46476             
46477             cfg.el = this.el.appendChild(document.createElement("div"));
46478             // factory?
46479             
46480             var ret = new Roo.factory(cfg);
46481              
46482              ret.render && ret.render(false, ''); // render blank..
46483             this.view = ret;
46484             return ret;
46485         }
46486         return false;
46487     }
46488     \*/
46489 });
46490  
46491 /**
46492  * @class Roo.bootstrap.panel.Grid
46493  * @extends Roo.bootstrap.panel.Content
46494  * @constructor
46495  * Create a new GridPanel.
46496  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
46497  * @cfg {Roo.bootstrap.nav.Simplebar} toolbar the toolbar at the top of the grid.
46498  * @param {Object} config A the config object
46499   
46500  */
46501
46502
46503
46504 Roo.bootstrap.panel.Grid = function(config)
46505 {
46506     
46507       
46508     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
46509         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
46510
46511     config.el = this.wrapper;
46512     //this.el = this.wrapper;
46513     
46514       if (config.container) {
46515         // ctor'ed from a Border/panel.grid
46516         
46517         
46518         this.wrapper.setStyle("overflow", "hidden");
46519         this.wrapper.addClass('roo-grid-container');
46520
46521     }
46522     
46523     
46524     if(config.toolbar){
46525         var tool_el = this.wrapper.createChild();    
46526         this.toolbar = Roo.factory(config.toolbar);
46527         var ti = [];
46528         if (config.toolbar.items) {
46529             ti = config.toolbar.items ;
46530             delete config.toolbar.items ;
46531         }
46532         
46533         var nitems = [];
46534         this.toolbar.render(tool_el);
46535         for(var i =0;i < ti.length;i++) {
46536           //  Roo.log(['add child', items[i]]);
46537             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
46538         }
46539         this.toolbar.items = nitems;
46540         
46541         delete config.toolbar;
46542     }
46543     
46544     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
46545     config.grid.scrollBody = true;;
46546     config.grid.monitorWindowResize = false; // turn off autosizing
46547     config.grid.autoHeight = false;
46548     config.grid.autoWidth = false;
46549     
46550     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
46551     
46552     if (config.background) {
46553         // render grid on panel activation (if panel background)
46554         this.on('activate', function(gp) {
46555             if (!gp.grid.rendered) {
46556                 gp.grid.render(this.wrapper);
46557                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
46558             }
46559         });
46560             
46561     } else {
46562         this.grid.render(this.wrapper);
46563         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
46564
46565     }
46566     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
46567     // ??? needed ??? config.el = this.wrapper;
46568     
46569     
46570     
46571   
46572     // xtype created footer. - not sure if will work as we normally have to render first..
46573     if (this.footer && !this.footer.el && this.footer.xtype) {
46574         
46575         var ctr = this.grid.getView().getFooterPanel(true);
46576         this.footer.dataSource = this.grid.dataSource;
46577         this.footer = Roo.factory(this.footer, Roo);
46578         this.footer.render(ctr);
46579         
46580     }
46581     
46582     
46583     
46584     
46585      
46586 };
46587
46588 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content,
46589 {
46590   
46591     getId : function(){
46592         return this.grid.id;
46593     },
46594     
46595     /**
46596      * Returns the grid for this panel
46597      * @return {Roo.bootstrap.Table} 
46598      */
46599     getGrid : function(){
46600         return this.grid;    
46601     },
46602     
46603     setSize : function(width, height)
46604     {
46605      
46606         //if(!this.ignoreResize(width, height)){
46607             var grid = this.grid;
46608             var size = this.adjustForComponents(width, height);
46609             // tfoot is not a footer?
46610           
46611             
46612             var gridel = grid.getGridEl();
46613             gridel.setSize(size.width, size.height);
46614             
46615             var tbd = grid.getGridEl().select('tbody', true).first();
46616             var thd = grid.getGridEl().select('thead',true).first();
46617             var tbf= grid.getGridEl().select('tfoot', true).first();
46618
46619             if (tbf) {
46620                 size.height -= tbf.getHeight();
46621             }
46622             if (thd) {
46623                 size.height -= thd.getHeight();
46624             }
46625             
46626             tbd.setSize(size.width, size.height );
46627             // this is for the account management tab -seems to work there.
46628             var thd = grid.getGridEl().select('thead',true).first();
46629             //if (tbd) {
46630             //    tbd.setSize(size.width, size.height - thd.getHeight());
46631             //}
46632              
46633             grid.autoSize();
46634         //}
46635    
46636     },
46637      
46638     
46639     
46640     beforeSlide : function(){
46641         this.grid.getView().scroller.clip();
46642     },
46643     
46644     afterSlide : function(){
46645         this.grid.getView().scroller.unclip();
46646     },
46647     
46648     destroy : function(){
46649         this.grid.destroy();
46650         delete this.grid;
46651         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
46652     }
46653 });
46654
46655 /**
46656  * @class Roo.bootstrap.panel.Nest
46657  * @extends Roo.bootstrap.panel.Content
46658  * @constructor
46659  * Create a new Panel, that can contain a layout.Border.
46660  * 
46661  * 
46662  * @param {String/Object} config A string to set only the title or a config object
46663  */
46664 Roo.bootstrap.panel.Nest = function(config)
46665 {
46666     // construct with only one argument..
46667     /* FIXME - implement nicer consturctors
46668     if (layout.layout) {
46669         config = layout;
46670         layout = config.layout;
46671         delete config.layout;
46672     }
46673     if (layout.xtype && !layout.getEl) {
46674         // then layout needs constructing..
46675         layout = Roo.factory(layout, Roo);
46676     }
46677     */
46678     
46679     config.el =  config.layout.getEl();
46680     
46681     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
46682     
46683     config.layout.monitorWindowResize = false; // turn off autosizing
46684     this.layout = config.layout;
46685     this.layout.getEl().addClass("roo-layout-nested-layout");
46686     this.layout.parent = this;
46687     
46688     
46689     
46690     
46691 };
46692
46693 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
46694     /**
46695     * @cfg {Roo.layout.Border} layout The layout for this panel
46696     */
46697     layout : false,
46698
46699     setSize : function(width, height){
46700         if(!this.ignoreResize(width, height)){
46701             var size = this.adjustForComponents(width, height);
46702             var el = this.layout.getEl();
46703             if (size.height < 1) {
46704                 el.setWidth(size.width);   
46705             } else {
46706                 el.setSize(size.width, size.height);
46707             }
46708             var touch = el.dom.offsetWidth;
46709             this.layout.layout();
46710             // ie requires a double layout on the first pass
46711             if(Roo.isIE && !this.initialized){
46712                 this.initialized = true;
46713                 this.layout.layout();
46714             }
46715         }
46716     },
46717     
46718     // activate all subpanels if not currently active..
46719     
46720     setActiveState : function(active){
46721         this.active = active;
46722         this.setActiveClass(active);
46723         
46724         if(!active){
46725             this.fireEvent("deactivate", this);
46726             return;
46727         }
46728         
46729         this.fireEvent("activate", this);
46730         // not sure if this should happen before or after..
46731         if (!this.layout) {
46732             return; // should not happen..
46733         }
46734         var reg = false;
46735         for (var r in this.layout.regions) {
46736             reg = this.layout.getRegion(r);
46737             if (reg.getActivePanel()) {
46738                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
46739                 reg.setActivePanel(reg.getActivePanel());
46740                 continue;
46741             }
46742             if (!reg.panels.length) {
46743                 continue;
46744             }
46745             reg.showPanel(reg.getPanel(0));
46746         }
46747         
46748         
46749         
46750         
46751     },
46752     
46753     /**
46754      * Returns the nested BorderLayout for this panel
46755      * @return {Roo.layout.Border} 
46756      */
46757     getLayout : function(){
46758         return this.layout;
46759     },
46760     
46761      /**
46762      * Adds a xtype elements to the layout of the nested panel
46763      * <pre><code>
46764
46765 panel.addxtype({
46766        xtype : 'ContentPanel',
46767        region: 'west',
46768        items: [ .... ]
46769    }
46770 );
46771
46772 panel.addxtype({
46773         xtype : 'NestedLayoutPanel',
46774         region: 'west',
46775         layout: {
46776            center: { },
46777            west: { }   
46778         },
46779         items : [ ... list of content panels or nested layout panels.. ]
46780    }
46781 );
46782 </code></pre>
46783      * @param {Object} cfg Xtype definition of item to add.
46784      */
46785     addxtype : function(cfg) {
46786         return this.layout.addxtype(cfg);
46787     
46788     }
46789 });/*
46790  * Based on:
46791  * Ext JS Library 1.1.1
46792  * Copyright(c) 2006-2007, Ext JS, LLC.
46793  *
46794  * Originally Released Under LGPL - original licence link has changed is not relivant.
46795  *
46796  * Fork - LGPL
46797  * <script type="text/javascript">
46798  */
46799 /**
46800  * @class Roo.TabPanel
46801  * @extends Roo.util.Observable
46802  * A lightweight tab container.
46803  * <br><br>
46804  * Usage:
46805  * <pre><code>
46806 // basic tabs 1, built from existing content
46807 var tabs = new Roo.TabPanel("tabs1");
46808 tabs.addTab("script", "View Script");
46809 tabs.addTab("markup", "View Markup");
46810 tabs.activate("script");
46811
46812 // more advanced tabs, built from javascript
46813 var jtabs = new Roo.TabPanel("jtabs");
46814 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
46815
46816 // set up the UpdateManager
46817 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
46818 var updater = tab2.getUpdateManager();
46819 updater.setDefaultUrl("ajax1.htm");
46820 tab2.on('activate', updater.refresh, updater, true);
46821
46822 // Use setUrl for Ajax loading
46823 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
46824 tab3.setUrl("ajax2.htm", null, true);
46825
46826 // Disabled tab
46827 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
46828 tab4.disable();
46829
46830 jtabs.activate("jtabs-1");
46831  * </code></pre>
46832  * @constructor
46833  * Create a new TabPanel.
46834  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
46835  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
46836  */
46837 Roo.bootstrap.panel.Tabs = function(config){
46838     /**
46839     * The container element for this TabPanel.
46840     * @type Roo.Element
46841     */
46842     this.el = Roo.get(config.el);
46843     delete config.el;
46844     if(config){
46845         if(typeof config == "boolean"){
46846             this.tabPosition = config ? "bottom" : "top";
46847         }else{
46848             Roo.apply(this, config);
46849         }
46850     }
46851     
46852     if(this.tabPosition == "bottom"){
46853         // if tabs are at the bottom = create the body first.
46854         this.bodyEl = Roo.get(this.createBody(this.el.dom));
46855         this.el.addClass("roo-tabs-bottom");
46856     }
46857     // next create the tabs holders
46858     
46859     if (this.tabPosition == "west"){
46860         
46861         var reg = this.region; // fake it..
46862         while (reg) {
46863             if (!reg.mgr.parent) {
46864                 break;
46865             }
46866             reg = reg.mgr.parent.region;
46867         }
46868         Roo.log("got nest?");
46869         Roo.log(reg);
46870         if (reg.mgr.getRegion('west')) {
46871             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
46872             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
46873             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
46874             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
46875             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
46876         
46877             
46878         }
46879         
46880         
46881     } else {
46882      
46883         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
46884         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
46885         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
46886         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
46887     }
46888     
46889     
46890     if(Roo.isIE){
46891         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
46892     }
46893     
46894     // finally - if tabs are at the top, then create the body last..
46895     if(this.tabPosition != "bottom"){
46896         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
46897          * @type Roo.Element
46898          */
46899         this.bodyEl = Roo.get(this.createBody(this.el.dom));
46900         this.el.addClass("roo-tabs-top");
46901     }
46902     this.items = [];
46903
46904     this.bodyEl.setStyle("position", "relative");
46905
46906     this.active = null;
46907     this.activateDelegate = this.activate.createDelegate(this);
46908
46909     this.addEvents({
46910         /**
46911          * @event tabchange
46912          * Fires when the active tab changes
46913          * @param {Roo.TabPanel} this
46914          * @param {Roo.TabPanelItem} activePanel The new active tab
46915          */
46916         "tabchange": true,
46917         /**
46918          * @event beforetabchange
46919          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
46920          * @param {Roo.TabPanel} this
46921          * @param {Object} e Set cancel to true on this object to cancel the tab change
46922          * @param {Roo.TabPanelItem} tab The tab being changed to
46923          */
46924         "beforetabchange" : true
46925     });
46926
46927     Roo.EventManager.onWindowResize(this.onResize, this);
46928     this.cpad = this.el.getPadding("lr");
46929     this.hiddenCount = 0;
46930
46931
46932     // toolbar on the tabbar support...
46933     if (this.toolbar) {
46934         alert("no toolbar support yet");
46935         this.toolbar  = false;
46936         /*
46937         var tcfg = this.toolbar;
46938         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
46939         this.toolbar = new Roo.Toolbar(tcfg);
46940         if (Roo.isSafari) {
46941             var tbl = tcfg.container.child('table', true);
46942             tbl.setAttribute('width', '100%');
46943         }
46944         */
46945         
46946     }
46947    
46948
46949
46950     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
46951 };
46952
46953 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
46954     /*
46955      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
46956      */
46957     tabPosition : "top",
46958     /*
46959      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
46960      */
46961     currentTabWidth : 0,
46962     /*
46963      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
46964      */
46965     minTabWidth : 40,
46966     /*
46967      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
46968      */
46969     maxTabWidth : 250,
46970     /*
46971      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
46972      */
46973     preferredTabWidth : 175,
46974     /*
46975      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
46976      */
46977     resizeTabs : false,
46978     /*
46979      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
46980      */
46981     monitorResize : true,
46982     /*
46983      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
46984      */
46985     toolbar : false,  // set by caller..
46986     
46987     region : false, /// set by caller
46988     
46989     disableTooltips : true, // not used yet...
46990
46991     /**
46992      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
46993      * @param {String} id The id of the div to use <b>or create</b>
46994      * @param {String} text The text for the tab
46995      * @param {String} content (optional) Content to put in the TabPanelItem body
46996      * @param {Boolean} closable (optional) True to create a close icon on the tab
46997      * @return {Roo.TabPanelItem} The created TabPanelItem
46998      */
46999     addTab : function(id, text, content, closable, tpl)
47000     {
47001         var item = new Roo.bootstrap.panel.TabItem({
47002             panel: this,
47003             id : id,
47004             text : text,
47005             closable : closable,
47006             tpl : tpl
47007         });
47008         this.addTabItem(item);
47009         if(content){
47010             item.setContent(content);
47011         }
47012         return item;
47013     },
47014
47015     /**
47016      * Returns the {@link Roo.TabPanelItem} with the specified id/index
47017      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
47018      * @return {Roo.TabPanelItem}
47019      */
47020     getTab : function(id){
47021         return this.items[id];
47022     },
47023
47024     /**
47025      * Hides the {@link Roo.TabPanelItem} with the specified id/index
47026      * @param {String/Number} id The id or index of the TabPanelItem to hide.
47027      */
47028     hideTab : function(id){
47029         var t = this.items[id];
47030         if(!t.isHidden()){
47031            t.setHidden(true);
47032            this.hiddenCount++;
47033            this.autoSizeTabs();
47034         }
47035     },
47036
47037     /**
47038      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
47039      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
47040      */
47041     unhideTab : function(id){
47042         var t = this.items[id];
47043         if(t.isHidden()){
47044            t.setHidden(false);
47045            this.hiddenCount--;
47046            this.autoSizeTabs();
47047         }
47048     },
47049
47050     /**
47051      * Adds an existing {@link Roo.TabPanelItem}.
47052      * @param {Roo.TabPanelItem} item The TabPanelItem to add
47053      */
47054     addTabItem : function(item)
47055     {
47056         this.items[item.id] = item;
47057         this.items.push(item);
47058         this.autoSizeTabs();
47059       //  if(this.resizeTabs){
47060     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
47061   //         this.autoSizeTabs();
47062 //        }else{
47063 //            item.autoSize();
47064        // }
47065     },
47066
47067     /**
47068      * Removes a {@link Roo.TabPanelItem}.
47069      * @param {String/Number} id The id or index of the TabPanelItem to remove.
47070      */
47071     removeTab : function(id){
47072         var items = this.items;
47073         var tab = items[id];
47074         if(!tab) { return; }
47075         var index = items.indexOf(tab);
47076         if(this.active == tab && items.length > 1){
47077             var newTab = this.getNextAvailable(index);
47078             if(newTab) {
47079                 newTab.activate();
47080             }
47081         }
47082         this.stripEl.dom.removeChild(tab.pnode.dom);
47083         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
47084             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
47085         }
47086         items.splice(index, 1);
47087         delete this.items[tab.id];
47088         tab.fireEvent("close", tab);
47089         tab.purgeListeners();
47090         this.autoSizeTabs();
47091     },
47092
47093     getNextAvailable : function(start){
47094         var items = this.items;
47095         var index = start;
47096         // look for a next tab that will slide over to
47097         // replace the one being removed
47098         while(index < items.length){
47099             var item = items[++index];
47100             if(item && !item.isHidden()){
47101                 return item;
47102             }
47103         }
47104         // if one isn't found select the previous tab (on the left)
47105         index = start;
47106         while(index >= 0){
47107             var item = items[--index];
47108             if(item && !item.isHidden()){
47109                 return item;
47110             }
47111         }
47112         return null;
47113     },
47114
47115     /**
47116      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
47117      * @param {String/Number} id The id or index of the TabPanelItem to disable.
47118      */
47119     disableTab : function(id){
47120         var tab = this.items[id];
47121         if(tab && this.active != tab){
47122             tab.disable();
47123         }
47124     },
47125
47126     /**
47127      * Enables a {@link Roo.TabPanelItem} that is disabled.
47128      * @param {String/Number} id The id or index of the TabPanelItem to enable.
47129      */
47130     enableTab : function(id){
47131         var tab = this.items[id];
47132         tab.enable();
47133     },
47134
47135     /**
47136      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
47137      * @param {String/Number} id The id or index of the TabPanelItem to activate.
47138      * @return {Roo.TabPanelItem} The TabPanelItem.
47139      */
47140     activate : function(id)
47141     {
47142         //Roo.log('activite:'  + id);
47143         
47144         var tab = this.items[id];
47145         if(!tab){
47146             return null;
47147         }
47148         if(tab == this.active || tab.disabled){
47149             return tab;
47150         }
47151         var e = {};
47152         this.fireEvent("beforetabchange", this, e, tab);
47153         if(e.cancel !== true && !tab.disabled){
47154             if(this.active){
47155                 this.active.hide();
47156             }
47157             this.active = this.items[id];
47158             this.active.show();
47159             this.fireEvent("tabchange", this, this.active);
47160         }
47161         return tab;
47162     },
47163
47164     /**
47165      * Gets the active {@link Roo.TabPanelItem}.
47166      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
47167      */
47168     getActiveTab : function(){
47169         return this.active;
47170     },
47171
47172     /**
47173      * Updates the tab body element to fit the height of the container element
47174      * for overflow scrolling
47175      * @param {Number} targetHeight (optional) Override the starting height from the elements height
47176      */
47177     syncHeight : function(targetHeight){
47178         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
47179         var bm = this.bodyEl.getMargins();
47180         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
47181         this.bodyEl.setHeight(newHeight);
47182         return newHeight;
47183     },
47184
47185     onResize : function(){
47186         if(this.monitorResize){
47187             this.autoSizeTabs();
47188         }
47189     },
47190
47191     /**
47192      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
47193      */
47194     beginUpdate : function(){
47195         this.updating = true;
47196     },
47197
47198     /**
47199      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
47200      */
47201     endUpdate : function(){
47202         this.updating = false;
47203         this.autoSizeTabs();
47204     },
47205
47206     /**
47207      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
47208      */
47209     autoSizeTabs : function()
47210     {
47211         var count = this.items.length;
47212         var vcount = count - this.hiddenCount;
47213         
47214         if (vcount < 2) {
47215             this.stripEl.hide();
47216         } else {
47217             this.stripEl.show();
47218         }
47219         
47220         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
47221             return;
47222         }
47223         
47224         
47225         var w = Math.max(this.el.getWidth() - this.cpad, 10);
47226         var availWidth = Math.floor(w / vcount);
47227         var b = this.stripBody;
47228         if(b.getWidth() > w){
47229             var tabs = this.items;
47230             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
47231             if(availWidth < this.minTabWidth){
47232                 /*if(!this.sleft){    // incomplete scrolling code
47233                     this.createScrollButtons();
47234                 }
47235                 this.showScroll();
47236                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
47237             }
47238         }else{
47239             if(this.currentTabWidth < this.preferredTabWidth){
47240                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
47241             }
47242         }
47243     },
47244
47245     /**
47246      * Returns the number of tabs in this TabPanel.
47247      * @return {Number}
47248      */
47249      getCount : function(){
47250          return this.items.length;
47251      },
47252
47253     /**
47254      * Resizes all the tabs to the passed width
47255      * @param {Number} The new width
47256      */
47257     setTabWidth : function(width){
47258         this.currentTabWidth = width;
47259         for(var i = 0, len = this.items.length; i < len; i++) {
47260                 if(!this.items[i].isHidden()) {
47261                 this.items[i].setWidth(width);
47262             }
47263         }
47264     },
47265
47266     /**
47267      * Destroys this TabPanel
47268      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
47269      */
47270     destroy : function(removeEl){
47271         Roo.EventManager.removeResizeListener(this.onResize, this);
47272         for(var i = 0, len = this.items.length; i < len; i++){
47273             this.items[i].purgeListeners();
47274         }
47275         if(removeEl === true){
47276             this.el.update("");
47277             this.el.remove();
47278         }
47279     },
47280     
47281     createStrip : function(container)
47282     {
47283         var strip = document.createElement("nav");
47284         strip.className = Roo.bootstrap.version == 4 ?
47285             "navbar-light bg-light" : 
47286             "navbar navbar-default"; //"x-tabs-wrap";
47287         container.appendChild(strip);
47288         return strip;
47289     },
47290     
47291     createStripList : function(strip)
47292     {
47293         // div wrapper for retard IE
47294         // returns the "tr" element.
47295         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
47296         //'<div class="x-tabs-strip-wrap">'+
47297           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
47298           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
47299         return strip.firstChild; //.firstChild.firstChild.firstChild;
47300     },
47301     createBody : function(container)
47302     {
47303         var body = document.createElement("div");
47304         Roo.id(body, "tab-body");
47305         //Roo.fly(body).addClass("x-tabs-body");
47306         Roo.fly(body).addClass("tab-content");
47307         container.appendChild(body);
47308         return body;
47309     },
47310     createItemBody :function(bodyEl, id){
47311         var body = Roo.getDom(id);
47312         if(!body){
47313             body = document.createElement("div");
47314             body.id = id;
47315         }
47316         //Roo.fly(body).addClass("x-tabs-item-body");
47317         Roo.fly(body).addClass("tab-pane");
47318          bodyEl.insertBefore(body, bodyEl.firstChild);
47319         return body;
47320     },
47321     /** @private */
47322     createStripElements :  function(stripEl, text, closable, tpl)
47323     {
47324         var td = document.createElement("li"); // was td..
47325         td.className = 'nav-item';
47326         
47327         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
47328         
47329         
47330         stripEl.appendChild(td);
47331         /*if(closable){
47332             td.className = "x-tabs-closable";
47333             if(!this.closeTpl){
47334                 this.closeTpl = new Roo.Template(
47335                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
47336                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
47337                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
47338                 );
47339             }
47340             var el = this.closeTpl.overwrite(td, {"text": text});
47341             var close = el.getElementsByTagName("div")[0];
47342             var inner = el.getElementsByTagName("em")[0];
47343             return {"el": el, "close": close, "inner": inner};
47344         } else {
47345         */
47346         // not sure what this is..
47347 //            if(!this.tabTpl){
47348                 //this.tabTpl = new Roo.Template(
47349                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
47350                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
47351                 //);
47352 //                this.tabTpl = new Roo.Template(
47353 //                   '<a href="#">' +
47354 //                   '<span unselectable="on"' +
47355 //                            (this.disableTooltips ? '' : ' title="{text}"') +
47356 //                            ' >{text}</span></a>'
47357 //                );
47358 //                
47359 //            }
47360
47361
47362             var template = tpl || this.tabTpl || false;
47363             
47364             if(!template){
47365                 template =  new Roo.Template(
47366                         Roo.bootstrap.version == 4 ? 
47367                             (
47368                                 '<a class="nav-link" href="#" unselectable="on"' +
47369                                      (this.disableTooltips ? '' : ' title="{text}"') +
47370                                      ' >{text}</a>'
47371                             ) : (
47372                                 '<a class="nav-link" href="#">' +
47373                                 '<span unselectable="on"' +
47374                                          (this.disableTooltips ? '' : ' title="{text}"') +
47375                                     ' >{text}</span></a>'
47376                             )
47377                 );
47378             }
47379             
47380             switch (typeof(template)) {
47381                 case 'object' :
47382                     break;
47383                 case 'string' :
47384                     template = new Roo.Template(template);
47385                     break;
47386                 default :
47387                     break;
47388             }
47389             
47390             var el = template.overwrite(td, {"text": text});
47391             
47392             var inner = el.getElementsByTagName("span")[0];
47393             
47394             return {"el": el, "inner": inner};
47395             
47396     }
47397         
47398     
47399 });
47400
47401 /**
47402  * @class Roo.TabPanelItem
47403  * @extends Roo.util.Observable
47404  * Represents an individual item (tab plus body) in a TabPanel.
47405  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
47406  * @param {String} id The id of this TabPanelItem
47407  * @param {String} text The text for the tab of this TabPanelItem
47408  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
47409  */
47410 Roo.bootstrap.panel.TabItem = function(config){
47411     /**
47412      * The {@link Roo.TabPanel} this TabPanelItem belongs to
47413      * @type Roo.TabPanel
47414      */
47415     this.tabPanel = config.panel;
47416     /**
47417      * The id for this TabPanelItem
47418      * @type String
47419      */
47420     this.id = config.id;
47421     /** @private */
47422     this.disabled = false;
47423     /** @private */
47424     this.text = config.text;
47425     /** @private */
47426     this.loaded = false;
47427     this.closable = config.closable;
47428
47429     /**
47430      * The body element for this TabPanelItem.
47431      * @type Roo.Element
47432      */
47433     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
47434     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
47435     this.bodyEl.setStyle("display", "block");
47436     this.bodyEl.setStyle("zoom", "1");
47437     //this.hideAction();
47438
47439     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
47440     /** @private */
47441     this.el = Roo.get(els.el);
47442     this.inner = Roo.get(els.inner, true);
47443      this.textEl = Roo.bootstrap.version == 4 ?
47444         this.el : Roo.get(this.el.dom.firstChild, true);
47445
47446     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
47447     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
47448
47449     
47450 //    this.el.on("mousedown", this.onTabMouseDown, this);
47451     this.el.on("click", this.onTabClick, this);
47452     /** @private */
47453     if(config.closable){
47454         var c = Roo.get(els.close, true);
47455         c.dom.title = this.closeText;
47456         c.addClassOnOver("close-over");
47457         c.on("click", this.closeClick, this);
47458      }
47459
47460     this.addEvents({
47461          /**
47462          * @event activate
47463          * Fires when this tab becomes the active tab.
47464          * @param {Roo.TabPanel} tabPanel The parent TabPanel
47465          * @param {Roo.TabPanelItem} this
47466          */
47467         "activate": true,
47468         /**
47469          * @event beforeclose
47470          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
47471          * @param {Roo.TabPanelItem} this
47472          * @param {Object} e Set cancel to true on this object to cancel the close.
47473          */
47474         "beforeclose": true,
47475         /**
47476          * @event close
47477          * Fires when this tab is closed.
47478          * @param {Roo.TabPanelItem} this
47479          */
47480          "close": true,
47481         /**
47482          * @event deactivate
47483          * Fires when this tab is no longer the active tab.
47484          * @param {Roo.TabPanel} tabPanel The parent TabPanel
47485          * @param {Roo.TabPanelItem} this
47486          */
47487          "deactivate" : true
47488     });
47489     this.hidden = false;
47490
47491     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
47492 };
47493
47494 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
47495            {
47496     purgeListeners : function(){
47497        Roo.util.Observable.prototype.purgeListeners.call(this);
47498        this.el.removeAllListeners();
47499     },
47500     /**
47501      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
47502      */
47503     show : function(){
47504         this.status_node.addClass("active");
47505         this.showAction();
47506         if(Roo.isOpera){
47507             this.tabPanel.stripWrap.repaint();
47508         }
47509         this.fireEvent("activate", this.tabPanel, this);
47510     },
47511
47512     /**
47513      * Returns true if this tab is the active tab.
47514      * @return {Boolean}
47515      */
47516     isActive : function(){
47517         return this.tabPanel.getActiveTab() == this;
47518     },
47519
47520     /**
47521      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
47522      */
47523     hide : function(){
47524         this.status_node.removeClass("active");
47525         this.hideAction();
47526         this.fireEvent("deactivate", this.tabPanel, this);
47527     },
47528
47529     hideAction : function(){
47530         this.bodyEl.hide();
47531         this.bodyEl.setStyle("position", "absolute");
47532         this.bodyEl.setLeft("-20000px");
47533         this.bodyEl.setTop("-20000px");
47534     },
47535
47536     showAction : function(){
47537         this.bodyEl.setStyle("position", "relative");
47538         this.bodyEl.setTop("");
47539         this.bodyEl.setLeft("");
47540         this.bodyEl.show();
47541     },
47542
47543     /**
47544      * Set the tooltip for the tab.
47545      * @param {String} tooltip The tab's tooltip
47546      */
47547     setTooltip : function(text){
47548         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
47549             this.textEl.dom.qtip = text;
47550             this.textEl.dom.removeAttribute('title');
47551         }else{
47552             this.textEl.dom.title = text;
47553         }
47554     },
47555
47556     onTabClick : function(e){
47557         e.preventDefault();
47558         this.tabPanel.activate(this.id);
47559     },
47560
47561     onTabMouseDown : function(e){
47562         e.preventDefault();
47563         this.tabPanel.activate(this.id);
47564     },
47565 /*
47566     getWidth : function(){
47567         return this.inner.getWidth();
47568     },
47569
47570     setWidth : function(width){
47571         var iwidth = width - this.linode.getPadding("lr");
47572         this.inner.setWidth(iwidth);
47573         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
47574         this.linode.setWidth(width);
47575     },
47576 */
47577     /**
47578      * Show or hide the tab
47579      * @param {Boolean} hidden True to hide or false to show.
47580      */
47581     setHidden : function(hidden){
47582         this.hidden = hidden;
47583         this.linode.setStyle("display", hidden ? "none" : "");
47584     },
47585
47586     /**
47587      * Returns true if this tab is "hidden"
47588      * @return {Boolean}
47589      */
47590     isHidden : function(){
47591         return this.hidden;
47592     },
47593
47594     /**
47595      * Returns the text for this tab
47596      * @return {String}
47597      */
47598     getText : function(){
47599         return this.text;
47600     },
47601     /*
47602     autoSize : function(){
47603         //this.el.beginMeasure();
47604         this.textEl.setWidth(1);
47605         /*
47606          *  #2804 [new] Tabs in Roojs
47607          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
47608          */
47609         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
47610         //this.el.endMeasure();
47611     //},
47612
47613     /**
47614      * Sets the text for the tab (Note: this also sets the tooltip text)
47615      * @param {String} text The tab's text and tooltip
47616      */
47617     setText : function(text){
47618         this.text = text;
47619         this.textEl.update(text);
47620         this.setTooltip(text);
47621         //if(!this.tabPanel.resizeTabs){
47622         //    this.autoSize();
47623         //}
47624     },
47625     /**
47626      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
47627      */
47628     activate : function(){
47629         this.tabPanel.activate(this.id);
47630     },
47631
47632     /**
47633      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
47634      */
47635     disable : function(){
47636         if(this.tabPanel.active != this){
47637             this.disabled = true;
47638             this.status_node.addClass("disabled");
47639         }
47640     },
47641
47642     /**
47643      * Enables this TabPanelItem if it was previously disabled.
47644      */
47645     enable : function(){
47646         this.disabled = false;
47647         this.status_node.removeClass("disabled");
47648     },
47649
47650     /**
47651      * Sets the content for this TabPanelItem.
47652      * @param {String} content The content
47653      * @param {Boolean} loadScripts true to look for and load scripts
47654      */
47655     setContent : function(content, loadScripts){
47656         this.bodyEl.update(content, loadScripts);
47657     },
47658
47659     /**
47660      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
47661      * @return {Roo.UpdateManager} The UpdateManager
47662      */
47663     getUpdateManager : function(){
47664         return this.bodyEl.getUpdateManager();
47665     },
47666
47667     /**
47668      * Set a URL to be used to load the content for this TabPanelItem.
47669      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
47670      * @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)
47671      * @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)
47672      * @return {Roo.UpdateManager} The UpdateManager
47673      */
47674     setUrl : function(url, params, loadOnce){
47675         if(this.refreshDelegate){
47676             this.un('activate', this.refreshDelegate);
47677         }
47678         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
47679         this.on("activate", this.refreshDelegate);
47680         return this.bodyEl.getUpdateManager();
47681     },
47682
47683     /** @private */
47684     _handleRefresh : function(url, params, loadOnce){
47685         if(!loadOnce || !this.loaded){
47686             var updater = this.bodyEl.getUpdateManager();
47687             updater.update(url, params, this._setLoaded.createDelegate(this));
47688         }
47689     },
47690
47691     /**
47692      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
47693      *   Will fail silently if the setUrl method has not been called.
47694      *   This does not activate the panel, just updates its content.
47695      */
47696     refresh : function(){
47697         if(this.refreshDelegate){
47698            this.loaded = false;
47699            this.refreshDelegate();
47700         }
47701     },
47702
47703     /** @private */
47704     _setLoaded : function(){
47705         this.loaded = true;
47706     },
47707
47708     /** @private */
47709     closeClick : function(e){
47710         var o = {};
47711         e.stopEvent();
47712         this.fireEvent("beforeclose", this, o);
47713         if(o.cancel !== true){
47714             this.tabPanel.removeTab(this.id);
47715         }
47716     },
47717     /**
47718      * The text displayed in the tooltip for the close icon.
47719      * @type String
47720      */
47721     closeText : "Close this tab"
47722 });
47723 /**
47724 *    This script refer to:
47725 *    Title: International Telephone Input
47726 *    Author: Jack O'Connor
47727 *    Code version:  v12.1.12
47728 *    Availability: https://github.com/jackocnr/intl-tel-input.git
47729 **/
47730
47731 Roo.bootstrap.form.PhoneInputData = function() {
47732     var d = [
47733       [
47734         "Afghanistan (‫افغانستان‬‎)",
47735         "af",
47736         "93"
47737       ],
47738       [
47739         "Albania (Shqipëri)",
47740         "al",
47741         "355"
47742       ],
47743       [
47744         "Algeria (‫الجزائر‬‎)",
47745         "dz",
47746         "213"
47747       ],
47748       [
47749         "American Samoa",
47750         "as",
47751         "1684"
47752       ],
47753       [
47754         "Andorra",
47755         "ad",
47756         "376"
47757       ],
47758       [
47759         "Angola",
47760         "ao",
47761         "244"
47762       ],
47763       [
47764         "Anguilla",
47765         "ai",
47766         "1264"
47767       ],
47768       [
47769         "Antigua and Barbuda",
47770         "ag",
47771         "1268"
47772       ],
47773       [
47774         "Argentina",
47775         "ar",
47776         "54"
47777       ],
47778       [
47779         "Armenia (Հայաստան)",
47780         "am",
47781         "374"
47782       ],
47783       [
47784         "Aruba",
47785         "aw",
47786         "297"
47787       ],
47788       [
47789         "Australia",
47790         "au",
47791         "61",
47792         0
47793       ],
47794       [
47795         "Austria (Österreich)",
47796         "at",
47797         "43"
47798       ],
47799       [
47800         "Azerbaijan (Azərbaycan)",
47801         "az",
47802         "994"
47803       ],
47804       [
47805         "Bahamas",
47806         "bs",
47807         "1242"
47808       ],
47809       [
47810         "Bahrain (‫البحرين‬‎)",
47811         "bh",
47812         "973"
47813       ],
47814       [
47815         "Bangladesh (বাংলাদেশ)",
47816         "bd",
47817         "880"
47818       ],
47819       [
47820         "Barbados",
47821         "bb",
47822         "1246"
47823       ],
47824       [
47825         "Belarus (Беларусь)",
47826         "by",
47827         "375"
47828       ],
47829       [
47830         "Belgium (België)",
47831         "be",
47832         "32"
47833       ],
47834       [
47835         "Belize",
47836         "bz",
47837         "501"
47838       ],
47839       [
47840         "Benin (Bénin)",
47841         "bj",
47842         "229"
47843       ],
47844       [
47845         "Bermuda",
47846         "bm",
47847         "1441"
47848       ],
47849       [
47850         "Bhutan (འབྲུག)",
47851         "bt",
47852         "975"
47853       ],
47854       [
47855         "Bolivia",
47856         "bo",
47857         "591"
47858       ],
47859       [
47860         "Bosnia and Herzegovina (Босна и Херцеговина)",
47861         "ba",
47862         "387"
47863       ],
47864       [
47865         "Botswana",
47866         "bw",
47867         "267"
47868       ],
47869       [
47870         "Brazil (Brasil)",
47871         "br",
47872         "55"
47873       ],
47874       [
47875         "British Indian Ocean Territory",
47876         "io",
47877         "246"
47878       ],
47879       [
47880         "British Virgin Islands",
47881         "vg",
47882         "1284"
47883       ],
47884       [
47885         "Brunei",
47886         "bn",
47887         "673"
47888       ],
47889       [
47890         "Bulgaria (България)",
47891         "bg",
47892         "359"
47893       ],
47894       [
47895         "Burkina Faso",
47896         "bf",
47897         "226"
47898       ],
47899       [
47900         "Burundi (Uburundi)",
47901         "bi",
47902         "257"
47903       ],
47904       [
47905         "Cambodia (កម្ពុជា)",
47906         "kh",
47907         "855"
47908       ],
47909       [
47910         "Cameroon (Cameroun)",
47911         "cm",
47912         "237"
47913       ],
47914       [
47915         "Canada",
47916         "ca",
47917         "1",
47918         1,
47919         ["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"]
47920       ],
47921       [
47922         "Cape Verde (Kabu Verdi)",
47923         "cv",
47924         "238"
47925       ],
47926       [
47927         "Caribbean Netherlands",
47928         "bq",
47929         "599",
47930         1
47931       ],
47932       [
47933         "Cayman Islands",
47934         "ky",
47935         "1345"
47936       ],
47937       [
47938         "Central African Republic (République centrafricaine)",
47939         "cf",
47940         "236"
47941       ],
47942       [
47943         "Chad (Tchad)",
47944         "td",
47945         "235"
47946       ],
47947       [
47948         "Chile",
47949         "cl",
47950         "56"
47951       ],
47952       [
47953         "China (中国)",
47954         "cn",
47955         "86"
47956       ],
47957       [
47958         "Christmas Island",
47959         "cx",
47960         "61",
47961         2
47962       ],
47963       [
47964         "Cocos (Keeling) Islands",
47965         "cc",
47966         "61",
47967         1
47968       ],
47969       [
47970         "Colombia",
47971         "co",
47972         "57"
47973       ],
47974       [
47975         "Comoros (‫جزر القمر‬‎)",
47976         "km",
47977         "269"
47978       ],
47979       [
47980         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
47981         "cd",
47982         "243"
47983       ],
47984       [
47985         "Congo (Republic) (Congo-Brazzaville)",
47986         "cg",
47987         "242"
47988       ],
47989       [
47990         "Cook Islands",
47991         "ck",
47992         "682"
47993       ],
47994       [
47995         "Costa Rica",
47996         "cr",
47997         "506"
47998       ],
47999       [
48000         "Côte d’Ivoire",
48001         "ci",
48002         "225"
48003       ],
48004       [
48005         "Croatia (Hrvatska)",
48006         "hr",
48007         "385"
48008       ],
48009       [
48010         "Cuba",
48011         "cu",
48012         "53"
48013       ],
48014       [
48015         "Curaçao",
48016         "cw",
48017         "599",
48018         0
48019       ],
48020       [
48021         "Cyprus (Κύπρος)",
48022         "cy",
48023         "357"
48024       ],
48025       [
48026         "Czech Republic (Česká republika)",
48027         "cz",
48028         "420"
48029       ],
48030       [
48031         "Denmark (Danmark)",
48032         "dk",
48033         "45"
48034       ],
48035       [
48036         "Djibouti",
48037         "dj",
48038         "253"
48039       ],
48040       [
48041         "Dominica",
48042         "dm",
48043         "1767"
48044       ],
48045       [
48046         "Dominican Republic (República Dominicana)",
48047         "do",
48048         "1",
48049         2,
48050         ["809", "829", "849"]
48051       ],
48052       [
48053         "Ecuador",
48054         "ec",
48055         "593"
48056       ],
48057       [
48058         "Egypt (‫مصر‬‎)",
48059         "eg",
48060         "20"
48061       ],
48062       [
48063         "El Salvador",
48064         "sv",
48065         "503"
48066       ],
48067       [
48068         "Equatorial Guinea (Guinea Ecuatorial)",
48069         "gq",
48070         "240"
48071       ],
48072       [
48073         "Eritrea",
48074         "er",
48075         "291"
48076       ],
48077       [
48078         "Estonia (Eesti)",
48079         "ee",
48080         "372"
48081       ],
48082       [
48083         "Ethiopia",
48084         "et",
48085         "251"
48086       ],
48087       [
48088         "Falkland Islands (Islas Malvinas)",
48089         "fk",
48090         "500"
48091       ],
48092       [
48093         "Faroe Islands (Føroyar)",
48094         "fo",
48095         "298"
48096       ],
48097       [
48098         "Fiji",
48099         "fj",
48100         "679"
48101       ],
48102       [
48103         "Finland (Suomi)",
48104         "fi",
48105         "358",
48106         0
48107       ],
48108       [
48109         "France",
48110         "fr",
48111         "33"
48112       ],
48113       [
48114         "French Guiana (Guyane française)",
48115         "gf",
48116         "594"
48117       ],
48118       [
48119         "French Polynesia (Polynésie française)",
48120         "pf",
48121         "689"
48122       ],
48123       [
48124         "Gabon",
48125         "ga",
48126         "241"
48127       ],
48128       [
48129         "Gambia",
48130         "gm",
48131         "220"
48132       ],
48133       [
48134         "Georgia (საქართველო)",
48135         "ge",
48136         "995"
48137       ],
48138       [
48139         "Germany (Deutschland)",
48140         "de",
48141         "49"
48142       ],
48143       [
48144         "Ghana (Gaana)",
48145         "gh",
48146         "233"
48147       ],
48148       [
48149         "Gibraltar",
48150         "gi",
48151         "350"
48152       ],
48153       [
48154         "Greece (Ελλάδα)",
48155         "gr",
48156         "30"
48157       ],
48158       [
48159         "Greenland (Kalaallit Nunaat)",
48160         "gl",
48161         "299"
48162       ],
48163       [
48164         "Grenada",
48165         "gd",
48166         "1473"
48167       ],
48168       [
48169         "Guadeloupe",
48170         "gp",
48171         "590",
48172         0
48173       ],
48174       [
48175         "Guam",
48176         "gu",
48177         "1671"
48178       ],
48179       [
48180         "Guatemala",
48181         "gt",
48182         "502"
48183       ],
48184       [
48185         "Guernsey",
48186         "gg",
48187         "44",
48188         1
48189       ],
48190       [
48191         "Guinea (Guinée)",
48192         "gn",
48193         "224"
48194       ],
48195       [
48196         "Guinea-Bissau (Guiné Bissau)",
48197         "gw",
48198         "245"
48199       ],
48200       [
48201         "Guyana",
48202         "gy",
48203         "592"
48204       ],
48205       [
48206         "Haiti",
48207         "ht",
48208         "509"
48209       ],
48210       [
48211         "Honduras",
48212         "hn",
48213         "504"
48214       ],
48215       [
48216         "Hong Kong (香港)",
48217         "hk",
48218         "852"
48219       ],
48220       [
48221         "Hungary (Magyarország)",
48222         "hu",
48223         "36"
48224       ],
48225       [
48226         "Iceland (Ísland)",
48227         "is",
48228         "354"
48229       ],
48230       [
48231         "India (भारत)",
48232         "in",
48233         "91"
48234       ],
48235       [
48236         "Indonesia",
48237         "id",
48238         "62"
48239       ],
48240       [
48241         "Iran (‫ایران‬‎)",
48242         "ir",
48243         "98"
48244       ],
48245       [
48246         "Iraq (‫العراق‬‎)",
48247         "iq",
48248         "964"
48249       ],
48250       [
48251         "Ireland",
48252         "ie",
48253         "353"
48254       ],
48255       [
48256         "Isle of Man",
48257         "im",
48258         "44",
48259         2
48260       ],
48261       [
48262         "Israel (‫ישראל‬‎)",
48263         "il",
48264         "972"
48265       ],
48266       [
48267         "Italy (Italia)",
48268         "it",
48269         "39",
48270         0
48271       ],
48272       [
48273         "Jamaica",
48274         "jm",
48275         "1876"
48276       ],
48277       [
48278         "Japan (日本)",
48279         "jp",
48280         "81"
48281       ],
48282       [
48283         "Jersey",
48284         "je",
48285         "44",
48286         3
48287       ],
48288       [
48289         "Jordan (‫الأردن‬‎)",
48290         "jo",
48291         "962"
48292       ],
48293       [
48294         "Kazakhstan (Казахстан)",
48295         "kz",
48296         "7",
48297         1
48298       ],
48299       [
48300         "Kenya",
48301         "ke",
48302         "254"
48303       ],
48304       [
48305         "Kiribati",
48306         "ki",
48307         "686"
48308       ],
48309       [
48310         "Kosovo",
48311         "xk",
48312         "383"
48313       ],
48314       [
48315         "Kuwait (‫الكويت‬‎)",
48316         "kw",
48317         "965"
48318       ],
48319       [
48320         "Kyrgyzstan (Кыргызстан)",
48321         "kg",
48322         "996"
48323       ],
48324       [
48325         "Laos (ລາວ)",
48326         "la",
48327         "856"
48328       ],
48329       [
48330         "Latvia (Latvija)",
48331         "lv",
48332         "371"
48333       ],
48334       [
48335         "Lebanon (‫لبنان‬‎)",
48336         "lb",
48337         "961"
48338       ],
48339       [
48340         "Lesotho",
48341         "ls",
48342         "266"
48343       ],
48344       [
48345         "Liberia",
48346         "lr",
48347         "231"
48348       ],
48349       [
48350         "Libya (‫ليبيا‬‎)",
48351         "ly",
48352         "218"
48353       ],
48354       [
48355         "Liechtenstein",
48356         "li",
48357         "423"
48358       ],
48359       [
48360         "Lithuania (Lietuva)",
48361         "lt",
48362         "370"
48363       ],
48364       [
48365         "Luxembourg",
48366         "lu",
48367         "352"
48368       ],
48369       [
48370         "Macau (澳門)",
48371         "mo",
48372         "853"
48373       ],
48374       [
48375         "Macedonia (FYROM) (Македонија)",
48376         "mk",
48377         "389"
48378       ],
48379       [
48380         "Madagascar (Madagasikara)",
48381         "mg",
48382         "261"
48383       ],
48384       [
48385         "Malawi",
48386         "mw",
48387         "265"
48388       ],
48389       [
48390         "Malaysia",
48391         "my",
48392         "60"
48393       ],
48394       [
48395         "Maldives",
48396         "mv",
48397         "960"
48398       ],
48399       [
48400         "Mali",
48401         "ml",
48402         "223"
48403       ],
48404       [
48405         "Malta",
48406         "mt",
48407         "356"
48408       ],
48409       [
48410         "Marshall Islands",
48411         "mh",
48412         "692"
48413       ],
48414       [
48415         "Martinique",
48416         "mq",
48417         "596"
48418       ],
48419       [
48420         "Mauritania (‫موريتانيا‬‎)",
48421         "mr",
48422         "222"
48423       ],
48424       [
48425         "Mauritius (Moris)",
48426         "mu",
48427         "230"
48428       ],
48429       [
48430         "Mayotte",
48431         "yt",
48432         "262",
48433         1
48434       ],
48435       [
48436         "Mexico (México)",
48437         "mx",
48438         "52"
48439       ],
48440       [
48441         "Micronesia",
48442         "fm",
48443         "691"
48444       ],
48445       [
48446         "Moldova (Republica Moldova)",
48447         "md",
48448         "373"
48449       ],
48450       [
48451         "Monaco",
48452         "mc",
48453         "377"
48454       ],
48455       [
48456         "Mongolia (Монгол)",
48457         "mn",
48458         "976"
48459       ],
48460       [
48461         "Montenegro (Crna Gora)",
48462         "me",
48463         "382"
48464       ],
48465       [
48466         "Montserrat",
48467         "ms",
48468         "1664"
48469       ],
48470       [
48471         "Morocco (‫المغرب‬‎)",
48472         "ma",
48473         "212",
48474         0
48475       ],
48476       [
48477         "Mozambique (Moçambique)",
48478         "mz",
48479         "258"
48480       ],
48481       [
48482         "Myanmar (Burma) (မြန်မာ)",
48483         "mm",
48484         "95"
48485       ],
48486       [
48487         "Namibia (Namibië)",
48488         "na",
48489         "264"
48490       ],
48491       [
48492         "Nauru",
48493         "nr",
48494         "674"
48495       ],
48496       [
48497         "Nepal (नेपाल)",
48498         "np",
48499         "977"
48500       ],
48501       [
48502         "Netherlands (Nederland)",
48503         "nl",
48504         "31"
48505       ],
48506       [
48507         "New Caledonia (Nouvelle-Calédonie)",
48508         "nc",
48509         "687"
48510       ],
48511       [
48512         "New Zealand",
48513         "nz",
48514         "64"
48515       ],
48516       [
48517         "Nicaragua",
48518         "ni",
48519         "505"
48520       ],
48521       [
48522         "Niger (Nijar)",
48523         "ne",
48524         "227"
48525       ],
48526       [
48527         "Nigeria",
48528         "ng",
48529         "234"
48530       ],
48531       [
48532         "Niue",
48533         "nu",
48534         "683"
48535       ],
48536       [
48537         "Norfolk Island",
48538         "nf",
48539         "672"
48540       ],
48541       [
48542         "North Korea (조선 민주주의 인민 공화국)",
48543         "kp",
48544         "850"
48545       ],
48546       [
48547         "Northern Mariana Islands",
48548         "mp",
48549         "1670"
48550       ],
48551       [
48552         "Norway (Norge)",
48553         "no",
48554         "47",
48555         0
48556       ],
48557       [
48558         "Oman (‫عُمان‬‎)",
48559         "om",
48560         "968"
48561       ],
48562       [
48563         "Pakistan (‫پاکستان‬‎)",
48564         "pk",
48565         "92"
48566       ],
48567       [
48568         "Palau",
48569         "pw",
48570         "680"
48571       ],
48572       [
48573         "Palestine (‫فلسطين‬‎)",
48574         "ps",
48575         "970"
48576       ],
48577       [
48578         "Panama (Panamá)",
48579         "pa",
48580         "507"
48581       ],
48582       [
48583         "Papua New Guinea",
48584         "pg",
48585         "675"
48586       ],
48587       [
48588         "Paraguay",
48589         "py",
48590         "595"
48591       ],
48592       [
48593         "Peru (Perú)",
48594         "pe",
48595         "51"
48596       ],
48597       [
48598         "Philippines",
48599         "ph",
48600         "63"
48601       ],
48602       [
48603         "Poland (Polska)",
48604         "pl",
48605         "48"
48606       ],
48607       [
48608         "Portugal",
48609         "pt",
48610         "351"
48611       ],
48612       [
48613         "Puerto Rico",
48614         "pr",
48615         "1",
48616         3,
48617         ["787", "939"]
48618       ],
48619       [
48620         "Qatar (‫قطر‬‎)",
48621         "qa",
48622         "974"
48623       ],
48624       [
48625         "Réunion (La Réunion)",
48626         "re",
48627         "262",
48628         0
48629       ],
48630       [
48631         "Romania (România)",
48632         "ro",
48633         "40"
48634       ],
48635       [
48636         "Russia (Россия)",
48637         "ru",
48638         "7",
48639         0
48640       ],
48641       [
48642         "Rwanda",
48643         "rw",
48644         "250"
48645       ],
48646       [
48647         "Saint Barthélemy",
48648         "bl",
48649         "590",
48650         1
48651       ],
48652       [
48653         "Saint Helena",
48654         "sh",
48655         "290"
48656       ],
48657       [
48658         "Saint Kitts and Nevis",
48659         "kn",
48660         "1869"
48661       ],
48662       [
48663         "Saint Lucia",
48664         "lc",
48665         "1758"
48666       ],
48667       [
48668         "Saint Martin (Saint-Martin (partie française))",
48669         "mf",
48670         "590",
48671         2
48672       ],
48673       [
48674         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
48675         "pm",
48676         "508"
48677       ],
48678       [
48679         "Saint Vincent and the Grenadines",
48680         "vc",
48681         "1784"
48682       ],
48683       [
48684         "Samoa",
48685         "ws",
48686         "685"
48687       ],
48688       [
48689         "San Marino",
48690         "sm",
48691         "378"
48692       ],
48693       [
48694         "São Tomé and Príncipe (São Tomé e Príncipe)",
48695         "st",
48696         "239"
48697       ],
48698       [
48699         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
48700         "sa",
48701         "966"
48702       ],
48703       [
48704         "Senegal (Sénégal)",
48705         "sn",
48706         "221"
48707       ],
48708       [
48709         "Serbia (Србија)",
48710         "rs",
48711         "381"
48712       ],
48713       [
48714         "Seychelles",
48715         "sc",
48716         "248"
48717       ],
48718       [
48719         "Sierra Leone",
48720         "sl",
48721         "232"
48722       ],
48723       [
48724         "Singapore",
48725         "sg",
48726         "65"
48727       ],
48728       [
48729         "Sint Maarten",
48730         "sx",
48731         "1721"
48732       ],
48733       [
48734         "Slovakia (Slovensko)",
48735         "sk",
48736         "421"
48737       ],
48738       [
48739         "Slovenia (Slovenija)",
48740         "si",
48741         "386"
48742       ],
48743       [
48744         "Solomon Islands",
48745         "sb",
48746         "677"
48747       ],
48748       [
48749         "Somalia (Soomaaliya)",
48750         "so",
48751         "252"
48752       ],
48753       [
48754         "South Africa",
48755         "za",
48756         "27"
48757       ],
48758       [
48759         "South Korea (대한민국)",
48760         "kr",
48761         "82"
48762       ],
48763       [
48764         "South Sudan (‫جنوب السودان‬‎)",
48765         "ss",
48766         "211"
48767       ],
48768       [
48769         "Spain (España)",
48770         "es",
48771         "34"
48772       ],
48773       [
48774         "Sri Lanka (ශ්‍රී ලංකාව)",
48775         "lk",
48776         "94"
48777       ],
48778       [
48779         "Sudan (‫السودان‬‎)",
48780         "sd",
48781         "249"
48782       ],
48783       [
48784         "Suriname",
48785         "sr",
48786         "597"
48787       ],
48788       [
48789         "Svalbard and Jan Mayen",
48790         "sj",
48791         "47",
48792         1
48793       ],
48794       [
48795         "Swaziland",
48796         "sz",
48797         "268"
48798       ],
48799       [
48800         "Sweden (Sverige)",
48801         "se",
48802         "46"
48803       ],
48804       [
48805         "Switzerland (Schweiz)",
48806         "ch",
48807         "41"
48808       ],
48809       [
48810         "Syria (‫سوريا‬‎)",
48811         "sy",
48812         "963"
48813       ],
48814       [
48815         "Taiwan (台灣)",
48816         "tw",
48817         "886"
48818       ],
48819       [
48820         "Tajikistan",
48821         "tj",
48822         "992"
48823       ],
48824       [
48825         "Tanzania",
48826         "tz",
48827         "255"
48828       ],
48829       [
48830         "Thailand (ไทย)",
48831         "th",
48832         "66"
48833       ],
48834       [
48835         "Timor-Leste",
48836         "tl",
48837         "670"
48838       ],
48839       [
48840         "Togo",
48841         "tg",
48842         "228"
48843       ],
48844       [
48845         "Tokelau",
48846         "tk",
48847         "690"
48848       ],
48849       [
48850         "Tonga",
48851         "to",
48852         "676"
48853       ],
48854       [
48855         "Trinidad and Tobago",
48856         "tt",
48857         "1868"
48858       ],
48859       [
48860         "Tunisia (‫تونس‬‎)",
48861         "tn",
48862         "216"
48863       ],
48864       [
48865         "Turkey (Türkiye)",
48866         "tr",
48867         "90"
48868       ],
48869       [
48870         "Turkmenistan",
48871         "tm",
48872         "993"
48873       ],
48874       [
48875         "Turks and Caicos Islands",
48876         "tc",
48877         "1649"
48878       ],
48879       [
48880         "Tuvalu",
48881         "tv",
48882         "688"
48883       ],
48884       [
48885         "U.S. Virgin Islands",
48886         "vi",
48887         "1340"
48888       ],
48889       [
48890         "Uganda",
48891         "ug",
48892         "256"
48893       ],
48894       [
48895         "Ukraine (Україна)",
48896         "ua",
48897         "380"
48898       ],
48899       [
48900         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
48901         "ae",
48902         "971"
48903       ],
48904       [
48905         "United Kingdom",
48906         "gb",
48907         "44",
48908         0
48909       ],
48910       [
48911         "United States",
48912         "us",
48913         "1",
48914         0
48915       ],
48916       [
48917         "Uruguay",
48918         "uy",
48919         "598"
48920       ],
48921       [
48922         "Uzbekistan (Oʻzbekiston)",
48923         "uz",
48924         "998"
48925       ],
48926       [
48927         "Vanuatu",
48928         "vu",
48929         "678"
48930       ],
48931       [
48932         "Vatican City (Città del Vaticano)",
48933         "va",
48934         "39",
48935         1
48936       ],
48937       [
48938         "Venezuela",
48939         "ve",
48940         "58"
48941       ],
48942       [
48943         "Vietnam (Việt Nam)",
48944         "vn",
48945         "84"
48946       ],
48947       [
48948         "Wallis and Futuna (Wallis-et-Futuna)",
48949         "wf",
48950         "681"
48951       ],
48952       [
48953         "Western Sahara (‫الصحراء الغربية‬‎)",
48954         "eh",
48955         "212",
48956         1
48957       ],
48958       [
48959         "Yemen (‫اليمن‬‎)",
48960         "ye",
48961         "967"
48962       ],
48963       [
48964         "Zambia",
48965         "zm",
48966         "260"
48967       ],
48968       [
48969         "Zimbabwe",
48970         "zw",
48971         "263"
48972       ],
48973       [
48974         "Åland Islands",
48975         "ax",
48976         "358",
48977         1
48978       ]
48979   ];
48980   
48981   return d;
48982 }/**
48983 *    This script refer to:
48984 *    Title: International Telephone Input
48985 *    Author: Jack O'Connor
48986 *    Code version:  v12.1.12
48987 *    Availability: https://github.com/jackocnr/intl-tel-input.git
48988 **/
48989
48990 /**
48991  * @class Roo.bootstrap.form.PhoneInput
48992  * @extends Roo.bootstrap.form.TriggerField
48993  * An input with International dial-code selection
48994  
48995  * @cfg {String} defaultDialCode default '+852'
48996  * @cfg {Array} preferedCountries default []
48997   
48998  * @constructor
48999  * Create a new PhoneInput.
49000  * @param {Object} config Configuration options
49001  */
49002
49003 Roo.bootstrap.form.PhoneInput = function(config) {
49004     Roo.bootstrap.form.PhoneInput.superclass.constructor.call(this, config);
49005 };
49006
49007 Roo.extend(Roo.bootstrap.form.PhoneInput, Roo.bootstrap.form.TriggerField, {
49008         /**
49009         * @cfg {Roo.data.Store} store [required] The data store to which this combo is bound (defaults to undefined)
49010         */
49011         listWidth: undefined,
49012         
49013         selectedClass: 'active',
49014         
49015         invalidClass : "has-warning",
49016         
49017         validClass: 'has-success',
49018         
49019         allowed: '0123456789',
49020         
49021         max_length: 15,
49022         
49023         /**
49024          * @cfg {String} defaultDialCode The default dial code when initializing the input
49025          */
49026         defaultDialCode: '+852',
49027         
49028         /**
49029          * @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
49030          */
49031         preferedCountries: false,
49032         
49033         getAutoCreate : function()
49034         {
49035             var data = Roo.bootstrap.form.PhoneInputData();
49036             var align = this.labelAlign || this.parentLabelAlign();
49037             var id = Roo.id();
49038             
49039             this.allCountries = [];
49040             this.dialCodeMapping = [];
49041             
49042             for (var i = 0; i < data.length; i++) {
49043               var c = data[i];
49044               this.allCountries[i] = {
49045                 name: c[0],
49046                 iso2: c[1],
49047                 dialCode: c[2],
49048                 priority: c[3] || 0,
49049                 areaCodes: c[4] || null
49050               };
49051               this.dialCodeMapping[c[2]] = {
49052                   name: c[0],
49053                   iso2: c[1],
49054                   priority: c[3] || 0,
49055                   areaCodes: c[4] || null
49056               };
49057             }
49058             
49059             var cfg = {
49060                 cls: 'form-group',
49061                 cn: []
49062             };
49063             
49064             var input =  {
49065                 tag: 'input',
49066                 id : id,
49067                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
49068                 maxlength: this.max_length,
49069                 cls : 'form-control tel-input',
49070                 autocomplete: 'new-password'
49071             };
49072             
49073             var hiddenInput = {
49074                 tag: 'input',
49075                 type: 'hidden',
49076                 cls: 'hidden-tel-input'
49077             };
49078             
49079             if (this.name) {
49080                 hiddenInput.name = this.name;
49081             }
49082             
49083             if (this.disabled) {
49084                 input.disabled = true;
49085             }
49086             
49087             var flag_container = {
49088                 tag: 'div',
49089                 cls: 'flag-box',
49090                 cn: [
49091                     {
49092                         tag: 'div',
49093                         cls: 'flag'
49094                     },
49095                     {
49096                         tag: 'div',
49097                         cls: 'caret'
49098                     }
49099                 ]
49100             };
49101             
49102             var box = {
49103                 tag: 'div',
49104                 cls: this.hasFeedback ? 'has-feedback' : '',
49105                 cn: [
49106                     hiddenInput,
49107                     input,
49108                     {
49109                         tag: 'input',
49110                         cls: 'dial-code-holder',
49111                         disabled: true
49112                     }
49113                 ]
49114             };
49115             
49116             var container = {
49117                 cls: 'roo-select2-container input-group',
49118                 cn: [
49119                     flag_container,
49120                     box
49121                 ]
49122             };
49123             
49124             if (this.fieldLabel.length) {
49125                 var indicator = {
49126                     tag: 'i',
49127                     tooltip: 'This field is required'
49128                 };
49129                 
49130                 var label = {
49131                     tag: 'label',
49132                     'for':  id,
49133                     cls: 'control-label',
49134                     cn: []
49135                 };
49136                 
49137                 var label_text = {
49138                     tag: 'span',
49139                     html: this.fieldLabel
49140                 };
49141                 
49142                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
49143                 label.cn = [
49144                     indicator,
49145                     label_text
49146                 ];
49147                 
49148                 if(this.indicatorpos == 'right') {
49149                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
49150                     label.cn = [
49151                         label_text,
49152                         indicator
49153                     ];
49154                 }
49155                 
49156                 if(align == 'left') {
49157                     container = {
49158                         tag: 'div',
49159                         cn: [
49160                             container
49161                         ]
49162                     };
49163                     
49164                     if(this.labelWidth > 12){
49165                         label.style = "width: " + this.labelWidth + 'px';
49166                     }
49167                     if(this.labelWidth < 13 && this.labelmd == 0){
49168                         this.labelmd = this.labelWidth;
49169                     }
49170                     if(this.labellg > 0){
49171                         label.cls += ' col-lg-' + this.labellg;
49172                         input.cls += ' col-lg-' + (12 - this.labellg);
49173                     }
49174                     if(this.labelmd > 0){
49175                         label.cls += ' col-md-' + this.labelmd;
49176                         container.cls += ' col-md-' + (12 - this.labelmd);
49177                     }
49178                     if(this.labelsm > 0){
49179                         label.cls += ' col-sm-' + this.labelsm;
49180                         container.cls += ' col-sm-' + (12 - this.labelsm);
49181                     }
49182                     if(this.labelxs > 0){
49183                         label.cls += ' col-xs-' + this.labelxs;
49184                         container.cls += ' col-xs-' + (12 - this.labelxs);
49185                     }
49186                 }
49187             }
49188             
49189             cfg.cn = [
49190                 label,
49191                 container
49192             ];
49193             
49194             var settings = this;
49195             
49196             ['xs','sm','md','lg'].map(function(size){
49197                 if (settings[size]) {
49198                     cfg.cls += ' col-' + size + '-' + settings[size];
49199                 }
49200             });
49201             
49202             this.store = new Roo.data.Store({
49203                 proxy : new Roo.data.MemoryProxy({}),
49204                 reader : new Roo.data.JsonReader({
49205                     fields : [
49206                         {
49207                             'name' : 'name',
49208                             'type' : 'string'
49209                         },
49210                         {
49211                             'name' : 'iso2',
49212                             'type' : 'string'
49213                         },
49214                         {
49215                             'name' : 'dialCode',
49216                             'type' : 'string'
49217                         },
49218                         {
49219                             'name' : 'priority',
49220                             'type' : 'string'
49221                         },
49222                         {
49223                             'name' : 'areaCodes',
49224                             'type' : 'string'
49225                         }
49226                     ]
49227                 })
49228             });
49229             
49230             if(!this.preferedCountries) {
49231                 this.preferedCountries = [
49232                     'hk',
49233                     'gb',
49234                     'us'
49235                 ];
49236             }
49237             
49238             var p = this.preferedCountries.reverse();
49239             
49240             if(p) {
49241                 for (var i = 0; i < p.length; i++) {
49242                     for (var j = 0; j < this.allCountries.length; j++) {
49243                         if(this.allCountries[j].iso2 == p[i]) {
49244                             var t = this.allCountries[j];
49245                             this.allCountries.splice(j,1);
49246                             this.allCountries.unshift(t);
49247                         }
49248                     } 
49249                 }
49250             }
49251             
49252             this.store.proxy.data = {
49253                 success: true,
49254                 data: this.allCountries
49255             };
49256             
49257             return cfg;
49258         },
49259         
49260         initEvents : function()
49261         {
49262             this.createList();
49263             Roo.bootstrap.form.PhoneInput.superclass.initEvents.call(this);
49264             
49265             this.indicator = this.indicatorEl();
49266             this.flag = this.flagEl();
49267             this.dialCodeHolder = this.dialCodeHolderEl();
49268             
49269             this.trigger = this.el.select('div.flag-box',true).first();
49270             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
49271             
49272             var _this = this;
49273             
49274             (function(){
49275                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
49276                 _this.list.setWidth(lw);
49277             }).defer(100);
49278             
49279             this.list.on('mouseover', this.onViewOver, this);
49280             this.list.on('mousemove', this.onViewMove, this);
49281             this.inputEl().on("keyup", this.onKeyUp, this);
49282             this.inputEl().on("keypress", this.onKeyPress, this);
49283             
49284             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
49285
49286             this.view = new Roo.View(this.list, this.tpl, {
49287                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
49288             });
49289             
49290             this.view.on('click', this.onViewClick, this);
49291             this.setValue(this.defaultDialCode);
49292         },
49293         
49294         onTriggerClick : function(e)
49295         {
49296             Roo.log('trigger click');
49297             if(this.disabled){
49298                 return;
49299             }
49300             
49301             if(this.isExpanded()){
49302                 this.collapse();
49303                 this.hasFocus = false;
49304             }else {
49305                 this.store.load({});
49306                 this.hasFocus = true;
49307                 this.expand();
49308             }
49309         },
49310         
49311         isExpanded : function()
49312         {
49313             return this.list.isVisible();
49314         },
49315         
49316         collapse : function()
49317         {
49318             if(!this.isExpanded()){
49319                 return;
49320             }
49321             this.list.hide();
49322             Roo.get(document).un('mousedown', this.collapseIf, this);
49323             Roo.get(document).un('mousewheel', this.collapseIf, this);
49324             this.fireEvent('collapse', this);
49325             this.validate();
49326         },
49327         
49328         expand : function()
49329         {
49330             Roo.log('expand');
49331
49332             if(this.isExpanded() || !this.hasFocus){
49333                 return;
49334             }
49335             
49336             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
49337             this.list.setWidth(lw);
49338             
49339             this.list.show();
49340             this.restrictHeight();
49341             
49342             Roo.get(document).on('mousedown', this.collapseIf, this);
49343             Roo.get(document).on('mousewheel', this.collapseIf, this);
49344             
49345             this.fireEvent('expand', this);
49346         },
49347         
49348         restrictHeight : function()
49349         {
49350             this.list.alignTo(this.inputEl(), this.listAlign);
49351             this.list.alignTo(this.inputEl(), this.listAlign);
49352         },
49353         
49354         onViewOver : function(e, t)
49355         {
49356             if(this.inKeyMode){
49357                 return;
49358             }
49359             var item = this.view.findItemFromChild(t);
49360             
49361             if(item){
49362                 var index = this.view.indexOf(item);
49363                 this.select(index, false);
49364             }
49365         },
49366
49367         // private
49368         onViewClick : function(view, doFocus, el, e)
49369         {
49370             var index = this.view.getSelectedIndexes()[0];
49371             
49372             var r = this.store.getAt(index);
49373             
49374             if(r){
49375                 this.onSelect(r, index);
49376             }
49377             if(doFocus !== false && !this.blockFocus){
49378                 this.inputEl().focus();
49379             }
49380         },
49381         
49382         onViewMove : function(e, t)
49383         {
49384             this.inKeyMode = false;
49385         },
49386         
49387         select : function(index, scrollIntoView)
49388         {
49389             this.selectedIndex = index;
49390             this.view.select(index);
49391             if(scrollIntoView !== false){
49392                 var el = this.view.getNode(index);
49393                 if(el){
49394                     this.list.scrollChildIntoView(el, false);
49395                 }
49396             }
49397         },
49398         
49399         createList : function()
49400         {
49401             this.list = Roo.get(document.body).createChild({
49402                 tag: 'ul',
49403                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
49404                 style: 'display:none'
49405             });
49406             
49407             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
49408         },
49409         
49410         collapseIf : function(e)
49411         {
49412             var in_combo  = e.within(this.el);
49413             var in_list =  e.within(this.list);
49414             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
49415             
49416             if (in_combo || in_list || is_list) {
49417                 return;
49418             }
49419             this.collapse();
49420         },
49421         
49422         onSelect : function(record, index)
49423         {
49424             if(this.fireEvent('beforeselect', this, record, index) !== false){
49425                 
49426                 this.setFlagClass(record.data.iso2);
49427                 this.setDialCode(record.data.dialCode);
49428                 this.hasFocus = false;
49429                 this.collapse();
49430                 this.fireEvent('select', this, record, index);
49431             }
49432         },
49433         
49434         flagEl : function()
49435         {
49436             var flag = this.el.select('div.flag',true).first();
49437             if(!flag){
49438                 return false;
49439             }
49440             return flag;
49441         },
49442         
49443         dialCodeHolderEl : function()
49444         {
49445             var d = this.el.select('input.dial-code-holder',true).first();
49446             if(!d){
49447                 return false;
49448             }
49449             return d;
49450         },
49451         
49452         setDialCode : function(v)
49453         {
49454             this.dialCodeHolder.dom.value = '+'+v;
49455         },
49456         
49457         setFlagClass : function(n)
49458         {
49459             this.flag.dom.className = 'flag '+n;
49460         },
49461         
49462         getValue : function()
49463         {
49464             var v = this.inputEl().getValue();
49465             if(this.dialCodeHolder) {
49466                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
49467             }
49468             return v;
49469         },
49470         
49471         setValue : function(v)
49472         {
49473             var d = this.getDialCode(v);
49474             
49475             //invalid dial code
49476             if(v.length == 0 || !d || d.length == 0) {
49477                 if(this.rendered){
49478                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
49479                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
49480                 }
49481                 return;
49482             }
49483             
49484             //valid dial code
49485             this.setFlagClass(this.dialCodeMapping[d].iso2);
49486             this.setDialCode(d);
49487             this.inputEl().dom.value = v.replace('+'+d,'');
49488             this.hiddenEl().dom.value = this.getValue();
49489             
49490             this.validate();
49491         },
49492         
49493         getDialCode : function(v)
49494         {
49495             v = v ||  '';
49496             
49497             if (v.length == 0) {
49498                 return this.dialCodeHolder.dom.value;
49499             }
49500             
49501             var dialCode = "";
49502             if (v.charAt(0) != "+") {
49503                 return false;
49504             }
49505             var numericChars = "";
49506             for (var i = 1; i < v.length; i++) {
49507               var c = v.charAt(i);
49508               if (!isNaN(c)) {
49509                 numericChars += c;
49510                 if (this.dialCodeMapping[numericChars]) {
49511                   dialCode = v.substr(1, i);
49512                 }
49513                 if (numericChars.length == 4) {
49514                   break;
49515                 }
49516               }
49517             }
49518             return dialCode;
49519         },
49520         
49521         reset : function()
49522         {
49523             this.setValue(this.defaultDialCode);
49524             this.validate();
49525         },
49526         
49527         hiddenEl : function()
49528         {
49529             return this.el.select('input.hidden-tel-input',true).first();
49530         },
49531         
49532         // after setting val
49533         onKeyUp : function(e){
49534             this.setValue(this.getValue());
49535         },
49536         
49537         onKeyPress : function(e){
49538             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
49539                 e.stopEvent();
49540             }
49541         }
49542         
49543 });
49544 /**
49545  * @class Roo.bootstrap.form.MoneyField
49546  * @extends Roo.bootstrap.form.ComboBox
49547  * Bootstrap MoneyField class
49548  * 
49549  * @constructor
49550  * Create a new MoneyField.
49551  * @param {Object} config Configuration options
49552  */
49553
49554 Roo.bootstrap.form.MoneyField = function(config) {
49555     
49556     Roo.bootstrap.form.MoneyField.superclass.constructor.call(this, config);
49557     
49558 };
49559
49560 Roo.extend(Roo.bootstrap.form.MoneyField, Roo.bootstrap.form.ComboBox, {
49561     
49562     /**
49563      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
49564      */
49565     allowDecimals : true,
49566     /**
49567      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
49568      */
49569     decimalSeparator : ".",
49570     /**
49571      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
49572      */
49573     decimalPrecision : 0,
49574     /**
49575      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
49576      */
49577     allowNegative : true,
49578     /**
49579      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
49580      */
49581     allowZero: true,
49582     /**
49583      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
49584      */
49585     minValue : Number.NEGATIVE_INFINITY,
49586     /**
49587      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
49588      */
49589     maxValue : Number.MAX_VALUE,
49590     /**
49591      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
49592      */
49593     minText : "The minimum value for this field is {0}",
49594     /**
49595      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
49596      */
49597     maxText : "The maximum value for this field is {0}",
49598     /**
49599      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
49600      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
49601      */
49602     nanText : "{0} is not a valid number",
49603     /**
49604      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
49605      */
49606     castInt : true,
49607     /**
49608      * @cfg {String} defaults currency of the MoneyField
49609      * value should be in lkey
49610      */
49611     defaultCurrency : false,
49612     /**
49613      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
49614      */
49615     thousandsDelimiter : false,
49616     /**
49617      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
49618      */
49619     max_length: false,
49620     
49621     inputlg : 9,
49622     inputmd : 9,
49623     inputsm : 9,
49624     inputxs : 6,
49625      /**
49626      * @cfg {Roo.data.Store} store  Store to lookup currency??
49627      */
49628     store : false,
49629     
49630     getAutoCreate : function()
49631     {
49632         var align = this.labelAlign || this.parentLabelAlign();
49633         
49634         var id = Roo.id();
49635
49636         var cfg = {
49637             cls: 'form-group',
49638             cn: []
49639         };
49640
49641         var input =  {
49642             tag: 'input',
49643             id : id,
49644             cls : 'form-control roo-money-amount-input',
49645             autocomplete: 'new-password'
49646         };
49647         
49648         var hiddenInput = {
49649             tag: 'input',
49650             type: 'hidden',
49651             id: Roo.id(),
49652             cls: 'hidden-number-input'
49653         };
49654         
49655         if(this.max_length) {
49656             input.maxlength = this.max_length; 
49657         }
49658         
49659         if (this.name) {
49660             hiddenInput.name = this.name;
49661         }
49662
49663         if (this.disabled) {
49664             input.disabled = true;
49665         }
49666
49667         var clg = 12 - this.inputlg;
49668         var cmd = 12 - this.inputmd;
49669         var csm = 12 - this.inputsm;
49670         var cxs = 12 - this.inputxs;
49671         
49672         var container = {
49673             tag : 'div',
49674             cls : 'row roo-money-field',
49675             cn : [
49676                 {
49677                     tag : 'div',
49678                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
49679                     cn : [
49680                         {
49681                             tag : 'div',
49682                             cls: 'roo-select2-container input-group',
49683                             cn: [
49684                                 {
49685                                     tag : 'input',
49686                                     cls : 'form-control roo-money-currency-input',
49687                                     autocomplete: 'new-password',
49688                                     readOnly : 1,
49689                                     name : this.currencyName
49690                                 },
49691                                 {
49692                                     tag :'span',
49693                                     cls : 'input-group-addon',
49694                                     cn : [
49695                                         {
49696                                             tag: 'span',
49697                                             cls: 'caret'
49698                                         }
49699                                     ]
49700                                 }
49701                             ]
49702                         }
49703                     ]
49704                 },
49705                 {
49706                     tag : 'div',
49707                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
49708                     cn : [
49709                         {
49710                             tag: 'div',
49711                             cls: this.hasFeedback ? 'has-feedback' : '',
49712                             cn: [
49713                                 input
49714                             ]
49715                         }
49716                     ]
49717                 }
49718             ]
49719             
49720         };
49721         
49722         if (this.fieldLabel.length) {
49723             var indicator = {
49724                 tag: 'i',
49725                 tooltip: 'This field is required'
49726             };
49727
49728             var label = {
49729                 tag: 'label',
49730                 'for':  id,
49731                 cls: 'control-label',
49732                 cn: []
49733             };
49734
49735             var label_text = {
49736                 tag: 'span',
49737                 html: this.fieldLabel
49738             };
49739
49740             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
49741             label.cn = [
49742                 indicator,
49743                 label_text
49744             ];
49745
49746             if(this.indicatorpos == 'right') {
49747                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
49748                 label.cn = [
49749                     label_text,
49750                     indicator
49751                 ];
49752             }
49753
49754             if(align == 'left') {
49755                 container = {
49756                     tag: 'div',
49757                     cn: [
49758                         container
49759                     ]
49760                 };
49761
49762                 if(this.labelWidth > 12){
49763                     label.style = "width: " + this.labelWidth + 'px';
49764                 }
49765                 if(this.labelWidth < 13 && this.labelmd == 0){
49766                     this.labelmd = this.labelWidth;
49767                 }
49768                 if(this.labellg > 0){
49769                     label.cls += ' col-lg-' + this.labellg;
49770                     input.cls += ' col-lg-' + (12 - this.labellg);
49771                 }
49772                 if(this.labelmd > 0){
49773                     label.cls += ' col-md-' + this.labelmd;
49774                     container.cls += ' col-md-' + (12 - this.labelmd);
49775                 }
49776                 if(this.labelsm > 0){
49777                     label.cls += ' col-sm-' + this.labelsm;
49778                     container.cls += ' col-sm-' + (12 - this.labelsm);
49779                 }
49780                 if(this.labelxs > 0){
49781                     label.cls += ' col-xs-' + this.labelxs;
49782                     container.cls += ' col-xs-' + (12 - this.labelxs);
49783                 }
49784             }
49785         }
49786
49787         cfg.cn = [
49788             label,
49789             container,
49790             hiddenInput
49791         ];
49792         
49793         var settings = this;
49794
49795         ['xs','sm','md','lg'].map(function(size){
49796             if (settings[size]) {
49797                 cfg.cls += ' col-' + size + '-' + settings[size];
49798             }
49799         });
49800         
49801         return cfg;
49802     },
49803     
49804     initEvents : function()
49805     {
49806         this.indicator = this.indicatorEl();
49807         
49808         this.initCurrencyEvent();
49809         
49810         this.initNumberEvent();
49811     },
49812     
49813     initCurrencyEvent : function()
49814     {
49815         if (!this.store) {
49816             throw "can not find store for combo";
49817         }
49818         
49819         this.store = Roo.factory(this.store, Roo.data);
49820         this.store.parent = this;
49821         
49822         this.createList();
49823         
49824         this.triggerEl = this.el.select('.input-group-addon', true).first();
49825         
49826         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
49827         
49828         var _this = this;
49829         
49830         (function(){
49831             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
49832             _this.list.setWidth(lw);
49833         }).defer(100);
49834         
49835         this.list.on('mouseover', this.onViewOver, this);
49836         this.list.on('mousemove', this.onViewMove, this);
49837         this.list.on('scroll', this.onViewScroll, this);
49838         
49839         if(!this.tpl){
49840             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
49841         }
49842         
49843         this.view = new Roo.View(this.list, this.tpl, {
49844             singleSelect:true, store: this.store, selectedClass: this.selectedClass
49845         });
49846         
49847         this.view.on('click', this.onViewClick, this);
49848         
49849         this.store.on('beforeload', this.onBeforeLoad, this);
49850         this.store.on('load', this.onLoad, this);
49851         this.store.on('loadexception', this.onLoadException, this);
49852         
49853         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
49854             "up" : function(e){
49855                 this.inKeyMode = true;
49856                 this.selectPrev();
49857             },
49858
49859             "down" : function(e){
49860                 if(!this.isExpanded()){
49861                     this.onTriggerClick();
49862                 }else{
49863                     this.inKeyMode = true;
49864                     this.selectNext();
49865                 }
49866             },
49867
49868             "enter" : function(e){
49869                 this.collapse();
49870                 
49871                 if(this.fireEvent("specialkey", this, e)){
49872                     this.onViewClick(false);
49873                 }
49874                 
49875                 return true;
49876             },
49877
49878             "esc" : function(e){
49879                 this.collapse();
49880             },
49881
49882             "tab" : function(e){
49883                 this.collapse();
49884                 
49885                 if(this.fireEvent("specialkey", this, e)){
49886                     this.onViewClick(false);
49887                 }
49888                 
49889                 return true;
49890             },
49891
49892             scope : this,
49893
49894             doRelay : function(foo, bar, hname){
49895                 if(hname == 'down' || this.scope.isExpanded()){
49896                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
49897                 }
49898                 return true;
49899             },
49900
49901             forceKeyDown: true
49902         });
49903         
49904         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
49905         
49906     },
49907     
49908     initNumberEvent : function(e)
49909     {
49910         this.inputEl().on("keydown" , this.fireKey,  this);
49911         this.inputEl().on("focus", this.onFocus,  this);
49912         this.inputEl().on("blur", this.onBlur,  this);
49913         
49914         this.inputEl().relayEvent('keyup', this);
49915         
49916         if(this.indicator){
49917             this.indicator.addClass('invisible');
49918         }
49919  
49920         this.originalValue = this.getValue();
49921         
49922         if(this.validationEvent == 'keyup'){
49923             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
49924             this.inputEl().on('keyup', this.filterValidation, this);
49925         }
49926         else if(this.validationEvent !== false){
49927             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
49928         }
49929         
49930         if(this.selectOnFocus){
49931             this.on("focus", this.preFocus, this);
49932             
49933         }
49934         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
49935             this.inputEl().on("keypress", this.filterKeys, this);
49936         } else {
49937             this.inputEl().relayEvent('keypress', this);
49938         }
49939         
49940         var allowed = "0123456789";
49941         
49942         if(this.allowDecimals){
49943             allowed += this.decimalSeparator;
49944         }
49945         
49946         if(this.allowNegative){
49947             allowed += "-";
49948         }
49949         
49950         if(this.thousandsDelimiter) {
49951             allowed += ",";
49952         }
49953         
49954         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
49955         
49956         var keyPress = function(e){
49957             
49958             var k = e.getKey();
49959             
49960             var c = e.getCharCode();
49961             
49962             if(
49963                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
49964                     allowed.indexOf(String.fromCharCode(c)) === -1
49965             ){
49966                 e.stopEvent();
49967                 return;
49968             }
49969             
49970             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
49971                 return;
49972             }
49973             
49974             if(allowed.indexOf(String.fromCharCode(c)) === -1){
49975                 e.stopEvent();
49976             }
49977         };
49978         
49979         this.inputEl().on("keypress", keyPress, this);
49980         
49981     },
49982     
49983     onTriggerClick : function(e)
49984     {   
49985         if(this.disabled){
49986             return;
49987         }
49988         
49989         this.page = 0;
49990         this.loadNext = false;
49991         
49992         if(this.isExpanded()){
49993             this.collapse();
49994             return;
49995         }
49996         
49997         this.hasFocus = true;
49998         
49999         if(this.triggerAction == 'all') {
50000             this.doQuery(this.allQuery, true);
50001             return;
50002         }
50003         
50004         this.doQuery(this.getRawValue());
50005     },
50006     
50007     getCurrency : function()
50008     {   
50009         var v = this.currencyEl().getValue();
50010         
50011         return v;
50012     },
50013     
50014     restrictHeight : function()
50015     {
50016         this.list.alignTo(this.currencyEl(), this.listAlign);
50017         this.list.alignTo(this.currencyEl(), this.listAlign);
50018     },
50019     
50020     onViewClick : function(view, doFocus, el, e)
50021     {
50022         var index = this.view.getSelectedIndexes()[0];
50023         
50024         var r = this.store.getAt(index);
50025         
50026         if(r){
50027             this.onSelect(r, index);
50028         }
50029     },
50030     
50031     onSelect : function(record, index){
50032         
50033         if(this.fireEvent('beforeselect', this, record, index) !== false){
50034         
50035             this.setFromCurrencyData(index > -1 ? record.data : false);
50036             
50037             this.collapse();
50038             
50039             this.fireEvent('select', this, record, index);
50040         }
50041     },
50042     
50043     setFromCurrencyData : function(o)
50044     {
50045         var currency = '';
50046         
50047         this.lastCurrency = o;
50048         
50049         if (this.currencyField) {
50050             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
50051         } else {
50052             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
50053         }
50054         
50055         this.lastSelectionText = currency;
50056         
50057         //setting default currency
50058         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
50059             this.setCurrency(this.defaultCurrency);
50060             return;
50061         }
50062         
50063         this.setCurrency(currency);
50064     },
50065     
50066     setFromData : function(o)
50067     {
50068         var c = {};
50069         
50070         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
50071         
50072         this.setFromCurrencyData(c);
50073         
50074         var value = '';
50075         
50076         if (this.name) {
50077             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
50078         } else {
50079             Roo.log('no value set for '+ (this.name ? this.name : this.id));
50080         }
50081         
50082         this.setValue(value);
50083         
50084     },
50085     
50086     setCurrency : function(v)
50087     {   
50088         this.currencyValue = v;
50089         
50090         if(this.rendered){
50091             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
50092             this.validate();
50093         }
50094     },
50095     
50096     setValue : function(v)
50097     {
50098         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
50099         
50100         this.value = v;
50101         
50102         if(this.rendered){
50103             
50104             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
50105             
50106             this.inputEl().dom.value = (v == '') ? '' :
50107                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
50108             
50109             if(!this.allowZero && v === '0') {
50110                 this.hiddenEl().dom.value = '';
50111                 this.inputEl().dom.value = '';
50112             }
50113             
50114             this.validate();
50115         }
50116     },
50117     
50118     getRawValue : function()
50119     {
50120         var v = this.inputEl().getValue();
50121         
50122         return v;
50123     },
50124     
50125     getValue : function()
50126     {
50127         return this.fixPrecision(this.parseValue(this.getRawValue()));
50128     },
50129     
50130     parseValue : function(value)
50131     {
50132         if(this.thousandsDelimiter) {
50133             value += "";
50134             r = new RegExp(",", "g");
50135             value = value.replace(r, "");
50136         }
50137         
50138         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
50139         return isNaN(value) ? '' : value;
50140         
50141     },
50142     
50143     fixPrecision : function(value)
50144     {
50145         if(this.thousandsDelimiter) {
50146             value += "";
50147             r = new RegExp(",", "g");
50148             value = value.replace(r, "");
50149         }
50150         
50151         var nan = isNaN(value);
50152         
50153         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
50154             return nan ? '' : value;
50155         }
50156         return parseFloat(value).toFixed(this.decimalPrecision);
50157     },
50158     
50159     decimalPrecisionFcn : function(v)
50160     {
50161         return Math.floor(v);
50162     },
50163     
50164     validateValue : function(value)
50165     {
50166         if(!Roo.bootstrap.form.MoneyField.superclass.validateValue.call(this, value)){
50167             return false;
50168         }
50169         
50170         var num = this.parseValue(value);
50171         
50172         if(isNaN(num)){
50173             this.markInvalid(String.format(this.nanText, value));
50174             return false;
50175         }
50176         
50177         if(num < this.minValue){
50178             this.markInvalid(String.format(this.minText, this.minValue));
50179             return false;
50180         }
50181         
50182         if(num > this.maxValue){
50183             this.markInvalid(String.format(this.maxText, this.maxValue));
50184             return false;
50185         }
50186         
50187         return true;
50188     },
50189     
50190     validate : function()
50191     {
50192         if(this.disabled || this.allowBlank){
50193             this.markValid();
50194             return true;
50195         }
50196         
50197         var currency = this.getCurrency();
50198         
50199         if(this.validateValue(this.getRawValue()) && currency.length){
50200             this.markValid();
50201             return true;
50202         }
50203         
50204         this.markInvalid();
50205         return false;
50206     },
50207     
50208     getName: function()
50209     {
50210         return this.name;
50211     },
50212     
50213     beforeBlur : function()
50214     {
50215         if(!this.castInt){
50216             return;
50217         }
50218         
50219         var v = this.parseValue(this.getRawValue());
50220         
50221         if(v || v == 0){
50222             this.setValue(v);
50223         }
50224     },
50225     
50226     onBlur : function()
50227     {
50228         this.beforeBlur();
50229         
50230         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
50231             //this.el.removeClass(this.focusClass);
50232         }
50233         
50234         this.hasFocus = false;
50235         
50236         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
50237             this.validate();
50238         }
50239         
50240         var v = this.getValue();
50241         
50242         if(String(v) !== String(this.startValue)){
50243             this.fireEvent('change', this, v, this.startValue);
50244         }
50245         
50246         this.fireEvent("blur", this);
50247     },
50248     
50249     inputEl : function()
50250     {
50251         return this.el.select('.roo-money-amount-input', true).first();
50252     },
50253     
50254     currencyEl : function()
50255     {
50256         return this.el.select('.roo-money-currency-input', true).first();
50257     },
50258     
50259     hiddenEl : function()
50260     {
50261         return this.el.select('input.hidden-number-input',true).first();
50262     }
50263     
50264 });/**
50265  * @class Roo.bootstrap.BezierSignature
50266  * @extends Roo.bootstrap.Component
50267  * Bootstrap BezierSignature class
50268  * This script refer to:
50269  *    Title: Signature Pad
50270  *    Author: szimek
50271  *    Availability: https://github.com/szimek/signature_pad
50272  *
50273  * @constructor
50274  * Create a new BezierSignature
50275  * @param {Object} config The config object
50276  */
50277
50278 Roo.bootstrap.BezierSignature = function(config){
50279     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
50280     this.addEvents({
50281         "resize" : true
50282     });
50283 };
50284
50285 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
50286 {
50287      
50288     curve_data: [],
50289     
50290     is_empty: true,
50291     
50292     mouse_btn_down: true,
50293     
50294     /**
50295      * @cfg {int} canvas height
50296      */
50297     canvas_height: '200px',
50298     
50299     /**
50300      * @cfg {float|function} Radius of a single dot.
50301      */ 
50302     dot_size: false,
50303     
50304     /**
50305      * @cfg {float} Minimum width of a line. Defaults to 0.5.
50306      */
50307     min_width: 0.5,
50308     
50309     /**
50310      * @cfg {float} Maximum width of a line. Defaults to 2.5.
50311      */
50312     max_width: 2.5,
50313     
50314     /**
50315      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
50316      */
50317     throttle: 16,
50318     
50319     /**
50320      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
50321      */
50322     min_distance: 5,
50323     
50324     /**
50325      * @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.
50326      */
50327     bg_color: 'rgba(0, 0, 0, 0)',
50328     
50329     /**
50330      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
50331      */
50332     dot_color: 'black',
50333     
50334     /**
50335      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
50336      */ 
50337     velocity_filter_weight: 0.7,
50338     
50339     /**
50340      * @cfg {function} Callback when stroke begin. 
50341      */
50342     onBegin: false,
50343     
50344     /**
50345      * @cfg {function} Callback when stroke end.
50346      */
50347     onEnd: false,
50348     
50349     getAutoCreate : function()
50350     {
50351         var cls = 'roo-signature column';
50352         
50353         if(this.cls){
50354             cls += ' ' + this.cls;
50355         }
50356         
50357         var col_sizes = [
50358             'lg',
50359             'md',
50360             'sm',
50361             'xs'
50362         ];
50363         
50364         for(var i = 0; i < col_sizes.length; i++) {
50365             if(this[col_sizes[i]]) {
50366                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
50367             }
50368         }
50369         
50370         var cfg = {
50371             tag: 'div',
50372             cls: cls,
50373             cn: [
50374                 {
50375                     tag: 'div',
50376                     cls: 'roo-signature-body',
50377                     cn: [
50378                         {
50379                             tag: 'canvas',
50380                             cls: 'roo-signature-body-canvas',
50381                             height: this.canvas_height,
50382                             width: this.canvas_width
50383                         }
50384                     ]
50385                 },
50386                 {
50387                     tag: 'input',
50388                     type: 'file',
50389                     style: 'display: none'
50390                 }
50391             ]
50392         };
50393         
50394         return cfg;
50395     },
50396     
50397     initEvents: function() 
50398     {
50399         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
50400         
50401         var canvas = this.canvasEl();
50402         
50403         // mouse && touch event swapping...
50404         canvas.dom.style.touchAction = 'none';
50405         canvas.dom.style.msTouchAction = 'none';
50406         
50407         this.mouse_btn_down = false;
50408         canvas.on('mousedown', this._handleMouseDown, this);
50409         canvas.on('mousemove', this._handleMouseMove, this);
50410         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
50411         
50412         if (window.PointerEvent) {
50413             canvas.on('pointerdown', this._handleMouseDown, this);
50414             canvas.on('pointermove', this._handleMouseMove, this);
50415             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
50416         }
50417         
50418         if ('ontouchstart' in window) {
50419             canvas.on('touchstart', this._handleTouchStart, this);
50420             canvas.on('touchmove', this._handleTouchMove, this);
50421             canvas.on('touchend', this._handleTouchEnd, this);
50422         }
50423         
50424         Roo.EventManager.onWindowResize(this.resize, this, true);
50425         
50426         // file input event
50427         this.fileEl().on('change', this.uploadImage, this);
50428         
50429         this.clear();
50430         
50431         this.resize();
50432     },
50433     
50434     resize: function(){
50435         
50436         var canvas = this.canvasEl().dom;
50437         var ctx = this.canvasElCtx();
50438         var img_data = false;
50439         
50440         if(canvas.width > 0) {
50441             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
50442         }
50443         // setting canvas width will clean img data
50444         canvas.width = 0;
50445         
50446         var style = window.getComputedStyle ? 
50447             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
50448             
50449         var padding_left = parseInt(style.paddingLeft) || 0;
50450         var padding_right = parseInt(style.paddingRight) || 0;
50451         
50452         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
50453         
50454         if(img_data) {
50455             ctx.putImageData(img_data, 0, 0);
50456         }
50457     },
50458     
50459     _handleMouseDown: function(e)
50460     {
50461         if (e.browserEvent.which === 1) {
50462             this.mouse_btn_down = true;
50463             this.strokeBegin(e);
50464         }
50465     },
50466     
50467     _handleMouseMove: function (e)
50468     {
50469         if (this.mouse_btn_down) {
50470             this.strokeMoveUpdate(e);
50471         }
50472     },
50473     
50474     _handleMouseUp: function (e)
50475     {
50476         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
50477             this.mouse_btn_down = false;
50478             this.strokeEnd(e);
50479         }
50480     },
50481     
50482     _handleTouchStart: function (e) {
50483         
50484         e.preventDefault();
50485         if (e.browserEvent.targetTouches.length === 1) {
50486             // var touch = e.browserEvent.changedTouches[0];
50487             // this.strokeBegin(touch);
50488             
50489              this.strokeBegin(e); // assume e catching the correct xy...
50490         }
50491     },
50492     
50493     _handleTouchMove: function (e) {
50494         e.preventDefault();
50495         // var touch = event.targetTouches[0];
50496         // _this._strokeMoveUpdate(touch);
50497         this.strokeMoveUpdate(e);
50498     },
50499     
50500     _handleTouchEnd: function (e) {
50501         var wasCanvasTouched = e.target === this.canvasEl().dom;
50502         if (wasCanvasTouched) {
50503             e.preventDefault();
50504             // var touch = event.changedTouches[0];
50505             // _this._strokeEnd(touch);
50506             this.strokeEnd(e);
50507         }
50508     },
50509     
50510     reset: function () {
50511         this._lastPoints = [];
50512         this._lastVelocity = 0;
50513         this._lastWidth = (this.min_width + this.max_width) / 2;
50514         this.canvasElCtx().fillStyle = this.dot_color;
50515     },
50516     
50517     strokeMoveUpdate: function(e)
50518     {
50519         this.strokeUpdate(e);
50520         
50521         if (this.throttle) {
50522             this.throttleStroke(this.strokeUpdate, this.throttle);
50523         }
50524         else {
50525             this.strokeUpdate(e);
50526         }
50527     },
50528     
50529     strokeBegin: function(e)
50530     {
50531         var newPointGroup = {
50532             color: this.dot_color,
50533             points: []
50534         };
50535         
50536         if (typeof this.onBegin === 'function') {
50537             this.onBegin(e);
50538         }
50539         
50540         this.curve_data.push(newPointGroup);
50541         this.reset();
50542         this.strokeUpdate(e);
50543     },
50544     
50545     strokeUpdate: function(e)
50546     {
50547         var rect = this.canvasEl().dom.getBoundingClientRect();
50548         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
50549         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
50550         var lastPoints = lastPointGroup.points;
50551         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
50552         var isLastPointTooClose = lastPoint
50553             ? point.distanceTo(lastPoint) <= this.min_distance
50554             : false;
50555         var color = lastPointGroup.color;
50556         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
50557             var curve = this.addPoint(point);
50558             if (!lastPoint) {
50559                 this.drawDot({color: color, point: point});
50560             }
50561             else if (curve) {
50562                 this.drawCurve({color: color, curve: curve});
50563             }
50564             lastPoints.push({
50565                 time: point.time,
50566                 x: point.x,
50567                 y: point.y
50568             });
50569         }
50570     },
50571     
50572     strokeEnd: function(e)
50573     {
50574         this.strokeUpdate(e);
50575         if (typeof this.onEnd === 'function') {
50576             this.onEnd(e);
50577         }
50578     },
50579     
50580     addPoint:  function (point) {
50581         var _lastPoints = this._lastPoints;
50582         _lastPoints.push(point);
50583         if (_lastPoints.length > 2) {
50584             if (_lastPoints.length === 3) {
50585                 _lastPoints.unshift(_lastPoints[0]);
50586             }
50587             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
50588             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
50589             _lastPoints.shift();
50590             return curve;
50591         }
50592         return null;
50593     },
50594     
50595     calculateCurveWidths: function (startPoint, endPoint) {
50596         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
50597             (1 - this.velocity_filter_weight) * this._lastVelocity;
50598
50599         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
50600         var widths = {
50601             end: newWidth,
50602             start: this._lastWidth
50603         };
50604         
50605         this._lastVelocity = velocity;
50606         this._lastWidth = newWidth;
50607         return widths;
50608     },
50609     
50610     drawDot: function (_a) {
50611         var color = _a.color, point = _a.point;
50612         var ctx = this.canvasElCtx();
50613         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
50614         ctx.beginPath();
50615         this.drawCurveSegment(point.x, point.y, width);
50616         ctx.closePath();
50617         ctx.fillStyle = color;
50618         ctx.fill();
50619     },
50620     
50621     drawCurve: function (_a) {
50622         var color = _a.color, curve = _a.curve;
50623         var ctx = this.canvasElCtx();
50624         var widthDelta = curve.endWidth - curve.startWidth;
50625         var drawSteps = Math.floor(curve.length()) * 2;
50626         ctx.beginPath();
50627         ctx.fillStyle = color;
50628         for (var i = 0; i < drawSteps; i += 1) {
50629         var t = i / drawSteps;
50630         var tt = t * t;
50631         var ttt = tt * t;
50632         var u = 1 - t;
50633         var uu = u * u;
50634         var uuu = uu * u;
50635         var x = uuu * curve.startPoint.x;
50636         x += 3 * uu * t * curve.control1.x;
50637         x += 3 * u * tt * curve.control2.x;
50638         x += ttt * curve.endPoint.x;
50639         var y = uuu * curve.startPoint.y;
50640         y += 3 * uu * t * curve.control1.y;
50641         y += 3 * u * tt * curve.control2.y;
50642         y += ttt * curve.endPoint.y;
50643         var width = curve.startWidth + ttt * widthDelta;
50644         this.drawCurveSegment(x, y, width);
50645         }
50646         ctx.closePath();
50647         ctx.fill();
50648     },
50649     
50650     drawCurveSegment: function (x, y, width) {
50651         var ctx = this.canvasElCtx();
50652         ctx.moveTo(x, y);
50653         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
50654         this.is_empty = false;
50655     },
50656     
50657     clear: function()
50658     {
50659         var ctx = this.canvasElCtx();
50660         var canvas = this.canvasEl().dom;
50661         ctx.fillStyle = this.bg_color;
50662         ctx.clearRect(0, 0, canvas.width, canvas.height);
50663         ctx.fillRect(0, 0, canvas.width, canvas.height);
50664         this.curve_data = [];
50665         this.reset();
50666         this.is_empty = true;
50667     },
50668     
50669     fileEl: function()
50670     {
50671         return  this.el.select('input',true).first();
50672     },
50673     
50674     canvasEl: function()
50675     {
50676         return this.el.select('canvas',true).first();
50677     },
50678     
50679     canvasElCtx: function()
50680     {
50681         return this.el.select('canvas',true).first().dom.getContext('2d');
50682     },
50683     
50684     getImage: function(type)
50685     {
50686         if(this.is_empty) {
50687             return false;
50688         }
50689         
50690         // encryption ?
50691         return this.canvasEl().dom.toDataURL('image/'+type, 1);
50692     },
50693     
50694     drawFromImage: function(img_src)
50695     {
50696         var img = new Image();
50697         
50698         img.onload = function(){
50699             this.canvasElCtx().drawImage(img, 0, 0);
50700         }.bind(this);
50701         
50702         img.src = img_src;
50703         
50704         this.is_empty = false;
50705     },
50706     
50707     selectImage: function()
50708     {
50709         this.fileEl().dom.click();
50710     },
50711     
50712     uploadImage: function(e)
50713     {
50714         var reader = new FileReader();
50715         
50716         reader.onload = function(e){
50717             var img = new Image();
50718             img.onload = function(){
50719                 this.reset();
50720                 this.canvasElCtx().drawImage(img, 0, 0);
50721             }.bind(this);
50722             img.src = e.target.result;
50723         }.bind(this);
50724         
50725         reader.readAsDataURL(e.target.files[0]);
50726     },
50727     
50728     // Bezier Point Constructor
50729     Point: (function () {
50730         function Point(x, y, time) {
50731             this.x = x;
50732             this.y = y;
50733             this.time = time || Date.now();
50734         }
50735         Point.prototype.distanceTo = function (start) {
50736             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
50737         };
50738         Point.prototype.equals = function (other) {
50739             return this.x === other.x && this.y === other.y && this.time === other.time;
50740         };
50741         Point.prototype.velocityFrom = function (start) {
50742             return this.time !== start.time
50743             ? this.distanceTo(start) / (this.time - start.time)
50744             : 0;
50745         };
50746         return Point;
50747     }()),
50748     
50749     
50750     // Bezier Constructor
50751     Bezier: (function () {
50752         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
50753             this.startPoint = startPoint;
50754             this.control2 = control2;
50755             this.control1 = control1;
50756             this.endPoint = endPoint;
50757             this.startWidth = startWidth;
50758             this.endWidth = endWidth;
50759         }
50760         Bezier.fromPoints = function (points, widths, scope) {
50761             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
50762             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
50763             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
50764         };
50765         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
50766             var dx1 = s1.x - s2.x;
50767             var dy1 = s1.y - s2.y;
50768             var dx2 = s2.x - s3.x;
50769             var dy2 = s2.y - s3.y;
50770             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
50771             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
50772             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
50773             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
50774             var dxm = m1.x - m2.x;
50775             var dym = m1.y - m2.y;
50776             var k = l2 / (l1 + l2);
50777             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
50778             var tx = s2.x - cm.x;
50779             var ty = s2.y - cm.y;
50780             return {
50781                 c1: new scope.Point(m1.x + tx, m1.y + ty),
50782                 c2: new scope.Point(m2.x + tx, m2.y + ty)
50783             };
50784         };
50785         Bezier.prototype.length = function () {
50786             var steps = 10;
50787             var length = 0;
50788             var px;
50789             var py;
50790             for (var i = 0; i <= steps; i += 1) {
50791                 var t = i / steps;
50792                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
50793                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
50794                 if (i > 0) {
50795                     var xdiff = cx - px;
50796                     var ydiff = cy - py;
50797                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
50798                 }
50799                 px = cx;
50800                 py = cy;
50801             }
50802             return length;
50803         };
50804         Bezier.prototype.point = function (t, start, c1, c2, end) {
50805             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
50806             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
50807             + (3.0 * c2 * (1.0 - t) * t * t)
50808             + (end * t * t * t);
50809         };
50810         return Bezier;
50811     }()),
50812     
50813     throttleStroke: function(fn, wait) {
50814       if (wait === void 0) { wait = 250; }
50815       var previous = 0;
50816       var timeout = null;
50817       var result;
50818       var storedContext;
50819       var storedArgs;
50820       var later = function () {
50821           previous = Date.now();
50822           timeout = null;
50823           result = fn.apply(storedContext, storedArgs);
50824           if (!timeout) {
50825               storedContext = null;
50826               storedArgs = [];
50827           }
50828       };
50829       return function wrapper() {
50830           var args = [];
50831           for (var _i = 0; _i < arguments.length; _i++) {
50832               args[_i] = arguments[_i];
50833           }
50834           var now = Date.now();
50835           var remaining = wait - (now - previous);
50836           storedContext = this;
50837           storedArgs = args;
50838           if (remaining <= 0 || remaining > wait) {
50839               if (timeout) {
50840                   clearTimeout(timeout);
50841                   timeout = null;
50842               }
50843               previous = now;
50844               result = fn.apply(storedContext, storedArgs);
50845               if (!timeout) {
50846                   storedContext = null;
50847                   storedArgs = [];
50848               }
50849           }
50850           else if (!timeout) {
50851               timeout = window.setTimeout(later, remaining);
50852           }
50853           return result;
50854       };
50855   }
50856   
50857 });
50858
50859  
50860
50861  // old names for form elements
50862 Roo.bootstrap.Form          =   Roo.bootstrap.form.Form;
50863 Roo.bootstrap.Input         =   Roo.bootstrap.form.Input;
50864 Roo.bootstrap.TextArea      =   Roo.bootstrap.form.TextArea;
50865 Roo.bootstrap.TriggerField  =   Roo.bootstrap.form.TriggerField;
50866 Roo.bootstrap.ComboBox      =   Roo.bootstrap.form.ComboBox;
50867 Roo.bootstrap.DateField     =   Roo.bootstrap.form.DateField;
50868 Roo.bootstrap.TimeField     =   Roo.bootstrap.form.TimeField;
50869 Roo.bootstrap.MonthField    =   Roo.bootstrap.form.MonthField;
50870 Roo.bootstrap.CheckBox      =   Roo.bootstrap.form.CheckBox;
50871 Roo.bootstrap.Radio         =   Roo.bootstrap.form.Radio;
50872 Roo.bootstrap.RadioSet      =   Roo.bootstrap.form.RadioSet;
50873 Roo.bootstrap.SecurePass    =   Roo.bootstrap.form.SecurePass;
50874 Roo.bootstrap.FieldLabel    =   Roo.bootstrap.form.FieldLabel;
50875 Roo.bootstrap.DateSplitField=   Roo.bootstrap.form.DateSplitField;
50876 Roo.bootstrap.NumberField   =   Roo.bootstrap.form.NumberField;
50877 Roo.bootstrap.PhoneInput    =   Roo.bootstrap.form.PhoneInput;
50878 Roo.bootstrap.PhoneInputData=   Roo.bootstrap.form.PhoneInputData;
50879 Roo.bootstrap.MoneyField    =   Roo.bootstrap.form.MoneyField;
50880 Roo.bootstrap.HtmlEditor    =   Roo.bootstrap.form.HtmlEditor;
50881 Roo.bootstrap.HtmlEditor.ToolbarStandard =   Roo.bootstrap.form.HtmlEditorToolbarStandard;
50882 Roo.bootstrap.Markdown      = Roo.bootstrap.form.Markdown;
50883 Roo.bootstrap.CardUploader  = Roo.bootstrap.form.CardUploader;// depricated.
50884 Roo.bootstrap.Navbar            = Roo.bootstrap.nav.Bar;
50885 Roo.bootstrap.NavGroup          = Roo.bootstrap.nav.Group;
50886 Roo.bootstrap.NavHeaderbar      = Roo.bootstrap.nav.Headerbar;
50887 Roo.bootstrap.NavItem           = Roo.bootstrap.nav.Item;
50888
50889 Roo.bootstrap.NavProgressBar     = Roo.bootstrap.nav.ProgressBar;
50890 Roo.bootstrap.NavProgressBarItem = Roo.bootstrap.nav.ProgressBarItem;
50891
50892 Roo.bootstrap.NavSidebar        = Roo.bootstrap.nav.Sidebar;
50893 Roo.bootstrap.NavSidebarItem    = Roo.bootstrap.nav.SidebarItem;
50894
50895 Roo.bootstrap.NavSimplebar      = Roo.bootstrap.nav.Simplebar;// deprciated 
50896 Roo.bootstrap.Menu = Roo.bootstrap.menu.Menu;
50897 Roo.bootstrap.MenuItem =  Roo.bootstrap.menu.Item;
50898 Roo.bootstrap.MenuSeparator = Roo.bootstrap.menu.Separator
50899