d0b7c7eb0d1d8947f2d0d08272ae9e9d096d2cef
[roojs1] / roojs-bootstrap-debug.js
1 /**
2  * set the version of bootstrap based on the stylesheet...
3  *
4  */
5
6 Roo.bootstrap.version = (
7         function() {
8                 var ret=3;
9                 Roo.each(document.styleSheets, function(s) {
10                     if (s.href.match(/css-bootstrap4/)) {
11                         ret=4;
12                     }
13                 });
14         return ret;
15 })(); /*
16  * - LGPL
17  *
18  * base class for bootstrap elements.
19  * 
20  */
21
22 Roo.bootstrap = Roo.bootstrap || {};
23 /**
24  * @class Roo.bootstrap.Component
25  * @extends Roo.Component
26  * Bootstrap Component base class
27  * @cfg {String} cls css class
28  * @cfg {String} style any extra css
29  * @cfg {Object} xattr extra attributes to add to 'element' (used by builder to store stuff.)
30  * @cfg {Boolean} can_build_overlaid  True if element can be rebuild from a HTML page
31  * @cfg {string} dataId cutomer id
32  * @cfg {string} name Specifies name attribute
33  * @cfg {string} tooltip  Text for the tooltip
34  * @cfg {string} container_method method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)
35  * @cfg {string|object} visibilityEl (el|parent) What element to use for visibility (@see getVisibilityEl())
36  
37  * @constructor
38  * Do not use directly - it does not do anything..
39  * @param {Object} config The config object
40  */
41
42
43
44 Roo.bootstrap.Component = function(config){
45     Roo.bootstrap.Component.superclass.constructor.call(this, config);
46        
47     this.addEvents({
48         /**
49          * @event childrenrendered
50          * Fires when the children have been rendered..
51          * @param {Roo.bootstrap.Component} this
52          */
53         "childrenrendered" : true
54         
55         
56         
57     });
58     
59     
60 };
61
62 Roo.extend(Roo.bootstrap.Component, Roo.BoxComponent,  {
63     
64     
65     allowDomMove : false, // to stop relocations in parent onRender...
66     
67     cls : false,
68     
69     style : false,
70     
71     autoCreate : false,
72     
73     tooltip : null,
74     /**
75      * Initialize Events for the element
76      */
77     initEvents : function() { },
78     
79     xattr : false,
80     
81     parentId : false,
82     
83     can_build_overlaid : true,
84     
85     container_method : false,
86     
87     dataId : false,
88     
89     name : false,
90     
91     parent: function() {
92         // returns the parent component..
93         return Roo.ComponentMgr.get(this.parentId)
94         
95         
96     },
97     
98     // private
99     onRender : function(ct, position)
100     {
101        // Roo.log("Call onRender: " + this.xtype);
102         
103         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
104         
105         if(this.el){
106             if (this.el.attr('xtype')) {
107                 this.el.attr('xtypex', this.el.attr('xtype'));
108                 this.el.dom.removeAttribute('xtype');
109                 
110                 this.initEvents();
111             }
112             
113             return;
114         }
115         
116          
117         
118         var cfg = Roo.apply({},  this.getAutoCreate());
119         
120         cfg.id = this.id || Roo.id();
121         
122         // fill in the extra attributes 
123         if (this.xattr && typeof(this.xattr) =='object') {
124             for (var i in this.xattr) {
125                 cfg[i] = this.xattr[i];
126             }
127         }
128         
129         if(this.dataId){
130             cfg.dataId = this.dataId;
131         }
132         
133         if (this.cls) {
134             cfg.cls = (typeof(cfg.cls) == 'undefined') ? this.cls : cfg.cls + ' ' + this.cls;
135         }
136         
137         if (this.style) { // fixme needs to support more complex style data.
138             cfg.style = this.style;
139         }
140         
141         if(this.name){
142             cfg.name = this.name;
143         }
144         
145         this.el = ct.createChild(cfg, position);
146         
147         if (this.tooltip) {
148             this.tooltipEl().attr('tooltip', this.tooltip);
149         }
150         
151         if(this.tabIndex !== undefined){
152             this.el.dom.setAttribute('tabIndex', this.tabIndex);
153         }
154         
155         this.initEvents();
156         
157     },
158     /**
159      * Fetch the element to add children to
160      * @return {Roo.Element} defaults to this.el
161      */
162     getChildContainer : function()
163     {
164         return this.el;
165     },
166     /**
167      * Fetch the element to display the tooltip on.
168      * @return {Roo.Element} defaults to this.el
169      */
170     tooltipEl : function()
171     {
172         return this.el;
173     },
174         
175     addxtype  : function(tree,cntr)
176     {
177         var cn = this;
178         
179         cn = Roo.factory(tree);
180         //Roo.log(['addxtype', cn]);
181            
182         cn.parentType = this.xtype; //??
183         cn.parentId = this.id;
184         
185         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
186         if (typeof(cn.container_method) == 'string') {
187             cntr = cn.container_method;
188         }
189         
190         
191         var has_flexy_each =  (typeof(tree['flexy:foreach']) != 'undefined');
192         
193         var has_flexy_if =  (typeof(tree['flexy:if']) != 'undefined');
194         
195         var build_from_html =  Roo.XComponent.build_from_html;
196           
197         var is_body  = (tree.xtype == 'Body') ;
198           
199         var page_has_body = (Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body');
200           
201         var self_cntr_el = Roo.get(this[cntr](false));
202         
203         // do not try and build conditional elements 
204         if ((has_flexy_each || has_flexy_if || this.can_build_overlaid == false ) && build_from_html) {
205             return false;
206         }
207         
208         if (!has_flexy_each || !build_from_html || is_body || !page_has_body) {
209             if(!has_flexy_if || typeof(tree.name) == 'undefined' || !build_from_html || is_body || !page_has_body){
210                 return this.addxtypeChild(tree,cntr, is_body);
211             }
212             
213             var echild =self_cntr_el ? self_cntr_el.child('>*[name=' + tree.name + ']') : false;
214                 
215             if(echild){
216                 return this.addxtypeChild(Roo.apply({}, tree),cntr);
217             }
218             
219             Roo.log('skipping render');
220             return cn;
221             
222         }
223         
224         var ret = false;
225         if (!build_from_html) {
226             return false;
227         }
228         
229         // this i think handles overlaying multiple children of the same type
230         // with the sam eelement.. - which might be buggy..
231         while (true) {
232             var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
233             
234             if (!echild) {
235                 break;
236             }
237             
238             if (echild && echild.attr('xtype').split('.').pop() != cn.xtype) {
239                 break;
240             }
241             
242             ret = this.addxtypeChild(Roo.apply({}, tree),cntr);
243         }
244        
245         return ret;
246     },
247     
248     
249     addxtypeChild : function (tree, cntr, is_body)
250     {
251         Roo.debug && Roo.log('addxtypeChild:' + cntr);
252         var cn = this;
253         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
254         
255         
256         var has_flexy = (typeof(tree['flexy:if']) != 'undefined') ||
257                     (typeof(tree['flexy:foreach']) != 'undefined');
258           
259     
260         
261         skip_children = false;
262         // render the element if it's not BODY.
263         if (!is_body) {
264             
265             // if parent was disabled, then do not try and create the children..
266             if(!this[cntr](true)){
267                 tree.items = [];
268                 return tree;
269             }
270            
271             cn = Roo.factory(tree);
272            
273             cn.parentType = this.xtype; //??
274             cn.parentId = this.id;
275             
276             var build_from_html =  Roo.XComponent.build_from_html;
277             
278             
279             // does the container contain child eleemnts with 'xtype' attributes.
280             // that match this xtype..
281             // note - when we render we create these as well..
282             // so we should check to see if body has xtype set.
283             if (build_from_html && Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body') {
284                
285                 var self_cntr_el = Roo.get(this[cntr](false));
286                 var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
287                 if (echild) { 
288                     //Roo.log(Roo.XComponent.build_from_html);
289                     //Roo.log("got echild:");
290                     //Roo.log(echild);
291                 }
292                 // there is a scenario where some of the child elements are flexy:if (and all of the same type)
293                 // and are not displayed -this causes this to use up the wrong element when matching.
294                 // at present the only work around for this is to nest flexy:if elements in another element that is always rendered.
295                 
296                 
297                 if (echild && echild.attr('xtype').split('.').pop() == cn.xtype) {
298                   //  Roo.log("found child for " + this.xtype +": " + echild.attr('xtype') );
299                   
300                   
301                   
302                     cn.el = echild;
303                   //  Roo.log("GOT");
304                     //echild.dom.removeAttribute('xtype');
305                 } else {
306                     Roo.debug && Roo.log("MISSING " + cn.xtype + " on child of " + (this.el ? this.el.attr('xbuilderid') : 'no parent'));
307                     Roo.debug && Roo.log(self_cntr_el);
308                     Roo.debug && Roo.log(echild);
309                     Roo.debug && Roo.log(cn);
310                 }
311             }
312            
313             
314            
315             // if object has flexy:if - then it may or may not be rendered.
316             if (build_from_html && has_flexy && !cn.el &&  cn.can_build_overlaid) {
317                 // skip a flexy if element.
318                 Roo.debug && Roo.log('skipping render');
319                 Roo.debug && Roo.log(tree);
320                 if (!cn.el) {
321                     Roo.debug && Roo.log('skipping all children');
322                     skip_children = true;
323                 }
324                 
325              } else {
326                  
327                 // actually if flexy:foreach is found, we really want to create 
328                 // multiple copies here...
329                 //Roo.log('render');
330                 //Roo.log(this[cntr]());
331                 // some elements do not have render methods.. like the layouts...
332                 /*
333                 if(this[cntr](true) === false){
334                     cn.items = [];
335                     return cn;
336                 }
337                 */
338                 cn.render && cn.render(this[cntr](true));
339                 
340              }
341             // then add the element..
342         }
343          
344         // handle the kids..
345         
346         var nitems = [];
347         /*
348         if (typeof (tree.menu) != 'undefined') {
349             tree.menu.parentType = cn.xtype;
350             tree.menu.triggerEl = cn.el;
351             nitems.push(cn.addxtype(Roo.apply({}, tree.menu)));
352             
353         }
354         */
355         if (!tree.items || !tree.items.length) {
356             cn.items = nitems;
357             //Roo.log(["no children", this]);
358             
359             return cn;
360         }
361          
362         var items = tree.items;
363         delete tree.items;
364         
365         //Roo.log(items.length);
366             // add the items..
367         if (!skip_children) {    
368             for(var i =0;i < items.length;i++) {
369               //  Roo.log(['add child', items[i]]);
370                 nitems.push(cn.addxtype(Roo.apply({}, items[i])));
371             }
372         }
373         
374         cn.items = nitems;
375         
376         //Roo.log("fire childrenrendered");
377         
378         cn.fireEvent('childrenrendered', this);
379         
380         return cn;
381     },
382     
383     /**
384      * Set the element that will be used to show or hide
385      */
386     setVisibilityEl : function(el)
387     {
388         this.visibilityEl = el;
389     },
390     
391      /**
392      * Get the element that will be used to show or hide
393      */
394     getVisibilityEl : function()
395     {
396         if (typeof(this.visibilityEl) == 'object') {
397             return this.visibilityEl;
398         }
399         
400         if (typeof(this.visibilityEl) == 'string') {
401             return this.visibilityEl == 'parent' ? this.parent().getEl() : this.getEl();
402         }
403         
404         return this.getEl();
405     },
406     
407     /**
408      * Show a component - removes 'hidden' class
409      */
410     show : function()
411     {
412         if(!this.getVisibilityEl()){
413             return;
414         }
415          
416         this.getVisibilityEl().removeClass(['hidden','d-none']);
417         
418         this.fireEvent('show', this);
419         
420         
421     },
422     /**
423      * Hide a component - adds 'hidden' class
424      */
425     hide: function()
426     {
427         if(!this.getVisibilityEl()){
428             return;
429         }
430         
431         this.getVisibilityEl().addClass(['hidden','d-none']);
432         
433         this.fireEvent('hide', this);
434         
435     }
436 });
437
438  /*
439  * - LGPL
440  *
441  * Body
442  *
443  */
444
445 /**
446  * @class Roo.bootstrap.Body
447  * @extends Roo.bootstrap.Component
448  * Bootstrap Body class
449  *
450  * @constructor
451  * Create a new body
452  * @param {Object} config The config object
453  */
454
455 Roo.bootstrap.Body = function(config){
456
457     config = config || {};
458
459     Roo.bootstrap.Body.superclass.constructor.call(this, config);
460     this.el = Roo.get(config.el ? config.el : document.body );
461     if (this.cls && this.cls.length) {
462         Roo.get(document.body).addClass(this.cls);
463     }
464 };
465
466 Roo.extend(Roo.bootstrap.Body, Roo.bootstrap.Component,  {
467
468     is_body : true,// just to make sure it's constructed?
469
470         autoCreate : {
471         cls: 'container'
472     },
473     onRender : function(ct, position)
474     {
475        /* Roo.log("Roo.bootstrap.Body - onRender");
476         if (this.cls && this.cls.length) {
477             Roo.get(document.body).addClass(this.cls);
478         }
479         // style??? xttr???
480         */
481     }
482
483
484
485
486 });
487 /*
488  * - LGPL
489  *
490  * button group
491  * 
492  */
493
494
495 /**
496  * @class Roo.bootstrap.ButtonGroup
497  * @extends Roo.bootstrap.Component
498  * Bootstrap ButtonGroup class
499  * @cfg {String} size lg | sm | xs (default empty normal)
500  * @cfg {String} align vertical | justified  (default none)
501  * @cfg {String} direction up | down (default down)
502  * @cfg {Boolean} toolbar false | true
503  * @cfg {Boolean} btn true | false
504  * 
505  * 
506  * @constructor
507  * Create a new Input
508  * @param {Object} config The config object
509  */
510
511 Roo.bootstrap.ButtonGroup = function(config){
512     Roo.bootstrap.ButtonGroup.superclass.constructor.call(this, config);
513 };
514
515 Roo.extend(Roo.bootstrap.ButtonGroup, Roo.bootstrap.Component,  {
516     
517     size: '',
518     align: '',
519     direction: '',
520     toolbar: false,
521     btn: true,
522
523     getAutoCreate : function(){
524         var cfg = {
525             cls: 'btn-group',
526             html : null
527         };
528         
529         cfg.html = this.html || cfg.html;
530         
531         if (this.toolbar) {
532             cfg = {
533                 cls: 'btn-toolbar',
534                 html: null
535             };
536             
537             return cfg;
538         }
539         
540         if (['vertical','justified'].indexOf(this.align)!==-1) {
541             cfg.cls = 'btn-group-' + this.align;
542             
543             if (this.align == 'justified') {
544                 console.log(this.items);
545             }
546         }
547         
548         if (['lg','sm','xs'].indexOf(this.size)!==-1) {
549             cfg.cls += ' btn-group-' + this.size;
550         }
551         
552         if (this.direction == 'up') {
553             cfg.cls += ' dropup' ;
554         }
555         
556         return cfg;
557     },
558     /**
559      * Add a button to the group (similar to NavItem API.)
560      */
561     addItem : function(cfg)
562     {
563         var cn = new Roo.bootstrap.Button(cfg);
564         //this.register(cn);
565         cn.parentId = this.id;
566         cn.onRender(this.el, null);
567         return cn;
568     }
569    
570 });
571
572  /*
573  * - LGPL
574  *
575  * button
576  * 
577  */
578
579 /**
580  * @class Roo.bootstrap.Button
581  * @extends Roo.bootstrap.Component
582  * Bootstrap Button class
583  * @cfg {String} html The button content
584  * @cfg {String} weight (default | primary | secondary | success | info | warning | danger | link ) default
585  * @cfg {String} badge_weight (default | primary | secondary | success | info | warning | danger | link ) default (same as button)
586  * @cfg {Boolean} outline default false (except for weight=default which emulates old behaveiour with an outline)
587  * @cfg {String} size ( lg | sm | xs)
588  * @cfg {String} tag ( a | input | submit)
589  * @cfg {String} href empty or href
590  * @cfg {Boolean} disabled default false;
591  * @cfg {Boolean} isClose default false;
592  * @cfg {String} glyphicon depricated - use fa
593  * @cfg {String} fa fontawesome icon - eg. 'comment' - without the fa/fas etc..
594  * @cfg {String} badge text for badge
595  * @cfg {String} theme (default|glow)  
596  * @cfg {Boolean} inverse dark themed version
597  * @cfg {Boolean} toggle is it a slidy toggle button
598  * @cfg {Boolean} pressed (true|false) default null - if the button ahs active state
599  * @cfg {String} ontext text for on slidy toggle state
600  * @cfg {String} offtext text for off slidy toggle state
601  * @cfg {Boolean} preventDefault  default true (stop click event triggering the URL if it's a link.)
602  * @cfg {Boolean} removeClass remove the standard class..
603  * @cfg {String} target  target for a href. (_self|_blank|_parent|_top| other)
604  * 
605  * @constructor
606  * Create a new button
607  * @param {Object} config The config object
608  */
609
610
611 Roo.bootstrap.Button = function(config){
612     Roo.bootstrap.Button.superclass.constructor.call(this, config);
613     this.weightClass = ["btn-default btn-outline-secondary", 
614                        "btn-primary", 
615                        "btn-success", 
616                        "btn-info", 
617                        "btn-warning",
618                        "btn-danger",
619                        "btn-link"
620                       ],  
621     this.addEvents({
622         // raw events
623         /**
624          * @event click
625          * When a butotn is pressed
626          * @param {Roo.bootstrap.Button} btn
627          * @param {Roo.EventObject} e
628          */
629         "click" : true,
630          /**
631          * @event toggle
632          * After the button has been toggles
633          * @param {Roo.bootstrap.Button} btn
634          * @param {Roo.EventObject} e
635          * @param {boolean} pressed (also available as button.pressed)
636          */
637         "toggle" : true
638     });
639 };
640
641 Roo.extend(Roo.bootstrap.Button, Roo.bootstrap.Component,  {
642     html: false,
643     active: false,
644     weight: '',
645     badge_weight: '',
646     outline : false,
647     size: '',
648     tag: 'button',
649     href: '',
650     disabled: false,
651     isClose: false,
652     glyphicon: '',
653     fa: '',
654     badge: '',
655     theme: 'default',
656     inverse: false,
657     
658     toggle: false,
659     ontext: 'ON',
660     offtext: 'OFF',
661     defaulton: true,
662     preventDefault: true,
663     removeClass: false,
664     name: false,
665     target: false,
666      
667     pressed : null,
668      
669     
670     getAutoCreate : function(){
671         
672         var cfg = {
673             tag : 'button',
674             cls : 'roo-button',
675             html: ''
676         };
677         
678         if (['a', 'button', 'input', 'submit'].indexOf(this.tag) < 0) {
679             throw "Invalid value for tag: " + this.tag + ". must be a, button, input or submit.";
680             this.tag = 'button';
681         } else {
682             cfg.tag = this.tag;
683         }
684         cfg.html = '<span class="roo-button-text">' + (this.html || cfg.html) + '</span>';
685         
686         if (this.toggle == true) {
687             cfg={
688                 tag: 'div',
689                 cls: 'slider-frame roo-button',
690                 cn: [
691                     {
692                         tag: 'span',
693                         'data-on-text':'ON',
694                         'data-off-text':'OFF',
695                         cls: 'slider-button',
696                         html: this.offtext
697                     }
698                 ]
699             };
700             
701             if (['default', 'secondary' , 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
702                 cfg.cls += ' '+this.weight;
703             }
704             
705             return cfg;
706         }
707         
708         if (this.isClose) {
709             cfg.cls += ' close';
710             
711             cfg["aria-hidden"] = true;
712             
713             cfg.html = "&times;";
714             
715             return cfg;
716         }
717         
718          
719         if (this.theme==='default') {
720             cfg.cls = 'btn roo-button';
721             
722             //if (this.parentType != 'Navbar') {
723             this.weight = this.weight.length ?  this.weight : 'default';
724             //}
725             if (['default', 'primary', 'secondary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
726                 
727                 var outline = this.outline || this.weight == 'default' ? 'outline-' : '';
728                 var weight = this.weight == 'default' ? 'secondary' : this.weight;
729                 cfg.cls += ' btn-' + outline + weight;
730                 if (this.weight == 'default') {
731                     // BC
732                     cfg.cls += ' btn-' + this.weight;
733                 }
734             }
735         } else if (this.theme==='glow') {
736             
737             cfg.tag = 'a';
738             cfg.cls = 'btn-glow roo-button';
739             
740             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
741                 
742                 cfg.cls += ' ' + this.weight;
743             }
744         }
745    
746         
747         if (this.inverse) {
748             this.cls += ' inverse';
749         }
750         
751         
752         if (this.active || this.pressed === true) {
753             cfg.cls += ' active';
754         }
755         
756         if (this.disabled) {
757             cfg.disabled = 'disabled';
758         }
759         
760         if (this.items) {
761             Roo.log('changing to ul' );
762             cfg.tag = 'ul';
763             this.glyphicon = 'caret';
764             if (Roo.bootstrap.version == 4) {
765                 this.fa = 'caret-down';
766             }
767             
768         }
769         
770         cfg.cls += this.size.length ? (' btn-' + this.size) : '';
771          
772         //gsRoo.log(this.parentType);
773         if (this.parentType === 'Navbar' && !this.parent().bar) {
774             Roo.log('changing to li?');
775             
776             cfg.tag = 'li';
777             
778             cfg.cls = '';
779             cfg.cn =  [{
780                 tag : 'a',
781                 cls : 'roo-button',
782                 html : this.html,
783                 href : this.href || '#'
784             }];
785             if (this.menu) {
786                 cfg.cn[0].html = this.html  + ' <span class="caret"></span>';
787                 cfg.cls += ' dropdown';
788             }   
789             
790             delete cfg.html;
791             
792         }
793         
794        cfg.cls += this.parentType === 'Navbar' ?  ' navbar-btn' : '';
795         
796         if (this.glyphicon) {
797             cfg.html = ' ' + cfg.html;
798             
799             cfg.cn = [
800                 {
801                     tag: 'span',
802                     cls: 'glyphicon glyphicon-' + this.glyphicon
803                 }
804             ];
805         }
806         if (this.fa) {
807             cfg.html = ' ' + cfg.html;
808             
809             cfg.cn = [
810                 {
811                     tag: 'i',
812                     cls: 'fa fas fa-' + this.fa
813                 }
814             ];
815         }
816         
817         if (this.badge) {
818             cfg.html += ' ';
819             
820             cfg.tag = 'a';
821             
822 //            cfg.cls='btn roo-button';
823             
824             cfg.href=this.href;
825             
826             var value = cfg.html;
827             
828             if(this.glyphicon){
829                 value = {
830                     tag: 'span',
831                     cls: 'glyphicon glyphicon-' + this.glyphicon,
832                     html: this.html
833                 };
834             }
835             if(this.fa){
836                 value = {
837                     tag: 'i',
838                     cls: 'fa fas fa-' + this.fa,
839                     html: this.html
840                 };
841             }
842             
843             var bw = this.badge_weight.length ? this.badge_weight :
844                 (this.weight.length ? this.weight : 'secondary');
845             bw = bw == 'default' ? 'secondary' : bw;
846             
847             cfg.cn = [
848                 value,
849                 {
850                     tag: 'span',
851                     cls: 'badge badge-' + bw,
852                     html: this.badge
853                 }
854             ];
855             
856             cfg.html='';
857         }
858         
859         if (this.menu) {
860             cfg.cls += ' dropdown';
861             cfg.html = typeof(cfg.html) != 'undefined' ?
862                     cfg.html + ' <span class="caret"></span>' : '<span class="caret"></span>';
863         }
864         
865         if (cfg.tag !== 'a' && this.href !== '') {
866             throw "Tag must be a to set href.";
867         } else if (this.href.length > 0) {
868             cfg.href = this.href;
869         }
870         
871         if(this.removeClass){
872             cfg.cls = '';
873         }
874         
875         if(this.target){
876             cfg.target = this.target;
877         }
878         
879         return cfg;
880     },
881     initEvents: function() {
882        // Roo.log('init events?');
883 //        Roo.log(this.el.dom);
884         // add the menu...
885         
886         if (typeof (this.menu) != 'undefined') {
887             this.menu.parentType = this.xtype;
888             this.menu.triggerEl = this.el;
889             this.addxtype(Roo.apply({}, this.menu));
890         }
891
892
893        if (this.el.hasClass('roo-button')) {
894             this.el.on('click', this.onClick, this);
895        } else {
896             this.el.select('.roo-button').on('click', this.onClick, this);
897        }
898        
899        if(this.removeClass){
900            this.el.on('click', this.onClick, this);
901        }
902        
903        this.el.enableDisplayMode();
904         
905     },
906     onClick : function(e)
907     {
908         if (this.disabled) {
909             return;
910         }
911         
912         Roo.log('button on click ');
913         if(this.preventDefault){
914             e.preventDefault();
915         }
916         
917         if (this.pressed === true || this.pressed === false) {
918             this.toggleActive(e);
919         }
920         
921         
922         this.fireEvent('click', this, e);
923     },
924     
925     /**
926      * Enables this button
927      */
928     enable : function()
929     {
930         this.disabled = false;
931         this.el.removeClass('disabled');
932     },
933     
934     /**
935      * Disable this button
936      */
937     disable : function()
938     {
939         this.disabled = true;
940         this.el.addClass('disabled');
941     },
942      /**
943      * sets the active state on/off, 
944      * @param {Boolean} state (optional) Force a particular state
945      */
946     setActive : function(v) {
947         
948         this.el[v ? 'addClass' : 'removeClass']('active');
949         this.pressed = v;
950     },
951      /**
952      * toggles the current active state 
953      */
954     toggleActive : function(e)
955     {
956         this.setActive(!this.pressed);
957         this.fireEvent('toggle', this, e, !this.pressed);
958     },
959      /**
960      * get the current active state
961      * @return {boolean} true if it's active
962      */
963     isActive : function()
964     {
965         return this.el.hasClass('active');
966     },
967     /**
968      * set the text of the first selected button
969      */
970     setText : function(str)
971     {
972         this.el.select('.roo-button-text',true).first().dom.innerHTML = str;
973     },
974     /**
975      * get the text of the first selected button
976      */
977     getText : function()
978     {
979         return this.el.select('.roo-button-text',true).first().dom.innerHTML;
980     },
981     
982     setWeight : function(str)
983     {
984         this.el.removeClass(this.weightClass);
985         this.weight = str;
986         var outline = this.outline ? 'outline-' : '';
987         if (str == 'default') {
988             this.el.addClass('btn-default btn-outline-secondary');        
989             return;
990         }
991         this.el.addClass('btn-' + outline + str);        
992     }
993     
994     
995 });
996
997  /*
998  * - LGPL
999  *
1000  * column
1001  * 
1002  */
1003
1004 /**
1005  * @class Roo.bootstrap.Column
1006  * @extends Roo.bootstrap.Component
1007  * Bootstrap Column class
1008  * @cfg {Number} xs colspan out of 12 for mobile-sized screens or 0 for hidden
1009  * @cfg {Number} sm colspan out of 12 for tablet-sized screens or 0 for hidden
1010  * @cfg {Number} md colspan out of 12 for computer-sized screens or 0 for hidden
1011  * @cfg {Number} lg colspan out of 12 for large computer-sized screens or 0 for hidden
1012  * @cfg {Number} xsoff colspan offset out of 12 for mobile-sized screens or 0 for hidden
1013  * @cfg {Number} smoff colspan offset out of 12 for tablet-sized screens or 0 for hidden
1014  * @cfg {Number} mdoff colspan offset out of 12 for computer-sized screens or 0 for hidden
1015  * @cfg {Number} lgoff colspan offset out of 12 for large computer-sized screens or 0 for hidden
1016  *
1017  * 
1018  * @cfg {Boolean} hidden (true|false) hide the element
1019  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1020  * @cfg {String} fa (ban|check|...) font awesome icon
1021  * @cfg {Number} fasize (1|2|....) font awsome size
1022
1023  * @cfg {String} icon (info-sign|check|...) glyphicon name
1024
1025  * @cfg {String} html content of column.
1026  * 
1027  * @constructor
1028  * Create a new Column
1029  * @param {Object} config The config object
1030  */
1031
1032 Roo.bootstrap.Column = function(config){
1033     Roo.bootstrap.Column.superclass.constructor.call(this, config);
1034 };
1035
1036 Roo.extend(Roo.bootstrap.Column, Roo.bootstrap.Component,  {
1037     
1038     xs: false,
1039     sm: false,
1040     md: false,
1041     lg: false,
1042     xsoff: false,
1043     smoff: false,
1044     mdoff: false,
1045     lgoff: false,
1046     html: '',
1047     offset: 0,
1048     alert: false,
1049     fa: false,
1050     icon : false,
1051     hidden : false,
1052     fasize : 1,
1053     
1054     getAutoCreate : function(){
1055         var cfg = Roo.apply({}, Roo.bootstrap.Column.superclass.getAutoCreate.call(this));
1056         
1057         cfg = {
1058             tag: 'div',
1059             cls: 'column'
1060         };
1061         
1062         var settings=this;
1063         ['xs','sm','md','lg'].map(function(size){
1064             //Roo.log( size + ':' + settings[size]);
1065             
1066             if (settings[size+'off'] !== false) {
1067                 cfg.cls += ' col-' + size + '-offset-' + settings[size+'off'] ;
1068             }
1069             
1070             if (settings[size] === false) {
1071                 return;
1072             }
1073             
1074             if (!settings[size]) { // 0 = hidden
1075                 cfg.cls += ' hidden-' + size;
1076                 return;
1077             }
1078             cfg.cls += ' col-' + size + '-' + settings[size];
1079             
1080         });
1081         
1082         if (this.hidden) {
1083             cfg.cls += ' hidden';
1084         }
1085         
1086         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1087             cfg.cls +=' alert alert-' + this.alert;
1088         }
1089         
1090         
1091         if (this.html.length) {
1092             cfg.html = this.html;
1093         }
1094         if (this.fa) {
1095             var fasize = '';
1096             if (this.fasize > 1) {
1097                 fasize = ' fa-' + this.fasize + 'x';
1098             }
1099             cfg.html = '<i class="fa fa-'+this.fa + fasize + '"></i>' + (cfg.html || '');
1100             
1101             
1102         }
1103         if (this.icon) {
1104             cfg.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' +  (cfg.html || '');
1105         }
1106         
1107         return cfg;
1108     }
1109    
1110 });
1111
1112  
1113
1114  /*
1115  * - LGPL
1116  *
1117  * page container.
1118  * 
1119  */
1120
1121
1122 /**
1123  * @class Roo.bootstrap.Container
1124  * @extends Roo.bootstrap.Component
1125  * Bootstrap Container class
1126  * @cfg {Boolean} jumbotron is it a jumbotron element
1127  * @cfg {String} html content of element
1128  * @cfg {String} well (lg|sm|md) a well, large, small or medium.
1129  * @cfg {String} panel (default|primary|success|info|warning|danger) render as panel  - type - primary/success.....
1130  * @cfg {String} header content of header (for panel)
1131  * @cfg {String} footer content of footer (for panel)
1132  * @cfg {String} sticky (footer|wrap|push) block to use as footer or body- needs css-bootstrap/sticky-footer.css
1133  * @cfg {String} tag (header|aside|section) type of HTML tag.
1134  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1135  * @cfg {String} fa font awesome icon
1136  * @cfg {String} icon (info-sign|check|...) glyphicon name
1137  * @cfg {Boolean} hidden (true|false) hide the element
1138  * @cfg {Boolean} expandable (true|false) default false
1139  * @cfg {Boolean} expanded (true|false) default true
1140  * @cfg {String} rheader contet on the right of header
1141  * @cfg {Boolean} clickable (true|false) default false
1142
1143  *     
1144  * @constructor
1145  * Create a new Container
1146  * @param {Object} config The config object
1147  */
1148
1149 Roo.bootstrap.Container = function(config){
1150     Roo.bootstrap.Container.superclass.constructor.call(this, config);
1151     
1152     this.addEvents({
1153         // raw events
1154          /**
1155          * @event expand
1156          * After the panel has been expand
1157          * 
1158          * @param {Roo.bootstrap.Container} this
1159          */
1160         "expand" : true,
1161         /**
1162          * @event collapse
1163          * After the panel has been collapsed
1164          * 
1165          * @param {Roo.bootstrap.Container} this
1166          */
1167         "collapse" : true,
1168         /**
1169          * @event click
1170          * When a element is chick
1171          * @param {Roo.bootstrap.Container} this
1172          * @param {Roo.EventObject} e
1173          */
1174         "click" : true
1175     });
1176 };
1177
1178 Roo.extend(Roo.bootstrap.Container, Roo.bootstrap.Component,  {
1179     
1180     jumbotron : false,
1181     well: '',
1182     panel : '',
1183     header: '',
1184     footer : '',
1185     sticky: '',
1186     tag : false,
1187     alert : false,
1188     fa: false,
1189     icon : false,
1190     expandable : false,
1191     rheader : '',
1192     expanded : true,
1193     clickable: false,
1194   
1195      
1196     getChildContainer : function() {
1197         
1198         if(!this.el){
1199             return false;
1200         }
1201         
1202         if (this.panel.length) {
1203             return this.el.select('.panel-body',true).first();
1204         }
1205         
1206         return this.el;
1207     },
1208     
1209     
1210     getAutoCreate : function(){
1211         
1212         var cfg = {
1213             tag : this.tag || 'div',
1214             html : '',
1215             cls : ''
1216         };
1217         if (this.jumbotron) {
1218             cfg.cls = 'jumbotron';
1219         }
1220         
1221         
1222         
1223         // - this is applied by the parent..
1224         //if (this.cls) {
1225         //    cfg.cls = this.cls + '';
1226         //}
1227         
1228         if (this.sticky.length) {
1229             
1230             var bd = Roo.get(document.body);
1231             if (!bd.hasClass('bootstrap-sticky')) {
1232                 bd.addClass('bootstrap-sticky');
1233                 Roo.select('html',true).setStyle('height', '100%');
1234             }
1235              
1236             cfg.cls += 'bootstrap-sticky-' + this.sticky;
1237         }
1238         
1239         
1240         if (this.well.length) {
1241             switch (this.well) {
1242                 case 'lg':
1243                 case 'sm':
1244                     cfg.cls +=' well well-' +this.well;
1245                     break;
1246                 default:
1247                     cfg.cls +=' well';
1248                     break;
1249             }
1250         }
1251         
1252         if (this.hidden) {
1253             cfg.cls += ' hidden';
1254         }
1255         
1256         
1257         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1258             cfg.cls +=' alert alert-' + this.alert;
1259         }
1260         
1261         var body = cfg;
1262         
1263         if (this.panel.length) {
1264             cfg.cls += ' panel panel-' + this.panel;
1265             cfg.cn = [];
1266             if (this.header.length) {
1267                 
1268                 var h = [];
1269                 
1270                 if(this.expandable){
1271                     
1272                     cfg.cls = cfg.cls + ' expandable';
1273                     
1274                     h.push({
1275                         tag: 'i',
1276                         cls: (this.expanded ? 'fa fa-minus' : 'fa fa-plus') 
1277                     });
1278                     
1279                 }
1280                 
1281                 h.push(
1282                     {
1283                         tag: 'span',
1284                         cls : 'panel-title',
1285                         html : (this.expandable ? '&nbsp;' : '') + this.header
1286                     },
1287                     {
1288                         tag: 'span',
1289                         cls: 'panel-header-right',
1290                         html: this.rheader
1291                     }
1292                 );
1293                 
1294                 cfg.cn.push({
1295                     cls : 'panel-heading',
1296                     style : this.expandable ? 'cursor: pointer' : '',
1297                     cn : h
1298                 });
1299                 
1300             }
1301             
1302             body = false;
1303             cfg.cn.push({
1304                 cls : 'panel-body' + (this.expanded ? '' : ' hide'),
1305                 html : this.html
1306             });
1307             
1308             
1309             if (this.footer.length) {
1310                 cfg.cn.push({
1311                     cls : 'panel-footer',
1312                     html : this.footer
1313                     
1314                 });
1315             }
1316             
1317         }
1318         
1319         if (body) {
1320             body.html = this.html || cfg.html;
1321             // prefix with the icons..
1322             if (this.fa) {
1323                 body.html = '<i class="fa fa-'+this.fa + '"></i>' + body.html ;
1324             }
1325             if (this.icon) {
1326                 body.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' + body.html ;
1327             }
1328             
1329             
1330         }
1331         if ((!this.cls || !this.cls.length) && (!cfg.cls || !cfg.cls.length)) {
1332             cfg.cls =  'container';
1333         }
1334         
1335         return cfg;
1336     },
1337     
1338     initEvents: function() 
1339     {
1340         if(this.expandable){
1341             var headerEl = this.headerEl();
1342         
1343             if(headerEl){
1344                 headerEl.on('click', this.onToggleClick, this);
1345             }
1346         }
1347         
1348         if(this.clickable){
1349             this.el.on('click', this.onClick, this);
1350         }
1351         
1352     },
1353     
1354     onToggleClick : function()
1355     {
1356         var headerEl = this.headerEl();
1357         
1358         if(!headerEl){
1359             return;
1360         }
1361         
1362         if(this.expanded){
1363             this.collapse();
1364             return;
1365         }
1366         
1367         this.expand();
1368     },
1369     
1370     expand : function()
1371     {
1372         if(this.fireEvent('expand', this)) {
1373             
1374             this.expanded = true;
1375             
1376             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).show();
1377             
1378             this.el.select('.panel-body',true).first().removeClass('hide');
1379             
1380             var toggleEl = this.toggleEl();
1381
1382             if(!toggleEl){
1383                 return;
1384             }
1385
1386             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-minus']);
1387         }
1388         
1389     },
1390     
1391     collapse : function()
1392     {
1393         if(this.fireEvent('collapse', this)) {
1394             
1395             this.expanded = false;
1396             
1397             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).hide();
1398             this.el.select('.panel-body',true).first().addClass('hide');
1399         
1400             var toggleEl = this.toggleEl();
1401
1402             if(!toggleEl){
1403                 return;
1404             }
1405
1406             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-plus']);
1407         }
1408     },
1409     
1410     toggleEl : function()
1411     {
1412         if(!this.el || !this.panel.length || !this.header.length || !this.expandable){
1413             return;
1414         }
1415         
1416         return this.el.select('.panel-heading .fa',true).first();
1417     },
1418     
1419     headerEl : function()
1420     {
1421         if(!this.el || !this.panel.length || !this.header.length){
1422             return;
1423         }
1424         
1425         return this.el.select('.panel-heading',true).first()
1426     },
1427     
1428     bodyEl : function()
1429     {
1430         if(!this.el || !this.panel.length){
1431             return;
1432         }
1433         
1434         return this.el.select('.panel-body',true).first()
1435     },
1436     
1437     titleEl : function()
1438     {
1439         if(!this.el || !this.panel.length || !this.header.length){
1440             return;
1441         }
1442         
1443         return this.el.select('.panel-title',true).first();
1444     },
1445     
1446     setTitle : function(v)
1447     {
1448         var titleEl = this.titleEl();
1449         
1450         if(!titleEl){
1451             return;
1452         }
1453         
1454         titleEl.dom.innerHTML = v;
1455     },
1456     
1457     getTitle : function()
1458     {
1459         
1460         var titleEl = this.titleEl();
1461         
1462         if(!titleEl){
1463             return '';
1464         }
1465         
1466         return titleEl.dom.innerHTML;
1467     },
1468     
1469     setRightTitle : function(v)
1470     {
1471         var t = this.el.select('.panel-header-right',true).first();
1472         
1473         if(!t){
1474             return;
1475         }
1476         
1477         t.dom.innerHTML = v;
1478     },
1479     
1480     onClick : function(e)
1481     {
1482         e.preventDefault();
1483         
1484         this.fireEvent('click', this, e);
1485     }
1486 });
1487
1488  /*
1489  * - LGPL
1490  *
1491  * image
1492  * 
1493  */
1494
1495
1496 /**
1497  * @class Roo.bootstrap.Img
1498  * @extends Roo.bootstrap.Component
1499  * Bootstrap Img class
1500  * @cfg {Boolean} imgResponsive false | true
1501  * @cfg {String} border rounded | circle | thumbnail
1502  * @cfg {String} src image source
1503  * @cfg {String} alt image alternative text
1504  * @cfg {String} href a tag href
1505  * @cfg {String} target (_self|_blank|_parent|_top)target for a href.
1506  * @cfg {String} xsUrl xs image source
1507  * @cfg {String} smUrl sm image source
1508  * @cfg {String} mdUrl md image source
1509  * @cfg {String} lgUrl lg image source
1510  * 
1511  * @constructor
1512  * Create a new Input
1513  * @param {Object} config The config object
1514  */
1515
1516 Roo.bootstrap.Img = function(config){
1517     Roo.bootstrap.Img.superclass.constructor.call(this, config);
1518     
1519     this.addEvents({
1520         // img events
1521         /**
1522          * @event click
1523          * The img click event for the img.
1524          * @param {Roo.EventObject} e
1525          */
1526         "click" : true
1527     });
1528 };
1529
1530 Roo.extend(Roo.bootstrap.Img, Roo.bootstrap.Component,  {
1531     
1532     imgResponsive: true,
1533     border: '',
1534     src: 'about:blank',
1535     href: false,
1536     target: false,
1537     xsUrl: '',
1538     smUrl: '',
1539     mdUrl: '',
1540     lgUrl: '',
1541
1542     getAutoCreate : function()
1543     {   
1544         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
1545             return this.createSingleImg();
1546         }
1547         
1548         var cfg = {
1549             tag: 'div',
1550             cls: 'roo-image-responsive-group',
1551             cn: []
1552         };
1553         var _this = this;
1554         
1555         Roo.each(['xs', 'sm', 'md', 'lg'], function(size){
1556             
1557             if(!_this[size + 'Url']){
1558                 return;
1559             }
1560             
1561             var img = {
1562                 tag: 'img',
1563                 cls: (_this.imgResponsive) ? 'img-responsive' : '',
1564                 html: _this.html || cfg.html,
1565                 src: _this[size + 'Url']
1566             };
1567             
1568             img.cls += ' roo-image-responsive-' + size;
1569             
1570             var s = ['xs', 'sm', 'md', 'lg'];
1571             
1572             s.splice(s.indexOf(size), 1);
1573             
1574             Roo.each(s, function(ss){
1575                 img.cls += ' hidden-' + ss;
1576             });
1577             
1578             if (['rounded','circle','thumbnail'].indexOf(_this.border)>-1) {
1579                 cfg.cls += ' img-' + _this.border;
1580             }
1581             
1582             if(_this.alt){
1583                 cfg.alt = _this.alt;
1584             }
1585             
1586             if(_this.href){
1587                 var a = {
1588                     tag: 'a',
1589                     href: _this.href,
1590                     cn: [
1591                         img
1592                     ]
1593                 };
1594
1595                 if(this.target){
1596                     a.target = _this.target;
1597                 }
1598             }
1599             
1600             cfg.cn.push((_this.href) ? a : img);
1601             
1602         });
1603         
1604         return cfg;
1605     },
1606     
1607     createSingleImg : function()
1608     {
1609         var cfg = {
1610             tag: 'img',
1611             cls: (this.imgResponsive) ? 'img-responsive' : '',
1612             html : null,
1613             src : 'about:blank'  // just incase src get's set to undefined?!?
1614         };
1615         
1616         cfg.html = this.html || cfg.html;
1617         
1618         cfg.src = this.src || cfg.src;
1619         
1620         if (['rounded','circle','thumbnail'].indexOf(this.border)>-1) {
1621             cfg.cls += ' img-' + this.border;
1622         }
1623         
1624         if(this.alt){
1625             cfg.alt = this.alt;
1626         }
1627         
1628         if(this.href){
1629             var a = {
1630                 tag: 'a',
1631                 href: this.href,
1632                 cn: [
1633                     cfg
1634                 ]
1635             };
1636             
1637             if(this.target){
1638                 a.target = this.target;
1639             }
1640             
1641         }
1642         
1643         return (this.href) ? a : cfg;
1644     },
1645     
1646     initEvents: function() 
1647     {
1648         if(!this.href){
1649             this.el.on('click', this.onClick, this);
1650         }
1651         
1652     },
1653     
1654     onClick : function(e)
1655     {
1656         Roo.log('img onclick');
1657         this.fireEvent('click', this, e);
1658     },
1659     /**
1660      * Sets the url of the image - used to update it
1661      * @param {String} url the url of the image
1662      */
1663     
1664     setSrc : function(url)
1665     {
1666         this.src =  url;
1667         
1668         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
1669             this.el.dom.src =  url;
1670             return;
1671         }
1672         
1673         this.el.select('img', true).first().dom.src =  url;
1674     }
1675     
1676     
1677    
1678 });
1679
1680  /*
1681  * - LGPL
1682  *
1683  * image
1684  * 
1685  */
1686
1687
1688 /**
1689  * @class Roo.bootstrap.Link
1690  * @extends Roo.bootstrap.Component
1691  * Bootstrap Link Class
1692  * @cfg {String} alt image alternative text
1693  * @cfg {String} href a tag href
1694  * @cfg {String} target (_self|_blank|_parent|_top) target for a href.
1695  * @cfg {String} html the content of the link.
1696  * @cfg {String} anchor name for the anchor link
1697  * @cfg {String} fa - favicon
1698
1699  * @cfg {Boolean} preventDefault (true | false) default false
1700
1701  * 
1702  * @constructor
1703  * Create a new Input
1704  * @param {Object} config The config object
1705  */
1706
1707 Roo.bootstrap.Link = function(config){
1708     Roo.bootstrap.Link.superclass.constructor.call(this, config);
1709     
1710     this.addEvents({
1711         // img events
1712         /**
1713          * @event click
1714          * The img click event for the img.
1715          * @param {Roo.EventObject} e
1716          */
1717         "click" : true
1718     });
1719 };
1720
1721 Roo.extend(Roo.bootstrap.Link, Roo.bootstrap.Component,  {
1722     
1723     href: false,
1724     target: false,
1725     preventDefault: false,
1726     anchor : false,
1727     alt : false,
1728     fa: false,
1729
1730
1731     getAutoCreate : function()
1732     {
1733         var html = this.html || '';
1734         
1735         if (this.fa !== false) {
1736             html = '<i class="fa fa-' + this.fa + '"></i>';
1737         }
1738         var cfg = {
1739             tag: 'a'
1740         };
1741         // anchor's do not require html/href...
1742         if (this.anchor === false) {
1743             cfg.html = html;
1744             cfg.href = this.href || '#';
1745         } else {
1746             cfg.name = this.anchor;
1747             if (this.html !== false || this.fa !== false) {
1748                 cfg.html = html;
1749             }
1750             if (this.href !== false) {
1751                 cfg.href = this.href;
1752             }
1753         }
1754         
1755         if(this.alt !== false){
1756             cfg.alt = this.alt;
1757         }
1758         
1759         
1760         if(this.target !== false) {
1761             cfg.target = this.target;
1762         }
1763         
1764         return cfg;
1765     },
1766     
1767     initEvents: function() {
1768         
1769         if(!this.href || this.preventDefault){
1770             this.el.on('click', this.onClick, this);
1771         }
1772     },
1773     
1774     onClick : function(e)
1775     {
1776         if(this.preventDefault){
1777             e.preventDefault();
1778         }
1779         //Roo.log('img onclick');
1780         this.fireEvent('click', this, e);
1781     }
1782    
1783 });
1784
1785  /*
1786  * - LGPL
1787  *
1788  * header
1789  * 
1790  */
1791
1792 /**
1793  * @class Roo.bootstrap.Header
1794  * @extends Roo.bootstrap.Component
1795  * Bootstrap Header class
1796  * @cfg {String} html content of header
1797  * @cfg {Number} level (1|2|3|4|5|6) default 1
1798  * 
1799  * @constructor
1800  * Create a new Header
1801  * @param {Object} config The config object
1802  */
1803
1804
1805 Roo.bootstrap.Header  = function(config){
1806     Roo.bootstrap.Header.superclass.constructor.call(this, config);
1807 };
1808
1809 Roo.extend(Roo.bootstrap.Header, Roo.bootstrap.Component,  {
1810     
1811     //href : false,
1812     html : false,
1813     level : 1,
1814     
1815     
1816     
1817     getAutoCreate : function(){
1818         
1819         
1820         
1821         var cfg = {
1822             tag: 'h' + (1 *this.level),
1823             html: this.html || ''
1824         } ;
1825         
1826         return cfg;
1827     }
1828    
1829 });
1830
1831  
1832
1833  /*
1834  * Based on:
1835  * Ext JS Library 1.1.1
1836  * Copyright(c) 2006-2007, Ext JS, LLC.
1837  *
1838  * Originally Released Under LGPL - original licence link has changed is not relivant.
1839  *
1840  * Fork - LGPL
1841  * <script type="text/javascript">
1842  */
1843  
1844 /**
1845  * @class Roo.bootstrap.MenuMgr
1846  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
1847  * @singleton
1848  */
1849 Roo.bootstrap.MenuMgr = function(){
1850    var menus, active, groups = {}, attached = false, lastShow = new Date();
1851
1852    // private - called when first menu is created
1853    function init(){
1854        menus = {};
1855        active = new Roo.util.MixedCollection();
1856        Roo.get(document).addKeyListener(27, function(){
1857            if(active.length > 0){
1858                hideAll();
1859            }
1860        });
1861    }
1862
1863    // private
1864    function hideAll(){
1865        if(active && active.length > 0){
1866            var c = active.clone();
1867            c.each(function(m){
1868                m.hide();
1869            });
1870        }
1871    }
1872
1873    // private
1874    function onHide(m){
1875        active.remove(m);
1876        if(active.length < 1){
1877            Roo.get(document).un("mouseup", onMouseDown);
1878             
1879            attached = false;
1880        }
1881    }
1882
1883    // private
1884    function onShow(m){
1885        var last = active.last();
1886        lastShow = new Date();
1887        active.add(m);
1888        if(!attached){
1889           Roo.get(document).on("mouseup", onMouseDown);
1890            
1891            attached = true;
1892        }
1893        if(m.parentMenu){
1894           //m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
1895           m.parentMenu.activeChild = m;
1896        }else if(last && last.isVisible()){
1897           //m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
1898        }
1899    }
1900
1901    // private
1902    function onBeforeHide(m){
1903        if(m.activeChild){
1904            m.activeChild.hide();
1905        }
1906        if(m.autoHideTimer){
1907            clearTimeout(m.autoHideTimer);
1908            delete m.autoHideTimer;
1909        }
1910    }
1911
1912    // private
1913    function onBeforeShow(m){
1914        var pm = m.parentMenu;
1915        if(!pm && !m.allowOtherMenus){
1916            hideAll();
1917        }else if(pm && pm.activeChild && active != m){
1918            pm.activeChild.hide();
1919        }
1920    }
1921
1922    // private this should really trigger on mouseup..
1923    function onMouseDown(e){
1924         Roo.log("on Mouse Up");
1925         
1926         if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".dropdown-menu") && !e.getTarget('.user-menu')){
1927             Roo.log("MenuManager hideAll");
1928             hideAll();
1929             e.stopEvent();
1930         }
1931         
1932         
1933    }
1934
1935    // private
1936    function onBeforeCheck(mi, state){
1937        if(state){
1938            var g = groups[mi.group];
1939            for(var i = 0, l = g.length; i < l; i++){
1940                if(g[i] != mi){
1941                    g[i].setChecked(false);
1942                }
1943            }
1944        }
1945    }
1946
1947    return {
1948
1949        /**
1950         * Hides all menus that are currently visible
1951         */
1952        hideAll : function(){
1953             hideAll();  
1954        },
1955
1956        // private
1957        register : function(menu){
1958            if(!menus){
1959                init();
1960            }
1961            menus[menu.id] = menu;
1962            menu.on("beforehide", onBeforeHide);
1963            menu.on("hide", onHide);
1964            menu.on("beforeshow", onBeforeShow);
1965            menu.on("show", onShow);
1966            var g = menu.group;
1967            if(g && menu.events["checkchange"]){
1968                if(!groups[g]){
1969                    groups[g] = [];
1970                }
1971                groups[g].push(menu);
1972                menu.on("checkchange", onCheck);
1973            }
1974        },
1975
1976         /**
1977          * Returns a {@link Roo.menu.Menu} object
1978          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
1979          * be used to generate and return a new Menu instance.
1980          */
1981        get : function(menu){
1982            if(typeof menu == "string"){ // menu id
1983                return menus[menu];
1984            }else if(menu.events){  // menu instance
1985                return menu;
1986            }
1987            /*else if(typeof menu.length == 'number'){ // array of menu items?
1988                return new Roo.bootstrap.Menu({items:menu});
1989            }else{ // otherwise, must be a config
1990                return new Roo.bootstrap.Menu(menu);
1991            }
1992            */
1993            return false;
1994        },
1995
1996        // private
1997        unregister : function(menu){
1998            delete menus[menu.id];
1999            menu.un("beforehide", onBeforeHide);
2000            menu.un("hide", onHide);
2001            menu.un("beforeshow", onBeforeShow);
2002            menu.un("show", onShow);
2003            var g = menu.group;
2004            if(g && menu.events["checkchange"]){
2005                groups[g].remove(menu);
2006                menu.un("checkchange", onCheck);
2007            }
2008        },
2009
2010        // private
2011        registerCheckable : function(menuItem){
2012            var g = menuItem.group;
2013            if(g){
2014                if(!groups[g]){
2015                    groups[g] = [];
2016                }
2017                groups[g].push(menuItem);
2018                menuItem.on("beforecheckchange", onBeforeCheck);
2019            }
2020        },
2021
2022        // private
2023        unregisterCheckable : function(menuItem){
2024            var g = menuItem.group;
2025            if(g){
2026                groups[g].remove(menuItem);
2027                menuItem.un("beforecheckchange", onBeforeCheck);
2028            }
2029        }
2030    };
2031 }();/*
2032  * - LGPL
2033  *
2034  * menu
2035  * 
2036  */
2037
2038 /**
2039  * @class Roo.bootstrap.Menu
2040  * @extends Roo.bootstrap.Component
2041  * Bootstrap Menu class - container for MenuItems
2042  * @cfg {String} type (dropdown|treeview|submenu) type of menu
2043  * @cfg {bool} hidden  if the menu should be hidden when rendered.
2044  * @cfg {bool} stopEvent (true|false)  Stop event after trigger press (default true)
2045  * @cfg {bool} isLink (true|false)  the menu has link disable auto expand and collaspe (default false)
2046  * 
2047  * @constructor
2048  * Create a new Menu
2049  * @param {Object} config The config object
2050  */
2051
2052
2053 Roo.bootstrap.Menu = function(config){
2054     Roo.bootstrap.Menu.superclass.constructor.call(this, config);
2055     if (this.registerMenu && this.type != 'treeview')  {
2056         Roo.bootstrap.MenuMgr.register(this);
2057     }
2058     
2059     
2060     this.addEvents({
2061         /**
2062          * @event beforeshow
2063          * Fires before this menu is displayed (return false to block)
2064          * @param {Roo.menu.Menu} this
2065          */
2066         beforeshow : true,
2067         /**
2068          * @event beforehide
2069          * Fires before this menu is hidden (return false to block)
2070          * @param {Roo.menu.Menu} this
2071          */
2072         beforehide : true,
2073         /**
2074          * @event show
2075          * Fires after this menu is displayed
2076          * @param {Roo.menu.Menu} this
2077          */
2078         show : true,
2079         /**
2080          * @event hide
2081          * Fires after this menu is hidden
2082          * @param {Roo.menu.Menu} this
2083          */
2084         hide : true,
2085         /**
2086          * @event click
2087          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
2088          * @param {Roo.menu.Menu} this
2089          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2090          * @param {Roo.EventObject} e
2091          */
2092         click : true,
2093         /**
2094          * @event mouseover
2095          * Fires when the mouse is hovering over this menu
2096          * @param {Roo.menu.Menu} this
2097          * @param {Roo.EventObject} e
2098          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2099          */
2100         mouseover : true,
2101         /**
2102          * @event mouseout
2103          * Fires when the mouse exits this menu
2104          * @param {Roo.menu.Menu} this
2105          * @param {Roo.EventObject} e
2106          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2107          */
2108         mouseout : true,
2109         /**
2110          * @event itemclick
2111          * Fires when a menu item contained in this menu is clicked
2112          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
2113          * @param {Roo.EventObject} e
2114          */
2115         itemclick: true
2116     });
2117     this.menuitems = new Roo.util.MixedCollection(false, function(o) { return o.el.id; });
2118 };
2119
2120 Roo.extend(Roo.bootstrap.Menu, Roo.bootstrap.Component,  {
2121     
2122    /// html : false,
2123     //align : '',
2124     triggerEl : false,  // is this set by component builder? -- it should really be fetched from parent()???
2125     type: false,
2126     /**
2127      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
2128      */
2129     registerMenu : true,
2130     
2131     menuItems :false, // stores the menu items..
2132     
2133     hidden:true,
2134         
2135     parentMenu : false,
2136     
2137     stopEvent : true,
2138     
2139     isLink : false,
2140     
2141     getChildContainer : function() {
2142         return this.el;  
2143     },
2144     
2145     getAutoCreate : function(){
2146          
2147         //if (['right'].indexOf(this.align)!==-1) {
2148         //    cfg.cn[1].cls += ' pull-right'
2149         //}
2150         
2151         
2152         var cfg = {
2153             tag : 'ul',
2154             cls : 'dropdown-menu' ,
2155             style : 'z-index:1000'
2156             
2157         };
2158         
2159         if (this.type === 'submenu') {
2160             cfg.cls = 'submenu active';
2161         }
2162         if (this.type === 'treeview') {
2163             cfg.cls = 'treeview-menu';
2164         }
2165         
2166         return cfg;
2167     },
2168     initEvents : function() {
2169         
2170        // Roo.log("ADD event");
2171        // Roo.log(this.triggerEl.dom);
2172         
2173         this.triggerEl.on('click', this.onTriggerClick, this);
2174         
2175         this.triggerEl.on(Roo.isTouch ? 'touchstart' : 'mouseup', this.onTriggerPress, this);
2176         
2177         
2178         if (this.triggerEl.hasClass('nav-item')) {
2179             // dropdown toggle on the 'a' in BS4?
2180             this.triggerEl.select('.nav-link',true).first().addClass('dropdown-toggle');
2181         } else {
2182             this.triggerEl.addClass('dropdown-toggle');
2183         }
2184         if (Roo.isTouch) {
2185             this.el.on('touchstart'  , this.onTouch, this);
2186         }
2187         this.el.on('click' , this.onClick, this);
2188
2189         this.el.on("mouseover", this.onMouseOver, this);
2190         this.el.on("mouseout", this.onMouseOut, this);
2191         
2192     },
2193     
2194     findTargetItem : function(e)
2195     {
2196         var t = e.getTarget(".dropdown-menu-item", this.el,  true);
2197         if(!t){
2198             return false;
2199         }
2200         //Roo.log(t);         Roo.log(t.id);
2201         if(t && t.id){
2202             //Roo.log(this.menuitems);
2203             return this.menuitems.get(t.id);
2204             
2205             //return this.items.get(t.menuItemId);
2206         }
2207         
2208         return false;
2209     },
2210     
2211     onTouch : function(e) 
2212     {
2213         Roo.log("menu.onTouch");
2214         //e.stopEvent(); this make the user popdown broken
2215         this.onClick(e);
2216     },
2217     
2218     onClick : function(e)
2219     {
2220         Roo.log("menu.onClick");
2221         
2222         var t = this.findTargetItem(e);
2223         if(!t || t.isContainer){
2224             return;
2225         }
2226         Roo.log(e);
2227         /*
2228         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
2229             if(t == this.activeItem && t.shouldDeactivate(e)){
2230                 this.activeItem.deactivate();
2231                 delete this.activeItem;
2232                 return;
2233             }
2234             if(t.canActivate){
2235                 this.setActiveItem(t, true);
2236             }
2237             return;
2238             
2239             
2240         }
2241         */
2242        
2243         Roo.log('pass click event');
2244         
2245         t.onClick(e);
2246         
2247         this.fireEvent("click", this, t, e);
2248         
2249         var _this = this;
2250         
2251         if(!t.href.length || t.href == '#'){
2252             (function() { _this.hide(); }).defer(100);
2253         }
2254         
2255     },
2256     
2257     onMouseOver : function(e){
2258         var t  = this.findTargetItem(e);
2259         //Roo.log(t);
2260         //if(t){
2261         //    if(t.canActivate && !t.disabled){
2262         //        this.setActiveItem(t, true);
2263         //    }
2264         //}
2265         
2266         this.fireEvent("mouseover", this, e, t);
2267     },
2268     isVisible : function(){
2269         return !this.hidden;
2270     },
2271     onMouseOut : function(e){
2272         var t  = this.findTargetItem(e);
2273         
2274         //if(t ){
2275         //    if(t == this.activeItem && t.shouldDeactivate(e)){
2276         //        this.activeItem.deactivate();
2277         //        delete this.activeItem;
2278         //    }
2279         //}
2280         this.fireEvent("mouseout", this, e, t);
2281     },
2282     
2283     
2284     /**
2285      * Displays this menu relative to another element
2286      * @param {String/HTMLElement/Roo.Element} element The element to align to
2287      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
2288      * the element (defaults to this.defaultAlign)
2289      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
2290      */
2291     show : function(el, pos, parentMenu)
2292     {
2293         if (false === this.fireEvent("beforeshow", this)) {
2294             Roo.log("show canceled");
2295             return;
2296         }
2297         this.parentMenu = parentMenu;
2298         if(!this.el){
2299             this.render();
2300         }
2301         
2302         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
2303     },
2304      /**
2305      * Displays this menu at a specific xy position
2306      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
2307      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
2308      */
2309     showAt : function(xy, parentMenu, /* private: */_e){
2310         this.parentMenu = parentMenu;
2311         if(!this.el){
2312             this.render();
2313         }
2314         if(_e !== false){
2315             this.fireEvent("beforeshow", this);
2316             //xy = this.el.adjustForConstraints(xy);
2317         }
2318         
2319         //this.el.show();
2320         this.hideMenuItems();
2321         this.hidden = false;
2322         this.triggerEl.addClass('open');
2323         this.el.addClass('show');
2324         
2325         // reassign x when hitting right
2326         if(this.el.getWidth() + xy[0] >= Roo.lib.Dom.getViewWidth()){
2327             xy[0] = xy[0] - this.el.getWidth() + this.triggerEl.getWidth();
2328         }
2329         
2330         // reassign y when hitting bottom
2331         if(this.el.getHeight() + xy[1] >= Roo.lib.Dom.getViewHeight()){
2332             xy[1] = xy[1] - this.el.getHeight() - this.triggerEl.getHeight();
2333         }
2334         
2335         // but the list may align on trigger left or trigger top... should it be a properity?
2336         
2337         if(this.el.getStyle('top') != 'auto' && this.el.getStyle('top').slice(-1) != "%"){
2338             this.el.setXY(xy);
2339         }
2340         
2341         this.focus();
2342         this.fireEvent("show", this);
2343     },
2344     
2345     focus : function(){
2346         return;
2347         if(!this.hidden){
2348             this.doFocus.defer(50, this);
2349         }
2350     },
2351
2352     doFocus : function(){
2353         if(!this.hidden){
2354             this.focusEl.focus();
2355         }
2356     },
2357
2358     /**
2359      * Hides this menu and optionally all parent menus
2360      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
2361      */
2362     hide : function(deep)
2363     {
2364         if (false === this.fireEvent("beforehide", this)) {
2365             Roo.log("hide canceled");
2366             return;
2367         }
2368         this.hideMenuItems();
2369         if(this.el && this.isVisible()){
2370            
2371             if(this.activeItem){
2372                 this.activeItem.deactivate();
2373                 this.activeItem = null;
2374             }
2375             this.triggerEl.removeClass('open');;
2376             this.el.removeClass('show');
2377             this.hidden = true;
2378             this.fireEvent("hide", this);
2379         }
2380         if(deep === true && this.parentMenu){
2381             this.parentMenu.hide(true);
2382         }
2383     },
2384     
2385     onTriggerClick : function(e)
2386     {
2387         Roo.log('trigger click');
2388         
2389         var target = e.getTarget();
2390         
2391         Roo.log(target.nodeName.toLowerCase());
2392         
2393         if(target.nodeName.toLowerCase() === 'i'){
2394             e.preventDefault();
2395         }
2396         
2397     },
2398     
2399     onTriggerPress  : function(e)
2400     {
2401         Roo.log('trigger press');
2402         //Roo.log(e.getTarget());
2403        // Roo.log(this.triggerEl.dom);
2404        
2405         // trigger only occurs on normal menu's -- if it's a treeview or dropdown... do not hide/show..
2406         var pel = Roo.get(e.getTarget());
2407         if (pel.findParent('.dropdown-menu') || pel.findParent('.treeview-menu') ) {
2408             Roo.log('is treeview or dropdown?');
2409             return;
2410         }
2411         
2412         if(e.getTarget().nodeName.toLowerCase() !== 'i' && this.isLink){
2413             return;
2414         }
2415         
2416         if (this.isVisible()) {
2417             Roo.log('hide');
2418             this.hide();
2419         } else {
2420             Roo.log('show');
2421             this.show(this.triggerEl, '?', false);
2422         }
2423         
2424         if(this.stopEvent || e.getTarget().nodeName.toLowerCase() === 'i'){
2425             e.stopEvent();
2426         }
2427         
2428     },
2429        
2430     
2431     hideMenuItems : function()
2432     {
2433         Roo.log("hide Menu Items");
2434         if (!this.el) { 
2435             return;
2436         }
2437         
2438         this.el.select('.open',true).each(function(aa) {
2439             
2440             aa.removeClass('open');
2441          
2442         });
2443     },
2444     addxtypeChild : function (tree, cntr) {
2445         var comp= Roo.bootstrap.Menu.superclass.addxtypeChild.call(this, tree, cntr);
2446           
2447         this.menuitems.add(comp);
2448         return comp;
2449
2450     },
2451     getEl : function()
2452     {
2453         Roo.log(this.el);
2454         return this.el;
2455     },
2456     
2457     clear : function()
2458     {
2459         this.getEl().dom.innerHTML = '';
2460         this.menuitems.clear();
2461     }
2462 });
2463
2464  
2465  /*
2466  * - LGPL
2467  *
2468  * menu item
2469  * 
2470  */
2471
2472
2473 /**
2474  * @class Roo.bootstrap.MenuItem
2475  * @extends Roo.bootstrap.Component
2476  * Bootstrap MenuItem class
2477  * @cfg {String} html the menu label
2478  * @cfg {String} href the link
2479  * @cfg {Boolean} preventDefault do not trigger A href on clicks (default false).
2480  * @cfg {Boolean} isContainer is it a container - just returns a drop down item..
2481  * @cfg {Boolean} active  used on sidebars to highlight active itesm
2482  * @cfg {String} fa favicon to show on left of menu item.
2483  * @cfg {Roo.bootsrap.Menu} menu the child menu.
2484  * 
2485  * 
2486  * @constructor
2487  * Create a new MenuItem
2488  * @param {Object} config The config object
2489  */
2490
2491
2492 Roo.bootstrap.MenuItem = function(config){
2493     Roo.bootstrap.MenuItem.superclass.constructor.call(this, config);
2494     this.addEvents({
2495         // raw events
2496         /**
2497          * @event click
2498          * The raw click event for the entire grid.
2499          * @param {Roo.bootstrap.MenuItem} this
2500          * @param {Roo.EventObject} e
2501          */
2502         "click" : true
2503     });
2504 };
2505
2506 Roo.extend(Roo.bootstrap.MenuItem, Roo.bootstrap.Component,  {
2507     
2508     href : false,
2509     html : false,
2510     preventDefault: false,
2511     isContainer : false,
2512     active : false,
2513     fa: false,
2514     
2515     getAutoCreate : function(){
2516         
2517         if(this.isContainer){
2518             return {
2519                 tag: 'li',
2520                 cls: 'dropdown-menu-item '
2521             };
2522         }
2523         var ctag = {
2524             tag: 'span',
2525             html: 'Link'
2526         };
2527         
2528         var anc = {
2529             tag : 'a',
2530             cls : 'dropdown-item',
2531             href : '#',
2532             cn : [  ]
2533         };
2534         
2535         if (this.fa !== false) {
2536             anc.cn.push({
2537                 tag : 'i',
2538                 cls : 'fa fa-' + this.fa
2539             });
2540         }
2541         
2542         anc.cn.push(ctag);
2543         
2544         
2545         var cfg= {
2546             tag: 'li',
2547             cls: 'dropdown-menu-item',
2548             cn: [ anc ]
2549         };
2550         if (this.parent().type == 'treeview') {
2551             cfg.cls = 'treeview-menu';
2552         }
2553         if (this.active) {
2554             cfg.cls += ' active';
2555         }
2556         
2557         
2558         
2559         anc.href = this.href || cfg.cn[0].href ;
2560         ctag.html = this.html || cfg.cn[0].html ;
2561         return cfg;
2562     },
2563     
2564     initEvents: function()
2565     {
2566         if (this.parent().type == 'treeview') {
2567             this.el.select('a').on('click', this.onClick, this);
2568         }
2569         
2570         if (this.menu) {
2571             this.menu.parentType = this.xtype;
2572             this.menu.triggerEl = this.el;
2573             this.menu = this.addxtype(Roo.apply({}, this.menu));
2574         }
2575         
2576     },
2577     onClick : function(e)
2578     {
2579         Roo.log('item on click ');
2580         
2581         if(this.preventDefault){
2582             e.preventDefault();
2583         }
2584         //this.parent().hideMenuItems();
2585         
2586         this.fireEvent('click', this, e);
2587     },
2588     getEl : function()
2589     {
2590         return this.el;
2591     } 
2592 });
2593
2594  
2595
2596  /*
2597  * - LGPL
2598  *
2599  * menu separator
2600  * 
2601  */
2602
2603
2604 /**
2605  * @class Roo.bootstrap.MenuSeparator
2606  * @extends Roo.bootstrap.Component
2607  * Bootstrap MenuSeparator class
2608  * 
2609  * @constructor
2610  * Create a new MenuItem
2611  * @param {Object} config The config object
2612  */
2613
2614
2615 Roo.bootstrap.MenuSeparator = function(config){
2616     Roo.bootstrap.MenuSeparator.superclass.constructor.call(this, config);
2617 };
2618
2619 Roo.extend(Roo.bootstrap.MenuSeparator, Roo.bootstrap.Component,  {
2620     
2621     getAutoCreate : function(){
2622         var cfg = {
2623             cls: 'divider',
2624             tag : 'li'
2625         };
2626         
2627         return cfg;
2628     }
2629    
2630 });
2631
2632  
2633
2634  
2635 /*
2636 * Licence: LGPL
2637 */
2638
2639 /**
2640  * @class Roo.bootstrap.Modal
2641  * @extends Roo.bootstrap.Component
2642  * Bootstrap Modal class
2643  * @cfg {String} title Title of dialog
2644  * @cfg {String} html - the body of the dialog (for simple ones) - you can also use template..
2645  * @cfg {Roo.Template} tmpl - a template with variables. to use it, add a handler in show:method  adn
2646  * @cfg {Boolean} specificTitle default false
2647  * @cfg {Array} buttons Array of buttons or standard button set..
2648  * @cfg {String} buttonPosition (left|right|center) default right (DEPRICATED) - use mr-auto on buttons to put them on the left
2649  * @cfg {Boolean} animate default true
2650  * @cfg {Boolean} allow_close default true
2651  * @cfg {Boolean} fitwindow default false
2652  * @cfg {String} size (sm|lg) default empty
2653  * @cfg {Number} max_width set the max width of modal
2654  *
2655  *
2656  * @constructor
2657  * Create a new Modal Dialog
2658  * @param {Object} config The config object
2659  */
2660
2661 Roo.bootstrap.Modal = function(config){
2662     Roo.bootstrap.Modal.superclass.constructor.call(this, config);
2663     this.addEvents({
2664         // raw events
2665         /**
2666          * @event btnclick
2667          * The raw btnclick event for the button
2668          * @param {Roo.EventObject} e
2669          */
2670         "btnclick" : true,
2671         /**
2672          * @event resize
2673          * Fire when dialog resize
2674          * @param {Roo.bootstrap.Modal} this
2675          * @param {Roo.EventObject} e
2676          */
2677         "resize" : true
2678     });
2679     this.buttons = this.buttons || [];
2680
2681     if (this.tmpl) {
2682         this.tmpl = Roo.factory(this.tmpl);
2683     }
2684
2685 };
2686
2687 Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
2688
2689     title : 'test dialog',
2690
2691     buttons : false,
2692
2693     // set on load...
2694
2695     html: false,
2696
2697     tmp: false,
2698
2699     specificTitle: false,
2700
2701     buttonPosition: 'right',
2702
2703     allow_close : true,
2704
2705     animate : true,
2706
2707     fitwindow: false,
2708     
2709      // private
2710     dialogEl: false,
2711     bodyEl:  false,
2712     footerEl:  false,
2713     titleEl:  false,
2714     closeEl:  false,
2715
2716     size: '',
2717     
2718     max_width: 0,
2719     
2720     max_height: 0,
2721     
2722     fit_content: false,
2723
2724     onRender : function(ct, position)
2725     {
2726         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
2727
2728         if(!this.el){
2729             var cfg = Roo.apply({},  this.getAutoCreate());
2730             cfg.id = Roo.id();
2731             //if(!cfg.name){
2732             //    cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
2733             //}
2734             //if (!cfg.name.length) {
2735             //    delete cfg.name;
2736            // }
2737             if (this.cls) {
2738                 cfg.cls += ' ' + this.cls;
2739             }
2740             if (this.style) {
2741                 cfg.style = this.style;
2742             }
2743             this.el = Roo.get(document.body).createChild(cfg, position);
2744         }
2745         //var type = this.el.dom.type;
2746
2747
2748         if(this.tabIndex !== undefined){
2749             this.el.dom.setAttribute('tabIndex', this.tabIndex);
2750         }
2751
2752         this.dialogEl = this.el.select('.modal-dialog',true).first();
2753         this.bodyEl = this.el.select('.modal-body',true).first();
2754         this.closeEl = this.el.select('.modal-header .close', true).first();
2755         this.headerEl = this.el.select('.modal-header',true).first();
2756         this.titleEl = this.el.select('.modal-title',true).first();
2757         this.footerEl = this.el.select('.modal-footer',true).first();
2758
2759         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
2760         
2761         //this.el.addClass("x-dlg-modal");
2762
2763         if (this.buttons.length) {
2764             Roo.each(this.buttons, function(bb) {
2765                 var b = Roo.apply({}, bb);
2766                 b.xns = b.xns || Roo.bootstrap;
2767                 b.xtype = b.xtype || 'Button';
2768                 if (typeof(b.listeners) == 'undefined') {
2769                     b.listeners = { click : this.onButtonClick.createDelegate(this)  };
2770                 }
2771
2772                 var btn = Roo.factory(b);
2773
2774                 btn.render(this.getButtonContainer());
2775
2776             },this);
2777         }
2778         // render the children.
2779         var nitems = [];
2780
2781         if(typeof(this.items) != 'undefined'){
2782             var items = this.items;
2783             delete this.items;
2784
2785             for(var i =0;i < items.length;i++) {
2786                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
2787             }
2788         }
2789
2790         this.items = nitems;
2791
2792         // where are these used - they used to be body/close/footer
2793
2794
2795         this.initEvents();
2796         //this.el.addClass([this.fieldClass, this.cls]);
2797
2798     },
2799
2800     getAutoCreate : function()
2801     {
2802         var bdy = {
2803                 cls : 'modal-body',
2804                 html : this.html || ''
2805         };
2806
2807         var title = {
2808             tag: 'h4',
2809             cls : 'modal-title',
2810             html : this.title
2811         };
2812
2813         if(this.specificTitle){
2814             title = this.title;
2815
2816         }
2817
2818         var header = [];
2819         if (this.allow_close && Roo.bootstrap.version == 3) {
2820             header.push({
2821                 tag: 'button',
2822                 cls : 'close',
2823                 html : '&times'
2824             });
2825         }
2826
2827         header.push(title);
2828
2829         if (this.allow_close && Roo.bootstrap.version == 4) {
2830             header.push({
2831                 tag: 'button',
2832                 cls : 'close',
2833                 html : '&times'
2834             });
2835         }
2836         
2837         var size = '';
2838
2839         if(this.size.length){
2840             size = 'modal-' + this.size;
2841         }
2842         
2843         var footer = Roo.bootstrap.version == 3 ?
2844             {
2845                 cls : 'modal-footer',
2846                 cn : [
2847                     {
2848                         tag: 'div',
2849                         cls: 'btn-' + this.buttonPosition
2850                     }
2851                 ]
2852
2853             } :
2854             {  // BS4 uses mr-auto on left buttons....
2855                 cls : 'modal-footer'
2856             };
2857
2858             
2859
2860         
2861         
2862         var modal = {
2863             cls: "modal",
2864              cn : [
2865                 {
2866                     cls: "modal-dialog " + size,
2867                     cn : [
2868                         {
2869                             cls : "modal-content",
2870                             cn : [
2871                                 {
2872                                     cls : 'modal-header',
2873                                     cn : header
2874                                 },
2875                                 bdy,
2876                                 footer
2877                             ]
2878
2879                         }
2880                     ]
2881
2882                 }
2883             ]
2884         };
2885
2886         if(this.animate){
2887             modal.cls += ' fade';
2888         }
2889
2890         return modal;
2891
2892     },
2893     getChildContainer : function() {
2894
2895          return this.bodyEl;
2896
2897     },
2898     getButtonContainer : function() {
2899         
2900          return Roo.bootstrap.version == 4 ?
2901             this.el.select('.modal-footer',true).first()
2902             : this.el.select('.modal-footer div',true).first();
2903
2904     },
2905     initEvents : function()
2906     {
2907         if (this.allow_close) {
2908             this.closeEl.on('click', this.hide, this);
2909         }
2910         Roo.EventManager.onWindowResize(this.resize, this, true);
2911
2912
2913     },
2914   
2915
2916     resize : function()
2917     {
2918         this.maskEl.setSize(
2919             Roo.lib.Dom.getViewWidth(true),
2920             Roo.lib.Dom.getViewHeight(true)
2921         );
2922         
2923         if (this.fitwindow) {
2924             
2925            
2926             this.setSize(
2927                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
2928                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
2929             );
2930             return;
2931         }
2932         
2933         if(this.max_width !== 0) {
2934             
2935             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
2936             
2937             if(this.height) {
2938                 this.setSize(w, this.height);
2939                 return;
2940             }
2941             
2942             if(this.max_height) {
2943                 this.setSize(w,Math.min(
2944                     this.max_height,
2945                     Roo.lib.Dom.getViewportHeight(true) - 60
2946                 ));
2947                 
2948                 return;
2949             }
2950             
2951             if(!this.fit_content) {
2952                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
2953                 return;
2954             }
2955             
2956             this.setSize(w, Math.min(
2957                 60 +
2958                 this.headerEl.getHeight() + 
2959                 this.footerEl.getHeight() + 
2960                 this.getChildHeight(this.bodyEl.dom.childNodes),
2961                 Roo.lib.Dom.getViewportHeight(true) - 60)
2962             );
2963         }
2964         
2965     },
2966
2967     setSize : function(w,h)
2968     {
2969         if (!w && !h) {
2970             return;
2971         }
2972         
2973         this.resizeTo(w,h);
2974     },
2975
2976     show : function() {
2977
2978         if (!this.rendered) {
2979             this.render();
2980         }
2981
2982         //this.el.setStyle('display', 'block');
2983         this.el.removeClass('hideing');
2984         this.el.dom.style.display='block';
2985         
2986         Roo.get(document.body).addClass('modal-open');
2987  
2988         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
2989             
2990             (function(){
2991                 this.el.addClass('show');
2992                 this.el.addClass('in');
2993             }).defer(50, this);
2994         }else{
2995             this.el.addClass('show');
2996             this.el.addClass('in');
2997         }
2998
2999         // not sure how we can show data in here..
3000         //if (this.tmpl) {
3001         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
3002         //}
3003
3004         Roo.get(document.body).addClass("x-body-masked");
3005         
3006         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
3007         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3008         this.maskEl.dom.style.display = 'block';
3009         this.maskEl.addClass('show');
3010         
3011         
3012         this.resize();
3013         
3014         this.fireEvent('show', this);
3015
3016         // set zindex here - otherwise it appears to be ignored...
3017         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3018
3019         (function () {
3020             this.items.forEach( function(e) {
3021                 e.layout ? e.layout() : false;
3022
3023             });
3024         }).defer(100,this);
3025
3026     },
3027     hide : function()
3028     {
3029         if(this.fireEvent("beforehide", this) !== false){
3030             
3031             this.maskEl.removeClass('show');
3032             
3033             this.maskEl.dom.style.display = '';
3034             Roo.get(document.body).removeClass("x-body-masked");
3035             this.el.removeClass('in');
3036             this.el.select('.modal-dialog', true).first().setStyle('transform','');
3037
3038             if(this.animate){ // why
3039                 this.el.addClass('hideing');
3040                 this.el.removeClass('show');
3041                 (function(){
3042                     if (!this.el.hasClass('hideing')) {
3043                         return; // it's been shown again...
3044                     }
3045                     
3046                     this.el.dom.style.display='';
3047
3048                     Roo.get(document.body).removeClass('modal-open');
3049                     this.el.removeClass('hideing');
3050                 }).defer(150,this);
3051                 
3052             }else{
3053                 this.el.removeClass('show');
3054                 this.el.dom.style.display='';
3055                 Roo.get(document.body).removeClass('modal-open');
3056
3057             }
3058             this.fireEvent('hide', this);
3059         }
3060     },
3061     isVisible : function()
3062     {
3063         
3064         return this.el.hasClass('show') && !this.el.hasClass('hideing');
3065         
3066     },
3067
3068     addButton : function(str, cb)
3069     {
3070
3071
3072         var b = Roo.apply({}, { html : str } );
3073         b.xns = b.xns || Roo.bootstrap;
3074         b.xtype = b.xtype || 'Button';
3075         if (typeof(b.listeners) == 'undefined') {
3076             b.listeners = { click : cb.createDelegate(this)  };
3077         }
3078
3079         var btn = Roo.factory(b);
3080
3081         btn.render(this.getButtonContainer());
3082
3083         return btn;
3084
3085     },
3086
3087     setDefaultButton : function(btn)
3088     {
3089         //this.el.select('.modal-footer').()
3090     },
3091
3092     resizeTo: function(w,h)
3093     {
3094         this.dialogEl.setWidth(w);
3095         
3096         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 60; // dialog margin-bottom: 30  
3097
3098         this.bodyEl.setHeight(h - diff);
3099         
3100         this.fireEvent('resize', this);
3101     },
3102     
3103     setContentSize  : function(w, h)
3104     {
3105
3106     },
3107     onButtonClick: function(btn,e)
3108     {
3109         //Roo.log([a,b,c]);
3110         this.fireEvent('btnclick', btn.name, e);
3111     },
3112      /**
3113      * Set the title of the Dialog
3114      * @param {String} str new Title
3115      */
3116     setTitle: function(str) {
3117         this.titleEl.dom.innerHTML = str;
3118     },
3119     /**
3120      * Set the body of the Dialog
3121      * @param {String} str new Title
3122      */
3123     setBody: function(str) {
3124         this.bodyEl.dom.innerHTML = str;
3125     },
3126     /**
3127      * Set the body of the Dialog using the template
3128      * @param {Obj} data - apply this data to the template and replace the body contents.
3129      */
3130     applyBody: function(obj)
3131     {
3132         if (!this.tmpl) {
3133             Roo.log("Error - using apply Body without a template");
3134             //code
3135         }
3136         this.tmpl.overwrite(this.bodyEl, obj);
3137     },
3138     
3139     getChildHeight : function(child_nodes)
3140     {
3141         if(
3142             !child_nodes ||
3143             child_nodes.length == 0
3144         ) {
3145             return;
3146         }
3147         
3148         var child_height = 0;
3149         
3150         for(var i = 0; i < child_nodes.length; i++) {
3151             
3152             /*
3153             * for modal with tabs...
3154             if(child_nodes[i].classList.contains('roo-layout-panel')) {
3155                 
3156                 var layout_childs = child_nodes[i].childNodes;
3157                 
3158                 for(var j = 0; j < layout_childs.length; j++) {
3159                     
3160                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
3161                         
3162                         var layout_body_childs = layout_childs[j].childNodes;
3163                         
3164                         for(var k = 0; k < layout_body_childs.length; k++) {
3165                             
3166                             if(layout_body_childs[k].classList.contains('navbar')) {
3167                                 child_height += layout_body_childs[k].offsetHeight;
3168                                 continue;
3169                             }
3170                             
3171                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
3172                                 
3173                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
3174                                 
3175                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
3176                                     
3177                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
3178                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
3179                                         continue;
3180                                     }
3181                                     
3182                                 }
3183                                 
3184                             }
3185                             
3186                         }
3187                     }
3188                 }
3189                 continue;
3190             }
3191             */
3192             
3193             child_height += child_nodes[i].offsetHeight;
3194             // Roo.log(child_nodes[i].offsetHeight);
3195         }
3196         
3197         return child_height;
3198     }
3199
3200 });
3201
3202
3203 Roo.apply(Roo.bootstrap.Modal,  {
3204     /**
3205          * Button config that displays a single OK button
3206          * @type Object
3207          */
3208         OK :  [{
3209             name : 'ok',
3210             weight : 'primary',
3211             html : 'OK'
3212         }],
3213         /**
3214          * Button config that displays Yes and No buttons
3215          * @type Object
3216          */
3217         YESNO : [
3218             {
3219                 name  : 'no',
3220                 html : 'No'
3221             },
3222             {
3223                 name  :'yes',
3224                 weight : 'primary',
3225                 html : 'Yes'
3226             }
3227         ],
3228
3229         /**
3230          * Button config that displays OK and Cancel buttons
3231          * @type Object
3232          */
3233         OKCANCEL : [
3234             {
3235                name : 'cancel',
3236                 html : 'Cancel'
3237             },
3238             {
3239                 name : 'ok',
3240                 weight : 'primary',
3241                 html : 'OK'
3242             }
3243         ],
3244         /**
3245          * Button config that displays Yes, No and Cancel buttons
3246          * @type Object
3247          */
3248         YESNOCANCEL : [
3249             {
3250                 name : 'yes',
3251                 weight : 'primary',
3252                 html : 'Yes'
3253             },
3254             {
3255                 name : 'no',
3256                 html : 'No'
3257             },
3258             {
3259                 name : 'cancel',
3260                 html : 'Cancel'
3261             }
3262         ],
3263         
3264         zIndex : 10001
3265 });
3266 /*
3267  * - LGPL
3268  *
3269  * messagebox - can be used as a replace
3270  * 
3271  */
3272 /**
3273  * @class Roo.MessageBox
3274  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
3275  * Example usage:
3276  *<pre><code>
3277 // Basic alert:
3278 Roo.Msg.alert('Status', 'Changes saved successfully.');
3279
3280 // Prompt for user data:
3281 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
3282     if (btn == 'ok'){
3283         // process text value...
3284     }
3285 });
3286
3287 // Show a dialog using config options:
3288 Roo.Msg.show({
3289    title:'Save Changes?',
3290    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
3291    buttons: Roo.Msg.YESNOCANCEL,
3292    fn: processResult,
3293    animEl: 'elId'
3294 });
3295 </code></pre>
3296  * @singleton
3297  */
3298 Roo.bootstrap.MessageBox = function(){
3299     var dlg, opt, mask, waitTimer;
3300     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
3301     var buttons, activeTextEl, bwidth;
3302
3303     
3304     // private
3305     var handleButton = function(button){
3306         dlg.hide();
3307         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
3308     };
3309
3310     // private
3311     var handleHide = function(){
3312         if(opt && opt.cls){
3313             dlg.el.removeClass(opt.cls);
3314         }
3315         //if(waitTimer){
3316         //    Roo.TaskMgr.stop(waitTimer);
3317         //    waitTimer = null;
3318         //}
3319     };
3320
3321     // private
3322     var updateButtons = function(b){
3323         var width = 0;
3324         if(!b){
3325             buttons["ok"].hide();
3326             buttons["cancel"].hide();
3327             buttons["yes"].hide();
3328             buttons["no"].hide();
3329             dlg.footerEl.hide();
3330             
3331             return width;
3332         }
3333         dlg.footerEl.show();
3334         for(var k in buttons){
3335             if(typeof buttons[k] != "function"){
3336                 if(b[k]){
3337                     buttons[k].show();
3338                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.bootstrap.MessageBox.buttonText[k]);
3339                     width += buttons[k].el.getWidth()+15;
3340                 }else{
3341                     buttons[k].hide();
3342                 }
3343             }
3344         }
3345         return width;
3346     };
3347
3348     // private
3349     var handleEsc = function(d, k, e){
3350         if(opt && opt.closable !== false){
3351             dlg.hide();
3352         }
3353         if(e){
3354             e.stopEvent();
3355         }
3356     };
3357
3358     return {
3359         /**
3360          * Returns a reference to the underlying {@link Roo.BasicDialog} element
3361          * @return {Roo.BasicDialog} The BasicDialog element
3362          */
3363         getDialog : function(){
3364            if(!dlg){
3365                 dlg = new Roo.bootstrap.Modal( {
3366                     //draggable: true,
3367                     //resizable:false,
3368                     //constraintoviewport:false,
3369                     //fixedcenter:true,
3370                     //collapsible : false,
3371                     //shim:true,
3372                     //modal: true,
3373                 //    width: 'auto',
3374                   //  height:100,
3375                     //buttonAlign:"center",
3376                     closeClick : function(){
3377                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
3378                             handleButton("no");
3379                         }else{
3380                             handleButton("cancel");
3381                         }
3382                     }
3383                 });
3384                 dlg.render();
3385                 dlg.on("hide", handleHide);
3386                 mask = dlg.mask;
3387                 //dlg.addKeyListener(27, handleEsc);
3388                 buttons = {};
3389                 this.buttons = buttons;
3390                 var bt = this.buttonText;
3391                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
3392                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
3393                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
3394                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
3395                 //Roo.log(buttons);
3396                 bodyEl = dlg.bodyEl.createChild({
3397
3398                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" />' +
3399                         '<textarea class="roo-mb-textarea"></textarea>' +
3400                         '<div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
3401                 });
3402                 msgEl = bodyEl.dom.firstChild;
3403                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
3404                 textboxEl.enableDisplayMode();
3405                 textboxEl.addKeyListener([10,13], function(){
3406                     if(dlg.isVisible() && opt && opt.buttons){
3407                         if(opt.buttons.ok){
3408                             handleButton("ok");
3409                         }else if(opt.buttons.yes){
3410                             handleButton("yes");
3411                         }
3412                     }
3413                 });
3414                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
3415                 textareaEl.enableDisplayMode();
3416                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
3417                 progressEl.enableDisplayMode();
3418                 
3419                 // This is supposed to be the progessElement.. but I think it's controlling the height of everything..
3420                 var pf = progressEl.dom.firstChild;
3421                 if (pf) {
3422                     pp = Roo.get(pf.firstChild);
3423                     pp.setHeight(pf.offsetHeight);
3424                 }
3425                 
3426             }
3427             return dlg;
3428         },
3429
3430         /**
3431          * Updates the message box body text
3432          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
3433          * the XHTML-compliant non-breaking space character '&amp;#160;')
3434          * @return {Roo.MessageBox} This message box
3435          */
3436         updateText : function(text)
3437         {
3438             if(!dlg.isVisible() && !opt.width){
3439                 dlg.dialogEl.setStyle({ 'max-width' : this.maxWidth});
3440                 // dlg.resizeTo(this.maxWidth, 100); // forcing the height breaks long alerts()
3441             }
3442             msgEl.innerHTML = text || '&#160;';
3443       
3444             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
3445             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
3446             var w = Math.max(
3447                     Math.min(opt.width || cw , this.maxWidth), 
3448                     Math.max(opt.minWidth || this.minWidth, bwidth)
3449             );
3450             if(opt.prompt){
3451                 activeTextEl.setWidth(w);
3452             }
3453             if(dlg.isVisible()){
3454                 dlg.fixedcenter = false;
3455             }
3456             // to big, make it scroll. = But as usual stupid IE does not support
3457             // !important..
3458             
3459             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
3460                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
3461                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
3462             } else {
3463                 bodyEl.dom.style.height = '';
3464                 bodyEl.dom.style.overflowY = '';
3465             }
3466             if (cw > w) {
3467                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
3468             } else {
3469                 bodyEl.dom.style.overflowX = '';
3470             }
3471             
3472             dlg.setContentSize(w, bodyEl.getHeight());
3473             if(dlg.isVisible()){
3474                 dlg.fixedcenter = true;
3475             }
3476             return this;
3477         },
3478
3479         /**
3480          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
3481          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
3482          * @param {Number} value Any number between 0 and 1 (e.g., .5)
3483          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
3484          * @return {Roo.MessageBox} This message box
3485          */
3486         updateProgress : function(value, text){
3487             if(text){
3488                 this.updateText(text);
3489             }
3490             
3491             if (pp) { // weird bug on my firefox - for some reason this is not defined
3492                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
3493                 pp.setHeight(Math.floor(progressEl.dom.firstChild.offsetHeight));
3494             }
3495             return this;
3496         },        
3497
3498         /**
3499          * Returns true if the message box is currently displayed
3500          * @return {Boolean} True if the message box is visible, else false
3501          */
3502         isVisible : function(){
3503             return dlg && dlg.isVisible();  
3504         },
3505
3506         /**
3507          * Hides the message box if it is displayed
3508          */
3509         hide : function(){
3510             if(this.isVisible()){
3511                 dlg.hide();
3512             }  
3513         },
3514
3515         /**
3516          * Displays a new message box, or reinitializes an existing message box, based on the config options
3517          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
3518          * The following config object properties are supported:
3519          * <pre>
3520 Property    Type             Description
3521 ----------  ---------------  ------------------------------------------------------------------------------------
3522 animEl            String/Element   An id or Element from which the message box should animate as it opens and
3523                                    closes (defaults to undefined)
3524 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
3525                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
3526 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
3527                                    progress and wait dialogs will ignore this property and always hide the
3528                                    close button as they can only be closed programmatically.
3529 cls               String           A custom CSS class to apply to the message box element
3530 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
3531                                    displayed (defaults to 75)
3532 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
3533                                    function will be btn (the name of the button that was clicked, if applicable,
3534                                    e.g. "ok"), and text (the value of the active text field, if applicable).
3535                                    Progress and wait dialogs will ignore this option since they do not respond to
3536                                    user actions and can only be closed programmatically, so any required function
3537                                    should be called by the same code after it closes the dialog.
3538 icon              String           A CSS class that provides a background image to be used as an icon for
3539                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
3540 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
3541 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
3542 modal             Boolean          False to allow user interaction with the page while the message box is
3543                                    displayed (defaults to true)
3544 msg               String           A string that will replace the existing message box body text (defaults
3545                                    to the XHTML-compliant non-breaking space character '&#160;')
3546 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
3547 progress          Boolean          True to display a progress bar (defaults to false)
3548 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
3549 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
3550 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
3551 title             String           The title text
3552 value             String           The string value to set into the active textbox element if displayed
3553 wait              Boolean          True to display a progress bar (defaults to false)
3554 width             Number           The width of the dialog in pixels
3555 </pre>
3556          *
3557          * Example usage:
3558          * <pre><code>
3559 Roo.Msg.show({
3560    title: 'Address',
3561    msg: 'Please enter your address:',
3562    width: 300,
3563    buttons: Roo.MessageBox.OKCANCEL,
3564    multiline: true,
3565    fn: saveAddress,
3566    animEl: 'addAddressBtn'
3567 });
3568 </code></pre>
3569          * @param {Object} config Configuration options
3570          * @return {Roo.MessageBox} This message box
3571          */
3572         show : function(options)
3573         {
3574             
3575             // this causes nightmares if you show one dialog after another
3576             // especially on callbacks..
3577              
3578             if(this.isVisible()){
3579                 
3580                 this.hide();
3581                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
3582                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
3583                 Roo.log("New Dialog Message:" +  options.msg )
3584                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
3585                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
3586                 
3587             }
3588             var d = this.getDialog();
3589             opt = options;
3590             d.setTitle(opt.title || "&#160;");
3591             d.closeEl.setDisplayed(opt.closable !== false);
3592             activeTextEl = textboxEl;
3593             opt.prompt = opt.prompt || (opt.multiline ? true : false);
3594             if(opt.prompt){
3595                 if(opt.multiline){
3596                     textboxEl.hide();
3597                     textareaEl.show();
3598                     textareaEl.setHeight(typeof opt.multiline == "number" ?
3599                         opt.multiline : this.defaultTextHeight);
3600                     activeTextEl = textareaEl;
3601                 }else{
3602                     textboxEl.show();
3603                     textareaEl.hide();
3604                 }
3605             }else{
3606                 textboxEl.hide();
3607                 textareaEl.hide();
3608             }
3609             progressEl.setDisplayed(opt.progress === true);
3610             if (opt.progress) {
3611                 d.animate = false; // do not animate progress, as it may not have finished animating before we close it..
3612             }
3613             this.updateProgress(0);
3614             activeTextEl.dom.value = opt.value || "";
3615             if(opt.prompt){
3616                 dlg.setDefaultButton(activeTextEl);
3617             }else{
3618                 var bs = opt.buttons;
3619                 var db = null;
3620                 if(bs && bs.ok){
3621                     db = buttons["ok"];
3622                 }else if(bs && bs.yes){
3623                     db = buttons["yes"];
3624                 }
3625                 dlg.setDefaultButton(db);
3626             }
3627             bwidth = updateButtons(opt.buttons);
3628             this.updateText(opt.msg);
3629             if(opt.cls){
3630                 d.el.addClass(opt.cls);
3631             }
3632             d.proxyDrag = opt.proxyDrag === true;
3633             d.modal = opt.modal !== false;
3634             d.mask = opt.modal !== false ? mask : false;
3635             if(!d.isVisible()){
3636                 // force it to the end of the z-index stack so it gets a cursor in FF
3637                 document.body.appendChild(dlg.el.dom);
3638                 d.animateTarget = null;
3639                 d.show(options.animEl);
3640             }
3641             return this;
3642         },
3643
3644         /**
3645          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
3646          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
3647          * and closing the message box when the process is complete.
3648          * @param {String} title The title bar text
3649          * @param {String} msg The message box body text
3650          * @return {Roo.MessageBox} This message box
3651          */
3652         progress : function(title, msg){
3653             this.show({
3654                 title : title,
3655                 msg : msg,
3656                 buttons: false,
3657                 progress:true,
3658                 closable:false,
3659                 minWidth: this.minProgressWidth,
3660                 modal : true
3661             });
3662             return this;
3663         },
3664
3665         /**
3666          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
3667          * If a callback function is passed it will be called after the user clicks the button, and the
3668          * id of the button that was clicked will be passed as the only parameter to the callback
3669          * (could also be the top-right close button).
3670          * @param {String} title The title bar text
3671          * @param {String} msg The message box body text
3672          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3673          * @param {Object} scope (optional) The scope of the callback function
3674          * @return {Roo.MessageBox} This message box
3675          */
3676         alert : function(title, msg, fn, scope)
3677         {
3678             this.show({
3679                 title : title,
3680                 msg : msg,
3681                 buttons: this.OK,
3682                 fn: fn,
3683                 closable : false,
3684                 scope : scope,
3685                 modal : true
3686             });
3687             return this;
3688         },
3689
3690         /**
3691          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
3692          * interaction while waiting for a long-running process to complete that does not have defined intervals.
3693          * You are responsible for closing the message box when the process is complete.
3694          * @param {String} msg The message box body text
3695          * @param {String} title (optional) The title bar text
3696          * @return {Roo.MessageBox} This message box
3697          */
3698         wait : function(msg, title){
3699             this.show({
3700                 title : title,
3701                 msg : msg,
3702                 buttons: false,
3703                 closable:false,
3704                 progress:true,
3705                 modal:true,
3706                 width:300,
3707                 wait:true
3708             });
3709             waitTimer = Roo.TaskMgr.start({
3710                 run: function(i){
3711                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
3712                 },
3713                 interval: 1000
3714             });
3715             return this;
3716         },
3717
3718         /**
3719          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
3720          * If a callback function is passed it will be called after the user clicks either button, and the id of the
3721          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
3722          * @param {String} title The title bar text
3723          * @param {String} msg The message box body text
3724          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3725          * @param {Object} scope (optional) The scope of the callback function
3726          * @return {Roo.MessageBox} This message box
3727          */
3728         confirm : function(title, msg, fn, scope){
3729             this.show({
3730                 title : title,
3731                 msg : msg,
3732                 buttons: this.YESNO,
3733                 fn: fn,
3734                 scope : scope,
3735                 modal : true
3736             });
3737             return this;
3738         },
3739
3740         /**
3741          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
3742          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
3743          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
3744          * (could also be the top-right close button) and the text that was entered will be passed as the two
3745          * parameters to the callback.
3746          * @param {String} title The title bar text
3747          * @param {String} msg The message box body text
3748          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3749          * @param {Object} scope (optional) The scope of the callback function
3750          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
3751          * property, or the height in pixels to create the textbox (defaults to false / single-line)
3752          * @return {Roo.MessageBox} This message box
3753          */
3754         prompt : function(title, msg, fn, scope, multiline){
3755             this.show({
3756                 title : title,
3757                 msg : msg,
3758                 buttons: this.OKCANCEL,
3759                 fn: fn,
3760                 minWidth:250,
3761                 scope : scope,
3762                 prompt:true,
3763                 multiline: multiline,
3764                 modal : true
3765             });
3766             return this;
3767         },
3768
3769         /**
3770          * Button config that displays a single OK button
3771          * @type Object
3772          */
3773         OK : {ok:true},
3774         /**
3775          * Button config that displays Yes and No buttons
3776          * @type Object
3777          */
3778         YESNO : {yes:true, no:true},
3779         /**
3780          * Button config that displays OK and Cancel buttons
3781          * @type Object
3782          */
3783         OKCANCEL : {ok:true, cancel:true},
3784         /**
3785          * Button config that displays Yes, No and Cancel buttons
3786          * @type Object
3787          */
3788         YESNOCANCEL : {yes:true, no:true, cancel:true},
3789
3790         /**
3791          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
3792          * @type Number
3793          */
3794         defaultTextHeight : 75,
3795         /**
3796          * The maximum width in pixels of the message box (defaults to 600)
3797          * @type Number
3798          */
3799         maxWidth : 600,
3800         /**
3801          * The minimum width in pixels of the message box (defaults to 100)
3802          * @type Number
3803          */
3804         minWidth : 100,
3805         /**
3806          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
3807          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
3808          * @type Number
3809          */
3810         minProgressWidth : 250,
3811         /**
3812          * An object containing the default button text strings that can be overriden for localized language support.
3813          * Supported properties are: ok, cancel, yes and no.
3814          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
3815          * @type Object
3816          */
3817         buttonText : {
3818             ok : "OK",
3819             cancel : "Cancel",
3820             yes : "Yes",
3821             no : "No"
3822         }
3823     };
3824 }();
3825
3826 /**
3827  * Shorthand for {@link Roo.MessageBox}
3828  */
3829 Roo.MessageBox = Roo.MessageBox || Roo.bootstrap.MessageBox;
3830 Roo.Msg = Roo.Msg || Roo.MessageBox;
3831 /*
3832  * - LGPL
3833  *
3834  * navbar
3835  * 
3836  */
3837
3838 /**
3839  * @class Roo.bootstrap.Navbar
3840  * @extends Roo.bootstrap.Component
3841  * Bootstrap Navbar class
3842
3843  * @constructor
3844  * Create a new Navbar
3845  * @param {Object} config The config object
3846  */
3847
3848
3849 Roo.bootstrap.Navbar = function(config){
3850     Roo.bootstrap.Navbar.superclass.constructor.call(this, config);
3851     this.addEvents({
3852         // raw events
3853         /**
3854          * @event beforetoggle
3855          * Fire before toggle the menu
3856          * @param {Roo.EventObject} e
3857          */
3858         "beforetoggle" : true
3859     });
3860 };
3861
3862 Roo.extend(Roo.bootstrap.Navbar, Roo.bootstrap.Component,  {
3863     
3864     
3865    
3866     // private
3867     navItems : false,
3868     loadMask : false,
3869     
3870     
3871     getAutoCreate : function(){
3872         
3873         
3874         throw { message : "nav bar is now a abstract base class - use NavSimplebar / NavHeaderbar / NavSidebar etc..."};
3875         
3876     },
3877     
3878     initEvents :function ()
3879     {
3880         //Roo.log(this.el.select('.navbar-toggle',true));
3881         this.el.select('.navbar-toggle',true).on('click', this.onToggle , this);
3882         
3883         var mark = {
3884             tag: "div",
3885             cls:"x-dlg-mask"
3886         };
3887         
3888         this.maskEl = Roo.DomHelper.append(this.el, mark, true);
3889         
3890         var size = this.el.getSize();
3891         this.maskEl.setSize(size.width, size.height);
3892         this.maskEl.enableDisplayMode("block");
3893         this.maskEl.hide();
3894         
3895         if(this.loadMask){
3896             this.maskEl.show();
3897         }
3898     },
3899     
3900     
3901     getChildContainer : function()
3902     {
3903         if (this.el && this.el.select('.collapse').getCount()) {
3904             return this.el.select('.collapse',true).first();
3905         }
3906         
3907         return this.el;
3908     },
3909     
3910     mask : function()
3911     {
3912         this.maskEl.show();
3913     },
3914     
3915     unmask : function()
3916     {
3917         this.maskEl.hide();
3918     },
3919     onToggle : function()
3920     {
3921         
3922         if(this.fireEvent('beforetoggle', this) === false){
3923             return;
3924         }
3925         var ce = this.el.select('.navbar-collapse',true).first();
3926       
3927         if (!ce.hasClass('show')) {
3928            this.expand();
3929         } else {
3930             this.collapse();
3931         }
3932         
3933         
3934     
3935     },
3936     /**
3937      * Expand the navbar pulldown 
3938      */
3939     expand : function ()
3940     {
3941        
3942         var ce = this.el.select('.navbar-collapse',true).first();
3943         if (ce.hasClass('collapsing')) {
3944             return;
3945         }
3946         ce.dom.style.height = '';
3947                // show it...
3948         ce.addClass('in'); // old...
3949         ce.removeClass('collapse');
3950         ce.addClass('show');
3951         var h = ce.getHeight();
3952         Roo.log(h);
3953         ce.removeClass('show');
3954         // at this point we should be able to see it..
3955         ce.addClass('collapsing');
3956         
3957         ce.setHeight(0); // resize it ...
3958         ce.on('transitionend', function() {
3959             //Roo.log('done transition');
3960             ce.removeClass('collapsing');
3961             ce.addClass('show');
3962             ce.removeClass('collapse');
3963
3964             ce.dom.style.height = '';
3965         }, this, { single: true} );
3966         ce.setHeight(h);
3967         ce.dom.scrollTop = 0;
3968     },
3969     /**
3970      * Collapse the navbar pulldown 
3971      */
3972     collapse : function()
3973     {
3974          var ce = this.el.select('.navbar-collapse',true).first();
3975        
3976         if (ce.hasClass('collapsing') || ce.hasClass('collapse') ) {
3977             // it's collapsed or collapsing..
3978             return;
3979         }
3980         ce.removeClass('in'); // old...
3981         ce.setHeight(ce.getHeight());
3982         ce.removeClass('show');
3983         ce.addClass('collapsing');
3984         
3985         ce.on('transitionend', function() {
3986             ce.dom.style.height = '';
3987             ce.removeClass('collapsing');
3988             ce.addClass('collapse');
3989         }, this, { single: true} );
3990         ce.setHeight(0);
3991     }
3992     
3993     
3994     
3995 });
3996
3997
3998
3999  
4000
4001  /*
4002  * - LGPL
4003  *
4004  * navbar
4005  * 
4006  */
4007
4008 /**
4009  * @class Roo.bootstrap.NavSimplebar
4010  * @extends Roo.bootstrap.Navbar
4011  * Bootstrap Sidebar class
4012  *
4013  * @cfg {Boolean} inverse is inverted color
4014  * 
4015  * @cfg {String} type (nav | pills | tabs)
4016  * @cfg {Boolean} arrangement stacked | justified
4017  * @cfg {String} align (left | right) alignment
4018  * 
4019  * @cfg {Boolean} main (true|false) main nav bar? default false
4020  * @cfg {Boolean} loadMask (true|false) loadMask on the bar
4021  * 
4022  * @cfg {String} tag (header|footer|nav|div) default is nav 
4023
4024  * @cfg {String} weight (light|primary|secondary|success|danger|warning|info|dark|white) default is light.
4025  * 
4026  * 
4027  * @constructor
4028  * Create a new Sidebar
4029  * @param {Object} config The config object
4030  */
4031
4032
4033 Roo.bootstrap.NavSimplebar = function(config){
4034     Roo.bootstrap.NavSimplebar.superclass.constructor.call(this, config);
4035 };
4036
4037 Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
4038     
4039     inverse: false,
4040     
4041     type: false,
4042     arrangement: '',
4043     align : false,
4044     
4045     weight : 'light',
4046     
4047     main : false,
4048     
4049     
4050     tag : false,
4051     
4052     
4053     getAutoCreate : function(){
4054         
4055         
4056         var cfg = {
4057             tag : this.tag || 'div',
4058             cls : 'navbar navbar-expand-lg roo-navbar-simple'
4059         };
4060         if (['light','white'].indexOf(this.weight) > -1) {
4061             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4062         }
4063         cfg.cls += ' bg-' + this.weight;
4064         
4065         if (this.inverse) {
4066             cfg.cls += ' navbar-inverse';
4067             
4068         }
4069         
4070         // i'm not actually sure these are really used - normally we add a navGroup to a navbar
4071         
4072         if (Roo.bootstrap.version == 4) {
4073             cfg.cn = [
4074                 {
4075                     cls: 'nav',
4076                     tag : 'ul'
4077                 }
4078             ];
4079         
4080              return cfg;
4081         }
4082         
4083         
4084     
4085         
4086         cfg.cn = [
4087             {
4088                 cls: 'nav',
4089                 tag : 'ul'
4090             }
4091         ];
4092         
4093          
4094         this.type = this.type || 'nav';
4095         if (['tabs','pills'].indexOf(this.type) != -1) {
4096             cfg.cn[0].cls += ' nav-' + this.type
4097         
4098         
4099         } else {
4100             if (this.type!=='nav') {
4101                 Roo.log('nav type must be nav/tabs/pills')
4102             }
4103             cfg.cn[0].cls += ' navbar-nav'
4104         }
4105         
4106         
4107         
4108         
4109         if (['stacked','justified'].indexOf(this.arrangement) != -1) {
4110             cfg.cn[0].cls += ' nav-' + this.arrangement;
4111         }
4112         
4113         
4114         if (this.align === 'right') {
4115             cfg.cn[0].cls += ' navbar-right';
4116         }
4117         
4118         
4119         
4120         
4121         return cfg;
4122     
4123         
4124     }
4125     
4126     
4127     
4128 });
4129
4130
4131
4132  
4133
4134  
4135        /*
4136  * - LGPL
4137  *
4138  * navbar
4139  * navbar-fixed-top
4140  * navbar-expand-md  fixed-top 
4141  */
4142
4143 /**
4144  * @class Roo.bootstrap.NavHeaderbar
4145  * @extends Roo.bootstrap.NavSimplebar
4146  * Bootstrap Sidebar class
4147  *
4148  * @cfg {String} brand what is brand
4149  * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
4150  * @cfg {String} brand_href href of the brand
4151  * @cfg {Boolean} srButton generate the (screen reader / mobile) sr-only button   default true
4152  * @cfg {Boolean} autohide a top nav bar header that hides on scroll.
4153  * @cfg {Boolean} desktopCenter should the header be centered on desktop using a container class
4154  * @cfg {Roo.bootstrap.Row} mobilerow - a row to display on mobile only..
4155  * 
4156  * @constructor
4157  * Create a new Sidebar
4158  * @param {Object} config The config object
4159  */
4160
4161
4162 Roo.bootstrap.NavHeaderbar = function(config){
4163     Roo.bootstrap.NavHeaderbar.superclass.constructor.call(this, config);
4164       
4165 };
4166
4167 Roo.extend(Roo.bootstrap.NavHeaderbar, Roo.bootstrap.NavSimplebar,  {
4168     
4169     position: '',
4170     brand: '',
4171     brand_href: false,
4172     srButton : true,
4173     autohide : false,
4174     desktopCenter : false,
4175    
4176     
4177     getAutoCreate : function(){
4178         
4179         var   cfg = {
4180             tag: this.nav || 'nav',
4181             cls: 'navbar navbar-expand-md',
4182             role: 'navigation',
4183             cn: []
4184         };
4185         
4186         var cn = cfg.cn;
4187         if (this.desktopCenter) {
4188             cn.push({cls : 'container', cn : []});
4189             cn = cn[0].cn;
4190         }
4191         
4192         if(this.srButton){
4193             var btn = {
4194                 tag: 'button',
4195                 type: 'button',
4196                 cls: 'navbar-toggle navbar-toggler',
4197                 'data-toggle': 'collapse',
4198                 cn: [
4199                     {
4200                         tag: 'span',
4201                         cls: 'sr-only',
4202                         html: 'Toggle navigation'
4203                     },
4204                     {
4205                         tag: 'span',
4206                         cls: 'icon-bar navbar-toggler-icon'
4207                     },
4208                     {
4209                         tag: 'span',
4210                         cls: 'icon-bar'
4211                     },
4212                     {
4213                         tag: 'span',
4214                         cls: 'icon-bar'
4215                     }
4216                 ]
4217             };
4218             
4219             cn.push( Roo.bootstrap.version == 4 ? btn : {
4220                 tag: 'div',
4221                 cls: 'navbar-header',
4222                 cn: [
4223                     btn
4224                 ]
4225             });
4226         }
4227         
4228         cn.push({
4229             tag: 'div',
4230             cls: 'collapse navbar-collapse',
4231             cn : []
4232         });
4233         
4234         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
4235         
4236         if (['light','white'].indexOf(this.weight) > -1) {
4237             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4238         }
4239         cfg.cls += ' bg-' + this.weight;
4240         
4241         
4242         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
4243             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
4244             
4245             // tag can override this..
4246             
4247             cfg.tag = this.tag || (this.position  == 'fixed-bottom' ? 'footer' : 'header');
4248         }
4249         
4250         if (this.brand !== '') {
4251             var cp =  Roo.bootstrap.version == 4 ? cn : cn[0].cn;
4252             cp.unshift({ // changed from push ?? BS4 needs it at the start? - does this break or exsiting?
4253                 tag: 'a',
4254                 href: this.brand_href ? this.brand_href : '#',
4255                 cls: 'navbar-brand',
4256                 cn: [
4257                 this.brand
4258                 ]
4259             });
4260         }
4261         
4262         if(this.main){
4263             cfg.cls += ' main-nav';
4264         }
4265         
4266         
4267         return cfg;
4268
4269         
4270     },
4271     getHeaderChildContainer : function()
4272     {
4273         if (this.srButton && this.el.select('.navbar-header').getCount()) {
4274             return this.el.select('.navbar-header',true).first();
4275         }
4276         
4277         return this.getChildContainer();
4278     },
4279     
4280     
4281     initEvents : function()
4282     {
4283         Roo.bootstrap.NavHeaderbar.superclass.initEvents.call(this);
4284         
4285         if (this.autohide) {
4286             
4287             var prevScroll = 0;
4288             var ft = this.el;
4289             
4290             Roo.get(document).on('scroll',function(e) {
4291                 var ns = Roo.get(document).getScroll().top;
4292                 var os = prevScroll;
4293                 prevScroll = ns;
4294                 
4295                 if(ns > os){
4296                     ft.removeClass('slideDown');
4297                     ft.addClass('slideUp');
4298                     return;
4299                 }
4300                 ft.removeClass('slideUp');
4301                 ft.addClass('slideDown');
4302                  
4303               
4304           },this);
4305         }
4306     }    
4307     
4308 });
4309
4310
4311
4312  
4313
4314  /*
4315  * - LGPL
4316  *
4317  * navbar
4318  * 
4319  */
4320
4321 /**
4322  * @class Roo.bootstrap.NavSidebar
4323  * @extends Roo.bootstrap.Navbar
4324  * Bootstrap Sidebar class
4325  * 
4326  * @constructor
4327  * Create a new Sidebar
4328  * @param {Object} config The config object
4329  */
4330
4331
4332 Roo.bootstrap.NavSidebar = function(config){
4333     Roo.bootstrap.NavSidebar.superclass.constructor.call(this, config);
4334 };
4335
4336 Roo.extend(Roo.bootstrap.NavSidebar, Roo.bootstrap.Navbar,  {
4337     
4338     sidebar : true, // used by Navbar Item and NavbarGroup at present...
4339     
4340     getAutoCreate : function(){
4341         
4342         
4343         return  {
4344             tag: 'div',
4345             cls: 'sidebar sidebar-nav'
4346         };
4347     
4348         
4349     }
4350     
4351     
4352     
4353 });
4354
4355
4356
4357  
4358
4359  /*
4360  * - LGPL
4361  *
4362  * nav group
4363  * 
4364  */
4365
4366 /**
4367  * @class Roo.bootstrap.NavGroup
4368  * @extends Roo.bootstrap.Component
4369  * Bootstrap NavGroup class
4370  * @cfg {String} align (left|right)
4371  * @cfg {Boolean} inverse
4372  * @cfg {String} type (nav|pills|tab) default nav
4373  * @cfg {String} navId - reference Id for navbar.
4374
4375  * 
4376  * @constructor
4377  * Create a new nav group
4378  * @param {Object} config The config object
4379  */
4380
4381 Roo.bootstrap.NavGroup = function(config){
4382     Roo.bootstrap.NavGroup.superclass.constructor.call(this, config);
4383     this.navItems = [];
4384    
4385     Roo.bootstrap.NavGroup.register(this);
4386      this.addEvents({
4387         /**
4388              * @event changed
4389              * Fires when the active item changes
4390              * @param {Roo.bootstrap.NavGroup} this
4391              * @param {Roo.bootstrap.Navbar.Item} selected The item selected
4392              * @param {Roo.bootstrap.Navbar.Item} prev The previously selected item 
4393          */
4394         'changed': true
4395      });
4396     
4397 };
4398
4399 Roo.extend(Roo.bootstrap.NavGroup, Roo.bootstrap.Component,  {
4400     
4401     align: '',
4402     inverse: false,
4403     form: false,
4404     type: 'nav',
4405     navId : '',
4406     // private
4407     
4408     navItems : false, 
4409     
4410     getAutoCreate : function()
4411     {
4412         var cfg = Roo.apply({}, Roo.bootstrap.NavGroup.superclass.getAutoCreate.call(this));
4413         
4414         cfg = {
4415             tag : 'ul',
4416             cls: 'nav' 
4417         };
4418         if (Roo.bootstrap.version == 4) {
4419             if (['tabs','pills'].indexOf(this.type) != -1) {
4420                 cfg.cls += ' nav-' + this.type; 
4421             } else {
4422                 cfg.cls += ' navbar-nav';
4423             }
4424         } else {
4425             if (['tabs','pills'].indexOf(this.type) != -1) {
4426                 cfg.cls += ' nav-' + this.type
4427             } else {
4428                 if (this.type !== 'nav') {
4429                     Roo.log('nav type must be nav/tabs/pills')
4430                 }
4431                 cfg.cls += ' navbar-nav'
4432             }
4433         }
4434         
4435         if (this.parent() && this.parent().sidebar) {
4436             cfg = {
4437                 tag: 'ul',
4438                 cls: 'dashboard-menu sidebar-menu'
4439             };
4440             
4441             return cfg;
4442         }
4443         
4444         if (this.form === true) {
4445             cfg = {
4446                 tag: 'form',
4447                 cls: 'navbar-form form-inline'
4448             };
4449             
4450             if (this.align === 'right') {
4451                 cfg.cls += ' navbar-right ml-md-auto';
4452             } else {
4453                 cfg.cls += ' navbar-left';
4454             }
4455         }
4456         
4457         if (this.align === 'right') {
4458             cfg.cls += ' navbar-right ml-md-auto';
4459         } else {
4460             cfg.cls += ' mr-auto';
4461         }
4462         
4463         if (this.inverse) {
4464             cfg.cls += ' navbar-inverse';
4465             
4466         }
4467         
4468         
4469         return cfg;
4470     },
4471     /**
4472     * sets the active Navigation item
4473     * @param {Roo.bootstrap.NavItem} the new current navitem
4474     */
4475     setActiveItem : function(item)
4476     {
4477         var prev = false;
4478         Roo.each(this.navItems, function(v){
4479             if (v == item) {
4480                 return ;
4481             }
4482             if (v.isActive()) {
4483                 v.setActive(false, true);
4484                 prev = v;
4485                 
4486             }
4487             
4488         });
4489
4490         item.setActive(true, true);
4491         this.fireEvent('changed', this, item, prev);
4492         
4493         
4494     },
4495     /**
4496     * gets the active Navigation item
4497     * @return {Roo.bootstrap.NavItem} the current navitem
4498     */
4499     getActive : function()
4500     {
4501         
4502         var prev = false;
4503         Roo.each(this.navItems, function(v){
4504             
4505             if (v.isActive()) {
4506                 prev = v;
4507                 
4508             }
4509             
4510         });
4511         return prev;
4512     },
4513     
4514     indexOfNav : function()
4515     {
4516         
4517         var prev = false;
4518         Roo.each(this.navItems, function(v,i){
4519             
4520             if (v.isActive()) {
4521                 prev = i;
4522                 
4523             }
4524             
4525         });
4526         return prev;
4527     },
4528     /**
4529     * adds a Navigation item
4530     * @param {Roo.bootstrap.NavItem} the navitem to add
4531     */
4532     addItem : function(cfg)
4533     {
4534         if (this.form && Roo.bootstrap.version == 4) {
4535             cfg.tag = 'div';
4536         }
4537         var cn = new Roo.bootstrap.NavItem(cfg);
4538         this.register(cn);
4539         cn.parentId = this.id;
4540         cn.onRender(this.el, null);
4541         return cn;
4542     },
4543     /**
4544     * register a Navigation item
4545     * @param {Roo.bootstrap.NavItem} the navitem to add
4546     */
4547     register : function(item)
4548     {
4549         this.navItems.push( item);
4550         item.navId = this.navId;
4551     
4552     },
4553     
4554     /**
4555     * clear all the Navigation item
4556     */
4557    
4558     clearAll : function()
4559     {
4560         this.navItems = [];
4561         this.el.dom.innerHTML = '';
4562     },
4563     
4564     getNavItem: function(tabId)
4565     {
4566         var ret = false;
4567         Roo.each(this.navItems, function(e) {
4568             if (e.tabId == tabId) {
4569                ret =  e;
4570                return false;
4571             }
4572             return true;
4573             
4574         });
4575         return ret;
4576     },
4577     
4578     setActiveNext : function()
4579     {
4580         var i = this.indexOfNav(this.getActive());
4581         if (i > this.navItems.length) {
4582             return;
4583         }
4584         this.setActiveItem(this.navItems[i+1]);
4585     },
4586     setActivePrev : function()
4587     {
4588         var i = this.indexOfNav(this.getActive());
4589         if (i  < 1) {
4590             return;
4591         }
4592         this.setActiveItem(this.navItems[i-1]);
4593     },
4594     clearWasActive : function(except) {
4595         Roo.each(this.navItems, function(e) {
4596             if (e.tabId != except.tabId && e.was_active) {
4597                e.was_active = false;
4598                return false;
4599             }
4600             return true;
4601             
4602         });
4603     },
4604     getWasActive : function ()
4605     {
4606         var r = false;
4607         Roo.each(this.navItems, function(e) {
4608             if (e.was_active) {
4609                r = e;
4610                return false;
4611             }
4612             return true;
4613             
4614         });
4615         return r;
4616     }
4617     
4618     
4619 });
4620
4621  
4622 Roo.apply(Roo.bootstrap.NavGroup, {
4623     
4624     groups: {},
4625      /**
4626     * register a Navigation Group
4627     * @param {Roo.bootstrap.NavGroup} the navgroup to add
4628     */
4629     register : function(navgrp)
4630     {
4631         this.groups[navgrp.navId] = navgrp;
4632         
4633     },
4634     /**
4635     * fetch a Navigation Group based on the navigation ID
4636     * @param {string} the navgroup to add
4637     * @returns {Roo.bootstrap.NavGroup} the navgroup 
4638     */
4639     get: function(navId) {
4640         if (typeof(this.groups[navId]) == 'undefined') {
4641             return false;
4642             //this.register(new Roo.bootstrap.NavGroup({ navId : navId }));
4643         }
4644         return this.groups[navId] ;
4645     }
4646     
4647     
4648     
4649 });
4650
4651  /*
4652  * - LGPL
4653  *
4654  * row
4655  * 
4656  */
4657
4658 /**
4659  * @class Roo.bootstrap.NavItem
4660  * @extends Roo.bootstrap.Component
4661  * Bootstrap Navbar.NavItem class
4662  * @cfg {String} href  link to
4663  * @cfg {String} button_weight (default | primary | secondary | success | info | warning | danger | link ) default none
4664
4665  * @cfg {String} html content of button
4666  * @cfg {String} badge text inside badge
4667  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
4668  * @cfg {String} glyphicon DEPRICATED - use fa
4669  * @cfg {String} icon DEPRICATED - use fa
4670  * @cfg {String} fa - Fontawsome icon name (can add stuff to it like fa-2x)
4671  * @cfg {Boolean} active Is item active
4672  * @cfg {Boolean} disabled Is item disabled
4673  
4674  * @cfg {Boolean} preventDefault (true | false) default false
4675  * @cfg {String} tabId the tab that this item activates.
4676  * @cfg {String} tagtype (a|span) render as a href or span?
4677  * @cfg {Boolean} animateRef (true|false) link to element default false  
4678   
4679  * @constructor
4680  * Create a new Navbar Item
4681  * @param {Object} config The config object
4682  */
4683 Roo.bootstrap.NavItem = function(config){
4684     Roo.bootstrap.NavItem.superclass.constructor.call(this, config);
4685     this.addEvents({
4686         // raw events
4687         /**
4688          * @event click
4689          * The raw click event for the entire grid.
4690          * @param {Roo.EventObject} e
4691          */
4692         "click" : true,
4693          /**
4694             * @event changed
4695             * Fires when the active item active state changes
4696             * @param {Roo.bootstrap.NavItem} this
4697             * @param {boolean} state the new state
4698              
4699          */
4700         'changed': true,
4701         /**
4702             * @event scrollto
4703             * Fires when scroll to element
4704             * @param {Roo.bootstrap.NavItem} this
4705             * @param {Object} options
4706             * @param {Roo.EventObject} e
4707              
4708          */
4709         'scrollto': true
4710     });
4711    
4712 };
4713
4714 Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
4715     
4716     href: false,
4717     html: '',
4718     badge: '',
4719     icon: false,
4720     fa : false,
4721     glyphicon: false,
4722     active: false,
4723     preventDefault : false,
4724     tabId : false,
4725     tagtype : 'a',
4726     tag: 'li',
4727     disabled : false,
4728     animateRef : false,
4729     was_active : false,
4730     button_weight : '',
4731     button_outline : false,
4732     
4733     navLink: false,
4734     
4735     getAutoCreate : function(){
4736          
4737         var cfg = {
4738             tag: this.tag,
4739             cls: 'nav-item'
4740         };
4741         
4742         if (this.active) {
4743             cfg.cls = typeof(cfg.cls) == 'undefined' ? 'active' : cfg.cls + ' active';
4744         }
4745         if (this.disabled) {
4746             cfg.cls += ' disabled';
4747         }
4748         
4749         // BS4 only?
4750         if (this.button_weight.length) {
4751             cfg.tag = this.href ? 'a' : 'button';
4752             cfg.html = this.html || '';
4753             cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
4754             if (this.href) {
4755                 cfg.href = this.href;
4756             }
4757             if (this.fa) {
4758                 cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + this.html + '</span>';
4759             }
4760             
4761             // menu .. should add dropdown-menu class - so no need for carat..
4762             
4763             if (this.badge !== '') {
4764                  
4765                 cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4766             }
4767             return cfg;
4768         }
4769         
4770         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
4771             cfg.cn = [
4772                 {
4773                     tag: this.tagtype,
4774                     href : this.href || "#",
4775                     html: this.html || ''
4776                 }
4777             ];
4778             if (this.tagtype == 'a') {
4779                 cfg.cn[0].cls = 'nav-link';
4780             }
4781             if (this.icon) {
4782                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>';
4783             }
4784             if (this.fa) {
4785                 cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>';
4786             }
4787             if(this.glyphicon) {
4788                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
4789             }
4790             
4791             if (this.menu) {
4792                 
4793                 cfg.cn[0].html += " <span class='caret'></span>";
4794              
4795             }
4796             
4797             if (this.badge !== '') {
4798                  
4799                 cfg.cn[0].html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4800             }
4801         }
4802         
4803         
4804         
4805         return cfg;
4806     },
4807     onRender : function(ct, position)
4808     {
4809        // Roo.log("Call onRender: " + this.xtype);
4810         if (Roo.bootstrap.version == 4 && ct.dom.type != 'ul') {
4811             this.tag = 'div';
4812         }
4813         
4814         var ret = Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
4815         this.navLink = this.el.select('.nav-link',true).first();
4816         return ret;
4817     },
4818       
4819     
4820     initEvents: function() 
4821     {
4822         if (typeof (this.menu) != 'undefined') {
4823             this.menu.parentType = this.xtype;
4824             this.menu.triggerEl = this.el;
4825             this.menu = this.addxtype(Roo.apply({}, this.menu));
4826         }
4827         
4828         this.el.select('a',true).on('click', this.onClick, this);
4829         
4830         if(this.tagtype == 'span'){
4831             this.el.select('span',true).on('click', this.onClick, this);
4832         }
4833        
4834         // at this point parent should be available..
4835         this.parent().register(this);
4836     },
4837     
4838     onClick : function(e)
4839     {
4840         if (e.getTarget('.dropdown-menu-item')) {
4841             // did you click on a menu itemm.... - then don't trigger onclick..
4842             return;
4843         }
4844         
4845         if(
4846                 this.preventDefault || 
4847                 this.href == '#' 
4848         ){
4849             Roo.log("NavItem - prevent Default?");
4850             e.preventDefault();
4851         }
4852         
4853         if (this.disabled) {
4854             return;
4855         }
4856         
4857         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4858         if (tg && tg.transition) {
4859             Roo.log("waiting for the transitionend");
4860             return;
4861         }
4862         
4863         
4864         
4865         //Roo.log("fire event clicked");
4866         if(this.fireEvent('click', this, e) === false){
4867             return;
4868         };
4869         
4870         if(this.tagtype == 'span'){
4871             return;
4872         }
4873         
4874         //Roo.log(this.href);
4875         var ael = this.el.select('a',true).first();
4876         //Roo.log(ael);
4877         
4878         if(ael && this.animateRef && this.href.indexOf('#') > -1){
4879             //Roo.log(["test:",ael.dom.href.split("#")[0], document.location.toString().split("#")[0]]);
4880             if (ael.dom.href.split("#")[0] != document.location.toString().split("#")[0]) {
4881                 return; // ignore... - it's a 'hash' to another page.
4882             }
4883             Roo.log("NavItem - prevent Default?");
4884             e.preventDefault();
4885             this.scrollToElement(e);
4886         }
4887         
4888         
4889         var p =  this.parent();
4890    
4891         if (['tabs','pills'].indexOf(p.type)!==-1) {
4892             if (typeof(p.setActiveItem) !== 'undefined') {
4893                 p.setActiveItem(this);
4894             }
4895         }
4896         
4897         // if parent is a navbarheader....- and link is probably a '#' page ref.. then remove the expanded menu.
4898         if (p.parentType == 'NavHeaderbar' && !this.menu) {
4899             // remove the collapsed menu expand...
4900             p.parent().el.select('.navbar-collapse',true).removeClass('in');  
4901         }
4902     },
4903     
4904     isActive: function () {
4905         return this.active
4906     },
4907     setActive : function(state, fire, is_was_active)
4908     {
4909         if (this.active && !state && this.navId) {
4910             this.was_active = true;
4911             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4912             if (nv) {
4913                 nv.clearWasActive(this);
4914             }
4915             
4916         }
4917         this.active = state;
4918         
4919         if (!state ) {
4920             this.el.removeClass('active');
4921             this.navLink ? this.navLink.removeClass('active') : false;
4922         } else if (!this.el.hasClass('active')) {
4923             
4924             this.el.addClass('active');
4925             if (Roo.bootstrap.version == 4 && this.navLink ) {
4926                 this.navLink.addClass('active');
4927             }
4928             
4929         }
4930         if (fire) {
4931             this.fireEvent('changed', this, state);
4932         }
4933         
4934         // show a panel if it's registered and related..
4935         
4936         if (!this.navId || !this.tabId || !state || is_was_active) {
4937             return;
4938         }
4939         
4940         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4941         if (!tg) {
4942             return;
4943         }
4944         var pan = tg.getPanelByName(this.tabId);
4945         if (!pan) {
4946             return;
4947         }
4948         // if we can not flip to new panel - go back to old nav highlight..
4949         if (false == tg.showPanel(pan)) {
4950             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4951             if (nv) {
4952                 var onav = nv.getWasActive();
4953                 if (onav) {
4954                     onav.setActive(true, false, true);
4955                 }
4956             }
4957             
4958         }
4959         
4960         
4961         
4962     },
4963      // this should not be here...
4964     setDisabled : function(state)
4965     {
4966         this.disabled = state;
4967         if (!state ) {
4968             this.el.removeClass('disabled');
4969         } else if (!this.el.hasClass('disabled')) {
4970             this.el.addClass('disabled');
4971         }
4972         
4973     },
4974     
4975     /**
4976      * Fetch the element to display the tooltip on.
4977      * @return {Roo.Element} defaults to this.el
4978      */
4979     tooltipEl : function()
4980     {
4981         return this.el.select('' + this.tagtype + '', true).first();
4982     },
4983     
4984     scrollToElement : function(e)
4985     {
4986         var c = document.body;
4987         
4988         /*
4989          * Firefox / IE places the overflow at the html level, unless specifically styled to behave differently.
4990          */
4991         if(Roo.isFirefox || Roo.isIE || Roo.isIE11){
4992             c = document.documentElement;
4993         }
4994         
4995         var target = Roo.get(c).select('a[name=' + this.href.split('#')[1] +']', true).first();
4996         
4997         if(!target){
4998             return;
4999         }
5000
5001         var o = target.calcOffsetsTo(c);
5002         
5003         var options = {
5004             target : target,
5005             value : o[1]
5006         };
5007         
5008         this.fireEvent('scrollto', this, options, e);
5009         
5010         Roo.get(c).scrollTo('top', options.value, true);
5011         
5012         return;
5013     }
5014 });
5015  
5016
5017  /*
5018  * - LGPL
5019  *
5020  * sidebar item
5021  *
5022  *  li
5023  *    <span> icon </span>
5024  *    <span> text </span>
5025  *    <span>badge </span>
5026  */
5027
5028 /**
5029  * @class Roo.bootstrap.NavSidebarItem
5030  * @extends Roo.bootstrap.NavItem
5031  * Bootstrap Navbar.NavSidebarItem class
5032  * {String} badgeWeight (default|primary|success|info|warning|danger)the extra classes for the badge
5033  * {Boolean} open is the menu open
5034  * {Boolean} buttonView use button as the tigger el rather that a (default false)
5035  * {String} buttonWeight (default|primary|success|info|warning|danger)the extra classes for the button
5036  * {String} buttonSize (sm|md|lg)the extra classes for the button
5037  * {Boolean} showArrow show arrow next to the text (default true)
5038  * @constructor
5039  * Create a new Navbar Button
5040  * @param {Object} config The config object
5041  */
5042 Roo.bootstrap.NavSidebarItem = function(config){
5043     Roo.bootstrap.NavSidebarItem.superclass.constructor.call(this, config);
5044     this.addEvents({
5045         // raw events
5046         /**
5047          * @event click
5048          * The raw click event for the entire grid.
5049          * @param {Roo.EventObject} e
5050          */
5051         "click" : true,
5052          /**
5053             * @event changed
5054             * Fires when the active item active state changes
5055             * @param {Roo.bootstrap.NavSidebarItem} this
5056             * @param {boolean} state the new state
5057              
5058          */
5059         'changed': true
5060     });
5061    
5062 };
5063
5064 Roo.extend(Roo.bootstrap.NavSidebarItem, Roo.bootstrap.NavItem,  {
5065     
5066     badgeWeight : 'default',
5067     
5068     open: false,
5069     
5070     buttonView : false,
5071     
5072     buttonWeight : 'default',
5073     
5074     buttonSize : 'md',
5075     
5076     showArrow : true,
5077     
5078     getAutoCreate : function(){
5079         
5080         
5081         var a = {
5082                 tag: 'a',
5083                 href : this.href || '#',
5084                 cls: '',
5085                 html : '',
5086                 cn : []
5087         };
5088         
5089         if(this.buttonView){
5090             a = {
5091                 tag: 'button',
5092                 href : this.href || '#',
5093                 cls: 'btn btn-' + this.buttonWeight + ' btn-' + this.buttonSize + 'roo-button-dropdown-toggle',
5094                 html : this.html,
5095                 cn : []
5096             };
5097         }
5098         
5099         var cfg = {
5100             tag: 'li',
5101             cls: '',
5102             cn: [ a ]
5103         };
5104         
5105         if (this.active) {
5106             cfg.cls += ' active';
5107         }
5108         
5109         if (this.disabled) {
5110             cfg.cls += ' disabled';
5111         }
5112         if (this.open) {
5113             cfg.cls += ' open x-open';
5114         }
5115         // left icon..
5116         if (this.glyphicon || this.icon) {
5117             var c = this.glyphicon  ? ('glyphicon glyphicon-'+this.glyphicon)  : this.icon;
5118             a.cn.push({ tag : 'i', cls : c }) ;
5119         }
5120         
5121         if(!this.buttonView){
5122             var span = {
5123                 tag: 'span',
5124                 html : this.html || ''
5125             };
5126
5127             a.cn.push(span);
5128             
5129         }
5130         
5131         if (this.badge !== '') {
5132             a.cn.push({ tag: 'span',  cls : 'badge pull-right badge-' + this.badgeWeight, html: this.badge }); 
5133         }
5134         
5135         if (this.menu) {
5136             
5137             if(this.showArrow){
5138                 a.cn.push({ tag : 'i', cls : 'glyphicon glyphicon-chevron-down pull-right'});
5139             }
5140             
5141             a.cls += ' dropdown-toggle treeview' ;
5142         }
5143         
5144         return cfg;
5145     },
5146     
5147     initEvents : function()
5148     { 
5149         if (typeof (this.menu) != 'undefined') {
5150             this.menu.parentType = this.xtype;
5151             this.menu.triggerEl = this.el;
5152             this.menu = this.addxtype(Roo.apply({}, this.menu));
5153         }
5154         
5155         this.el.on('click', this.onClick, this);
5156         
5157         if(this.badge !== ''){
5158             this.badgeEl = this.el.select('.badge', true).first().setVisibilityMode(Roo.Element.DISPLAY);
5159         }
5160         
5161     },
5162     
5163     onClick : function(e)
5164     {
5165         if(this.disabled){
5166             e.preventDefault();
5167             return;
5168         }
5169         
5170         if(this.preventDefault){
5171             e.preventDefault();
5172         }
5173         
5174         this.fireEvent('click', this, e);
5175     },
5176     
5177     disable : function()
5178     {
5179         this.setDisabled(true);
5180     },
5181     
5182     enable : function()
5183     {
5184         this.setDisabled(false);
5185     },
5186     
5187     setDisabled : function(state)
5188     {
5189         if(this.disabled == state){
5190             return;
5191         }
5192         
5193         this.disabled = state;
5194         
5195         if (state) {
5196             this.el.addClass('disabled');
5197             return;
5198         }
5199         
5200         this.el.removeClass('disabled');
5201         
5202         return;
5203     },
5204     
5205     setActive : function(state)
5206     {
5207         if(this.active == state){
5208             return;
5209         }
5210         
5211         this.active = state;
5212         
5213         if (state) {
5214             this.el.addClass('active');
5215             return;
5216         }
5217         
5218         this.el.removeClass('active');
5219         
5220         return;
5221     },
5222     
5223     isActive: function () 
5224     {
5225         return this.active;
5226     },
5227     
5228     setBadge : function(str)
5229     {
5230         if(!this.badgeEl){
5231             return;
5232         }
5233         
5234         this.badgeEl.dom.innerHTML = str;
5235     }
5236     
5237    
5238      
5239  
5240 });
5241  
5242
5243  /*
5244  * - LGPL
5245  *
5246  * row
5247  * 
5248  */
5249
5250 /**
5251  * @class Roo.bootstrap.Row
5252  * @extends Roo.bootstrap.Component
5253  * Bootstrap Row class (contains columns...)
5254  * 
5255  * @constructor
5256  * Create a new Row
5257  * @param {Object} config The config object
5258  */
5259
5260 Roo.bootstrap.Row = function(config){
5261     Roo.bootstrap.Row.superclass.constructor.call(this, config);
5262 };
5263
5264 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
5265     
5266     getAutoCreate : function(){
5267        return {
5268             cls: 'row clearfix'
5269        };
5270     }
5271     
5272     
5273 });
5274
5275  
5276
5277  /*
5278  * - LGPL
5279  *
5280  * element
5281  * 
5282  */
5283
5284 /**
5285  * @class Roo.bootstrap.Element
5286  * @extends Roo.bootstrap.Component
5287  * Bootstrap Element class
5288  * @cfg {String} html contents of the element
5289  * @cfg {String} tag tag of the element
5290  * @cfg {String} cls class of the element
5291  * @cfg {Boolean} preventDefault (true|false) default false
5292  * @cfg {Boolean} clickable (true|false) default false
5293  * 
5294  * @constructor
5295  * Create a new Element
5296  * @param {Object} config The config object
5297  */
5298
5299 Roo.bootstrap.Element = function(config){
5300     Roo.bootstrap.Element.superclass.constructor.call(this, config);
5301     
5302     this.addEvents({
5303         // raw events
5304         /**
5305          * @event click
5306          * When a element is chick
5307          * @param {Roo.bootstrap.Element} this
5308          * @param {Roo.EventObject} e
5309          */
5310         "click" : true
5311     });
5312 };
5313
5314 Roo.extend(Roo.bootstrap.Element, Roo.bootstrap.Component,  {
5315     
5316     tag: 'div',
5317     cls: '',
5318     html: '',
5319     preventDefault: false, 
5320     clickable: false,
5321     
5322     getAutoCreate : function(){
5323         
5324         var cfg = {
5325             tag: this.tag,
5326             // cls: this.cls, double assign in parent class Component.js :: onRender
5327             html: this.html
5328         };
5329         
5330         return cfg;
5331     },
5332     
5333     initEvents: function() 
5334     {
5335         Roo.bootstrap.Element.superclass.initEvents.call(this);
5336         
5337         if(this.clickable){
5338             this.el.on('click', this.onClick, this);
5339         }
5340         
5341     },
5342     
5343     onClick : function(e)
5344     {
5345         if(this.preventDefault){
5346             e.preventDefault();
5347         }
5348         
5349         this.fireEvent('click', this, e);
5350     },
5351     
5352     getValue : function()
5353     {
5354         return this.el.dom.innerHTML;
5355     },
5356     
5357     setValue : function(value)
5358     {
5359         this.el.dom.innerHTML = value;
5360     }
5361    
5362 });
5363
5364  
5365
5366  /*
5367  * - LGPL
5368  *
5369  * pagination
5370  * 
5371  */
5372
5373 /**
5374  * @class Roo.bootstrap.Pagination
5375  * @extends Roo.bootstrap.Component
5376  * Bootstrap Pagination class
5377  * @cfg {String} size xs | sm | md | lg
5378  * @cfg {Boolean} inverse false | true
5379  * 
5380  * @constructor
5381  * Create a new Pagination
5382  * @param {Object} config The config object
5383  */
5384
5385 Roo.bootstrap.Pagination = function(config){
5386     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
5387 };
5388
5389 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
5390     
5391     cls: false,
5392     size: false,
5393     inverse: false,
5394     
5395     getAutoCreate : function(){
5396         var cfg = {
5397             tag: 'ul',
5398                 cls: 'pagination'
5399         };
5400         if (this.inverse) {
5401             cfg.cls += ' inverse';
5402         }
5403         if (this.html) {
5404             cfg.html=this.html;
5405         }
5406         if (this.cls) {
5407             cfg.cls += " " + this.cls;
5408         }
5409         return cfg;
5410     }
5411    
5412 });
5413
5414  
5415
5416  /*
5417  * - LGPL
5418  *
5419  * Pagination item
5420  * 
5421  */
5422
5423
5424 /**
5425  * @class Roo.bootstrap.PaginationItem
5426  * @extends Roo.bootstrap.Component
5427  * Bootstrap PaginationItem class
5428  * @cfg {String} html text
5429  * @cfg {String} href the link
5430  * @cfg {Boolean} preventDefault (true | false) default true
5431  * @cfg {Boolean} active (true | false) default false
5432  * @cfg {Boolean} disabled default false
5433  * 
5434  * 
5435  * @constructor
5436  * Create a new PaginationItem
5437  * @param {Object} config The config object
5438  */
5439
5440
5441 Roo.bootstrap.PaginationItem = function(config){
5442     Roo.bootstrap.PaginationItem.superclass.constructor.call(this, config);
5443     this.addEvents({
5444         // raw events
5445         /**
5446          * @event click
5447          * The raw click event for the entire grid.
5448          * @param {Roo.EventObject} e
5449          */
5450         "click" : true
5451     });
5452 };
5453
5454 Roo.extend(Roo.bootstrap.PaginationItem, Roo.bootstrap.Component,  {
5455     
5456     href : false,
5457     html : false,
5458     preventDefault: true,
5459     active : false,
5460     cls : false,
5461     disabled: false,
5462     
5463     getAutoCreate : function(){
5464         var cfg= {
5465             tag: 'li',
5466             cn: [
5467                 {
5468                     tag : 'a',
5469                     href : this.href ? this.href : '#',
5470                     html : this.html ? this.html : ''
5471                 }
5472             ]
5473         };
5474         
5475         if(this.cls){
5476             cfg.cls = this.cls;
5477         }
5478         
5479         if(this.disabled){
5480             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' disabled' : 'disabled';
5481         }
5482         
5483         if(this.active){
5484             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' active' : 'active';
5485         }
5486         
5487         return cfg;
5488     },
5489     
5490     initEvents: function() {
5491         
5492         this.el.on('click', this.onClick, this);
5493         
5494     },
5495     onClick : function(e)
5496     {
5497         Roo.log('PaginationItem on click ');
5498         if(this.preventDefault){
5499             e.preventDefault();
5500         }
5501         
5502         if(this.disabled){
5503             return;
5504         }
5505         
5506         this.fireEvent('click', this, e);
5507     }
5508    
5509 });
5510
5511  
5512
5513  /*
5514  * - LGPL
5515  *
5516  * slider
5517  * 
5518  */
5519
5520
5521 /**
5522  * @class Roo.bootstrap.Slider
5523  * @extends Roo.bootstrap.Component
5524  * Bootstrap Slider class
5525  *    
5526  * @constructor
5527  * Create a new Slider
5528  * @param {Object} config The config object
5529  */
5530
5531 Roo.bootstrap.Slider = function(config){
5532     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
5533 };
5534
5535 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
5536     
5537     getAutoCreate : function(){
5538         
5539         var cfg = {
5540             tag: 'div',
5541             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
5542             cn: [
5543                 {
5544                     tag: 'a',
5545                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
5546                 }
5547             ]
5548         };
5549         
5550         return cfg;
5551     }
5552    
5553 });
5554
5555  /*
5556  * Based on:
5557  * Ext JS Library 1.1.1
5558  * Copyright(c) 2006-2007, Ext JS, LLC.
5559  *
5560  * Originally Released Under LGPL - original licence link has changed is not relivant.
5561  *
5562  * Fork - LGPL
5563  * <script type="text/javascript">
5564  */
5565  
5566
5567 /**
5568  * @class Roo.grid.ColumnModel
5569  * @extends Roo.util.Observable
5570  * This is the default implementation of a ColumnModel used by the Grid. It defines
5571  * the columns in the grid.
5572  * <br>Usage:<br>
5573  <pre><code>
5574  var colModel = new Roo.grid.ColumnModel([
5575         {header: "Ticker", width: 60, sortable: true, locked: true},
5576         {header: "Company Name", width: 150, sortable: true},
5577         {header: "Market Cap.", width: 100, sortable: true},
5578         {header: "$ Sales", width: 100, sortable: true, renderer: money},
5579         {header: "Employees", width: 100, sortable: true, resizable: false}
5580  ]);
5581  </code></pre>
5582  * <p>
5583  
5584  * The config options listed for this class are options which may appear in each
5585  * individual column definition.
5586  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
5587  * @constructor
5588  * @param {Object} config An Array of column config objects. See this class's
5589  * config objects for details.
5590 */
5591 Roo.grid.ColumnModel = function(config){
5592         /**
5593      * The config passed into the constructor
5594      */
5595     this.config = config;
5596     this.lookup = {};
5597
5598     // if no id, create one
5599     // if the column does not have a dataIndex mapping,
5600     // map it to the order it is in the config
5601     for(var i = 0, len = config.length; i < len; i++){
5602         var c = config[i];
5603         if(typeof c.dataIndex == "undefined"){
5604             c.dataIndex = i;
5605         }
5606         if(typeof c.renderer == "string"){
5607             c.renderer = Roo.util.Format[c.renderer];
5608         }
5609         if(typeof c.id == "undefined"){
5610             c.id = Roo.id();
5611         }
5612         if(c.editor && c.editor.xtype){
5613             c.editor  = Roo.factory(c.editor, Roo.grid);
5614         }
5615         if(c.editor && c.editor.isFormField){
5616             c.editor = new Roo.grid.GridEditor(c.editor);
5617         }
5618         this.lookup[c.id] = c;
5619     }
5620
5621     /**
5622      * The width of columns which have no width specified (defaults to 100)
5623      * @type Number
5624      */
5625     this.defaultWidth = 100;
5626
5627     /**
5628      * Default sortable of columns which have no sortable specified (defaults to false)
5629      * @type Boolean
5630      */
5631     this.defaultSortable = false;
5632
5633     this.addEvents({
5634         /**
5635              * @event widthchange
5636              * Fires when the width of a column changes.
5637              * @param {ColumnModel} this
5638              * @param {Number} columnIndex The column index
5639              * @param {Number} newWidth The new width
5640              */
5641             "widthchange": true,
5642         /**
5643              * @event headerchange
5644              * Fires when the text of a header changes.
5645              * @param {ColumnModel} this
5646              * @param {Number} columnIndex The column index
5647              * @param {Number} newText The new header text
5648              */
5649             "headerchange": true,
5650         /**
5651              * @event hiddenchange
5652              * Fires when a column is hidden or "unhidden".
5653              * @param {ColumnModel} this
5654              * @param {Number} columnIndex The column index
5655              * @param {Boolean} hidden true if hidden, false otherwise
5656              */
5657             "hiddenchange": true,
5658             /**
5659          * @event columnmoved
5660          * Fires when a column is moved.
5661          * @param {ColumnModel} this
5662          * @param {Number} oldIndex
5663          * @param {Number} newIndex
5664          */
5665         "columnmoved" : true,
5666         /**
5667          * @event columlockchange
5668          * Fires when a column's locked state is changed
5669          * @param {ColumnModel} this
5670          * @param {Number} colIndex
5671          * @param {Boolean} locked true if locked
5672          */
5673         "columnlockchange" : true
5674     });
5675     Roo.grid.ColumnModel.superclass.constructor.call(this);
5676 };
5677 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
5678     /**
5679      * @cfg {String} header The header text to display in the Grid view.
5680      */
5681     /**
5682      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
5683      * {@link Roo.data.Record} definition from which to draw the column's value. If not
5684      * specified, the column's index is used as an index into the Record's data Array.
5685      */
5686     /**
5687      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
5688      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
5689      */
5690     /**
5691      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
5692      * Defaults to the value of the {@link #defaultSortable} property.
5693      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
5694      */
5695     /**
5696      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
5697      */
5698     /**
5699      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
5700      */
5701     /**
5702      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
5703      */
5704     /**
5705      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
5706      */
5707     /**
5708      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
5709      * given the cell's data value. See {@link #setRenderer}. If not specified, the
5710      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
5711      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
5712      */
5713        /**
5714      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
5715      */
5716     /**
5717      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
5718      */
5719     /**
5720      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
5721      */
5722     /**
5723      * @cfg {String} cursor (Optional)
5724      */
5725     /**
5726      * @cfg {String} tooltip (Optional)
5727      */
5728     /**
5729      * @cfg {Number} xs (Optional)
5730      */
5731     /**
5732      * @cfg {Number} sm (Optional)
5733      */
5734     /**
5735      * @cfg {Number} md (Optional)
5736      */
5737     /**
5738      * @cfg {Number} lg (Optional)
5739      */
5740     /**
5741      * Returns the id of the column at the specified index.
5742      * @param {Number} index The column index
5743      * @return {String} the id
5744      */
5745     getColumnId : function(index){
5746         return this.config[index].id;
5747     },
5748
5749     /**
5750      * Returns the column for a specified id.
5751      * @param {String} id The column id
5752      * @return {Object} the column
5753      */
5754     getColumnById : function(id){
5755         return this.lookup[id];
5756     },
5757
5758     
5759     /**
5760      * Returns the column for a specified dataIndex.
5761      * @param {String} dataIndex The column dataIndex
5762      * @return {Object|Boolean} the column or false if not found
5763      */
5764     getColumnByDataIndex: function(dataIndex){
5765         var index = this.findColumnIndex(dataIndex);
5766         return index > -1 ? this.config[index] : false;
5767     },
5768     
5769     /**
5770      * Returns the index for a specified column id.
5771      * @param {String} id The column id
5772      * @return {Number} the index, or -1 if not found
5773      */
5774     getIndexById : function(id){
5775         for(var i = 0, len = this.config.length; i < len; i++){
5776             if(this.config[i].id == id){
5777                 return i;
5778             }
5779         }
5780         return -1;
5781     },
5782     
5783     /**
5784      * Returns the index for a specified column dataIndex.
5785      * @param {String} dataIndex The column dataIndex
5786      * @return {Number} the index, or -1 if not found
5787      */
5788     
5789     findColumnIndex : function(dataIndex){
5790         for(var i = 0, len = this.config.length; i < len; i++){
5791             if(this.config[i].dataIndex == dataIndex){
5792                 return i;
5793             }
5794         }
5795         return -1;
5796     },
5797     
5798     
5799     moveColumn : function(oldIndex, newIndex){
5800         var c = this.config[oldIndex];
5801         this.config.splice(oldIndex, 1);
5802         this.config.splice(newIndex, 0, c);
5803         this.dataMap = null;
5804         this.fireEvent("columnmoved", this, oldIndex, newIndex);
5805     },
5806
5807     isLocked : function(colIndex){
5808         return this.config[colIndex].locked === true;
5809     },
5810
5811     setLocked : function(colIndex, value, suppressEvent){
5812         if(this.isLocked(colIndex) == value){
5813             return;
5814         }
5815         this.config[colIndex].locked = value;
5816         if(!suppressEvent){
5817             this.fireEvent("columnlockchange", this, colIndex, value);
5818         }
5819     },
5820
5821     getTotalLockedWidth : function(){
5822         var totalWidth = 0;
5823         for(var i = 0; i < this.config.length; i++){
5824             if(this.isLocked(i) && !this.isHidden(i)){
5825                 this.totalWidth += this.getColumnWidth(i);
5826             }
5827         }
5828         return totalWidth;
5829     },
5830
5831     getLockedCount : function(){
5832         for(var i = 0, len = this.config.length; i < len; i++){
5833             if(!this.isLocked(i)){
5834                 return i;
5835             }
5836         }
5837         
5838         return this.config.length;
5839     },
5840
5841     /**
5842      * Returns the number of columns.
5843      * @return {Number}
5844      */
5845     getColumnCount : function(visibleOnly){
5846         if(visibleOnly === true){
5847             var c = 0;
5848             for(var i = 0, len = this.config.length; i < len; i++){
5849                 if(!this.isHidden(i)){
5850                     c++;
5851                 }
5852             }
5853             return c;
5854         }
5855         return this.config.length;
5856     },
5857
5858     /**
5859      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
5860      * @param {Function} fn
5861      * @param {Object} scope (optional)
5862      * @return {Array} result
5863      */
5864     getColumnsBy : function(fn, scope){
5865         var r = [];
5866         for(var i = 0, len = this.config.length; i < len; i++){
5867             var c = this.config[i];
5868             if(fn.call(scope||this, c, i) === true){
5869                 r[r.length] = c;
5870             }
5871         }
5872         return r;
5873     },
5874
5875     /**
5876      * Returns true if the specified column is sortable.
5877      * @param {Number} col The column index
5878      * @return {Boolean}
5879      */
5880     isSortable : function(col){
5881         if(typeof this.config[col].sortable == "undefined"){
5882             return this.defaultSortable;
5883         }
5884         return this.config[col].sortable;
5885     },
5886
5887     /**
5888      * Returns the rendering (formatting) function defined for the column.
5889      * @param {Number} col The column index.
5890      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
5891      */
5892     getRenderer : function(col){
5893         if(!this.config[col].renderer){
5894             return Roo.grid.ColumnModel.defaultRenderer;
5895         }
5896         return this.config[col].renderer;
5897     },
5898
5899     /**
5900      * Sets the rendering (formatting) function for a column.
5901      * @param {Number} col The column index
5902      * @param {Function} fn The function to use to process the cell's raw data
5903      * to return HTML markup for the grid view. The render function is called with
5904      * the following parameters:<ul>
5905      * <li>Data value.</li>
5906      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
5907      * <li>css A CSS style string to apply to the table cell.</li>
5908      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
5909      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
5910      * <li>Row index</li>
5911      * <li>Column index</li>
5912      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
5913      */
5914     setRenderer : function(col, fn){
5915         this.config[col].renderer = fn;
5916     },
5917
5918     /**
5919      * Returns the width for the specified column.
5920      * @param {Number} col The column index
5921      * @return {Number}
5922      */
5923     getColumnWidth : function(col){
5924         return this.config[col].width * 1 || this.defaultWidth;
5925     },
5926
5927     /**
5928      * Sets the width for a column.
5929      * @param {Number} col The column index
5930      * @param {Number} width The new width
5931      */
5932     setColumnWidth : function(col, width, suppressEvent){
5933         this.config[col].width = width;
5934         this.totalWidth = null;
5935         if(!suppressEvent){
5936              this.fireEvent("widthchange", this, col, width);
5937         }
5938     },
5939
5940     /**
5941      * Returns the total width of all columns.
5942      * @param {Boolean} includeHidden True to include hidden column widths
5943      * @return {Number}
5944      */
5945     getTotalWidth : function(includeHidden){
5946         if(!this.totalWidth){
5947             this.totalWidth = 0;
5948             for(var i = 0, len = this.config.length; i < len; i++){
5949                 if(includeHidden || !this.isHidden(i)){
5950                     this.totalWidth += this.getColumnWidth(i);
5951                 }
5952             }
5953         }
5954         return this.totalWidth;
5955     },
5956
5957     /**
5958      * Returns the header for the specified column.
5959      * @param {Number} col The column index
5960      * @return {String}
5961      */
5962     getColumnHeader : function(col){
5963         return this.config[col].header;
5964     },
5965
5966     /**
5967      * Sets the header for a column.
5968      * @param {Number} col The column index
5969      * @param {String} header The new header
5970      */
5971     setColumnHeader : function(col, header){
5972         this.config[col].header = header;
5973         this.fireEvent("headerchange", this, col, header);
5974     },
5975
5976     /**
5977      * Returns the tooltip for the specified column.
5978      * @param {Number} col The column index
5979      * @return {String}
5980      */
5981     getColumnTooltip : function(col){
5982             return this.config[col].tooltip;
5983     },
5984     /**
5985      * Sets the tooltip for a column.
5986      * @param {Number} col The column index
5987      * @param {String} tooltip The new tooltip
5988      */
5989     setColumnTooltip : function(col, tooltip){
5990             this.config[col].tooltip = tooltip;
5991     },
5992
5993     /**
5994      * Returns the dataIndex for the specified column.
5995      * @param {Number} col The column index
5996      * @return {Number}
5997      */
5998     getDataIndex : function(col){
5999         return this.config[col].dataIndex;
6000     },
6001
6002     /**
6003      * Sets the dataIndex for a column.
6004      * @param {Number} col The column index
6005      * @param {Number} dataIndex The new dataIndex
6006      */
6007     setDataIndex : function(col, dataIndex){
6008         this.config[col].dataIndex = dataIndex;
6009     },
6010
6011     
6012     
6013     /**
6014      * Returns true if the cell is editable.
6015      * @param {Number} colIndex The column index
6016      * @param {Number} rowIndex The row index - this is nto actually used..?
6017      * @return {Boolean}
6018      */
6019     isCellEditable : function(colIndex, rowIndex){
6020         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
6021     },
6022
6023     /**
6024      * Returns the editor defined for the cell/column.
6025      * return false or null to disable editing.
6026      * @param {Number} colIndex The column index
6027      * @param {Number} rowIndex The row index
6028      * @return {Object}
6029      */
6030     getCellEditor : function(colIndex, rowIndex){
6031         return this.config[colIndex].editor;
6032     },
6033
6034     /**
6035      * Sets if a column is editable.
6036      * @param {Number} col The column index
6037      * @param {Boolean} editable True if the column is editable
6038      */
6039     setEditable : function(col, editable){
6040         this.config[col].editable = editable;
6041     },
6042
6043
6044     /**
6045      * Returns true if the column is hidden.
6046      * @param {Number} colIndex The column index
6047      * @return {Boolean}
6048      */
6049     isHidden : function(colIndex){
6050         return this.config[colIndex].hidden;
6051     },
6052
6053
6054     /**
6055      * Returns true if the column width cannot be changed
6056      */
6057     isFixed : function(colIndex){
6058         return this.config[colIndex].fixed;
6059     },
6060
6061     /**
6062      * Returns true if the column can be resized
6063      * @return {Boolean}
6064      */
6065     isResizable : function(colIndex){
6066         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
6067     },
6068     /**
6069      * Sets if a column is hidden.
6070      * @param {Number} colIndex The column index
6071      * @param {Boolean} hidden True if the column is hidden
6072      */
6073     setHidden : function(colIndex, hidden){
6074         this.config[colIndex].hidden = hidden;
6075         this.totalWidth = null;
6076         this.fireEvent("hiddenchange", this, colIndex, hidden);
6077     },
6078
6079     /**
6080      * Sets the editor for a column.
6081      * @param {Number} col The column index
6082      * @param {Object} editor The editor object
6083      */
6084     setEditor : function(col, editor){
6085         this.config[col].editor = editor;
6086     }
6087 });
6088
6089 Roo.grid.ColumnModel.defaultRenderer = function(value)
6090 {
6091     if(typeof value == "object") {
6092         return value;
6093     }
6094         if(typeof value == "string" && value.length < 1){
6095             return "&#160;";
6096         }
6097     
6098         return String.format("{0}", value);
6099 };
6100
6101 // Alias for backwards compatibility
6102 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
6103 /*
6104  * Based on:
6105  * Ext JS Library 1.1.1
6106  * Copyright(c) 2006-2007, Ext JS, LLC.
6107  *
6108  * Originally Released Under LGPL - original licence link has changed is not relivant.
6109  *
6110  * Fork - LGPL
6111  * <script type="text/javascript">
6112  */
6113  
6114 /**
6115  * @class Roo.LoadMask
6116  * A simple utility class for generically masking elements while loading data.  If the element being masked has
6117  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
6118  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
6119  * element's UpdateManager load indicator and will be destroyed after the initial load.
6120  * @constructor
6121  * Create a new LoadMask
6122  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
6123  * @param {Object} config The config object
6124  */
6125 Roo.LoadMask = function(el, config){
6126     this.el = Roo.get(el);
6127     Roo.apply(this, config);
6128     if(this.store){
6129         this.store.on('beforeload', this.onBeforeLoad, this);
6130         this.store.on('load', this.onLoad, this);
6131         this.store.on('loadexception', this.onLoadException, this);
6132         this.removeMask = false;
6133     }else{
6134         var um = this.el.getUpdateManager();
6135         um.showLoadIndicator = false; // disable the default indicator
6136         um.on('beforeupdate', this.onBeforeLoad, this);
6137         um.on('update', this.onLoad, this);
6138         um.on('failure', this.onLoad, this);
6139         this.removeMask = true;
6140     }
6141 };
6142
6143 Roo.LoadMask.prototype = {
6144     /**
6145      * @cfg {Boolean} removeMask
6146      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
6147      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
6148      */
6149     /**
6150      * @cfg {String} msg
6151      * The text to display in a centered loading message box (defaults to 'Loading...')
6152      */
6153     msg : 'Loading...',
6154     /**
6155      * @cfg {String} msgCls
6156      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
6157      */
6158     msgCls : 'x-mask-loading',
6159
6160     /**
6161      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
6162      * @type Boolean
6163      */
6164     disabled: false,
6165
6166     /**
6167      * Disables the mask to prevent it from being displayed
6168      */
6169     disable : function(){
6170        this.disabled = true;
6171     },
6172
6173     /**
6174      * Enables the mask so that it can be displayed
6175      */
6176     enable : function(){
6177         this.disabled = false;
6178     },
6179     
6180     onLoadException : function()
6181     {
6182         Roo.log(arguments);
6183         
6184         if (typeof(arguments[3]) != 'undefined') {
6185             Roo.MessageBox.alert("Error loading",arguments[3]);
6186         } 
6187         /*
6188         try {
6189             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
6190                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
6191             }   
6192         } catch(e) {
6193             
6194         }
6195         */
6196     
6197         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6198     },
6199     // private
6200     onLoad : function()
6201     {
6202         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6203     },
6204
6205     // private
6206     onBeforeLoad : function(){
6207         if(!this.disabled){
6208             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
6209         }
6210     },
6211
6212     // private
6213     destroy : function(){
6214         if(this.store){
6215             this.store.un('beforeload', this.onBeforeLoad, this);
6216             this.store.un('load', this.onLoad, this);
6217             this.store.un('loadexception', this.onLoadException, this);
6218         }else{
6219             var um = this.el.getUpdateManager();
6220             um.un('beforeupdate', this.onBeforeLoad, this);
6221             um.un('update', this.onLoad, this);
6222             um.un('failure', this.onLoad, this);
6223         }
6224     }
6225 };/*
6226  * - LGPL
6227  *
6228  * table
6229  * 
6230  */
6231
6232 /**
6233  * @class Roo.bootstrap.Table
6234  * @extends Roo.bootstrap.Component
6235  * Bootstrap Table class
6236  * @cfg {String} cls table class
6237  * @cfg {String} align (left|center|right) Specifies the alignment of a table according to surrounding text
6238  * @cfg {String} bgcolor Specifies the background color for a table
6239  * @cfg {Number} border Specifies whether the table cells should have borders or not
6240  * @cfg {Number} cellpadding Specifies the space between the cell wall and the cell content
6241  * @cfg {Number} cellspacing Specifies the space between cells
6242  * @cfg {String} frame Specifies which parts of the outside borders that should be visible
6243  * @cfg {String} rules Specifies which parts of the inside borders that should be visible
6244  * @cfg {String} sortable Specifies that the table should be sortable
6245  * @cfg {String} summary Specifies a summary of the content of a table
6246  * @cfg {Number} width Specifies the width of a table
6247  * @cfg {String} layout table layout (auto | fixed | initial | inherit)
6248  * 
6249  * @cfg {boolean} striped Should the rows be alternative striped
6250  * @cfg {boolean} bordered Add borders to the table
6251  * @cfg {boolean} hover Add hover highlighting
6252  * @cfg {boolean} condensed Format condensed
6253  * @cfg {boolean} responsive Format condensed
6254  * @cfg {Boolean} loadMask (true|false) default false
6255  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
6256  * @cfg {Boolean} headerShow (true|false) generate thead, default true
6257  * @cfg {Boolean} rowSelection (true|false) default false
6258  * @cfg {Boolean} cellSelection (true|false) default false
6259  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header
6260  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
6261  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
6262  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
6263  
6264  * 
6265  * @constructor
6266  * Create a new Table
6267  * @param {Object} config The config object
6268  */
6269
6270 Roo.bootstrap.Table = function(config){
6271     Roo.bootstrap.Table.superclass.constructor.call(this, config);
6272     
6273   
6274     
6275     // BC...
6276     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
6277     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
6278     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
6279     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
6280     
6281     this.sm = this.sm || {xtype: 'RowSelectionModel'};
6282     if (this.sm) {
6283         this.sm.grid = this;
6284         this.selModel = Roo.factory(this.sm, Roo.bootstrap.Table);
6285         this.sm = this.selModel;
6286         this.sm.xmodule = this.xmodule || false;
6287     }
6288     
6289     if (this.cm && typeof(this.cm.config) == 'undefined') {
6290         this.colModel = new Roo.grid.ColumnModel(this.cm);
6291         this.cm = this.colModel;
6292         this.cm.xmodule = this.xmodule || false;
6293     }
6294     if (this.store) {
6295         this.store= Roo.factory(this.store, Roo.data);
6296         this.ds = this.store;
6297         this.ds.xmodule = this.xmodule || false;
6298          
6299     }
6300     if (this.footer && this.store) {
6301         this.footer.dataSource = this.ds;
6302         this.footer = Roo.factory(this.footer);
6303     }
6304     
6305     /** @private */
6306     this.addEvents({
6307         /**
6308          * @event cellclick
6309          * Fires when a cell is clicked
6310          * @param {Roo.bootstrap.Table} this
6311          * @param {Roo.Element} el
6312          * @param {Number} rowIndex
6313          * @param {Number} columnIndex
6314          * @param {Roo.EventObject} e
6315          */
6316         "cellclick" : true,
6317         /**
6318          * @event celldblclick
6319          * Fires when a cell is double clicked
6320          * @param {Roo.bootstrap.Table} this
6321          * @param {Roo.Element} el
6322          * @param {Number} rowIndex
6323          * @param {Number} columnIndex
6324          * @param {Roo.EventObject} e
6325          */
6326         "celldblclick" : true,
6327         /**
6328          * @event rowclick
6329          * Fires when a row is clicked
6330          * @param {Roo.bootstrap.Table} this
6331          * @param {Roo.Element} el
6332          * @param {Number} rowIndex
6333          * @param {Roo.EventObject} e
6334          */
6335         "rowclick" : true,
6336         /**
6337          * @event rowdblclick
6338          * Fires when a row is double clicked
6339          * @param {Roo.bootstrap.Table} this
6340          * @param {Roo.Element} el
6341          * @param {Number} rowIndex
6342          * @param {Roo.EventObject} e
6343          */
6344         "rowdblclick" : true,
6345         /**
6346          * @event mouseover
6347          * Fires when a mouseover occur
6348          * @param {Roo.bootstrap.Table} this
6349          * @param {Roo.Element} el
6350          * @param {Number} rowIndex
6351          * @param {Number} columnIndex
6352          * @param {Roo.EventObject} e
6353          */
6354         "mouseover" : true,
6355         /**
6356          * @event mouseout
6357          * Fires when a mouseout occur
6358          * @param {Roo.bootstrap.Table} this
6359          * @param {Roo.Element} el
6360          * @param {Number} rowIndex
6361          * @param {Number} columnIndex
6362          * @param {Roo.EventObject} e
6363          */
6364         "mouseout" : true,
6365         /**
6366          * @event rowclass
6367          * Fires when a row is rendered, so you can change add a style to it.
6368          * @param {Roo.bootstrap.Table} this
6369          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
6370          */
6371         'rowclass' : true,
6372           /**
6373          * @event rowsrendered
6374          * Fires when all the  rows have been rendered
6375          * @param {Roo.bootstrap.Table} this
6376          */
6377         'rowsrendered' : true,
6378         /**
6379          * @event contextmenu
6380          * The raw contextmenu event for the entire grid.
6381          * @param {Roo.EventObject} e
6382          */
6383         "contextmenu" : true,
6384         /**
6385          * @event rowcontextmenu
6386          * Fires when a row is right clicked
6387          * @param {Roo.bootstrap.Table} this
6388          * @param {Number} rowIndex
6389          * @param {Roo.EventObject} e
6390          */
6391         "rowcontextmenu" : true,
6392         /**
6393          * @event cellcontextmenu
6394          * Fires when a cell is right clicked
6395          * @param {Roo.bootstrap.Table} this
6396          * @param {Number} rowIndex
6397          * @param {Number} cellIndex
6398          * @param {Roo.EventObject} e
6399          */
6400          "cellcontextmenu" : true,
6401          /**
6402          * @event headercontextmenu
6403          * Fires when a header is right clicked
6404          * @param {Roo.bootstrap.Table} this
6405          * @param {Number} columnIndex
6406          * @param {Roo.EventObject} e
6407          */
6408         "headercontextmenu" : true
6409     });
6410 };
6411
6412 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
6413     
6414     cls: false,
6415     align: false,
6416     bgcolor: false,
6417     border: false,
6418     cellpadding: false,
6419     cellspacing: false,
6420     frame: false,
6421     rules: false,
6422     sortable: false,
6423     summary: false,
6424     width: false,
6425     striped : false,
6426     scrollBody : false,
6427     bordered: false,
6428     hover:  false,
6429     condensed : false,
6430     responsive : false,
6431     sm : false,
6432     cm : false,
6433     store : false,
6434     loadMask : false,
6435     footerShow : true,
6436     headerShow : true,
6437   
6438     rowSelection : false,
6439     cellSelection : false,
6440     layout : false,
6441     
6442     // Roo.Element - the tbody
6443     mainBody: false,
6444     // Roo.Element - thead element
6445     mainHead: false,
6446     
6447     container: false, // used by gridpanel...
6448     
6449     lazyLoad : false,
6450     
6451     CSS : Roo.util.CSS,
6452     
6453     auto_hide_footer : false,
6454     
6455     getAutoCreate : function()
6456     {
6457         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
6458         
6459         cfg = {
6460             tag: 'table',
6461             cls : 'table',
6462             cn : []
6463         };
6464         if (this.scrollBody) {
6465             cfg.cls += ' table-body-fixed';
6466         }    
6467         if (this.striped) {
6468             cfg.cls += ' table-striped';
6469         }
6470         
6471         if (this.hover) {
6472             cfg.cls += ' table-hover';
6473         }
6474         if (this.bordered) {
6475             cfg.cls += ' table-bordered';
6476         }
6477         if (this.condensed) {
6478             cfg.cls += ' table-condensed';
6479         }
6480         if (this.responsive) {
6481             cfg.cls += ' table-responsive';
6482         }
6483         
6484         if (this.cls) {
6485             cfg.cls+=  ' ' +this.cls;
6486         }
6487         
6488         // this lot should be simplifed...
6489         var _t = this;
6490         var cp = [
6491             'align',
6492             'bgcolor',
6493             'border',
6494             'cellpadding',
6495             'cellspacing',
6496             'frame',
6497             'rules',
6498             'sortable',
6499             'summary',
6500             'width'
6501         ].forEach(function(k) {
6502             if (_t[k]) {
6503                 cfg[k] = _t[k];
6504             }
6505         });
6506         
6507         
6508         if (this.layout) {
6509             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
6510         }
6511         
6512         if(this.store || this.cm){
6513             if(this.headerShow){
6514                 cfg.cn.push(this.renderHeader());
6515             }
6516             
6517             cfg.cn.push(this.renderBody());
6518             
6519             if(this.footerShow){
6520                 cfg.cn.push(this.renderFooter());
6521             }
6522             // where does this come from?
6523             //cfg.cls+=  ' TableGrid';
6524         }
6525         
6526         return { cn : [ cfg ] };
6527     },
6528     
6529     initEvents : function()
6530     {   
6531         if(!this.store || !this.cm){
6532             return;
6533         }
6534         if (this.selModel) {
6535             this.selModel.initEvents();
6536         }
6537         
6538         
6539         //Roo.log('initEvents with ds!!!!');
6540         
6541         this.mainBody = this.el.select('tbody', true).first();
6542         this.mainHead = this.el.select('thead', true).first();
6543         this.mainFoot = this.el.select('tfoot', true).first();
6544         
6545         
6546         
6547         var _this = this;
6548         
6549         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6550             e.on('click', _this.sort, _this);
6551         });
6552         
6553         this.mainBody.on("click", this.onClick, this);
6554         this.mainBody.on("dblclick", this.onDblClick, this);
6555         
6556         // why is this done????? = it breaks dialogs??
6557         //this.parent().el.setStyle('position', 'relative');
6558         
6559         
6560         if (this.footer) {
6561             this.footer.parentId = this.id;
6562             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
6563             
6564             if(this.lazyLoad){
6565                 this.el.select('tfoot tr td').first().addClass('hide');
6566             }
6567         } 
6568         
6569         if(this.loadMask) {
6570             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
6571         }
6572         
6573         this.store.on('load', this.onLoad, this);
6574         this.store.on('beforeload', this.onBeforeLoad, this);
6575         this.store.on('update', this.onUpdate, this);
6576         this.store.on('add', this.onAdd, this);
6577         this.store.on("clear", this.clear, this);
6578         
6579         this.el.on("contextmenu", this.onContextMenu, this);
6580         
6581         this.mainBody.on('scroll', this.onBodyScroll, this);
6582         
6583         this.cm.on("headerchange", this.onHeaderChange, this);
6584         
6585         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
6586         
6587     },
6588     
6589     onContextMenu : function(e, t)
6590     {
6591         this.processEvent("contextmenu", e);
6592     },
6593     
6594     processEvent : function(name, e)
6595     {
6596         if (name != 'touchstart' ) {
6597             this.fireEvent(name, e);    
6598         }
6599         
6600         var t = e.getTarget();
6601         
6602         var cell = Roo.get(t);
6603         
6604         if(!cell){
6605             return;
6606         }
6607         
6608         if(cell.findParent('tfoot', false, true)){
6609             return;
6610         }
6611         
6612         if(cell.findParent('thead', false, true)){
6613             
6614             if(e.getTarget().nodeName.toLowerCase() != 'th'){
6615                 cell = Roo.get(t).findParent('th', false, true);
6616                 if (!cell) {
6617                     Roo.log("failed to find th in thead?");
6618                     Roo.log(e.getTarget());
6619                     return;
6620                 }
6621             }
6622             
6623             var cellIndex = cell.dom.cellIndex;
6624             
6625             var ename = name == 'touchstart' ? 'click' : name;
6626             this.fireEvent("header" + ename, this, cellIndex, e);
6627             
6628             return;
6629         }
6630         
6631         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6632             cell = Roo.get(t).findParent('td', false, true);
6633             if (!cell) {
6634                 Roo.log("failed to find th in tbody?");
6635                 Roo.log(e.getTarget());
6636                 return;
6637             }
6638         }
6639         
6640         var row = cell.findParent('tr', false, true);
6641         var cellIndex = cell.dom.cellIndex;
6642         var rowIndex = row.dom.rowIndex - 1;
6643         
6644         if(row !== false){
6645             
6646             this.fireEvent("row" + name, this, rowIndex, e);
6647             
6648             if(cell !== false){
6649             
6650                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
6651             }
6652         }
6653         
6654     },
6655     
6656     onMouseover : function(e, el)
6657     {
6658         var cell = Roo.get(el);
6659         
6660         if(!cell){
6661             return;
6662         }
6663         
6664         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6665             cell = cell.findParent('td', false, true);
6666         }
6667         
6668         var row = cell.findParent('tr', false, true);
6669         var cellIndex = cell.dom.cellIndex;
6670         var rowIndex = row.dom.rowIndex - 1; // start from 0
6671         
6672         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
6673         
6674     },
6675     
6676     onMouseout : function(e, el)
6677     {
6678         var cell = Roo.get(el);
6679         
6680         if(!cell){
6681             return;
6682         }
6683         
6684         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6685             cell = cell.findParent('td', false, true);
6686         }
6687         
6688         var row = cell.findParent('tr', false, true);
6689         var cellIndex = cell.dom.cellIndex;
6690         var rowIndex = row.dom.rowIndex - 1; // start from 0
6691         
6692         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
6693         
6694     },
6695     
6696     onClick : function(e, el)
6697     {
6698         var cell = Roo.get(el);
6699         
6700         if(!cell || (!this.cellSelection && !this.rowSelection)){
6701             return;
6702         }
6703         
6704         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6705             cell = cell.findParent('td', false, true);
6706         }
6707         
6708         if(!cell || typeof(cell) == 'undefined'){
6709             return;
6710         }
6711         
6712         var row = cell.findParent('tr', false, true);
6713         
6714         if(!row || typeof(row) == 'undefined'){
6715             return;
6716         }
6717         
6718         var cellIndex = cell.dom.cellIndex;
6719         var rowIndex = this.getRowIndex(row);
6720         
6721         // why??? - should these not be based on SelectionModel?
6722         if(this.cellSelection){
6723             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
6724         }
6725         
6726         if(this.rowSelection){
6727             this.fireEvent('rowclick', this, row, rowIndex, e);
6728         }
6729         
6730         
6731     },
6732         
6733     onDblClick : function(e,el)
6734     {
6735         var cell = Roo.get(el);
6736         
6737         if(!cell || (!this.cellSelection && !this.rowSelection)){
6738             return;
6739         }
6740         
6741         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6742             cell = cell.findParent('td', false, true);
6743         }
6744         
6745         if(!cell || typeof(cell) == 'undefined'){
6746             return;
6747         }
6748         
6749         var row = cell.findParent('tr', false, true);
6750         
6751         if(!row || typeof(row) == 'undefined'){
6752             return;
6753         }
6754         
6755         var cellIndex = cell.dom.cellIndex;
6756         var rowIndex = this.getRowIndex(row);
6757         
6758         if(this.cellSelection){
6759             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
6760         }
6761         
6762         if(this.rowSelection){
6763             this.fireEvent('rowdblclick', this, row, rowIndex, e);
6764         }
6765     },
6766     
6767     sort : function(e,el)
6768     {
6769         var col = Roo.get(el);
6770         
6771         if(!col.hasClass('sortable')){
6772             return;
6773         }
6774         
6775         var sort = col.attr('sort');
6776         var dir = 'ASC';
6777         
6778         if(col.select('i', true).first().hasClass('glyphicon-arrow-up')){
6779             dir = 'DESC';
6780         }
6781         
6782         this.store.sortInfo = {field : sort, direction : dir};
6783         
6784         if (this.footer) {
6785             Roo.log("calling footer first");
6786             this.footer.onClick('first');
6787         } else {
6788         
6789             this.store.load({ params : { start : 0 } });
6790         }
6791     },
6792     
6793     renderHeader : function()
6794     {
6795         var header = {
6796             tag: 'thead',
6797             cn : []
6798         };
6799         
6800         var cm = this.cm;
6801         this.totalWidth = 0;
6802         
6803         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
6804             
6805             var config = cm.config[i];
6806             
6807             var c = {
6808                 tag: 'th',
6809                 cls : 'x-hcol-' + i,
6810                 style : '',
6811                 html: cm.getColumnHeader(i)
6812             };
6813             
6814             var hh = '';
6815             
6816             if(typeof(config.sortable) != 'undefined' && config.sortable){
6817                 c.cls = 'sortable';
6818                 c.html = '<i class="glyphicon"></i>' + c.html;
6819             }
6820             
6821             // could use BS4 hidden-..-down 
6822             
6823             if(typeof(config.lgHeader) != 'undefined'){
6824                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
6825             }
6826             
6827             if(typeof(config.mdHeader) != 'undefined'){
6828                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
6829             }
6830             
6831             if(typeof(config.smHeader) != 'undefined'){
6832                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
6833             }
6834             
6835             if(typeof(config.xsHeader) != 'undefined'){
6836                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
6837             }
6838             
6839             if(hh.length){
6840                 c.html = hh;
6841             }
6842             
6843             if(typeof(config.tooltip) != 'undefined'){
6844                 c.tooltip = config.tooltip;
6845             }
6846             
6847             if(typeof(config.colspan) != 'undefined'){
6848                 c.colspan = config.colspan;
6849             }
6850             
6851             if(typeof(config.hidden) != 'undefined' && config.hidden){
6852                 c.style += ' display:none;';
6853             }
6854             
6855             if(typeof(config.dataIndex) != 'undefined'){
6856                 c.sort = config.dataIndex;
6857             }
6858             
6859            
6860             
6861             if(typeof(config.align) != 'undefined' && config.align.length){
6862                 c.style += ' text-align:' + config.align + ';';
6863             }
6864             
6865             if(typeof(config.width) != 'undefined'){
6866                 c.style += ' width:' + config.width + 'px;';
6867                 this.totalWidth += config.width;
6868             } else {
6869                 this.totalWidth += 100; // assume minimum of 100 per column?
6870             }
6871             
6872             if(typeof(config.cls) != 'undefined'){
6873                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
6874             }
6875             
6876             ['xs','sm','md','lg'].map(function(size){
6877                 
6878                 if(typeof(config[size]) == 'undefined'){
6879                     return;
6880                 }
6881                  
6882                 if (!config[size]) { // 0 = hidden
6883                     // BS 4 '0' is treated as hide that column and below.
6884                     c.cls += ' hidden-' + size + ' hidden' + size + 'down';
6885                     return;
6886                 }
6887                 
6888                 c.cls += ' col-' + size + '-' + config[size] + (
6889                     size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
6890                 );
6891                 
6892                 
6893             });
6894             
6895             header.cn.push(c)
6896         }
6897         
6898         return header;
6899     },
6900     
6901     renderBody : function()
6902     {
6903         var body = {
6904             tag: 'tbody',
6905             cn : [
6906                 {
6907                     tag: 'tr',
6908                     cn : [
6909                         {
6910                             tag : 'td',
6911                             colspan :  this.cm.getColumnCount()
6912                         }
6913                     ]
6914                 }
6915             ]
6916         };
6917         
6918         return body;
6919     },
6920     
6921     renderFooter : function()
6922     {
6923         var footer = {
6924             tag: 'tfoot',
6925             cn : [
6926                 {
6927                     tag: 'tr',
6928                     cn : [
6929                         {
6930                             tag : 'td',
6931                             colspan :  this.cm.getColumnCount()
6932                         }
6933                     ]
6934                 }
6935             ]
6936         };
6937         
6938         return footer;
6939     },
6940     
6941     
6942     
6943     onLoad : function()
6944     {
6945 //        Roo.log('ds onload');
6946         this.clear();
6947         
6948         var _this = this;
6949         var cm = this.cm;
6950         var ds = this.store;
6951         
6952         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6953             e.select('i', true).removeClass(['glyphicon-arrow-up', 'glyphicon-arrow-down']);
6954             if (_this.store.sortInfo) {
6955                     
6956                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
6957                     e.select('i', true).addClass(['glyphicon-arrow-up']);
6958                 }
6959                 
6960                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
6961                     e.select('i', true).addClass(['glyphicon-arrow-down']);
6962                 }
6963             }
6964         });
6965         
6966         var tbody =  this.mainBody;
6967               
6968         if(ds.getCount() > 0){
6969             ds.data.each(function(d,rowIndex){
6970                 var row =  this.renderRow(cm, ds, rowIndex);
6971                 
6972                 tbody.createChild(row);
6973                 
6974                 var _this = this;
6975                 
6976                 if(row.cellObjects.length){
6977                     Roo.each(row.cellObjects, function(r){
6978                         _this.renderCellObject(r);
6979                     })
6980                 }
6981                 
6982             }, this);
6983         }
6984         
6985         var tfoot = this.el.select('tfoot', true).first();
6986         
6987         if(this.footerShow && this.auto_hide_footer && this.mainFoot){
6988             
6989             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
6990             
6991             var total = this.ds.getTotalCount();
6992             
6993             if(this.footer.pageSize < total){
6994                 this.mainFoot.show();
6995             }
6996         }
6997         
6998         Roo.each(this.el.select('tbody td', true).elements, function(e){
6999             e.on('mouseover', _this.onMouseover, _this);
7000         });
7001         
7002         Roo.each(this.el.select('tbody td', true).elements, function(e){
7003             e.on('mouseout', _this.onMouseout, _this);
7004         });
7005         this.fireEvent('rowsrendered', this);
7006         
7007         this.autoSize();
7008     },
7009     
7010     
7011     onUpdate : function(ds,record)
7012     {
7013         this.refreshRow(record);
7014         this.autoSize();
7015     },
7016     
7017     onRemove : function(ds, record, index, isUpdate){
7018         if(isUpdate !== true){
7019             this.fireEvent("beforerowremoved", this, index, record);
7020         }
7021         var bt = this.mainBody.dom;
7022         
7023         var rows = this.el.select('tbody > tr', true).elements;
7024         
7025         if(typeof(rows[index]) != 'undefined'){
7026             bt.removeChild(rows[index].dom);
7027         }
7028         
7029 //        if(bt.rows[index]){
7030 //            bt.removeChild(bt.rows[index]);
7031 //        }
7032         
7033         if(isUpdate !== true){
7034             //this.stripeRows(index);
7035             //this.syncRowHeights(index, index);
7036             //this.layout();
7037             this.fireEvent("rowremoved", this, index, record);
7038         }
7039     },
7040     
7041     onAdd : function(ds, records, rowIndex)
7042     {
7043         //Roo.log('on Add called');
7044         // - note this does not handle multiple adding very well..
7045         var bt = this.mainBody.dom;
7046         for (var i =0 ; i < records.length;i++) {
7047             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
7048             //Roo.log(records[i]);
7049             //Roo.log(this.store.getAt(rowIndex+i));
7050             this.insertRow(this.store, rowIndex + i, false);
7051             return;
7052         }
7053         
7054     },
7055     
7056     
7057     refreshRow : function(record){
7058         var ds = this.store, index;
7059         if(typeof record == 'number'){
7060             index = record;
7061             record = ds.getAt(index);
7062         }else{
7063             index = ds.indexOf(record);
7064         }
7065         this.insertRow(ds, index, true);
7066         this.autoSize();
7067         this.onRemove(ds, record, index+1, true);
7068         this.autoSize();
7069         //this.syncRowHeights(index, index);
7070         //this.layout();
7071         this.fireEvent("rowupdated", this, index, record);
7072     },
7073     
7074     insertRow : function(dm, rowIndex, isUpdate){
7075         
7076         if(!isUpdate){
7077             this.fireEvent("beforerowsinserted", this, rowIndex);
7078         }
7079             //var s = this.getScrollState();
7080         var row = this.renderRow(this.cm, this.store, rowIndex);
7081         // insert before rowIndex..
7082         var e = this.mainBody.createChild(row,this.getRowDom(rowIndex));
7083         
7084         var _this = this;
7085                 
7086         if(row.cellObjects.length){
7087             Roo.each(row.cellObjects, function(r){
7088                 _this.renderCellObject(r);
7089             })
7090         }
7091             
7092         if(!isUpdate){
7093             this.fireEvent("rowsinserted", this, rowIndex);
7094             //this.syncRowHeights(firstRow, lastRow);
7095             //this.stripeRows(firstRow);
7096             //this.layout();
7097         }
7098         
7099     },
7100     
7101     
7102     getRowDom : function(rowIndex)
7103     {
7104         var rows = this.el.select('tbody > tr', true).elements;
7105         
7106         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
7107         
7108     },
7109     // returns the object tree for a tr..
7110   
7111     
7112     renderRow : function(cm, ds, rowIndex) 
7113     {
7114         var d = ds.getAt(rowIndex);
7115         
7116         var row = {
7117             tag : 'tr',
7118             cls : 'x-row-' + rowIndex,
7119             cn : []
7120         };
7121             
7122         var cellObjects = [];
7123         
7124         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
7125             var config = cm.config[i];
7126             
7127             var renderer = cm.getRenderer(i);
7128             var value = '';
7129             var id = false;
7130             
7131             if(typeof(renderer) !== 'undefined'){
7132                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
7133             }
7134             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
7135             // and are rendered into the cells after the row is rendered - using the id for the element.
7136             
7137             if(typeof(value) === 'object'){
7138                 id = Roo.id();
7139                 cellObjects.push({
7140                     container : id,
7141                     cfg : value 
7142                 })
7143             }
7144             
7145             var rowcfg = {
7146                 record: d,
7147                 rowIndex : rowIndex,
7148                 colIndex : i,
7149                 rowClass : ''
7150             };
7151
7152             this.fireEvent('rowclass', this, rowcfg);
7153             
7154             var td = {
7155                 tag: 'td',
7156                 cls : rowcfg.rowClass + ' x-col-' + i,
7157                 style: '',
7158                 html: (typeof(value) === 'object') ? '' : value
7159             };
7160             
7161             if (id) {
7162                 td.id = id;
7163             }
7164             
7165             if(typeof(config.colspan) != 'undefined'){
7166                 td.colspan = config.colspan;
7167             }
7168             
7169             if(typeof(config.hidden) != 'undefined' && config.hidden){
7170                 td.style += ' display:none;';
7171             }
7172             
7173             if(typeof(config.align) != 'undefined' && config.align.length){
7174                 td.style += ' text-align:' + config.align + ';';
7175             }
7176             if(typeof(config.valign) != 'undefined' && config.valign.length){
7177                 td.style += ' vertical-align:' + config.valign + ';';
7178             }
7179             
7180             if(typeof(config.width) != 'undefined'){
7181                 td.style += ' width:' +  config.width + 'px;';
7182             }
7183             
7184             if(typeof(config.cursor) != 'undefined'){
7185                 td.style += ' cursor:' +  config.cursor + ';';
7186             }
7187             
7188             if(typeof(config.cls) != 'undefined'){
7189                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
7190             }
7191             
7192             ['xs','sm','md','lg'].map(function(size){
7193                 
7194                 if(typeof(config[size]) == 'undefined'){
7195                     return;
7196                 }
7197                 
7198                 
7199                   
7200                 if (!config[size]) { // 0 = hidden
7201                     // BS 4 '0' is treated as hide that column and below.
7202                     td.cls += ' hidden-' + size + ' hidden' + size + 'down';
7203                     return;
7204                 }
7205                 
7206                 td.cls += ' col-' + size + '-' + config[size] + (
7207                     size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
7208                 );
7209                  
7210
7211             });
7212             
7213             row.cn.push(td);
7214            
7215         }
7216         
7217         row.cellObjects = cellObjects;
7218         
7219         return row;
7220           
7221     },
7222     
7223     
7224     
7225     onBeforeLoad : function()
7226     {
7227         
7228     },
7229      /**
7230      * Remove all rows
7231      */
7232     clear : function()
7233     {
7234         this.el.select('tbody', true).first().dom.innerHTML = '';
7235     },
7236     /**
7237      * Show or hide a row.
7238      * @param {Number} rowIndex to show or hide
7239      * @param {Boolean} state hide
7240      */
7241     setRowVisibility : function(rowIndex, state)
7242     {
7243         var bt = this.mainBody.dom;
7244         
7245         var rows = this.el.select('tbody > tr', true).elements;
7246         
7247         if(typeof(rows[rowIndex]) == 'undefined'){
7248             return;
7249         }
7250         rows[rowIndex].dom.style.display = state ? '' : 'none';
7251     },
7252     
7253     
7254     getSelectionModel : function(){
7255         if(!this.selModel){
7256             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
7257         }
7258         return this.selModel;
7259     },
7260     /*
7261      * Render the Roo.bootstrap object from renderder
7262      */
7263     renderCellObject : function(r)
7264     {
7265         var _this = this;
7266         
7267         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
7268         
7269         var t = r.cfg.render(r.container);
7270         
7271         if(r.cfg.cn){
7272             Roo.each(r.cfg.cn, function(c){
7273                 var child = {
7274                     container: t.getChildContainer(),
7275                     cfg: c
7276                 };
7277                 _this.renderCellObject(child);
7278             })
7279         }
7280     },
7281     
7282     getRowIndex : function(row)
7283     {
7284         var rowIndex = -1;
7285         
7286         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
7287             if(el != row){
7288                 return;
7289             }
7290             
7291             rowIndex = index;
7292         });
7293         
7294         return rowIndex;
7295     },
7296      /**
7297      * Returns the grid's underlying element = used by panel.Grid
7298      * @return {Element} The element
7299      */
7300     getGridEl : function(){
7301         return this.el;
7302     },
7303      /**
7304      * Forces a resize - used by panel.Grid
7305      * @return {Element} The element
7306      */
7307     autoSize : function()
7308     {
7309         //var ctr = Roo.get(this.container.dom.parentElement);
7310         var ctr = Roo.get(this.el.dom);
7311         
7312         var thd = this.getGridEl().select('thead',true).first();
7313         var tbd = this.getGridEl().select('tbody', true).first();
7314         var tfd = this.getGridEl().select('tfoot', true).first();
7315         
7316         var cw = ctr.getWidth();
7317         
7318         if (tbd) {
7319             
7320             tbd.setSize(ctr.getWidth(),
7321                         ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
7322             );
7323             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
7324             cw -= barsize;
7325         }
7326         cw = Math.max(cw, this.totalWidth);
7327         this.getGridEl().select('tr',true).setWidth(cw);
7328         // resize 'expandable coloumn?
7329         
7330         return; // we doe not have a view in this design..
7331         
7332     },
7333     onBodyScroll: function()
7334     {
7335         //Roo.log("body scrolled');" + this.mainBody.dom.scrollLeft);
7336         if(this.mainHead){
7337             this.mainHead.setStyle({
7338                 'position' : 'relative',
7339                 'left': (-1* this.mainBody.dom.scrollLeft) + 'px'
7340             });
7341         }
7342         
7343         if(this.lazyLoad){
7344             
7345             var scrollHeight = this.mainBody.dom.scrollHeight;
7346             
7347             var scrollTop = Math.ceil(this.mainBody.getScroll().top);
7348             
7349             var height = this.mainBody.getHeight();
7350             
7351             if(scrollHeight - height == scrollTop) {
7352                 
7353                 var total = this.ds.getTotalCount();
7354                 
7355                 if(this.footer.cursor + this.footer.pageSize < total){
7356                     
7357                     this.footer.ds.load({
7358                         params : {
7359                             start : this.footer.cursor + this.footer.pageSize,
7360                             limit : this.footer.pageSize
7361                         },
7362                         add : true
7363                     });
7364                 }
7365             }
7366             
7367         }
7368     },
7369     
7370     onHeaderChange : function()
7371     {
7372         var header = this.renderHeader();
7373         var table = this.el.select('table', true).first();
7374         
7375         this.mainHead.remove();
7376         this.mainHead = table.createChild(header, this.mainBody, false);
7377     },
7378     
7379     onHiddenChange : function(colModel, colIndex, hidden)
7380     {
7381         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
7382         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
7383         
7384         this.CSS.updateRule(thSelector, "display", "");
7385         this.CSS.updateRule(tdSelector, "display", "");
7386         
7387         if(hidden){
7388             this.CSS.updateRule(thSelector, "display", "none");
7389             this.CSS.updateRule(tdSelector, "display", "none");
7390         }
7391         
7392         this.onHeaderChange();
7393         this.onLoad();
7394     },
7395     
7396     setColumnWidth: function(col_index, width)
7397     {
7398         // width = "md-2 xs-2..."
7399         if(!this.colModel.config[col_index]) {
7400             return;
7401         }
7402         
7403         var w = width.split(" ");
7404         
7405         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
7406         
7407         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
7408         
7409         
7410         for(var j = 0; j < w.length; j++) {
7411             
7412             if(!w[j]) {
7413                 continue;
7414             }
7415             
7416             var size_cls = w[j].split("-");
7417             
7418             if(!Number.isInteger(size_cls[1] * 1)) {
7419                 continue;
7420             }
7421             
7422             if(!this.colModel.config[col_index][size_cls[0]]) {
7423                 continue;
7424             }
7425             
7426             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7427                 continue;
7428             }
7429             
7430             h_row[0].classList.replace(
7431                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7432                 "col-"+size_cls[0]+"-"+size_cls[1]
7433             );
7434             
7435             for(var i = 0; i < rows.length; i++) {
7436                 
7437                 var size_cls = w[j].split("-");
7438                 
7439                 if(!Number.isInteger(size_cls[1] * 1)) {
7440                     continue;
7441                 }
7442                 
7443                 if(!this.colModel.config[col_index][size_cls[0]]) {
7444                     continue;
7445                 }
7446                 
7447                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7448                     continue;
7449                 }
7450                 
7451                 rows[i].classList.replace(
7452                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7453                     "col-"+size_cls[0]+"-"+size_cls[1]
7454                 );
7455             }
7456             
7457             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
7458         }
7459     }
7460 });
7461
7462  
7463
7464  /*
7465  * - LGPL
7466  *
7467  * table cell
7468  * 
7469  */
7470
7471 /**
7472  * @class Roo.bootstrap.TableCell
7473  * @extends Roo.bootstrap.Component
7474  * Bootstrap TableCell class
7475  * @cfg {String} html cell contain text
7476  * @cfg {String} cls cell class
7477  * @cfg {String} tag cell tag (td|th) default td
7478  * @cfg {String} abbr Specifies an abbreviated version of the content in a cell
7479  * @cfg {String} align Aligns the content in a cell
7480  * @cfg {String} axis Categorizes cells
7481  * @cfg {String} bgcolor Specifies the background color of a cell
7482  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7483  * @cfg {Number} colspan Specifies the number of columns a cell should span
7484  * @cfg {String} headers Specifies one or more header cells a cell is related to
7485  * @cfg {Number} height Sets the height of a cell
7486  * @cfg {String} nowrap Specifies that the content inside a cell should not wrap
7487  * @cfg {Number} rowspan Sets the number of rows a cell should span
7488  * @cfg {String} scope Defines a way to associate header cells and data cells in a table
7489  * @cfg {String} valign Vertical aligns the content in a cell
7490  * @cfg {Number} width Specifies the width of a cell
7491  * 
7492  * @constructor
7493  * Create a new TableCell
7494  * @param {Object} config The config object
7495  */
7496
7497 Roo.bootstrap.TableCell = function(config){
7498     Roo.bootstrap.TableCell.superclass.constructor.call(this, config);
7499 };
7500
7501 Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
7502     
7503     html: false,
7504     cls: false,
7505     tag: false,
7506     abbr: false,
7507     align: false,
7508     axis: false,
7509     bgcolor: false,
7510     charoff: false,
7511     colspan: false,
7512     headers: false,
7513     height: false,
7514     nowrap: false,
7515     rowspan: false,
7516     scope: false,
7517     valign: false,
7518     width: false,
7519     
7520     
7521     getAutoCreate : function(){
7522         var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this));
7523         
7524         cfg = {
7525             tag: 'td'
7526         };
7527         
7528         if(this.tag){
7529             cfg.tag = this.tag;
7530         }
7531         
7532         if (this.html) {
7533             cfg.html=this.html
7534         }
7535         if (this.cls) {
7536             cfg.cls=this.cls
7537         }
7538         if (this.abbr) {
7539             cfg.abbr=this.abbr
7540         }
7541         if (this.align) {
7542             cfg.align=this.align
7543         }
7544         if (this.axis) {
7545             cfg.axis=this.axis
7546         }
7547         if (this.bgcolor) {
7548             cfg.bgcolor=this.bgcolor
7549         }
7550         if (this.charoff) {
7551             cfg.charoff=this.charoff
7552         }
7553         if (this.colspan) {
7554             cfg.colspan=this.colspan
7555         }
7556         if (this.headers) {
7557             cfg.headers=this.headers
7558         }
7559         if (this.height) {
7560             cfg.height=this.height
7561         }
7562         if (this.nowrap) {
7563             cfg.nowrap=this.nowrap
7564         }
7565         if (this.rowspan) {
7566             cfg.rowspan=this.rowspan
7567         }
7568         if (this.scope) {
7569             cfg.scope=this.scope
7570         }
7571         if (this.valign) {
7572             cfg.valign=this.valign
7573         }
7574         if (this.width) {
7575             cfg.width=this.width
7576         }
7577         
7578         
7579         return cfg;
7580     }
7581    
7582 });
7583
7584  
7585
7586  /*
7587  * - LGPL
7588  *
7589  * table row
7590  * 
7591  */
7592
7593 /**
7594  * @class Roo.bootstrap.TableRow
7595  * @extends Roo.bootstrap.Component
7596  * Bootstrap TableRow class
7597  * @cfg {String} cls row class
7598  * @cfg {String} align Aligns the content in a table row
7599  * @cfg {String} bgcolor Specifies a background color for a table row
7600  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7601  * @cfg {String} valign Vertical aligns the content in a table row
7602  * 
7603  * @constructor
7604  * Create a new TableRow
7605  * @param {Object} config The config object
7606  */
7607
7608 Roo.bootstrap.TableRow = function(config){
7609     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
7610 };
7611
7612 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
7613     
7614     cls: false,
7615     align: false,
7616     bgcolor: false,
7617     charoff: false,
7618     valign: false,
7619     
7620     getAutoCreate : function(){
7621         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
7622         
7623         cfg = {
7624             tag: 'tr'
7625         };
7626             
7627         if(this.cls){
7628             cfg.cls = this.cls;
7629         }
7630         if(this.align){
7631             cfg.align = this.align;
7632         }
7633         if(this.bgcolor){
7634             cfg.bgcolor = this.bgcolor;
7635         }
7636         if(this.charoff){
7637             cfg.charoff = this.charoff;
7638         }
7639         if(this.valign){
7640             cfg.valign = this.valign;
7641         }
7642         
7643         return cfg;
7644     }
7645    
7646 });
7647
7648  
7649
7650  /*
7651  * - LGPL
7652  *
7653  * table body
7654  * 
7655  */
7656
7657 /**
7658  * @class Roo.bootstrap.TableBody
7659  * @extends Roo.bootstrap.Component
7660  * Bootstrap TableBody class
7661  * @cfg {String} cls element class
7662  * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
7663  * @cfg {String} align Aligns the content inside the element
7664  * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
7665  * @cfg {String} valign Vertical aligns the content inside the <tbody> element
7666  * 
7667  * @constructor
7668  * Create a new TableBody
7669  * @param {Object} config The config object
7670  */
7671
7672 Roo.bootstrap.TableBody = function(config){
7673     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
7674 };
7675
7676 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
7677     
7678     cls: false,
7679     tag: false,
7680     align: false,
7681     charoff: false,
7682     valign: false,
7683     
7684     getAutoCreate : function(){
7685         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
7686         
7687         cfg = {
7688             tag: 'tbody'
7689         };
7690             
7691         if (this.cls) {
7692             cfg.cls=this.cls
7693         }
7694         if(this.tag){
7695             cfg.tag = this.tag;
7696         }
7697         
7698         if(this.align){
7699             cfg.align = this.align;
7700         }
7701         if(this.charoff){
7702             cfg.charoff = this.charoff;
7703         }
7704         if(this.valign){
7705             cfg.valign = this.valign;
7706         }
7707         
7708         return cfg;
7709     }
7710     
7711     
7712 //    initEvents : function()
7713 //    {
7714 //        
7715 //        if(!this.store){
7716 //            return;
7717 //        }
7718 //        
7719 //        this.store = Roo.factory(this.store, Roo.data);
7720 //        this.store.on('load', this.onLoad, this);
7721 //        
7722 //        this.store.load();
7723 //        
7724 //    },
7725 //    
7726 //    onLoad: function () 
7727 //    {   
7728 //        this.fireEvent('load', this);
7729 //    }
7730 //    
7731 //   
7732 });
7733
7734  
7735
7736  /*
7737  * Based on:
7738  * Ext JS Library 1.1.1
7739  * Copyright(c) 2006-2007, Ext JS, LLC.
7740  *
7741  * Originally Released Under LGPL - original licence link has changed is not relivant.
7742  *
7743  * Fork - LGPL
7744  * <script type="text/javascript">
7745  */
7746
7747 // as we use this in bootstrap.
7748 Roo.namespace('Roo.form');
7749  /**
7750  * @class Roo.form.Action
7751  * Internal Class used to handle form actions
7752  * @constructor
7753  * @param {Roo.form.BasicForm} el The form element or its id
7754  * @param {Object} config Configuration options
7755  */
7756
7757  
7758  
7759 // define the action interface
7760 Roo.form.Action = function(form, options){
7761     this.form = form;
7762     this.options = options || {};
7763 };
7764 /**
7765  * Client Validation Failed
7766  * @const 
7767  */
7768 Roo.form.Action.CLIENT_INVALID = 'client';
7769 /**
7770  * Server Validation Failed
7771  * @const 
7772  */
7773 Roo.form.Action.SERVER_INVALID = 'server';
7774  /**
7775  * Connect to Server Failed
7776  * @const 
7777  */
7778 Roo.form.Action.CONNECT_FAILURE = 'connect';
7779 /**
7780  * Reading Data from Server Failed
7781  * @const 
7782  */
7783 Roo.form.Action.LOAD_FAILURE = 'load';
7784
7785 Roo.form.Action.prototype = {
7786     type : 'default',
7787     failureType : undefined,
7788     response : undefined,
7789     result : undefined,
7790
7791     // interface method
7792     run : function(options){
7793
7794     },
7795
7796     // interface method
7797     success : function(response){
7798
7799     },
7800
7801     // interface method
7802     handleResponse : function(response){
7803
7804     },
7805
7806     // default connection failure
7807     failure : function(response){
7808         
7809         this.response = response;
7810         this.failureType = Roo.form.Action.CONNECT_FAILURE;
7811         this.form.afterAction(this, false);
7812     },
7813
7814     processResponse : function(response){
7815         this.response = response;
7816         if(!response.responseText){
7817             return true;
7818         }
7819         this.result = this.handleResponse(response);
7820         return this.result;
7821     },
7822
7823     // utility functions used internally
7824     getUrl : function(appendParams){
7825         var url = this.options.url || this.form.url || this.form.el.dom.action;
7826         if(appendParams){
7827             var p = this.getParams();
7828             if(p){
7829                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
7830             }
7831         }
7832         return url;
7833     },
7834
7835     getMethod : function(){
7836         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
7837     },
7838
7839     getParams : function(){
7840         var bp = this.form.baseParams;
7841         var p = this.options.params;
7842         if(p){
7843             if(typeof p == "object"){
7844                 p = Roo.urlEncode(Roo.applyIf(p, bp));
7845             }else if(typeof p == 'string' && bp){
7846                 p += '&' + Roo.urlEncode(bp);
7847             }
7848         }else if(bp){
7849             p = Roo.urlEncode(bp);
7850         }
7851         return p;
7852     },
7853
7854     createCallback : function(){
7855         return {
7856             success: this.success,
7857             failure: this.failure,
7858             scope: this,
7859             timeout: (this.form.timeout*1000),
7860             upload: this.form.fileUpload ? this.success : undefined
7861         };
7862     }
7863 };
7864
7865 Roo.form.Action.Submit = function(form, options){
7866     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
7867 };
7868
7869 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
7870     type : 'submit',
7871
7872     haveProgress : false,
7873     uploadComplete : false,
7874     
7875     // uploadProgress indicator.
7876     uploadProgress : function()
7877     {
7878         if (!this.form.progressUrl) {
7879             return;
7880         }
7881         
7882         if (!this.haveProgress) {
7883             Roo.MessageBox.progress("Uploading", "Uploading");
7884         }
7885         if (this.uploadComplete) {
7886            Roo.MessageBox.hide();
7887            return;
7888         }
7889         
7890         this.haveProgress = true;
7891    
7892         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
7893         
7894         var c = new Roo.data.Connection();
7895         c.request({
7896             url : this.form.progressUrl,
7897             params: {
7898                 id : uid
7899             },
7900             method: 'GET',
7901             success : function(req){
7902                //console.log(data);
7903                 var rdata = false;
7904                 var edata;
7905                 try  {
7906                    rdata = Roo.decode(req.responseText)
7907                 } catch (e) {
7908                     Roo.log("Invalid data from server..");
7909                     Roo.log(edata);
7910                     return;
7911                 }
7912                 if (!rdata || !rdata.success) {
7913                     Roo.log(rdata);
7914                     Roo.MessageBox.alert(Roo.encode(rdata));
7915                     return;
7916                 }
7917                 var data = rdata.data;
7918                 
7919                 if (this.uploadComplete) {
7920                    Roo.MessageBox.hide();
7921                    return;
7922                 }
7923                    
7924                 if (data){
7925                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
7926                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
7927                     );
7928                 }
7929                 this.uploadProgress.defer(2000,this);
7930             },
7931        
7932             failure: function(data) {
7933                 Roo.log('progress url failed ');
7934                 Roo.log(data);
7935             },
7936             scope : this
7937         });
7938            
7939     },
7940     
7941     
7942     run : function()
7943     {
7944         // run get Values on the form, so it syncs any secondary forms.
7945         this.form.getValues();
7946         
7947         var o = this.options;
7948         var method = this.getMethod();
7949         var isPost = method == 'POST';
7950         if(o.clientValidation === false || this.form.isValid()){
7951             
7952             if (this.form.progressUrl) {
7953                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
7954                     (new Date() * 1) + '' + Math.random());
7955                     
7956             } 
7957             
7958             
7959             Roo.Ajax.request(Roo.apply(this.createCallback(), {
7960                 form:this.form.el.dom,
7961                 url:this.getUrl(!isPost),
7962                 method: method,
7963                 params:isPost ? this.getParams() : null,
7964                 isUpload: this.form.fileUpload,
7965                 formData : this.form.formData
7966             }));
7967             
7968             this.uploadProgress();
7969
7970         }else if (o.clientValidation !== false){ // client validation failed
7971             this.failureType = Roo.form.Action.CLIENT_INVALID;
7972             this.form.afterAction(this, false);
7973         }
7974     },
7975
7976     success : function(response)
7977     {
7978         this.uploadComplete= true;
7979         if (this.haveProgress) {
7980             Roo.MessageBox.hide();
7981         }
7982         
7983         
7984         var result = this.processResponse(response);
7985         if(result === true || result.success){
7986             this.form.afterAction(this, true);
7987             return;
7988         }
7989         if(result.errors){
7990             this.form.markInvalid(result.errors);
7991             this.failureType = Roo.form.Action.SERVER_INVALID;
7992         }
7993         this.form.afterAction(this, false);
7994     },
7995     failure : function(response)
7996     {
7997         this.uploadComplete= true;
7998         if (this.haveProgress) {
7999             Roo.MessageBox.hide();
8000         }
8001         
8002         this.response = response;
8003         this.failureType = Roo.form.Action.CONNECT_FAILURE;
8004         this.form.afterAction(this, false);
8005     },
8006     
8007     handleResponse : function(response){
8008         if(this.form.errorReader){
8009             var rs = this.form.errorReader.read(response);
8010             var errors = [];
8011             if(rs.records){
8012                 for(var i = 0, len = rs.records.length; i < len; i++) {
8013                     var r = rs.records[i];
8014                     errors[i] = r.data;
8015                 }
8016             }
8017             if(errors.length < 1){
8018                 errors = null;
8019             }
8020             return {
8021                 success : rs.success,
8022                 errors : errors
8023             };
8024         }
8025         var ret = false;
8026         try {
8027             ret = Roo.decode(response.responseText);
8028         } catch (e) {
8029             ret = {
8030                 success: false,
8031                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
8032                 errors : []
8033             };
8034         }
8035         return ret;
8036         
8037     }
8038 });
8039
8040
8041 Roo.form.Action.Load = function(form, options){
8042     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
8043     this.reader = this.form.reader;
8044 };
8045
8046 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
8047     type : 'load',
8048
8049     run : function(){
8050         
8051         Roo.Ajax.request(Roo.apply(
8052                 this.createCallback(), {
8053                     method:this.getMethod(),
8054                     url:this.getUrl(false),
8055                     params:this.getParams()
8056         }));
8057     },
8058
8059     success : function(response){
8060         
8061         var result = this.processResponse(response);
8062         if(result === true || !result.success || !result.data){
8063             this.failureType = Roo.form.Action.LOAD_FAILURE;
8064             this.form.afterAction(this, false);
8065             return;
8066         }
8067         this.form.clearInvalid();
8068         this.form.setValues(result.data);
8069         this.form.afterAction(this, true);
8070     },
8071
8072     handleResponse : function(response){
8073         if(this.form.reader){
8074             var rs = this.form.reader.read(response);
8075             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
8076             return {
8077                 success : rs.success,
8078                 data : data
8079             };
8080         }
8081         return Roo.decode(response.responseText);
8082     }
8083 });
8084
8085 Roo.form.Action.ACTION_TYPES = {
8086     'load' : Roo.form.Action.Load,
8087     'submit' : Roo.form.Action.Submit
8088 };/*
8089  * - LGPL
8090  *
8091  * form
8092  *
8093  */
8094
8095 /**
8096  * @class Roo.bootstrap.Form
8097  * @extends Roo.bootstrap.Component
8098  * Bootstrap Form class
8099  * @cfg {String} method  GET | POST (default POST)
8100  * @cfg {String} labelAlign top | left (default top)
8101  * @cfg {String} align left  | right - for navbars
8102  * @cfg {Boolean} loadMask load mask when submit (default true)
8103
8104  *
8105  * @constructor
8106  * Create a new Form
8107  * @param {Object} config The config object
8108  */
8109
8110
8111 Roo.bootstrap.Form = function(config){
8112     
8113     Roo.bootstrap.Form.superclass.constructor.call(this, config);
8114     
8115     Roo.bootstrap.Form.popover.apply();
8116     
8117     this.addEvents({
8118         /**
8119          * @event clientvalidation
8120          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
8121          * @param {Form} this
8122          * @param {Boolean} valid true if the form has passed client-side validation
8123          */
8124         clientvalidation: true,
8125         /**
8126          * @event beforeaction
8127          * Fires before any action is performed. Return false to cancel the action.
8128          * @param {Form} this
8129          * @param {Action} action The action to be performed
8130          */
8131         beforeaction: true,
8132         /**
8133          * @event actionfailed
8134          * Fires when an action fails.
8135          * @param {Form} this
8136          * @param {Action} action The action that failed
8137          */
8138         actionfailed : true,
8139         /**
8140          * @event actioncomplete
8141          * Fires when an action is completed.
8142          * @param {Form} this
8143          * @param {Action} action The action that completed
8144          */
8145         actioncomplete : true
8146     });
8147 };
8148
8149 Roo.extend(Roo.bootstrap.Form, Roo.bootstrap.Component,  {
8150
8151      /**
8152      * @cfg {String} method
8153      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
8154      */
8155     method : 'POST',
8156     /**
8157      * @cfg {String} url
8158      * The URL to use for form actions if one isn't supplied in the action options.
8159      */
8160     /**
8161      * @cfg {Boolean} fileUpload
8162      * Set to true if this form is a file upload.
8163      */
8164
8165     /**
8166      * @cfg {Object} baseParams
8167      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
8168      */
8169
8170     /**
8171      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
8172      */
8173     timeout: 30,
8174     /**
8175      * @cfg {Sting} align (left|right) for navbar forms
8176      */
8177     align : 'left',
8178
8179     // private
8180     activeAction : null,
8181
8182     /**
8183      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
8184      * element by passing it or its id or mask the form itself by passing in true.
8185      * @type Mixed
8186      */
8187     waitMsgTarget : false,
8188
8189     loadMask : true,
8190     
8191     /**
8192      * @cfg {Boolean} errorMask (true|false) default false
8193      */
8194     errorMask : false,
8195     
8196     /**
8197      * @cfg {Number} maskOffset Default 100
8198      */
8199     maskOffset : 100,
8200     
8201     /**
8202      * @cfg {Boolean} maskBody
8203      */
8204     maskBody : false,
8205
8206     getAutoCreate : function(){
8207
8208         var cfg = {
8209             tag: 'form',
8210             method : this.method || 'POST',
8211             id : this.id || Roo.id(),
8212             cls : ''
8213         };
8214         if (this.parent().xtype.match(/^Nav/)) {
8215             cfg.cls = 'navbar-form form-inline navbar-' + this.align;
8216
8217         }
8218
8219         if (this.labelAlign == 'left' ) {
8220             cfg.cls += ' form-horizontal';
8221         }
8222
8223
8224         return cfg;
8225     },
8226     initEvents : function()
8227     {
8228         this.el.on('submit', this.onSubmit, this);
8229         // this was added as random key presses on the form where triggering form submit.
8230         this.el.on('keypress', function(e) {
8231             if (e.getCharCode() != 13) {
8232                 return true;
8233             }
8234             // we might need to allow it for textareas.. and some other items.
8235             // check e.getTarget().
8236
8237             if(e.getTarget().nodeName.toLowerCase() === 'textarea'){
8238                 return true;
8239             }
8240
8241             Roo.log("keypress blocked");
8242
8243             e.preventDefault();
8244             return false;
8245         });
8246         
8247     },
8248     // private
8249     onSubmit : function(e){
8250         e.stopEvent();
8251     },
8252
8253      /**
8254      * Returns true if client-side validation on the form is successful.
8255      * @return Boolean
8256      */
8257     isValid : function(){
8258         var items = this.getItems();
8259         var valid = true;
8260         var target = false;
8261         
8262         items.each(function(f){
8263             
8264             if(f.validate()){
8265                 return;
8266             }
8267             
8268             Roo.log('invalid field: ' + f.name);
8269             
8270             valid = false;
8271
8272             if(!target && f.el.isVisible(true)){
8273                 target = f;
8274             }
8275            
8276         });
8277         
8278         if(this.errorMask && !valid){
8279             Roo.bootstrap.Form.popover.mask(this, target);
8280         }
8281         
8282         return valid;
8283     },
8284     
8285     /**
8286      * Returns true if any fields in this form have changed since their original load.
8287      * @return Boolean
8288      */
8289     isDirty : function(){
8290         var dirty = false;
8291         var items = this.getItems();
8292         items.each(function(f){
8293            if(f.isDirty()){
8294                dirty = true;
8295                return false;
8296            }
8297            return true;
8298         });
8299         return dirty;
8300     },
8301      /**
8302      * Performs a predefined action (submit or load) or custom actions you define on this form.
8303      * @param {String} actionName The name of the action type
8304      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
8305      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
8306      * accept other config options):
8307      * <pre>
8308 Property          Type             Description
8309 ----------------  ---------------  ----------------------------------------------------------------------------------
8310 url               String           The url for the action (defaults to the form's url)
8311 method            String           The form method to use (defaults to the form's method, or POST if not defined)
8312 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
8313 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
8314                                    validate the form on the client (defaults to false)
8315      * </pre>
8316      * @return {BasicForm} this
8317      */
8318     doAction : function(action, options){
8319         if(typeof action == 'string'){
8320             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
8321         }
8322         if(this.fireEvent('beforeaction', this, action) !== false){
8323             this.beforeAction(action);
8324             action.run.defer(100, action);
8325         }
8326         return this;
8327     },
8328
8329     // private
8330     beforeAction : function(action){
8331         var o = action.options;
8332         
8333         if(this.loadMask){
8334             
8335             if(this.maskBody){
8336                 Roo.get(document.body).mask(o.waitMsg || "Sending", 'x-mask-loading')
8337             } else {
8338                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8339             }
8340         }
8341         // not really supported yet.. ??
8342
8343         //if(this.waitMsgTarget === true){
8344         //  this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8345         //}else if(this.waitMsgTarget){
8346         //    this.waitMsgTarget = Roo.get(this.waitMsgTarget);
8347         //    this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
8348         //}else {
8349         //    Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
8350        // }
8351
8352     },
8353
8354     // private
8355     afterAction : function(action, success){
8356         this.activeAction = null;
8357         var o = action.options;
8358
8359         if(this.loadMask){
8360             
8361             if(this.maskBody){
8362                 Roo.get(document.body).unmask();
8363             } else {
8364                 this.el.unmask();
8365             }
8366         }
8367         
8368         //if(this.waitMsgTarget === true){
8369 //            this.el.unmask();
8370         //}else if(this.waitMsgTarget){
8371         //    this.waitMsgTarget.unmask();
8372         //}else{
8373         //    Roo.MessageBox.updateProgress(1);
8374         //    Roo.MessageBox.hide();
8375        // }
8376         //
8377         if(success){
8378             if(o.reset){
8379                 this.reset();
8380             }
8381             Roo.callback(o.success, o.scope, [this, action]);
8382             this.fireEvent('actioncomplete', this, action);
8383
8384         }else{
8385
8386             // failure condition..
8387             // we have a scenario where updates need confirming.
8388             // eg. if a locking scenario exists..
8389             // we look for { errors : { needs_confirm : true }} in the response.
8390             if (
8391                 (typeof(action.result) != 'undefined')  &&
8392                 (typeof(action.result.errors) != 'undefined')  &&
8393                 (typeof(action.result.errors.needs_confirm) != 'undefined')
8394            ){
8395                 var _t = this;
8396                 Roo.log("not supported yet");
8397                  /*
8398
8399                 Roo.MessageBox.confirm(
8400                     "Change requires confirmation",
8401                     action.result.errorMsg,
8402                     function(r) {
8403                         if (r != 'yes') {
8404                             return;
8405                         }
8406                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
8407                     }
8408
8409                 );
8410                 */
8411
8412
8413                 return;
8414             }
8415
8416             Roo.callback(o.failure, o.scope, [this, action]);
8417             // show an error message if no failed handler is set..
8418             if (!this.hasListener('actionfailed')) {
8419                 Roo.log("need to add dialog support");
8420                 /*
8421                 Roo.MessageBox.alert("Error",
8422                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
8423                         action.result.errorMsg :
8424                         "Saving Failed, please check your entries or try again"
8425                 );
8426                 */
8427             }
8428
8429             this.fireEvent('actionfailed', this, action);
8430         }
8431
8432     },
8433     /**
8434      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
8435      * @param {String} id The value to search for
8436      * @return Field
8437      */
8438     findField : function(id){
8439         var items = this.getItems();
8440         var field = items.get(id);
8441         if(!field){
8442              items.each(function(f){
8443                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
8444                     field = f;
8445                     return false;
8446                 }
8447                 return true;
8448             });
8449         }
8450         return field || null;
8451     },
8452      /**
8453      * Mark fields in this form invalid in bulk.
8454      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
8455      * @return {BasicForm} this
8456      */
8457     markInvalid : function(errors){
8458         if(errors instanceof Array){
8459             for(var i = 0, len = errors.length; i < len; i++){
8460                 var fieldError = errors[i];
8461                 var f = this.findField(fieldError.id);
8462                 if(f){
8463                     f.markInvalid(fieldError.msg);
8464                 }
8465             }
8466         }else{
8467             var field, id;
8468             for(id in errors){
8469                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
8470                     field.markInvalid(errors[id]);
8471                 }
8472             }
8473         }
8474         //Roo.each(this.childForms || [], function (f) {
8475         //    f.markInvalid(errors);
8476         //});
8477
8478         return this;
8479     },
8480
8481     /**
8482      * Set values for fields in this form in bulk.
8483      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
8484      * @return {BasicForm} this
8485      */
8486     setValues : function(values){
8487         if(values instanceof Array){ // array of objects
8488             for(var i = 0, len = values.length; i < len; i++){
8489                 var v = values[i];
8490                 var f = this.findField(v.id);
8491                 if(f){
8492                     f.setValue(v.value);
8493                     if(this.trackResetOnLoad){
8494                         f.originalValue = f.getValue();
8495                     }
8496                 }
8497             }
8498         }else{ // object hash
8499             var field, id;
8500             for(id in values){
8501                 if(typeof values[id] != 'function' && (field = this.findField(id))){
8502
8503                     if (field.setFromData &&
8504                         field.valueField &&
8505                         field.displayField &&
8506                         // combos' with local stores can
8507                         // be queried via setValue()
8508                         // to set their value..
8509                         (field.store && !field.store.isLocal)
8510                         ) {
8511                         // it's a combo
8512                         var sd = { };
8513                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
8514                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
8515                         field.setFromData(sd);
8516
8517                     } else if(field.setFromData && (field.store && !field.store.isLocal)) {
8518                         
8519                         field.setFromData(values);
8520                         
8521                     } else {
8522                         field.setValue(values[id]);
8523                     }
8524
8525
8526                     if(this.trackResetOnLoad){
8527                         field.originalValue = field.getValue();
8528                     }
8529                 }
8530             }
8531         }
8532
8533         //Roo.each(this.childForms || [], function (f) {
8534         //    f.setValues(values);
8535         //});
8536
8537         return this;
8538     },
8539
8540     /**
8541      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
8542      * they are returned as an array.
8543      * @param {Boolean} asString
8544      * @return {Object}
8545      */
8546     getValues : function(asString){
8547         //if (this.childForms) {
8548             // copy values from the child forms
8549         //    Roo.each(this.childForms, function (f) {
8550         //        this.setValues(f.getValues());
8551         //    }, this);
8552         //}
8553
8554
8555
8556         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
8557         if(asString === true){
8558             return fs;
8559         }
8560         return Roo.urlDecode(fs);
8561     },
8562
8563     /**
8564      * Returns the fields in this form as an object with key/value pairs.
8565      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
8566      * @return {Object}
8567      */
8568     getFieldValues : function(with_hidden)
8569     {
8570         var items = this.getItems();
8571         var ret = {};
8572         items.each(function(f){
8573             
8574             if (!f.getName()) {
8575                 return;
8576             }
8577             
8578             var v = f.getValue();
8579             
8580             if (f.inputType =='radio') {
8581                 if (typeof(ret[f.getName()]) == 'undefined') {
8582                     ret[f.getName()] = ''; // empty..
8583                 }
8584
8585                 if (!f.el.dom.checked) {
8586                     return;
8587
8588                 }
8589                 v = f.el.dom.value;
8590
8591             }
8592             
8593             if(f.xtype == 'MoneyField'){
8594                 ret[f.currencyName] = f.getCurrency();
8595             }
8596
8597             // not sure if this supported any more..
8598             if ((typeof(v) == 'object') && f.getRawValue) {
8599                 v = f.getRawValue() ; // dates..
8600             }
8601             // combo boxes where name != hiddenName...
8602             if (f.name !== false && f.name != '' && f.name != f.getName()) {
8603                 ret[f.name] = f.getRawValue();
8604             }
8605             ret[f.getName()] = v;
8606         });
8607
8608         return ret;
8609     },
8610
8611     /**
8612      * Clears all invalid messages in this form.
8613      * @return {BasicForm} this
8614      */
8615     clearInvalid : function(){
8616         var items = this.getItems();
8617
8618         items.each(function(f){
8619            f.clearInvalid();
8620         });
8621
8622         return this;
8623     },
8624
8625     /**
8626      * Resets this form.
8627      * @return {BasicForm} this
8628      */
8629     reset : function(){
8630         var items = this.getItems();
8631         items.each(function(f){
8632             f.reset();
8633         });
8634
8635         Roo.each(this.childForms || [], function (f) {
8636             f.reset();
8637         });
8638
8639
8640         return this;
8641     },
8642     
8643     getItems : function()
8644     {
8645         var r=new Roo.util.MixedCollection(false, function(o){
8646             return o.id || (o.id = Roo.id());
8647         });
8648         var iter = function(el) {
8649             if (el.inputEl) {
8650                 r.add(el);
8651             }
8652             if (!el.items) {
8653                 return;
8654             }
8655             Roo.each(el.items,function(e) {
8656                 iter(e);
8657             });
8658         };
8659
8660         iter(this);
8661         return r;
8662     },
8663     
8664     hideFields : function(items)
8665     {
8666         Roo.each(items, function(i){
8667             
8668             var f = this.findField(i);
8669             
8670             if(!f){
8671                 return;
8672             }
8673             
8674             f.hide();
8675             
8676         }, this);
8677     },
8678     
8679     showFields : function(items)
8680     {
8681         Roo.each(items, function(i){
8682             
8683             var f = this.findField(i);
8684             
8685             if(!f){
8686                 return;
8687             }
8688             
8689             f.show();
8690             
8691         }, this);
8692     }
8693
8694 });
8695
8696 Roo.apply(Roo.bootstrap.Form, {
8697     
8698     popover : {
8699         
8700         padding : 5,
8701         
8702         isApplied : false,
8703         
8704         isMasked : false,
8705         
8706         form : false,
8707         
8708         target : false,
8709         
8710         toolTip : false,
8711         
8712         intervalID : false,
8713         
8714         maskEl : false,
8715         
8716         apply : function()
8717         {
8718             if(this.isApplied){
8719                 return;
8720             }
8721             
8722             this.maskEl = {
8723                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
8724                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
8725                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
8726                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
8727             };
8728             
8729             this.maskEl.top.enableDisplayMode("block");
8730             this.maskEl.left.enableDisplayMode("block");
8731             this.maskEl.bottom.enableDisplayMode("block");
8732             this.maskEl.right.enableDisplayMode("block");
8733             
8734             this.toolTip = new Roo.bootstrap.Tooltip({
8735                 cls : 'roo-form-error-popover',
8736                 alignment : {
8737                     'left' : ['r-l', [-2,0], 'right'],
8738                     'right' : ['l-r', [2,0], 'left'],
8739                     'bottom' : ['tl-bl', [0,2], 'top'],
8740                     'top' : [ 'bl-tl', [0,-2], 'bottom']
8741                 }
8742             });
8743             
8744             this.toolTip.render(Roo.get(document.body));
8745
8746             this.toolTip.el.enableDisplayMode("block");
8747             
8748             Roo.get(document.body).on('click', function(){
8749                 this.unmask();
8750             }, this);
8751             
8752             Roo.get(document.body).on('touchstart', function(){
8753                 this.unmask();
8754             }, this);
8755             
8756             this.isApplied = true
8757         },
8758         
8759         mask : function(form, target)
8760         {
8761             this.form = form;
8762             
8763             this.target = target;
8764             
8765             if(!this.form.errorMask || !target.el){
8766                 return;
8767             }
8768             
8769             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.modal', 100, true) || Roo.get(document.body);
8770             
8771             Roo.log(scrollable);
8772             
8773             var ot = this.target.el.calcOffsetsTo(scrollable);
8774             
8775             var scrollTo = ot[1] - this.form.maskOffset;
8776             
8777             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
8778             
8779             scrollable.scrollTo('top', scrollTo);
8780             
8781             var box = this.target.el.getBox();
8782             Roo.log(box);
8783             var zIndex = Roo.bootstrap.Modal.zIndex++;
8784
8785             
8786             this.maskEl.top.setStyle('position', 'absolute');
8787             this.maskEl.top.setStyle('z-index', zIndex);
8788             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
8789             this.maskEl.top.setLeft(0);
8790             this.maskEl.top.setTop(0);
8791             this.maskEl.top.show();
8792             
8793             this.maskEl.left.setStyle('position', 'absolute');
8794             this.maskEl.left.setStyle('z-index', zIndex);
8795             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
8796             this.maskEl.left.setLeft(0);
8797             this.maskEl.left.setTop(box.y - this.padding);
8798             this.maskEl.left.show();
8799
8800             this.maskEl.bottom.setStyle('position', 'absolute');
8801             this.maskEl.bottom.setStyle('z-index', zIndex);
8802             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
8803             this.maskEl.bottom.setLeft(0);
8804             this.maskEl.bottom.setTop(box.bottom + this.padding);
8805             this.maskEl.bottom.show();
8806
8807             this.maskEl.right.setStyle('position', 'absolute');
8808             this.maskEl.right.setStyle('z-index', zIndex);
8809             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
8810             this.maskEl.right.setLeft(box.right + this.padding);
8811             this.maskEl.right.setTop(box.y - this.padding);
8812             this.maskEl.right.show();
8813
8814             this.toolTip.bindEl = this.target.el;
8815
8816             this.toolTip.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
8817
8818             var tip = this.target.blankText;
8819
8820             if(this.target.getValue() !== '' ) {
8821                 
8822                 if (this.target.invalidText.length) {
8823                     tip = this.target.invalidText;
8824                 } else if (this.target.regexText.length){
8825                     tip = this.target.regexText;
8826                 }
8827             }
8828
8829             this.toolTip.show(tip);
8830
8831             this.intervalID = window.setInterval(function() {
8832                 Roo.bootstrap.Form.popover.unmask();
8833             }, 10000);
8834
8835             window.onwheel = function(){ return false;};
8836             
8837             (function(){ this.isMasked = true; }).defer(500, this);
8838             
8839         },
8840         
8841         unmask : function()
8842         {
8843             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
8844                 return;
8845             }
8846             
8847             this.maskEl.top.setStyle('position', 'absolute');
8848             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
8849             this.maskEl.top.hide();
8850
8851             this.maskEl.left.setStyle('position', 'absolute');
8852             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
8853             this.maskEl.left.hide();
8854
8855             this.maskEl.bottom.setStyle('position', 'absolute');
8856             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
8857             this.maskEl.bottom.hide();
8858
8859             this.maskEl.right.setStyle('position', 'absolute');
8860             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
8861             this.maskEl.right.hide();
8862             
8863             this.toolTip.hide();
8864             
8865             this.toolTip.el.hide();
8866             
8867             window.onwheel = function(){ return true;};
8868             
8869             if(this.intervalID){
8870                 window.clearInterval(this.intervalID);
8871                 this.intervalID = false;
8872             }
8873             
8874             this.isMasked = false;
8875             
8876         }
8877         
8878     }
8879     
8880 });
8881
8882 /*
8883  * Based on:
8884  * Ext JS Library 1.1.1
8885  * Copyright(c) 2006-2007, Ext JS, LLC.
8886  *
8887  * Originally Released Under LGPL - original licence link has changed is not relivant.
8888  *
8889  * Fork - LGPL
8890  * <script type="text/javascript">
8891  */
8892 /**
8893  * @class Roo.form.VTypes
8894  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
8895  * @singleton
8896  */
8897 Roo.form.VTypes = function(){
8898     // closure these in so they are only created once.
8899     var alpha = /^[a-zA-Z_]+$/;
8900     var alphanum = /^[a-zA-Z0-9_]+$/;
8901     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
8902     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
8903
8904     // All these messages and functions are configurable
8905     return {
8906         /**
8907          * The function used to validate email addresses
8908          * @param {String} value The email address
8909          */
8910         'email' : function(v){
8911             return email.test(v);
8912         },
8913         /**
8914          * The error text to display when the email validation function returns false
8915          * @type String
8916          */
8917         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
8918         /**
8919          * The keystroke filter mask to be applied on email input
8920          * @type RegExp
8921          */
8922         'emailMask' : /[a-z0-9_\.\-@]/i,
8923
8924         /**
8925          * The function used to validate URLs
8926          * @param {String} value The URL
8927          */
8928         'url' : function(v){
8929             return url.test(v);
8930         },
8931         /**
8932          * The error text to display when the url validation function returns false
8933          * @type String
8934          */
8935         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
8936         
8937         /**
8938          * The function used to validate alpha values
8939          * @param {String} value The value
8940          */
8941         'alpha' : function(v){
8942             return alpha.test(v);
8943         },
8944         /**
8945          * The error text to display when the alpha validation function returns false
8946          * @type String
8947          */
8948         'alphaText' : 'This field should only contain letters and _',
8949         /**
8950          * The keystroke filter mask to be applied on alpha input
8951          * @type RegExp
8952          */
8953         'alphaMask' : /[a-z_]/i,
8954
8955         /**
8956          * The function used to validate alphanumeric values
8957          * @param {String} value The value
8958          */
8959         'alphanum' : function(v){
8960             return alphanum.test(v);
8961         },
8962         /**
8963          * The error text to display when the alphanumeric validation function returns false
8964          * @type String
8965          */
8966         'alphanumText' : 'This field should only contain letters, numbers and _',
8967         /**
8968          * The keystroke filter mask to be applied on alphanumeric input
8969          * @type RegExp
8970          */
8971         'alphanumMask' : /[a-z0-9_]/i
8972     };
8973 }();/*
8974  * - LGPL
8975  *
8976  * Input
8977  * 
8978  */
8979
8980 /**
8981  * @class Roo.bootstrap.Input
8982  * @extends Roo.bootstrap.Component
8983  * Bootstrap Input class
8984  * @cfg {Boolean} disabled is it disabled
8985  * @cfg {String} inputType button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text
8986  * @cfg {String} name name of the input
8987  * @cfg {string} fieldLabel - the label associated
8988  * @cfg {string} placeholder - placeholder to put in text.
8989  * @cfg {string}  before - input group add on before
8990  * @cfg {string} after - input group add on after
8991  * @cfg {string} size - (lg|sm) or leave empty..
8992  * @cfg {Number} xs colspan out of 12 for mobile-sized screens
8993  * @cfg {Number} sm colspan out of 12 for tablet-sized screens
8994  * @cfg {Number} md colspan out of 12 for computer-sized screens
8995  * @cfg {Number} lg colspan out of 12 for large computer-sized screens
8996  * @cfg {string} value default value of the input
8997  * @cfg {Number} labelWidth set the width of label 
8998  * @cfg {Number} labellg set the width of label (1-12)
8999  * @cfg {Number} labelmd set the width of label (1-12)
9000  * @cfg {Number} labelsm set the width of label (1-12)
9001  * @cfg {Number} labelxs set the width of label (1-12)
9002  * @cfg {String} labelAlign (top|left)
9003  * @cfg {Boolean} readOnly Specifies that the field should be read-only
9004  * @cfg {String} autocomplete - default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en
9005  * @cfg {String} indicatorpos (left|right) default left
9006  * @cfg {String} capture (user|camera) use for file input only. (default empty)
9007  * @cfg {String} accept (image|video|audio) use for file input only. (default empty)
9008
9009  * @cfg {String} align (left|center|right) Default left
9010  * @cfg {Boolean} forceFeedback (true|false) Default false
9011  * 
9012  * @constructor
9013  * Create a new Input
9014  * @param {Object} config The config object
9015  */
9016
9017 Roo.bootstrap.Input = function(config){
9018     
9019     Roo.bootstrap.Input.superclass.constructor.call(this, config);
9020     
9021     this.addEvents({
9022         /**
9023          * @event focus
9024          * Fires when this field receives input focus.
9025          * @param {Roo.form.Field} this
9026          */
9027         focus : true,
9028         /**
9029          * @event blur
9030          * Fires when this field loses input focus.
9031          * @param {Roo.form.Field} this
9032          */
9033         blur : true,
9034         /**
9035          * @event specialkey
9036          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
9037          * {@link Roo.EventObject#getKey} to determine which key was pressed.
9038          * @param {Roo.form.Field} this
9039          * @param {Roo.EventObject} e The event object
9040          */
9041         specialkey : true,
9042         /**
9043          * @event change
9044          * Fires just before the field blurs if the field value has changed.
9045          * @param {Roo.form.Field} this
9046          * @param {Mixed} newValue The new value
9047          * @param {Mixed} oldValue The original value
9048          */
9049         change : true,
9050         /**
9051          * @event invalid
9052          * Fires after the field has been marked as invalid.
9053          * @param {Roo.form.Field} this
9054          * @param {String} msg The validation message
9055          */
9056         invalid : true,
9057         /**
9058          * @event valid
9059          * Fires after the field has been validated with no errors.
9060          * @param {Roo.form.Field} this
9061          */
9062         valid : true,
9063          /**
9064          * @event keyup
9065          * Fires after the key up
9066          * @param {Roo.form.Field} this
9067          * @param {Roo.EventObject}  e The event Object
9068          */
9069         keyup : true
9070     });
9071 };
9072
9073 Roo.extend(Roo.bootstrap.Input, Roo.bootstrap.Component,  {
9074      /**
9075      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
9076       automatic validation (defaults to "keyup").
9077      */
9078     validationEvent : "keyup",
9079      /**
9080      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
9081      */
9082     validateOnBlur : true,
9083     /**
9084      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
9085      */
9086     validationDelay : 250,
9087      /**
9088      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
9089      */
9090     focusClass : "x-form-focus",  // not needed???
9091     
9092        
9093     /**
9094      * @cfg {String} invalidClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9095      */
9096     invalidClass : "has-warning",
9097     
9098     /**
9099      * @cfg {String} validClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9100      */
9101     validClass : "has-success",
9102     
9103     /**
9104      * @cfg {Boolean} hasFeedback (true|false) default true
9105      */
9106     hasFeedback : true,
9107     
9108     /**
9109      * @cfg {String} invalidFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9110      */
9111     invalidFeedbackClass : "glyphicon-warning-sign",
9112     
9113     /**
9114      * @cfg {String} validFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9115      */
9116     validFeedbackClass : "glyphicon-ok",
9117     
9118     /**
9119      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
9120      */
9121     selectOnFocus : false,
9122     
9123      /**
9124      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
9125      */
9126     maskRe : null,
9127        /**
9128      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
9129      */
9130     vtype : null,
9131     
9132       /**
9133      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
9134      */
9135     disableKeyFilter : false,
9136     
9137        /**
9138      * @cfg {Boolean} disabled True to disable the field (defaults to false).
9139      */
9140     disabled : false,
9141      /**
9142      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
9143      */
9144     allowBlank : true,
9145     /**
9146      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
9147      */
9148     blankText : "Please complete this mandatory field",
9149     
9150      /**
9151      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
9152      */
9153     minLength : 0,
9154     /**
9155      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
9156      */
9157     maxLength : Number.MAX_VALUE,
9158     /**
9159      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
9160      */
9161     minLengthText : "The minimum length for this field is {0}",
9162     /**
9163      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
9164      */
9165     maxLengthText : "The maximum length for this field is {0}",
9166   
9167     
9168     /**
9169      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
9170      * If available, this function will be called only after the basic validators all return true, and will be passed the
9171      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
9172      */
9173     validator : null,
9174     /**
9175      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
9176      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
9177      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
9178      */
9179     regex : null,
9180     /**
9181      * @cfg {String} regexText -- Depricated - use Invalid Text
9182      */
9183     regexText : "",
9184     
9185     /**
9186      * @cfg {String} invalidText The error text to display if {@link #validator} test fails during validation (defaults to "")
9187      */
9188     invalidText : "",
9189     
9190     
9191     
9192     autocomplete: false,
9193     
9194     
9195     fieldLabel : '',
9196     inputType : 'text',
9197     
9198     name : false,
9199     placeholder: false,
9200     before : false,
9201     after : false,
9202     size : false,
9203     hasFocus : false,
9204     preventMark: false,
9205     isFormField : true,
9206     value : '',
9207     labelWidth : 2,
9208     labelAlign : false,
9209     readOnly : false,
9210     align : false,
9211     formatedValue : false,
9212     forceFeedback : false,
9213     
9214     indicatorpos : 'left',
9215     
9216     labellg : 0,
9217     labelmd : 0,
9218     labelsm : 0,
9219     labelxs : 0,
9220     
9221     capture : '',
9222     accept : '',
9223     
9224     parentLabelAlign : function()
9225     {
9226         var parent = this;
9227         while (parent.parent()) {
9228             parent = parent.parent();
9229             if (typeof(parent.labelAlign) !='undefined') {
9230                 return parent.labelAlign;
9231             }
9232         }
9233         return 'left';
9234         
9235     },
9236     
9237     getAutoCreate : function()
9238     {
9239         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
9240         
9241         var id = Roo.id();
9242         
9243         var cfg = {};
9244         
9245         if(this.inputType != 'hidden'){
9246             cfg.cls = 'form-group' //input-group
9247         }
9248         
9249         var input =  {
9250             tag: 'input',
9251             id : id,
9252             type : this.inputType,
9253             value : this.value,
9254             cls : 'form-control',
9255             placeholder : this.placeholder || '',
9256             autocomplete : this.autocomplete || 'new-password'
9257         };
9258         
9259         if(this.capture.length){
9260             input.capture = this.capture;
9261         }
9262         
9263         if(this.accept.length){
9264             input.accept = this.accept + "/*";
9265         }
9266         
9267         if(this.align){
9268             input.style = (typeof(input.style) == 'undefined') ? ('text-align:' + this.align) : (input.style + 'text-align:' + this.align);
9269         }
9270         
9271         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
9272             input.maxLength = this.maxLength;
9273         }
9274         
9275         if (this.disabled) {
9276             input.disabled=true;
9277         }
9278         
9279         if (this.readOnly) {
9280             input.readonly=true;
9281         }
9282         
9283         if (this.name) {
9284             input.name = this.name;
9285         }
9286         
9287         if (this.size) {
9288             input.cls += ' input-' + this.size;
9289         }
9290         
9291         var settings=this;
9292         ['xs','sm','md','lg'].map(function(size){
9293             if (settings[size]) {
9294                 cfg.cls += ' col-' + size + '-' + settings[size];
9295             }
9296         });
9297         
9298         var inputblock = input;
9299         
9300         var feedback = {
9301             tag: 'span',
9302             cls: 'glyphicon form-control-feedback'
9303         };
9304             
9305         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9306             
9307             inputblock = {
9308                 cls : 'has-feedback',
9309                 cn :  [
9310                     input,
9311                     feedback
9312                 ] 
9313             };  
9314         }
9315         
9316         if (this.before || this.after) {
9317             
9318             inputblock = {
9319                 cls : 'input-group',
9320                 cn :  [] 
9321             };
9322             
9323             if (this.before && typeof(this.before) == 'string') {
9324                 
9325                 inputblock.cn.push({
9326                     tag :'span',
9327                     cls : 'roo-input-before input-group-addon input-group-prepend input-group-text',
9328                     html : this.before
9329                 });
9330             }
9331             if (this.before && typeof(this.before) == 'object') {
9332                 this.before = Roo.factory(this.before);
9333                 
9334                 inputblock.cn.push({
9335                     tag :'span',
9336                     cls : 'roo-input-before input-group-prepend input-group-text input-group-' +
9337                         (this.before.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9338                 });
9339             }
9340             
9341             inputblock.cn.push(input);
9342             
9343             if (this.after && typeof(this.after) == 'string') {
9344                 inputblock.cn.push({
9345                     tag :'span',
9346                     cls : 'roo-input-after input-group-append input-group-text input-group-addon',
9347                     html : this.after
9348                 });
9349             }
9350             if (this.after && typeof(this.after) == 'object') {
9351                 this.after = Roo.factory(this.after);
9352                 
9353                 inputblock.cn.push({
9354                     tag :'span',
9355                     cls : 'roo-input-after input-group-append input-group-text input-group-' +
9356                         (this.after.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9357                 });
9358             }
9359             
9360             if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9361                 inputblock.cls += ' has-feedback';
9362                 inputblock.cn.push(feedback);
9363             }
9364         };
9365         var indicator = {
9366             tag : 'i',
9367             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
9368             tooltip : 'This field is required'
9369         };
9370         if (Roo.bootstrap.version == 4) {
9371             indicator = {
9372                 tag : 'i',
9373                 style : 'display-none'
9374             };
9375         }
9376         if (align ==='left' && this.fieldLabel.length) {
9377             
9378             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
9379             
9380             cfg.cn = [
9381                 indicator,
9382                 {
9383                     tag: 'label',
9384                     'for' :  id,
9385                     cls : 'control-label col-form-label',
9386                     html : this.fieldLabel
9387
9388                 },
9389                 {
9390                     cls : "", 
9391                     cn: [
9392                         inputblock
9393                     ]
9394                 }
9395             ];
9396             
9397             var labelCfg = cfg.cn[1];
9398             var contentCfg = cfg.cn[2];
9399             
9400             if(this.indicatorpos == 'right'){
9401                 cfg.cn = [
9402                     {
9403                         tag: 'label',
9404                         'for' :  id,
9405                         cls : 'control-label col-form-label',
9406                         cn : [
9407                             {
9408                                 tag : 'span',
9409                                 html : this.fieldLabel
9410                             },
9411                             indicator
9412                         ]
9413                     },
9414                     {
9415                         cls : "",
9416                         cn: [
9417                             inputblock
9418                         ]
9419                     }
9420
9421                 ];
9422                 
9423                 labelCfg = cfg.cn[0];
9424                 contentCfg = cfg.cn[1];
9425             
9426             }
9427             
9428             if(this.labelWidth > 12){
9429                 labelCfg.style = "width: " + this.labelWidth + 'px';
9430             }
9431             
9432             if(this.labelWidth < 13 && this.labelmd == 0){
9433                 this.labelmd = this.labelWidth;
9434             }
9435             
9436             if(this.labellg > 0){
9437                 labelCfg.cls += ' col-lg-' + this.labellg;
9438                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
9439             }
9440             
9441             if(this.labelmd > 0){
9442                 labelCfg.cls += ' col-md-' + this.labelmd;
9443                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
9444             }
9445             
9446             if(this.labelsm > 0){
9447                 labelCfg.cls += ' col-sm-' + this.labelsm;
9448                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
9449             }
9450             
9451             if(this.labelxs > 0){
9452                 labelCfg.cls += ' col-xs-' + this.labelxs;
9453                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
9454             }
9455             
9456             
9457         } else if ( this.fieldLabel.length) {
9458                 
9459             cfg.cn = [
9460                 {
9461                     tag : 'i',
9462                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
9463                     tooltip : 'This field is required'
9464                 },
9465                 {
9466                     tag: 'label',
9467                    //cls : 'input-group-addon',
9468                     html : this.fieldLabel
9469
9470                 },
9471
9472                inputblock
9473
9474            ];
9475            
9476            if(this.indicatorpos == 'right'){
9477                 
9478                 cfg.cn = [
9479                     {
9480                         tag: 'label',
9481                        //cls : 'input-group-addon',
9482                         html : this.fieldLabel
9483
9484                     },
9485                     {
9486                         tag : 'i',
9487                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
9488                         tooltip : 'This field is required'
9489                     },
9490
9491                    inputblock
9492
9493                ];
9494
9495             }
9496
9497         } else {
9498             
9499             cfg.cn = [
9500
9501                     inputblock
9502
9503             ];
9504                 
9505                 
9506         };
9507         
9508         if (this.parentType === 'Navbar' &&  this.parent().bar) {
9509            cfg.cls += ' navbar-form';
9510         }
9511         
9512         if (this.parentType === 'NavGroup' && !(Roo.bootstrap.version == 4 && this.parent().form)) {
9513             // on BS4 we do this only if not form 
9514             cfg.cls += ' navbar-form';
9515             cfg.tag = 'li';
9516         }
9517         
9518         return cfg;
9519         
9520     },
9521     /**
9522      * return the real input element.
9523      */
9524     inputEl: function ()
9525     {
9526         return this.el.select('input.form-control',true).first();
9527     },
9528     
9529     tooltipEl : function()
9530     {
9531         return this.inputEl();
9532     },
9533     
9534     indicatorEl : function()
9535     {
9536         if (Roo.bootstrap.version == 4) {
9537             return false; // not enabled in v4 yet.
9538         }
9539         
9540         var indicator = this.el.select('i.roo-required-indicator',true).first();
9541         
9542         if(!indicator){
9543             return false;
9544         }
9545         
9546         return indicator;
9547         
9548     },
9549     
9550     setDisabled : function(v)
9551     {
9552         var i  = this.inputEl().dom;
9553         if (!v) {
9554             i.removeAttribute('disabled');
9555             return;
9556             
9557         }
9558         i.setAttribute('disabled','true');
9559     },
9560     initEvents : function()
9561     {
9562           
9563         this.inputEl().on("keydown" , this.fireKey,  this);
9564         this.inputEl().on("focus", this.onFocus,  this);
9565         this.inputEl().on("blur", this.onBlur,  this);
9566         
9567         this.inputEl().relayEvent('keyup', this);
9568         
9569         this.indicator = this.indicatorEl();
9570         
9571         if(this.indicator){
9572             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible'); // changed from invisible??? - 
9573         }
9574  
9575         // reference to original value for reset
9576         this.originalValue = this.getValue();
9577         //Roo.form.TextField.superclass.initEvents.call(this);
9578         if(this.validationEvent == 'keyup'){
9579             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
9580             this.inputEl().on('keyup', this.filterValidation, this);
9581         }
9582         else if(this.validationEvent !== false){
9583             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
9584         }
9585         
9586         if(this.selectOnFocus){
9587             this.on("focus", this.preFocus, this);
9588             
9589         }
9590         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
9591             this.inputEl().on("keypress", this.filterKeys, this);
9592         } else {
9593             this.inputEl().relayEvent('keypress', this);
9594         }
9595        /* if(this.grow){
9596             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
9597             this.el.on("click", this.autoSize,  this);
9598         }
9599         */
9600         if(this.inputEl().is('input[type=password]') && Roo.isSafari){
9601             this.inputEl().on('keydown', this.SafariOnKeyDown, this);
9602         }
9603         
9604         if (typeof(this.before) == 'object') {
9605             this.before.render(this.el.select('.roo-input-before',true).first());
9606         }
9607         if (typeof(this.after) == 'object') {
9608             this.after.render(this.el.select('.roo-input-after',true).first());
9609         }
9610         
9611         this.inputEl().on('change', this.onChange, this);
9612         
9613     },
9614     filterValidation : function(e){
9615         if(!e.isNavKeyPress()){
9616             this.validationTask.delay(this.validationDelay);
9617         }
9618     },
9619      /**
9620      * Validates the field value
9621      * @return {Boolean} True if the value is valid, else false
9622      */
9623     validate : function(){
9624         //if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
9625         if(this.disabled || this.validateValue(this.getRawValue())){
9626             this.markValid();
9627             return true;
9628         }
9629         
9630         this.markInvalid();
9631         return false;
9632     },
9633     
9634     
9635     /**
9636      * Validates a value according to the field's validation rules and marks the field as invalid
9637      * if the validation fails
9638      * @param {Mixed} value The value to validate
9639      * @return {Boolean} True if the value is valid, else false
9640      */
9641     validateValue : function(value)
9642     {
9643         if(this.getVisibilityEl().hasClass('hidden')){
9644             return true;
9645         }
9646         
9647         if(value.length < 1)  { // if it's blank
9648             if(this.allowBlank){
9649                 return true;
9650             }
9651             return false;
9652         }
9653         
9654         if(value.length < this.minLength){
9655             return false;
9656         }
9657         if(value.length > this.maxLength){
9658             return false;
9659         }
9660         if(this.vtype){
9661             var vt = Roo.form.VTypes;
9662             if(!vt[this.vtype](value, this)){
9663                 return false;
9664             }
9665         }
9666         if(typeof this.validator == "function"){
9667             var msg = this.validator(value);
9668             if(msg !== true){
9669                 return false;
9670             }
9671             if (typeof(msg) == 'string') {
9672                 this.invalidText = msg;
9673             }
9674         }
9675         
9676         if(this.regex && !this.regex.test(value)){
9677             return false;
9678         }
9679         
9680         return true;
9681     },
9682     
9683      // private
9684     fireKey : function(e){
9685         //Roo.log('field ' + e.getKey());
9686         if(e.isNavKeyPress()){
9687             this.fireEvent("specialkey", this, e);
9688         }
9689     },
9690     focus : function (selectText){
9691         if(this.rendered){
9692             this.inputEl().focus();
9693             if(selectText === true){
9694                 this.inputEl().dom.select();
9695             }
9696         }
9697         return this;
9698     } ,
9699     
9700     onFocus : function(){
9701         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9702            // this.el.addClass(this.focusClass);
9703         }
9704         if(!this.hasFocus){
9705             this.hasFocus = true;
9706             this.startValue = this.getValue();
9707             this.fireEvent("focus", this);
9708         }
9709     },
9710     
9711     beforeBlur : Roo.emptyFn,
9712
9713     
9714     // private
9715     onBlur : function(){
9716         this.beforeBlur();
9717         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9718             //this.el.removeClass(this.focusClass);
9719         }
9720         this.hasFocus = false;
9721         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
9722             this.validate();
9723         }
9724         var v = this.getValue();
9725         if(String(v) !== String(this.startValue)){
9726             this.fireEvent('change', this, v, this.startValue);
9727         }
9728         this.fireEvent("blur", this);
9729     },
9730     
9731     onChange : function(e)
9732     {
9733         var v = this.getValue();
9734         if(String(v) !== String(this.startValue)){
9735             this.fireEvent('change', this, v, this.startValue);
9736         }
9737         
9738     },
9739     
9740     /**
9741      * Resets the current field value to the originally loaded value and clears any validation messages
9742      */
9743     reset : function(){
9744         this.setValue(this.originalValue);
9745         this.validate();
9746     },
9747      /**
9748      * Returns the name of the field
9749      * @return {Mixed} name The name field
9750      */
9751     getName: function(){
9752         return this.name;
9753     },
9754      /**
9755      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
9756      * @return {Mixed} value The field value
9757      */
9758     getValue : function(){
9759         
9760         var v = this.inputEl().getValue();
9761         
9762         return v;
9763     },
9764     /**
9765      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
9766      * @return {Mixed} value The field value
9767      */
9768     getRawValue : function(){
9769         var v = this.inputEl().getValue();
9770         
9771         return v;
9772     },
9773     
9774     /**
9775      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
9776      * @param {Mixed} value The value to set
9777      */
9778     setRawValue : function(v){
9779         return this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9780     },
9781     
9782     selectText : function(start, end){
9783         var v = this.getRawValue();
9784         if(v.length > 0){
9785             start = start === undefined ? 0 : start;
9786             end = end === undefined ? v.length : end;
9787             var d = this.inputEl().dom;
9788             if(d.setSelectionRange){
9789                 d.setSelectionRange(start, end);
9790             }else if(d.createTextRange){
9791                 var range = d.createTextRange();
9792                 range.moveStart("character", start);
9793                 range.moveEnd("character", v.length-end);
9794                 range.select();
9795             }
9796         }
9797     },
9798     
9799     /**
9800      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
9801      * @param {Mixed} value The value to set
9802      */
9803     setValue : function(v){
9804         this.value = v;
9805         if(this.rendered){
9806             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9807             this.validate();
9808         }
9809     },
9810     
9811     /*
9812     processValue : function(value){
9813         if(this.stripCharsRe){
9814             var newValue = value.replace(this.stripCharsRe, '');
9815             if(newValue !== value){
9816                 this.setRawValue(newValue);
9817                 return newValue;
9818             }
9819         }
9820         return value;
9821     },
9822   */
9823     preFocus : function(){
9824         
9825         if(this.selectOnFocus){
9826             this.inputEl().dom.select();
9827         }
9828     },
9829     filterKeys : function(e){
9830         var k = e.getKey();
9831         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
9832             return;
9833         }
9834         var c = e.getCharCode(), cc = String.fromCharCode(c);
9835         if(Roo.isIE && (e.isSpecialKey() || !cc)){
9836             return;
9837         }
9838         if(!this.maskRe.test(cc)){
9839             e.stopEvent();
9840         }
9841     },
9842      /**
9843      * Clear any invalid styles/messages for this field
9844      */
9845     clearInvalid : function(){
9846         
9847         if(!this.el || this.preventMark){ // not rendered
9848             return;
9849         }
9850         
9851         
9852         this.el.removeClass([this.invalidClass, 'is-invalid']);
9853         
9854         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9855             
9856             var feedback = this.el.select('.form-control-feedback', true).first();
9857             
9858             if(feedback){
9859                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
9860             }
9861             
9862         }
9863         
9864         if(this.indicator){
9865             this.indicator.removeClass('visible');
9866             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9867         }
9868         
9869         this.fireEvent('valid', this);
9870     },
9871     
9872      /**
9873      * Mark this field as valid
9874      */
9875     markValid : function()
9876     {
9877         if(!this.el  || this.preventMark){ // not rendered...
9878             return;
9879         }
9880         
9881         this.el.removeClass([this.invalidClass, this.validClass]);
9882         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9883
9884         var feedback = this.el.select('.form-control-feedback', true).first();
9885             
9886         if(feedback){
9887             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9888         }
9889         
9890         if(this.indicator){
9891             this.indicator.removeClass('visible');
9892             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9893         }
9894         
9895         if(this.disabled){
9896             return;
9897         }
9898         
9899         if(this.allowBlank && !this.getRawValue().length){
9900             return;
9901         }
9902         if (Roo.bootstrap.version == 3) {
9903             this.el.addClass(this.validClass);
9904         } else {
9905             this.inputEl().addClass('is-valid');
9906         }
9907
9908         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
9909             
9910             var feedback = this.el.select('.form-control-feedback', true).first();
9911             
9912             if(feedback){
9913                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9914                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
9915             }
9916             
9917         }
9918         
9919         this.fireEvent('valid', this);
9920     },
9921     
9922      /**
9923      * Mark this field as invalid
9924      * @param {String} msg The validation message
9925      */
9926     markInvalid : function(msg)
9927     {
9928         if(!this.el  || this.preventMark){ // not rendered
9929             return;
9930         }
9931         
9932         this.el.removeClass([this.invalidClass, this.validClass]);
9933         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9934         
9935         var feedback = this.el.select('.form-control-feedback', true).first();
9936             
9937         if(feedback){
9938             this.el.select('.form-control-feedback', true).first().removeClass(
9939                     [this.invalidFeedbackClass, this.validFeedbackClass]);
9940         }
9941
9942         if(this.disabled){
9943             return;
9944         }
9945         
9946         if(this.allowBlank && !this.getRawValue().length){
9947             return;
9948         }
9949         
9950         if(this.indicator){
9951             this.indicator.removeClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9952             this.indicator.addClass('visible');
9953         }
9954         if (Roo.bootstrap.version == 3) {
9955             this.el.addClass(this.invalidClass);
9956         } else {
9957             this.inputEl().addClass('is-invalid');
9958         }
9959         
9960         
9961         
9962         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9963             
9964             var feedback = this.el.select('.form-control-feedback', true).first();
9965             
9966             if(feedback){
9967                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9968                 
9969                 if(this.getValue().length || this.forceFeedback){
9970                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
9971                 }
9972                 
9973             }
9974             
9975         }
9976         
9977         this.fireEvent('invalid', this, msg);
9978     },
9979     // private
9980     SafariOnKeyDown : function(event)
9981     {
9982         // this is a workaround for a password hang bug on chrome/ webkit.
9983         if (this.inputEl().dom.type != 'password') {
9984             return;
9985         }
9986         
9987         var isSelectAll = false;
9988         
9989         if(this.inputEl().dom.selectionEnd > 0){
9990             isSelectAll = (this.inputEl().dom.selectionEnd - this.inputEl().dom.selectionStart - this.getValue().length == 0) ? true : false;
9991         }
9992         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
9993             event.preventDefault();
9994             this.setValue('');
9995             return;
9996         }
9997         
9998         if(isSelectAll  && event.getCharCode() > 31 && !event.ctrlKey) { // not backspace and delete key (or ctrl-v)
9999             
10000             event.preventDefault();
10001             // this is very hacky as keydown always get's upper case.
10002             //
10003             var cc = String.fromCharCode(event.getCharCode());
10004             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
10005             
10006         }
10007     },
10008     adjustWidth : function(tag, w){
10009         tag = tag.toLowerCase();
10010         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
10011             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
10012                 if(tag == 'input'){
10013                     return w + 2;
10014                 }
10015                 if(tag == 'textarea'){
10016                     return w-2;
10017                 }
10018             }else if(Roo.isOpera){
10019                 if(tag == 'input'){
10020                     return w + 2;
10021                 }
10022                 if(tag == 'textarea'){
10023                     return w-2;
10024                 }
10025             }
10026         }
10027         return w;
10028     },
10029     
10030     setFieldLabel : function(v)
10031     {
10032         if(!this.rendered){
10033             return;
10034         }
10035         
10036         if(this.indicatorEl()){
10037             var ar = this.el.select('label > span',true);
10038             
10039             if (ar.elements.length) {
10040                 this.el.select('label > span',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10041                 this.fieldLabel = v;
10042                 return;
10043             }
10044             
10045             var br = this.el.select('label',true);
10046             
10047             if(br.elements.length) {
10048                 this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10049                 this.fieldLabel = v;
10050                 return;
10051             }
10052             
10053             Roo.log('Cannot Found any of label > span || label in input');
10054             return;
10055         }
10056         
10057         this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10058         this.fieldLabel = v;
10059         
10060         
10061     }
10062 });
10063
10064  
10065 /*
10066  * - LGPL
10067  *
10068  * Input
10069  * 
10070  */
10071
10072 /**
10073  * @class Roo.bootstrap.TextArea
10074  * @extends Roo.bootstrap.Input
10075  * Bootstrap TextArea class
10076  * @cfg {Number} cols Specifies the visible width of a text area
10077  * @cfg {Number} rows Specifies the visible number of lines in a text area
10078  * @cfg {string} wrap (soft|hard)Specifies how the text in a text area is to be wrapped when submitted in a form
10079  * @cfg {string} resize (none|both|horizontal|vertical|inherit|initial)
10080  * @cfg {string} html text
10081  * 
10082  * @constructor
10083  * Create a new TextArea
10084  * @param {Object} config The config object
10085  */
10086
10087 Roo.bootstrap.TextArea = function(config){
10088     Roo.bootstrap.TextArea.superclass.constructor.call(this, config);
10089    
10090 };
10091
10092 Roo.extend(Roo.bootstrap.TextArea, Roo.bootstrap.Input,  {
10093      
10094     cols : false,
10095     rows : 5,
10096     readOnly : false,
10097     warp : 'soft',
10098     resize : false,
10099     value: false,
10100     html: false,
10101     
10102     getAutoCreate : function(){
10103         
10104         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
10105         
10106         var id = Roo.id();
10107         
10108         var cfg = {};
10109         
10110         if(this.inputType != 'hidden'){
10111             cfg.cls = 'form-group' //input-group
10112         }
10113         
10114         var input =  {
10115             tag: 'textarea',
10116             id : id,
10117             warp : this.warp,
10118             rows : this.rows,
10119             value : this.value || '',
10120             html: this.html || '',
10121             cls : 'form-control',
10122             placeholder : this.placeholder || '' 
10123             
10124         };
10125         
10126         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
10127             input.maxLength = this.maxLength;
10128         }
10129         
10130         if(this.resize){
10131             input.style = (typeof(input.style) == 'undefined') ? 'resize:' + this.resize : input.style + 'resize:' + this.resize;
10132         }
10133         
10134         if(this.cols){
10135             input.cols = this.cols;
10136         }
10137         
10138         if (this.readOnly) {
10139             input.readonly = true;
10140         }
10141         
10142         if (this.name) {
10143             input.name = this.name;
10144         }
10145         
10146         if (this.size) {
10147             input.cls = (typeof(input.cls) == 'undefined') ? 'input-' + this.size : input.cls + ' input-' + this.size;
10148         }
10149         
10150         var settings=this;
10151         ['xs','sm','md','lg'].map(function(size){
10152             if (settings[size]) {
10153                 cfg.cls += ' col-' + size + '-' + settings[size];
10154             }
10155         });
10156         
10157         var inputblock = input;
10158         
10159         if(this.hasFeedback && !this.allowBlank){
10160             
10161             var feedback = {
10162                 tag: 'span',
10163                 cls: 'glyphicon form-control-feedback'
10164             };
10165
10166             inputblock = {
10167                 cls : 'has-feedback',
10168                 cn :  [
10169                     input,
10170                     feedback
10171                 ] 
10172             };  
10173         }
10174         
10175         
10176         if (this.before || this.after) {
10177             
10178             inputblock = {
10179                 cls : 'input-group',
10180                 cn :  [] 
10181             };
10182             if (this.before) {
10183                 inputblock.cn.push({
10184                     tag :'span',
10185                     cls : 'input-group-addon',
10186                     html : this.before
10187                 });
10188             }
10189             
10190             inputblock.cn.push(input);
10191             
10192             if(this.hasFeedback && !this.allowBlank){
10193                 inputblock.cls += ' has-feedback';
10194                 inputblock.cn.push(feedback);
10195             }
10196             
10197             if (this.after) {
10198                 inputblock.cn.push({
10199                     tag :'span',
10200                     cls : 'input-group-addon',
10201                     html : this.after
10202                 });
10203             }
10204             
10205         }
10206         
10207         if (align ==='left' && this.fieldLabel.length) {
10208             cfg.cn = [
10209                 {
10210                     tag: 'label',
10211                     'for' :  id,
10212                     cls : 'control-label',
10213                     html : this.fieldLabel
10214                 },
10215                 {
10216                     cls : "",
10217                     cn: [
10218                         inputblock
10219                     ]
10220                 }
10221
10222             ];
10223             
10224             if(this.labelWidth > 12){
10225                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
10226             }
10227
10228             if(this.labelWidth < 13 && this.labelmd == 0){
10229                 this.labelmd = this.labelWidth;
10230             }
10231
10232             if(this.labellg > 0){
10233                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
10234                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
10235             }
10236
10237             if(this.labelmd > 0){
10238                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
10239                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
10240             }
10241
10242             if(this.labelsm > 0){
10243                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
10244                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
10245             }
10246
10247             if(this.labelxs > 0){
10248                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
10249                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
10250             }
10251             
10252         } else if ( this.fieldLabel.length) {
10253             cfg.cn = [
10254
10255                {
10256                    tag: 'label',
10257                    //cls : 'input-group-addon',
10258                    html : this.fieldLabel
10259
10260                },
10261
10262                inputblock
10263
10264            ];
10265
10266         } else {
10267
10268             cfg.cn = [
10269
10270                 inputblock
10271
10272             ];
10273                 
10274         }
10275         
10276         if (this.disabled) {
10277             input.disabled=true;
10278         }
10279         
10280         return cfg;
10281         
10282     },
10283     /**
10284      * return the real textarea element.
10285      */
10286     inputEl: function ()
10287     {
10288         return this.el.select('textarea.form-control',true).first();
10289     },
10290     
10291     /**
10292      * Clear any invalid styles/messages for this field
10293      */
10294     clearInvalid : function()
10295     {
10296         
10297         if(!this.el || this.preventMark){ // not rendered
10298             return;
10299         }
10300         
10301         var label = this.el.select('label', true).first();
10302         var icon = this.el.select('i.fa-star', true).first();
10303         
10304         if(label && icon){
10305             icon.remove();
10306         }
10307         this.el.removeClass( this.validClass);
10308         this.inputEl().removeClass('is-invalid');
10309          
10310         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10311             
10312             var feedback = this.el.select('.form-control-feedback', true).first();
10313             
10314             if(feedback){
10315                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
10316             }
10317             
10318         }
10319         
10320         this.fireEvent('valid', this);
10321     },
10322     
10323      /**
10324      * Mark this field as valid
10325      */
10326     markValid : function()
10327     {
10328         if(!this.el  || this.preventMark){ // not rendered
10329             return;
10330         }
10331         
10332         this.el.removeClass([this.invalidClass, this.validClass]);
10333         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10334         
10335         var feedback = this.el.select('.form-control-feedback', true).first();
10336             
10337         if(feedback){
10338             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10339         }
10340
10341         if(this.disabled || this.allowBlank){
10342             return;
10343         }
10344         
10345         var label = this.el.select('label', true).first();
10346         var icon = this.el.select('i.fa-star', true).first();
10347         
10348         if(label && icon){
10349             icon.remove();
10350         }
10351         if (Roo.bootstrap.version == 3) {
10352             this.el.addClass(this.validClass);
10353         } else {
10354             this.inputEl().addClass('is-valid');
10355         }
10356         
10357         
10358         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
10359             
10360             var feedback = this.el.select('.form-control-feedback', true).first();
10361             
10362             if(feedback){
10363                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10364                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
10365             }
10366             
10367         }
10368         
10369         this.fireEvent('valid', this);
10370     },
10371     
10372      /**
10373      * Mark this field as invalid
10374      * @param {String} msg The validation message
10375      */
10376     markInvalid : function(msg)
10377     {
10378         if(!this.el  || this.preventMark){ // not rendered
10379             return;
10380         }
10381         
10382         this.el.removeClass([this.invalidClass, this.validClass]);
10383         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10384         
10385         var feedback = this.el.select('.form-control-feedback', true).first();
10386             
10387         if(feedback){
10388             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10389         }
10390
10391         if(this.disabled || this.allowBlank){
10392             return;
10393         }
10394         
10395         var label = this.el.select('label', true).first();
10396         var icon = this.el.select('i.fa-star', true).first();
10397         
10398         if(!this.getValue().length && label && !icon){
10399             this.el.createChild({
10400                 tag : 'i',
10401                 cls : 'text-danger fa fa-lg fa-star',
10402                 tooltip : 'This field is required',
10403                 style : 'margin-right:5px;'
10404             }, label, true);
10405         }
10406         
10407         if (Roo.bootstrap.version == 3) {
10408             this.el.addClass(this.invalidClass);
10409         } else {
10410             this.inputEl().addClass('is-invalid');
10411         }
10412         
10413         // fixme ... this may be depricated need to test..
10414         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10415             
10416             var feedback = this.el.select('.form-control-feedback', true).first();
10417             
10418             if(feedback){
10419                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10420                 
10421                 if(this.getValue().length || this.forceFeedback){
10422                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
10423                 }
10424                 
10425             }
10426             
10427         }
10428         
10429         this.fireEvent('invalid', this, msg);
10430     }
10431 });
10432
10433  
10434 /*
10435  * - LGPL
10436  *
10437  * trigger field - base class for combo..
10438  * 
10439  */
10440  
10441 /**
10442  * @class Roo.bootstrap.TriggerField
10443  * @extends Roo.bootstrap.Input
10444  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
10445  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
10446  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
10447  * for which you can provide a custom implementation.  For example:
10448  * <pre><code>
10449 var trigger = new Roo.bootstrap.TriggerField();
10450 trigger.onTriggerClick = myTriggerFn;
10451 trigger.applyTo('my-field');
10452 </code></pre>
10453  *
10454  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
10455  * {@link Roo.bootstrap.DateField} and {@link Roo.bootstrap.ComboBox} are perfect examples of this.
10456  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
10457  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
10458  * @cfg {String} caret (search|calendar) a fontawesome for the trigger icon see http://fortawesome.github.io/Font-Awesome/icons/
10459
10460  * @constructor
10461  * Create a new TriggerField.
10462  * @param {Object} config Configuration options (valid {@Roo.bootstrap.Input} config options will also be applied
10463  * to the base TextField)
10464  */
10465 Roo.bootstrap.TriggerField = function(config){
10466     this.mimicing = false;
10467     Roo.bootstrap.TriggerField.superclass.constructor.call(this, config);
10468 };
10469
10470 Roo.extend(Roo.bootstrap.TriggerField, Roo.bootstrap.Input,  {
10471     /**
10472      * @cfg {String} triggerClass A CSS class to apply to the trigger
10473      */
10474      /**
10475      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
10476      */
10477     hideTrigger:false,
10478
10479     /**
10480      * @cfg {Boolean} removable (true|false) special filter default false
10481      */
10482     removable : false,
10483     
10484     /** @cfg {Boolean} grow @hide */
10485     /** @cfg {Number} growMin @hide */
10486     /** @cfg {Number} growMax @hide */
10487
10488     /**
10489      * @hide 
10490      * @method
10491      */
10492     autoSize: Roo.emptyFn,
10493     // private
10494     monitorTab : true,
10495     // private
10496     deferHeight : true,
10497
10498     
10499     actionMode : 'wrap',
10500     
10501     caret : false,
10502     
10503     
10504     getAutoCreate : function(){
10505        
10506         var align = this.labelAlign || this.parentLabelAlign();
10507         
10508         var id = Roo.id();
10509         
10510         var cfg = {
10511             cls: 'form-group' //input-group
10512         };
10513         
10514         
10515         var input =  {
10516             tag: 'input',
10517             id : id,
10518             type : this.inputType,
10519             cls : 'form-control',
10520             autocomplete: 'new-password',
10521             placeholder : this.placeholder || '' 
10522             
10523         };
10524         if (this.name) {
10525             input.name = this.name;
10526         }
10527         if (this.size) {
10528             input.cls += ' input-' + this.size;
10529         }
10530         
10531         if (this.disabled) {
10532             input.disabled=true;
10533         }
10534         
10535         var inputblock = input;
10536         
10537         if(this.hasFeedback && !this.allowBlank){
10538             
10539             var feedback = {
10540                 tag: 'span',
10541                 cls: 'glyphicon form-control-feedback'
10542             };
10543             
10544             if(this.removable && !this.editable && !this.tickable){
10545                 inputblock = {
10546                     cls : 'has-feedback',
10547                     cn :  [
10548                         inputblock,
10549                         {
10550                             tag: 'button',
10551                             html : 'x',
10552                             cls : 'roo-combo-removable-btn close'
10553                         },
10554                         feedback
10555                     ] 
10556                 };
10557             } else {
10558                 inputblock = {
10559                     cls : 'has-feedback',
10560                     cn :  [
10561                         inputblock,
10562                         feedback
10563                     ] 
10564                 };
10565             }
10566
10567         } else {
10568             if(this.removable && !this.editable && !this.tickable){
10569                 inputblock = {
10570                     cls : 'roo-removable',
10571                     cn :  [
10572                         inputblock,
10573                         {
10574                             tag: 'button',
10575                             html : 'x',
10576                             cls : 'roo-combo-removable-btn close'
10577                         }
10578                     ] 
10579                 };
10580             }
10581         }
10582         
10583         if (this.before || this.after) {
10584             
10585             inputblock = {
10586                 cls : 'input-group',
10587                 cn :  [] 
10588             };
10589             if (this.before) {
10590                 inputblock.cn.push({
10591                     tag :'span',
10592                     cls : 'input-group-addon input-group-prepend input-group-text',
10593                     html : this.before
10594                 });
10595             }
10596             
10597             inputblock.cn.push(input);
10598             
10599             if(this.hasFeedback && !this.allowBlank){
10600                 inputblock.cls += ' has-feedback';
10601                 inputblock.cn.push(feedback);
10602             }
10603             
10604             if (this.after) {
10605                 inputblock.cn.push({
10606                     tag :'span',
10607                     cls : 'input-group-addon input-group-append input-group-text',
10608                     html : this.after
10609                 });
10610             }
10611             
10612         };
10613         
10614       
10615         
10616         var ibwrap = inputblock;
10617         
10618         if(this.multiple){
10619             ibwrap = {
10620                 tag: 'ul',
10621                 cls: 'roo-select2-choices',
10622                 cn:[
10623                     {
10624                         tag: 'li',
10625                         cls: 'roo-select2-search-field',
10626                         cn: [
10627
10628                             inputblock
10629                         ]
10630                     }
10631                 ]
10632             };
10633                 
10634         }
10635         
10636         var combobox = {
10637             cls: 'roo-select2-container input-group',
10638             cn: [
10639                  {
10640                     tag: 'input',
10641                     type : 'hidden',
10642                     cls: 'form-hidden-field'
10643                 },
10644                 ibwrap
10645             ]
10646         };
10647         
10648         if(!this.multiple && this.showToggleBtn){
10649             
10650             var caret = {
10651                         tag: 'span',
10652                         cls: 'caret'
10653              };
10654             if (this.caret != false) {
10655                 caret = {
10656                      tag: 'i',
10657                      cls: 'fa fa-' + this.caret
10658                 };
10659                 
10660             }
10661             
10662             combobox.cn.push({
10663                 tag :'span',
10664                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
10665                 cn : [
10666                     caret,
10667                     {
10668                         tag: 'span',
10669                         cls: 'combobox-clear',
10670                         cn  : [
10671                             {
10672                                 tag : 'i',
10673                                 cls: 'icon-remove'
10674                             }
10675                         ]
10676                     }
10677                 ]
10678
10679             })
10680         }
10681         
10682         if(this.multiple){
10683             combobox.cls += ' roo-select2-container-multi';
10684         }
10685          var indicator = {
10686             tag : 'i',
10687             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
10688             tooltip : 'This field is required'
10689         };
10690         if (Roo.bootstrap.version == 4) {
10691             indicator = {
10692                 tag : 'i',
10693                 style : 'display:none'
10694             };
10695         }
10696         
10697         
10698         if (align ==='left' && this.fieldLabel.length) {
10699             
10700             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
10701
10702             cfg.cn = [
10703                 indicator,
10704                 {
10705                     tag: 'label',
10706                     'for' :  id,
10707                     cls : 'control-label',
10708                     html : this.fieldLabel
10709
10710                 },
10711                 {
10712                     cls : "", 
10713                     cn: [
10714                         combobox
10715                     ]
10716                 }
10717
10718             ];
10719             
10720             var labelCfg = cfg.cn[1];
10721             var contentCfg = cfg.cn[2];
10722             
10723             if(this.indicatorpos == 'right'){
10724                 cfg.cn = [
10725                     {
10726                         tag: 'label',
10727                         'for' :  id,
10728                         cls : 'control-label',
10729                         cn : [
10730                             {
10731                                 tag : 'span',
10732                                 html : this.fieldLabel
10733                             },
10734                             indicator
10735                         ]
10736                     },
10737                     {
10738                         cls : "", 
10739                         cn: [
10740                             combobox
10741                         ]
10742                     }
10743
10744                 ];
10745                 
10746                 labelCfg = cfg.cn[0];
10747                 contentCfg = cfg.cn[1];
10748             }
10749             
10750             if(this.labelWidth > 12){
10751                 labelCfg.style = "width: " + this.labelWidth + 'px';
10752             }
10753             
10754             if(this.labelWidth < 13 && this.labelmd == 0){
10755                 this.labelmd = this.labelWidth;
10756             }
10757             
10758             if(this.labellg > 0){
10759                 labelCfg.cls += ' col-lg-' + this.labellg;
10760                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
10761             }
10762             
10763             if(this.labelmd > 0){
10764                 labelCfg.cls += ' col-md-' + this.labelmd;
10765                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
10766             }
10767             
10768             if(this.labelsm > 0){
10769                 labelCfg.cls += ' col-sm-' + this.labelsm;
10770                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
10771             }
10772             
10773             if(this.labelxs > 0){
10774                 labelCfg.cls += ' col-xs-' + this.labelxs;
10775                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
10776             }
10777             
10778         } else if ( this.fieldLabel.length) {
10779 //                Roo.log(" label");
10780             cfg.cn = [
10781                 indicator,
10782                {
10783                    tag: 'label',
10784                    //cls : 'input-group-addon',
10785                    html : this.fieldLabel
10786
10787                },
10788
10789                combobox
10790
10791             ];
10792             
10793             if(this.indicatorpos == 'right'){
10794                 
10795                 cfg.cn = [
10796                     {
10797                        tag: 'label',
10798                        cn : [
10799                            {
10800                                tag : 'span',
10801                                html : this.fieldLabel
10802                            },
10803                            indicator
10804                        ]
10805
10806                     },
10807                     combobox
10808
10809                 ];
10810
10811             }
10812
10813         } else {
10814             
10815 //                Roo.log(" no label && no align");
10816                 cfg = combobox
10817                      
10818                 
10819         }
10820         
10821         var settings=this;
10822         ['xs','sm','md','lg'].map(function(size){
10823             if (settings[size]) {
10824                 cfg.cls += ' col-' + size + '-' + settings[size];
10825             }
10826         });
10827         
10828         return cfg;
10829         
10830     },
10831     
10832     
10833     
10834     // private
10835     onResize : function(w, h){
10836 //        Roo.bootstrap.TriggerField.superclass.onResize.apply(this, arguments);
10837 //        if(typeof w == 'number'){
10838 //            var x = w - this.trigger.getWidth();
10839 //            this.inputEl().setWidth(this.adjustWidth('input', x));
10840 //            this.trigger.setStyle('left', x+'px');
10841 //        }
10842     },
10843
10844     // private
10845     adjustSize : Roo.BoxComponent.prototype.adjustSize,
10846
10847     // private
10848     getResizeEl : function(){
10849         return this.inputEl();
10850     },
10851
10852     // private
10853     getPositionEl : function(){
10854         return this.inputEl();
10855     },
10856
10857     // private
10858     alignErrorIcon : function(){
10859         this.errorIcon.alignTo(this.inputEl(), 'tl-tr', [2, 0]);
10860     },
10861
10862     // private
10863     initEvents : function(){
10864         
10865         this.createList();
10866         
10867         Roo.bootstrap.TriggerField.superclass.initEvents.call(this);
10868         //this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
10869         if(!this.multiple && this.showToggleBtn){
10870             this.trigger = this.el.select('span.dropdown-toggle',true).first();
10871             if(this.hideTrigger){
10872                 this.trigger.setDisplayed(false);
10873             }
10874             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
10875         }
10876         
10877         if(this.multiple){
10878             this.inputEl().on("click", this.onTriggerClick, this, {preventDefault:true});
10879         }
10880         
10881         if(this.removable && !this.editable && !this.tickable){
10882             var close = this.closeTriggerEl();
10883             
10884             if(close){
10885                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
10886                 close.on('click', this.removeBtnClick, this, close);
10887             }
10888         }
10889         
10890         //this.trigger.addClassOnOver('x-form-trigger-over');
10891         //this.trigger.addClassOnClick('x-form-trigger-click');
10892         
10893         //if(!this.width){
10894         //    this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
10895         //}
10896     },
10897     
10898     closeTriggerEl : function()
10899     {
10900         var close = this.el.select('.roo-combo-removable-btn', true).first();
10901         return close ? close : false;
10902     },
10903     
10904     removeBtnClick : function(e, h, el)
10905     {
10906         e.preventDefault();
10907         
10908         if(this.fireEvent("remove", this) !== false){
10909             this.reset();
10910             this.fireEvent("afterremove", this)
10911         }
10912     },
10913     
10914     createList : function()
10915     {
10916         this.list = Roo.get(document.body).createChild({
10917             tag: Roo.bootstrap.version == 4 ? 'div' : 'ul',
10918             cls: 'typeahead typeahead-long dropdown-menu',
10919             style: 'display:none'
10920         });
10921         
10922         this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';;
10923         
10924     },
10925
10926     // private
10927     initTrigger : function(){
10928        
10929     },
10930
10931     // private
10932     onDestroy : function(){
10933         if(this.trigger){
10934             this.trigger.removeAllListeners();
10935           //  this.trigger.remove();
10936         }
10937         //if(this.wrap){
10938         //    this.wrap.remove();
10939         //}
10940         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
10941     },
10942
10943     // private
10944     onFocus : function(){
10945         Roo.bootstrap.TriggerField.superclass.onFocus.call(this);
10946         /*
10947         if(!this.mimicing){
10948             this.wrap.addClass('x-trigger-wrap-focus');
10949             this.mimicing = true;
10950             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
10951             if(this.monitorTab){
10952                 this.el.on("keydown", this.checkTab, this);
10953             }
10954         }
10955         */
10956     },
10957
10958     // private
10959     checkTab : function(e){
10960         if(e.getKey() == e.TAB){
10961             this.triggerBlur();
10962         }
10963     },
10964
10965     // private
10966     onBlur : function(){
10967         // do nothing
10968     },
10969
10970     // private
10971     mimicBlur : function(e, t){
10972         /*
10973         if(!this.wrap.contains(t) && this.validateBlur()){
10974             this.triggerBlur();
10975         }
10976         */
10977     },
10978
10979     // private
10980     triggerBlur : function(){
10981         this.mimicing = false;
10982         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
10983         if(this.monitorTab){
10984             this.el.un("keydown", this.checkTab, this);
10985         }
10986         //this.wrap.removeClass('x-trigger-wrap-focus');
10987         Roo.bootstrap.TriggerField.superclass.onBlur.call(this);
10988     },
10989
10990     // private
10991     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
10992     validateBlur : function(e, t){
10993         return true;
10994     },
10995
10996     // private
10997     onDisable : function(){
10998         this.inputEl().dom.disabled = true;
10999         //Roo.bootstrap.TriggerField.superclass.onDisable.call(this);
11000         //if(this.wrap){
11001         //    this.wrap.addClass('x-item-disabled');
11002         //}
11003     },
11004
11005     // private
11006     onEnable : function(){
11007         this.inputEl().dom.disabled = false;
11008         //Roo.bootstrap.TriggerField.superclass.onEnable.call(this);
11009         //if(this.wrap){
11010         //    this.el.removeClass('x-item-disabled');
11011         //}
11012     },
11013
11014     // private
11015     onShow : function(){
11016         var ae = this.getActionEl();
11017         
11018         if(ae){
11019             ae.dom.style.display = '';
11020             ae.dom.style.visibility = 'visible';
11021         }
11022     },
11023
11024     // private
11025     
11026     onHide : function(){
11027         var ae = this.getActionEl();
11028         ae.dom.style.display = 'none';
11029     },
11030
11031     /**
11032      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
11033      * by an implementing function.
11034      * @method
11035      * @param {EventObject} e
11036      */
11037     onTriggerClick : Roo.emptyFn
11038 });
11039  /*
11040  * Based on:
11041  * Ext JS Library 1.1.1
11042  * Copyright(c) 2006-2007, Ext JS, LLC.
11043  *
11044  * Originally Released Under LGPL - original licence link has changed is not relivant.
11045  *
11046  * Fork - LGPL
11047  * <script type="text/javascript">
11048  */
11049
11050
11051 /**
11052  * @class Roo.data.SortTypes
11053  * @singleton
11054  * Defines the default sorting (casting?) comparison functions used when sorting data.
11055  */
11056 Roo.data.SortTypes = {
11057     /**
11058      * Default sort that does nothing
11059      * @param {Mixed} s The value being converted
11060      * @return {Mixed} The comparison value
11061      */
11062     none : function(s){
11063         return s;
11064     },
11065     
11066     /**
11067      * The regular expression used to strip tags
11068      * @type {RegExp}
11069      * @property
11070      */
11071     stripTagsRE : /<\/?[^>]+>/gi,
11072     
11073     /**
11074      * Strips all HTML tags to sort on text only
11075      * @param {Mixed} s The value being converted
11076      * @return {String} The comparison value
11077      */
11078     asText : function(s){
11079         return String(s).replace(this.stripTagsRE, "");
11080     },
11081     
11082     /**
11083      * Strips all HTML tags to sort on text only - Case insensitive
11084      * @param {Mixed} s The value being converted
11085      * @return {String} The comparison value
11086      */
11087     asUCText : function(s){
11088         return String(s).toUpperCase().replace(this.stripTagsRE, "");
11089     },
11090     
11091     /**
11092      * Case insensitive string
11093      * @param {Mixed} s The value being converted
11094      * @return {String} The comparison value
11095      */
11096     asUCString : function(s) {
11097         return String(s).toUpperCase();
11098     },
11099     
11100     /**
11101      * Date sorting
11102      * @param {Mixed} s The value being converted
11103      * @return {Number} The comparison value
11104      */
11105     asDate : function(s) {
11106         if(!s){
11107             return 0;
11108         }
11109         if(s instanceof Date){
11110             return s.getTime();
11111         }
11112         return Date.parse(String(s));
11113     },
11114     
11115     /**
11116      * Float sorting
11117      * @param {Mixed} s The value being converted
11118      * @return {Float} The comparison value
11119      */
11120     asFloat : function(s) {
11121         var val = parseFloat(String(s).replace(/,/g, ""));
11122         if(isNaN(val)) {
11123             val = 0;
11124         }
11125         return val;
11126     },
11127     
11128     /**
11129      * Integer sorting
11130      * @param {Mixed} s The value being converted
11131      * @return {Number} The comparison value
11132      */
11133     asInt : function(s) {
11134         var val = parseInt(String(s).replace(/,/g, ""));
11135         if(isNaN(val)) {
11136             val = 0;
11137         }
11138         return val;
11139     }
11140 };/*
11141  * Based on:
11142  * Ext JS Library 1.1.1
11143  * Copyright(c) 2006-2007, Ext JS, LLC.
11144  *
11145  * Originally Released Under LGPL - original licence link has changed is not relivant.
11146  *
11147  * Fork - LGPL
11148  * <script type="text/javascript">
11149  */
11150
11151 /**
11152 * @class Roo.data.Record
11153  * Instances of this class encapsulate both record <em>definition</em> information, and record
11154  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
11155  * to access Records cached in an {@link Roo.data.Store} object.<br>
11156  * <p>
11157  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
11158  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
11159  * objects.<br>
11160  * <p>
11161  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
11162  * @constructor
11163  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
11164  * {@link #create}. The parameters are the same.
11165  * @param {Array} data An associative Array of data values keyed by the field name.
11166  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
11167  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
11168  * not specified an integer id is generated.
11169  */
11170 Roo.data.Record = function(data, id){
11171     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
11172     this.data = data;
11173 };
11174
11175 /**
11176  * Generate a constructor for a specific record layout.
11177  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
11178  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
11179  * Each field definition object may contain the following properties: <ul>
11180  * <li><b>name</b> : String<p style="margin-left:1em">The name by which the field is referenced within the Record. This is referenced by,
11181  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
11182  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
11183  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
11184  * is being used, then this is a string containing the javascript expression to reference the data relative to 
11185  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
11186  * to the data item relative to the record element. If the mapping expression is the same as the field name,
11187  * this may be omitted.</p></li>
11188  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
11189  * <ul><li>auto (Default, implies no conversion)</li>
11190  * <li>string</li>
11191  * <li>int</li>
11192  * <li>float</li>
11193  * <li>boolean</li>
11194  * <li>date</li></ul></p></li>
11195  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
11196  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
11197  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
11198  * by the Reader into an object that will be stored in the Record. It is passed the
11199  * following parameters:<ul>
11200  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
11201  * </ul></p></li>
11202  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
11203  * </ul>
11204  * <br>usage:<br><pre><code>
11205 var TopicRecord = Roo.data.Record.create(
11206     {name: 'title', mapping: 'topic_title'},
11207     {name: 'author', mapping: 'username'},
11208     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
11209     {name: 'lastPost', mapping: 'post_time', type: 'date'},
11210     {name: 'lastPoster', mapping: 'user2'},
11211     {name: 'excerpt', mapping: 'post_text'}
11212 );
11213
11214 var myNewRecord = new TopicRecord({
11215     title: 'Do my job please',
11216     author: 'noobie',
11217     totalPosts: 1,
11218     lastPost: new Date(),
11219     lastPoster: 'Animal',
11220     excerpt: 'No way dude!'
11221 });
11222 myStore.add(myNewRecord);
11223 </code></pre>
11224  * @method create
11225  * @static
11226  */
11227 Roo.data.Record.create = function(o){
11228     var f = function(){
11229         f.superclass.constructor.apply(this, arguments);
11230     };
11231     Roo.extend(f, Roo.data.Record);
11232     var p = f.prototype;
11233     p.fields = new Roo.util.MixedCollection(false, function(field){
11234         return field.name;
11235     });
11236     for(var i = 0, len = o.length; i < len; i++){
11237         p.fields.add(new Roo.data.Field(o[i]));
11238     }
11239     f.getField = function(name){
11240         return p.fields.get(name);  
11241     };
11242     return f;
11243 };
11244
11245 Roo.data.Record.AUTO_ID = 1000;
11246 Roo.data.Record.EDIT = 'edit';
11247 Roo.data.Record.REJECT = 'reject';
11248 Roo.data.Record.COMMIT = 'commit';
11249
11250 Roo.data.Record.prototype = {
11251     /**
11252      * Readonly flag - true if this record has been modified.
11253      * @type Boolean
11254      */
11255     dirty : false,
11256     editing : false,
11257     error: null,
11258     modified: null,
11259
11260     // private
11261     join : function(store){
11262         this.store = store;
11263     },
11264
11265     /**
11266      * Set the named field to the specified value.
11267      * @param {String} name The name of the field to set.
11268      * @param {Object} value The value to set the field to.
11269      */
11270     set : function(name, value){
11271         if(this.data[name] == value){
11272             return;
11273         }
11274         this.dirty = true;
11275         if(!this.modified){
11276             this.modified = {};
11277         }
11278         if(typeof this.modified[name] == 'undefined'){
11279             this.modified[name] = this.data[name];
11280         }
11281         this.data[name] = value;
11282         if(!this.editing && this.store){
11283             this.store.afterEdit(this);
11284         }       
11285     },
11286
11287     /**
11288      * Get the value of the named field.
11289      * @param {String} name The name of the field to get the value of.
11290      * @return {Object} The value of the field.
11291      */
11292     get : function(name){
11293         return this.data[name]; 
11294     },
11295
11296     // private
11297     beginEdit : function(){
11298         this.editing = true;
11299         this.modified = {}; 
11300     },
11301
11302     // private
11303     cancelEdit : function(){
11304         this.editing = false;
11305         delete this.modified;
11306     },
11307
11308     // private
11309     endEdit : function(){
11310         this.editing = false;
11311         if(this.dirty && this.store){
11312             this.store.afterEdit(this);
11313         }
11314     },
11315
11316     /**
11317      * Usually called by the {@link Roo.data.Store} which owns the Record.
11318      * Rejects all changes made to the Record since either creation, or the last commit operation.
11319      * Modified fields are reverted to their original values.
11320      * <p>
11321      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11322      * of reject operations.
11323      */
11324     reject : function(){
11325         var m = this.modified;
11326         for(var n in m){
11327             if(typeof m[n] != "function"){
11328                 this.data[n] = m[n];
11329             }
11330         }
11331         this.dirty = false;
11332         delete this.modified;
11333         this.editing = false;
11334         if(this.store){
11335             this.store.afterReject(this);
11336         }
11337     },
11338
11339     /**
11340      * Usually called by the {@link Roo.data.Store} which owns the Record.
11341      * Commits all changes made to the Record since either creation, or the last commit operation.
11342      * <p>
11343      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11344      * of commit operations.
11345      */
11346     commit : function(){
11347         this.dirty = false;
11348         delete this.modified;
11349         this.editing = false;
11350         if(this.store){
11351             this.store.afterCommit(this);
11352         }
11353     },
11354
11355     // private
11356     hasError : function(){
11357         return this.error != null;
11358     },
11359
11360     // private
11361     clearError : function(){
11362         this.error = null;
11363     },
11364
11365     /**
11366      * Creates a copy of this record.
11367      * @param {String} id (optional) A new record id if you don't want to use this record's id
11368      * @return {Record}
11369      */
11370     copy : function(newId) {
11371         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
11372     }
11373 };/*
11374  * Based on:
11375  * Ext JS Library 1.1.1
11376  * Copyright(c) 2006-2007, Ext JS, LLC.
11377  *
11378  * Originally Released Under LGPL - original licence link has changed is not relivant.
11379  *
11380  * Fork - LGPL
11381  * <script type="text/javascript">
11382  */
11383
11384
11385
11386 /**
11387  * @class Roo.data.Store
11388  * @extends Roo.util.Observable
11389  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
11390  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
11391  * <p>
11392  * A Store object uses an implementation of {@link Roo.data.DataProxy} to access a data object unless you call loadData() directly and pass in your data. The Store object
11393  * has no knowledge of the format of the data returned by the Proxy.<br>
11394  * <p>
11395  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
11396  * instances from the data object. These records are cached and made available through accessor functions.
11397  * @constructor
11398  * Creates a new Store.
11399  * @param {Object} config A config object containing the objects needed for the Store to access data,
11400  * and read the data into Records.
11401  */
11402 Roo.data.Store = function(config){
11403     this.data = new Roo.util.MixedCollection(false);
11404     this.data.getKey = function(o){
11405         return o.id;
11406     };
11407     this.baseParams = {};
11408     // private
11409     this.paramNames = {
11410         "start" : "start",
11411         "limit" : "limit",
11412         "sort" : "sort",
11413         "dir" : "dir",
11414         "multisort" : "_multisort"
11415     };
11416
11417     if(config && config.data){
11418         this.inlineData = config.data;
11419         delete config.data;
11420     }
11421
11422     Roo.apply(this, config);
11423     
11424     if(this.reader){ // reader passed
11425         this.reader = Roo.factory(this.reader, Roo.data);
11426         this.reader.xmodule = this.xmodule || false;
11427         if(!this.recordType){
11428             this.recordType = this.reader.recordType;
11429         }
11430         if(this.reader.onMetaChange){
11431             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
11432         }
11433     }
11434
11435     if(this.recordType){
11436         this.fields = this.recordType.prototype.fields;
11437     }
11438     this.modified = [];
11439
11440     this.addEvents({
11441         /**
11442          * @event datachanged
11443          * Fires when the data cache has changed, and a widget which is using this Store
11444          * as a Record cache should refresh its view.
11445          * @param {Store} this
11446          */
11447         datachanged : true,
11448         /**
11449          * @event metachange
11450          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
11451          * @param {Store} this
11452          * @param {Object} meta The JSON metadata
11453          */
11454         metachange : true,
11455         /**
11456          * @event add
11457          * Fires when Records have been added to the Store
11458          * @param {Store} this
11459          * @param {Roo.data.Record[]} records The array of Records added
11460          * @param {Number} index The index at which the record(s) were added
11461          */
11462         add : true,
11463         /**
11464          * @event remove
11465          * Fires when a Record has been removed from the Store
11466          * @param {Store} this
11467          * @param {Roo.data.Record} record The Record that was removed
11468          * @param {Number} index The index at which the record was removed
11469          */
11470         remove : true,
11471         /**
11472          * @event update
11473          * Fires when a Record has been updated
11474          * @param {Store} this
11475          * @param {Roo.data.Record} record The Record that was updated
11476          * @param {String} operation The update operation being performed.  Value may be one of:
11477          * <pre><code>
11478  Roo.data.Record.EDIT
11479  Roo.data.Record.REJECT
11480  Roo.data.Record.COMMIT
11481          * </code></pre>
11482          */
11483         update : true,
11484         /**
11485          * @event clear
11486          * Fires when the data cache has been cleared.
11487          * @param {Store} this
11488          */
11489         clear : true,
11490         /**
11491          * @event beforeload
11492          * Fires before a request is made for a new data object.  If the beforeload handler returns false
11493          * the load action will be canceled.
11494          * @param {Store} this
11495          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11496          */
11497         beforeload : true,
11498         /**
11499          * @event beforeloadadd
11500          * Fires after a new set of Records has been loaded.
11501          * @param {Store} this
11502          * @param {Roo.data.Record[]} records The Records that were loaded
11503          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11504          */
11505         beforeloadadd : true,
11506         /**
11507          * @event load
11508          * Fires after a new set of Records has been loaded, before they are added to the store.
11509          * @param {Store} this
11510          * @param {Roo.data.Record[]} records The Records that were loaded
11511          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11512          * @params {Object} return from reader
11513          */
11514         load : true,
11515         /**
11516          * @event loadexception
11517          * Fires if an exception occurs in the Proxy during loading.
11518          * Called with the signature of the Proxy's "loadexception" event.
11519          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
11520          * 
11521          * @param {Proxy} 
11522          * @param {Object} return from JsonData.reader() - success, totalRecords, records
11523          * @param {Object} load options 
11524          * @param {Object} jsonData from your request (normally this contains the Exception)
11525          */
11526         loadexception : true
11527     });
11528     
11529     if(this.proxy){
11530         this.proxy = Roo.factory(this.proxy, Roo.data);
11531         this.proxy.xmodule = this.xmodule || false;
11532         this.relayEvents(this.proxy,  ["loadexception"]);
11533     }
11534     this.sortToggle = {};
11535     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
11536
11537     Roo.data.Store.superclass.constructor.call(this);
11538
11539     if(this.inlineData){
11540         this.loadData(this.inlineData);
11541         delete this.inlineData;
11542     }
11543 };
11544
11545 Roo.extend(Roo.data.Store, Roo.util.Observable, {
11546      /**
11547     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
11548     * without a remote query - used by combo/forms at present.
11549     */
11550     
11551     /**
11552     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
11553     */
11554     /**
11555     * @cfg {Array} data Inline data to be loaded when the store is initialized.
11556     */
11557     /**
11558     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
11559     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
11560     */
11561     /**
11562     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
11563     * on any HTTP request
11564     */
11565     /**
11566     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
11567     */
11568     /**
11569     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
11570     */
11571     multiSort: false,
11572     /**
11573     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
11574     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
11575     */
11576     remoteSort : false,
11577
11578     /**
11579     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
11580      * loaded or when a record is removed. (defaults to false).
11581     */
11582     pruneModifiedRecords : false,
11583
11584     // private
11585     lastOptions : null,
11586
11587     /**
11588      * Add Records to the Store and fires the add event.
11589      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11590      */
11591     add : function(records){
11592         records = [].concat(records);
11593         for(var i = 0, len = records.length; i < len; i++){
11594             records[i].join(this);
11595         }
11596         var index = this.data.length;
11597         this.data.addAll(records);
11598         this.fireEvent("add", this, records, index);
11599     },
11600
11601     /**
11602      * Remove a Record from the Store and fires the remove event.
11603      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
11604      */
11605     remove : function(record){
11606         var index = this.data.indexOf(record);
11607         this.data.removeAt(index);
11608  
11609         if(this.pruneModifiedRecords){
11610             this.modified.remove(record);
11611         }
11612         this.fireEvent("remove", this, record, index);
11613     },
11614
11615     /**
11616      * Remove all Records from the Store and fires the clear event.
11617      */
11618     removeAll : function(){
11619         this.data.clear();
11620         if(this.pruneModifiedRecords){
11621             this.modified = [];
11622         }
11623         this.fireEvent("clear", this);
11624     },
11625
11626     /**
11627      * Inserts Records to the Store at the given index and fires the add event.
11628      * @param {Number} index The start index at which to insert the passed Records.
11629      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11630      */
11631     insert : function(index, records){
11632         records = [].concat(records);
11633         for(var i = 0, len = records.length; i < len; i++){
11634             this.data.insert(index, records[i]);
11635             records[i].join(this);
11636         }
11637         this.fireEvent("add", this, records, index);
11638     },
11639
11640     /**
11641      * Get the index within the cache of the passed Record.
11642      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
11643      * @return {Number} The index of the passed Record. Returns -1 if not found.
11644      */
11645     indexOf : function(record){
11646         return this.data.indexOf(record);
11647     },
11648
11649     /**
11650      * Get the index within the cache of the Record with the passed id.
11651      * @param {String} id The id of the Record to find.
11652      * @return {Number} The index of the Record. Returns -1 if not found.
11653      */
11654     indexOfId : function(id){
11655         return this.data.indexOfKey(id);
11656     },
11657
11658     /**
11659      * Get the Record with the specified id.
11660      * @param {String} id The id of the Record to find.
11661      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
11662      */
11663     getById : function(id){
11664         return this.data.key(id);
11665     },
11666
11667     /**
11668      * Get the Record at the specified index.
11669      * @param {Number} index The index of the Record to find.
11670      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
11671      */
11672     getAt : function(index){
11673         return this.data.itemAt(index);
11674     },
11675
11676     /**
11677      * Returns a range of Records between specified indices.
11678      * @param {Number} startIndex (optional) The starting index (defaults to 0)
11679      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
11680      * @return {Roo.data.Record[]} An array of Records
11681      */
11682     getRange : function(start, end){
11683         return this.data.getRange(start, end);
11684     },
11685
11686     // private
11687     storeOptions : function(o){
11688         o = Roo.apply({}, o);
11689         delete o.callback;
11690         delete o.scope;
11691         this.lastOptions = o;
11692     },
11693
11694     /**
11695      * Loads the Record cache from the configured Proxy using the configured Reader.
11696      * <p>
11697      * If using remote paging, then the first load call must specify the <em>start</em>
11698      * and <em>limit</em> properties in the options.params property to establish the initial
11699      * position within the dataset, and the number of Records to cache on each read from the Proxy.
11700      * <p>
11701      * <strong>It is important to note that for remote data sources, loading is asynchronous,
11702      * and this call will return before the new data has been loaded. Perform any post-processing
11703      * in a callback function, or in a "load" event handler.</strong>
11704      * <p>
11705      * @param {Object} options An object containing properties which control loading options:<ul>
11706      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
11707      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
11708      * passed the following arguments:<ul>
11709      * <li>r : Roo.data.Record[]</li>
11710      * <li>options: Options object from the load call</li>
11711      * <li>success: Boolean success indicator</li></ul></li>
11712      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
11713      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
11714      * </ul>
11715      */
11716     load : function(options){
11717         options = options || {};
11718         if(this.fireEvent("beforeload", this, options) !== false){
11719             this.storeOptions(options);
11720             var p = Roo.apply(options.params || {}, this.baseParams);
11721             // if meta was not loaded from remote source.. try requesting it.
11722             if (!this.reader.metaFromRemote) {
11723                 p._requestMeta = 1;
11724             }
11725             if(this.sortInfo && this.remoteSort){
11726                 var pn = this.paramNames;
11727                 p[pn["sort"]] = this.sortInfo.field;
11728                 p[pn["dir"]] = this.sortInfo.direction;
11729             }
11730             if (this.multiSort) {
11731                 var pn = this.paramNames;
11732                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
11733             }
11734             
11735             this.proxy.load(p, this.reader, this.loadRecords, this, options);
11736         }
11737     },
11738
11739     /**
11740      * Reloads the Record cache from the configured Proxy using the configured Reader and
11741      * the options from the last load operation performed.
11742      * @param {Object} options (optional) An object containing properties which may override the options
11743      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
11744      * the most recently used options are reused).
11745      */
11746     reload : function(options){
11747         this.load(Roo.applyIf(options||{}, this.lastOptions));
11748     },
11749
11750     // private
11751     // Called as a callback by the Reader during a load operation.
11752     loadRecords : function(o, options, success){
11753         if(!o || success === false){
11754             if(success !== false){
11755                 this.fireEvent("load", this, [], options, o);
11756             }
11757             if(options.callback){
11758                 options.callback.call(options.scope || this, [], options, false);
11759             }
11760             return;
11761         }
11762         // if data returned failure - throw an exception.
11763         if (o.success === false) {
11764             // show a message if no listener is registered.
11765             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
11766                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
11767             }
11768             // loadmask wil be hooked into this..
11769             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
11770             return;
11771         }
11772         var r = o.records, t = o.totalRecords || r.length;
11773         
11774         this.fireEvent("beforeloadadd", this, r, options, o);
11775         
11776         if(!options || options.add !== true){
11777             if(this.pruneModifiedRecords){
11778                 this.modified = [];
11779             }
11780             for(var i = 0, len = r.length; i < len; i++){
11781                 r[i].join(this);
11782             }
11783             if(this.snapshot){
11784                 this.data = this.snapshot;
11785                 delete this.snapshot;
11786             }
11787             this.data.clear();
11788             this.data.addAll(r);
11789             this.totalLength = t;
11790             this.applySort();
11791             this.fireEvent("datachanged", this);
11792         }else{
11793             this.totalLength = Math.max(t, this.data.length+r.length);
11794             this.add(r);
11795         }
11796         
11797         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
11798                 
11799             var e = new Roo.data.Record({});
11800
11801             e.set(this.parent.displayField, this.parent.emptyTitle);
11802             e.set(this.parent.valueField, '');
11803
11804             this.insert(0, e);
11805         }
11806             
11807         this.fireEvent("load", this, r, options, o);
11808         if(options.callback){
11809             options.callback.call(options.scope || this, r, options, true);
11810         }
11811     },
11812
11813
11814     /**
11815      * Loads data from a passed data block. A Reader which understands the format of the data
11816      * must have been configured in the constructor.
11817      * @param {Object} data The data block from which to read the Records.  The format of the data expected
11818      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
11819      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
11820      */
11821     loadData : function(o, append){
11822         var r = this.reader.readRecords(o);
11823         this.loadRecords(r, {add: append}, true);
11824     },
11825
11826     /**
11827      * Gets the number of cached records.
11828      * <p>
11829      * <em>If using paging, this may not be the total size of the dataset. If the data object
11830      * used by the Reader contains the dataset size, then the getTotalCount() function returns
11831      * the data set size</em>
11832      */
11833     getCount : function(){
11834         return this.data.length || 0;
11835     },
11836
11837     /**
11838      * Gets the total number of records in the dataset as returned by the server.
11839      * <p>
11840      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
11841      * the dataset size</em>
11842      */
11843     getTotalCount : function(){
11844         return this.totalLength || 0;
11845     },
11846
11847     /**
11848      * Returns the sort state of the Store as an object with two properties:
11849      * <pre><code>
11850  field {String} The name of the field by which the Records are sorted
11851  direction {String} The sort order, "ASC" or "DESC"
11852      * </code></pre>
11853      */
11854     getSortState : function(){
11855         return this.sortInfo;
11856     },
11857
11858     // private
11859     applySort : function(){
11860         if(this.sortInfo && !this.remoteSort){
11861             var s = this.sortInfo, f = s.field;
11862             var st = this.fields.get(f).sortType;
11863             var fn = function(r1, r2){
11864                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
11865                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
11866             };
11867             this.data.sort(s.direction, fn);
11868             if(this.snapshot && this.snapshot != this.data){
11869                 this.snapshot.sort(s.direction, fn);
11870             }
11871         }
11872     },
11873
11874     /**
11875      * Sets the default sort column and order to be used by the next load operation.
11876      * @param {String} fieldName The name of the field to sort by.
11877      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11878      */
11879     setDefaultSort : function(field, dir){
11880         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
11881     },
11882
11883     /**
11884      * Sort the Records.
11885      * If remote sorting is used, the sort is performed on the server, and the cache is
11886      * reloaded. If local sorting is used, the cache is sorted internally.
11887      * @param {String} fieldName The name of the field to sort by.
11888      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11889      */
11890     sort : function(fieldName, dir){
11891         var f = this.fields.get(fieldName);
11892         if(!dir){
11893             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
11894             
11895             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
11896                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
11897             }else{
11898                 dir = f.sortDir;
11899             }
11900         }
11901         this.sortToggle[f.name] = dir;
11902         this.sortInfo = {field: f.name, direction: dir};
11903         if(!this.remoteSort){
11904             this.applySort();
11905             this.fireEvent("datachanged", this);
11906         }else{
11907             this.load(this.lastOptions);
11908         }
11909     },
11910
11911     /**
11912      * Calls the specified function for each of the Records in the cache.
11913      * @param {Function} fn The function to call. The Record is passed as the first parameter.
11914      * Returning <em>false</em> aborts and exits the iteration.
11915      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
11916      */
11917     each : function(fn, scope){
11918         this.data.each(fn, scope);
11919     },
11920
11921     /**
11922      * Gets all records modified since the last commit.  Modified records are persisted across load operations
11923      * (e.g., during paging).
11924      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
11925      */
11926     getModifiedRecords : function(){
11927         return this.modified;
11928     },
11929
11930     // private
11931     createFilterFn : function(property, value, anyMatch){
11932         if(!value.exec){ // not a regex
11933             value = String(value);
11934             if(value.length == 0){
11935                 return false;
11936             }
11937             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
11938         }
11939         return function(r){
11940             return value.test(r.data[property]);
11941         };
11942     },
11943
11944     /**
11945      * Sums the value of <i>property</i> for each record between start and end and returns the result.
11946      * @param {String} property A field on your records
11947      * @param {Number} start The record index to start at (defaults to 0)
11948      * @param {Number} end The last record index to include (defaults to length - 1)
11949      * @return {Number} The sum
11950      */
11951     sum : function(property, start, end){
11952         var rs = this.data.items, v = 0;
11953         start = start || 0;
11954         end = (end || end === 0) ? end : rs.length-1;
11955
11956         for(var i = start; i <= end; i++){
11957             v += (rs[i].data[property] || 0);
11958         }
11959         return v;
11960     },
11961
11962     /**
11963      * Filter the records by a specified property.
11964      * @param {String} field A field on your records
11965      * @param {String/RegExp} value Either a string that the field
11966      * should start with or a RegExp to test against the field
11967      * @param {Boolean} anyMatch True to match any part not just the beginning
11968      */
11969     filter : function(property, value, anyMatch){
11970         var fn = this.createFilterFn(property, value, anyMatch);
11971         return fn ? this.filterBy(fn) : this.clearFilter();
11972     },
11973
11974     /**
11975      * Filter by a function. The specified function will be called with each
11976      * record in this data source. If the function returns true the record is included,
11977      * otherwise it is filtered.
11978      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
11979      * @param {Object} scope (optional) The scope of the function (defaults to this)
11980      */
11981     filterBy : function(fn, scope){
11982         this.snapshot = this.snapshot || this.data;
11983         this.data = this.queryBy(fn, scope||this);
11984         this.fireEvent("datachanged", this);
11985     },
11986
11987     /**
11988      * Query the records by a specified property.
11989      * @param {String} field A field on your records
11990      * @param {String/RegExp} value Either a string that the field
11991      * should start with or a RegExp to test against the field
11992      * @param {Boolean} anyMatch True to match any part not just the beginning
11993      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
11994      */
11995     query : function(property, value, anyMatch){
11996         var fn = this.createFilterFn(property, value, anyMatch);
11997         return fn ? this.queryBy(fn) : this.data.clone();
11998     },
11999
12000     /**
12001      * Query by a function. The specified function will be called with each
12002      * record in this data source. If the function returns true the record is included
12003      * in the results.
12004      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
12005      * @param {Object} scope (optional) The scope of the function (defaults to this)
12006       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
12007      **/
12008     queryBy : function(fn, scope){
12009         var data = this.snapshot || this.data;
12010         return data.filterBy(fn, scope||this);
12011     },
12012
12013     /**
12014      * Collects unique values for a particular dataIndex from this store.
12015      * @param {String} dataIndex The property to collect
12016      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
12017      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
12018      * @return {Array} An array of the unique values
12019      **/
12020     collect : function(dataIndex, allowNull, bypassFilter){
12021         var d = (bypassFilter === true && this.snapshot) ?
12022                 this.snapshot.items : this.data.items;
12023         var v, sv, r = [], l = {};
12024         for(var i = 0, len = d.length; i < len; i++){
12025             v = d[i].data[dataIndex];
12026             sv = String(v);
12027             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
12028                 l[sv] = true;
12029                 r[r.length] = v;
12030             }
12031         }
12032         return r;
12033     },
12034
12035     /**
12036      * Revert to a view of the Record cache with no filtering applied.
12037      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
12038      */
12039     clearFilter : function(suppressEvent){
12040         if(this.snapshot && this.snapshot != this.data){
12041             this.data = this.snapshot;
12042             delete this.snapshot;
12043             if(suppressEvent !== true){
12044                 this.fireEvent("datachanged", this);
12045             }
12046         }
12047     },
12048
12049     // private
12050     afterEdit : function(record){
12051         if(this.modified.indexOf(record) == -1){
12052             this.modified.push(record);
12053         }
12054         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
12055     },
12056     
12057     // private
12058     afterReject : function(record){
12059         this.modified.remove(record);
12060         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
12061     },
12062
12063     // private
12064     afterCommit : function(record){
12065         this.modified.remove(record);
12066         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
12067     },
12068
12069     /**
12070      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
12071      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
12072      */
12073     commitChanges : function(){
12074         var m = this.modified.slice(0);
12075         this.modified = [];
12076         for(var i = 0, len = m.length; i < len; i++){
12077             m[i].commit();
12078         }
12079     },
12080
12081     /**
12082      * Cancel outstanding changes on all changed records.
12083      */
12084     rejectChanges : function(){
12085         var m = this.modified.slice(0);
12086         this.modified = [];
12087         for(var i = 0, len = m.length; i < len; i++){
12088             m[i].reject();
12089         }
12090     },
12091
12092     onMetaChange : function(meta, rtype, o){
12093         this.recordType = rtype;
12094         this.fields = rtype.prototype.fields;
12095         delete this.snapshot;
12096         this.sortInfo = meta.sortInfo || this.sortInfo;
12097         this.modified = [];
12098         this.fireEvent('metachange', this, this.reader.meta);
12099     },
12100     
12101     moveIndex : function(data, type)
12102     {
12103         var index = this.indexOf(data);
12104         
12105         var newIndex = index + type;
12106         
12107         this.remove(data);
12108         
12109         this.insert(newIndex, data);
12110         
12111     }
12112 });/*
12113  * Based on:
12114  * Ext JS Library 1.1.1
12115  * Copyright(c) 2006-2007, Ext JS, LLC.
12116  *
12117  * Originally Released Under LGPL - original licence link has changed is not relivant.
12118  *
12119  * Fork - LGPL
12120  * <script type="text/javascript">
12121  */
12122
12123 /**
12124  * @class Roo.data.SimpleStore
12125  * @extends Roo.data.Store
12126  * Small helper class to make creating Stores from Array data easier.
12127  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
12128  * @cfg {Array} fields An array of field definition objects, or field name strings.
12129  * @cfg {Array} data The multi-dimensional array of data
12130  * @constructor
12131  * @param {Object} config
12132  */
12133 Roo.data.SimpleStore = function(config){
12134     Roo.data.SimpleStore.superclass.constructor.call(this, {
12135         isLocal : true,
12136         reader: new Roo.data.ArrayReader({
12137                 id: config.id
12138             },
12139             Roo.data.Record.create(config.fields)
12140         ),
12141         proxy : new Roo.data.MemoryProxy(config.data)
12142     });
12143     this.load();
12144 };
12145 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
12146  * Based on:
12147  * Ext JS Library 1.1.1
12148  * Copyright(c) 2006-2007, Ext JS, LLC.
12149  *
12150  * Originally Released Under LGPL - original licence link has changed is not relivant.
12151  *
12152  * Fork - LGPL
12153  * <script type="text/javascript">
12154  */
12155
12156 /**
12157 /**
12158  * @extends Roo.data.Store
12159  * @class Roo.data.JsonStore
12160  * Small helper class to make creating Stores for JSON data easier. <br/>
12161 <pre><code>
12162 var store = new Roo.data.JsonStore({
12163     url: 'get-images.php',
12164     root: 'images',
12165     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
12166 });
12167 </code></pre>
12168  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
12169  * JsonReader and HttpProxy (unless inline data is provided).</b>
12170  * @cfg {Array} fields An array of field definition objects, or field name strings.
12171  * @constructor
12172  * @param {Object} config
12173  */
12174 Roo.data.JsonStore = function(c){
12175     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
12176         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
12177         reader: new Roo.data.JsonReader(c, c.fields)
12178     }));
12179 };
12180 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
12181  * Based on:
12182  * Ext JS Library 1.1.1
12183  * Copyright(c) 2006-2007, Ext JS, LLC.
12184  *
12185  * Originally Released Under LGPL - original licence link has changed is not relivant.
12186  *
12187  * Fork - LGPL
12188  * <script type="text/javascript">
12189  */
12190
12191  
12192 Roo.data.Field = function(config){
12193     if(typeof config == "string"){
12194         config = {name: config};
12195     }
12196     Roo.apply(this, config);
12197     
12198     if(!this.type){
12199         this.type = "auto";
12200     }
12201     
12202     var st = Roo.data.SortTypes;
12203     // named sortTypes are supported, here we look them up
12204     if(typeof this.sortType == "string"){
12205         this.sortType = st[this.sortType];
12206     }
12207     
12208     // set default sortType for strings and dates
12209     if(!this.sortType){
12210         switch(this.type){
12211             case "string":
12212                 this.sortType = st.asUCString;
12213                 break;
12214             case "date":
12215                 this.sortType = st.asDate;
12216                 break;
12217             default:
12218                 this.sortType = st.none;
12219         }
12220     }
12221
12222     // define once
12223     var stripRe = /[\$,%]/g;
12224
12225     // prebuilt conversion function for this field, instead of
12226     // switching every time we're reading a value
12227     if(!this.convert){
12228         var cv, dateFormat = this.dateFormat;
12229         switch(this.type){
12230             case "":
12231             case "auto":
12232             case undefined:
12233                 cv = function(v){ return v; };
12234                 break;
12235             case "string":
12236                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
12237                 break;
12238             case "int":
12239                 cv = function(v){
12240                     return v !== undefined && v !== null && v !== '' ?
12241                            parseInt(String(v).replace(stripRe, ""), 10) : '';
12242                     };
12243                 break;
12244             case "float":
12245                 cv = function(v){
12246                     return v !== undefined && v !== null && v !== '' ?
12247                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
12248                     };
12249                 break;
12250             case "bool":
12251             case "boolean":
12252                 cv = function(v){ return v === true || v === "true" || v == 1; };
12253                 break;
12254             case "date":
12255                 cv = function(v){
12256                     if(!v){
12257                         return '';
12258                     }
12259                     if(v instanceof Date){
12260                         return v;
12261                     }
12262                     if(dateFormat){
12263                         if(dateFormat == "timestamp"){
12264                             return new Date(v*1000);
12265                         }
12266                         return Date.parseDate(v, dateFormat);
12267                     }
12268                     var parsed = Date.parse(v);
12269                     return parsed ? new Date(parsed) : null;
12270                 };
12271              break;
12272             
12273         }
12274         this.convert = cv;
12275     }
12276 };
12277
12278 Roo.data.Field.prototype = {
12279     dateFormat: null,
12280     defaultValue: "",
12281     mapping: null,
12282     sortType : null,
12283     sortDir : "ASC"
12284 };/*
12285  * Based on:
12286  * Ext JS Library 1.1.1
12287  * Copyright(c) 2006-2007, Ext JS, LLC.
12288  *
12289  * Originally Released Under LGPL - original licence link has changed is not relivant.
12290  *
12291  * Fork - LGPL
12292  * <script type="text/javascript">
12293  */
12294  
12295 // Base class for reading structured data from a data source.  This class is intended to be
12296 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
12297
12298 /**
12299  * @class Roo.data.DataReader
12300  * Base class for reading structured data from a data source.  This class is intended to be
12301  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
12302  */
12303
12304 Roo.data.DataReader = function(meta, recordType){
12305     
12306     this.meta = meta;
12307     
12308     this.recordType = recordType instanceof Array ? 
12309         Roo.data.Record.create(recordType) : recordType;
12310 };
12311
12312 Roo.data.DataReader.prototype = {
12313      /**
12314      * Create an empty record
12315      * @param {Object} data (optional) - overlay some values
12316      * @return {Roo.data.Record} record created.
12317      */
12318     newRow :  function(d) {
12319         var da =  {};
12320         this.recordType.prototype.fields.each(function(c) {
12321             switch( c.type) {
12322                 case 'int' : da[c.name] = 0; break;
12323                 case 'date' : da[c.name] = new Date(); break;
12324                 case 'float' : da[c.name] = 0.0; break;
12325                 case 'boolean' : da[c.name] = false; break;
12326                 default : da[c.name] = ""; break;
12327             }
12328             
12329         });
12330         return new this.recordType(Roo.apply(da, d));
12331     }
12332     
12333 };/*
12334  * Based on:
12335  * Ext JS Library 1.1.1
12336  * Copyright(c) 2006-2007, Ext JS, LLC.
12337  *
12338  * Originally Released Under LGPL - original licence link has changed is not relivant.
12339  *
12340  * Fork - LGPL
12341  * <script type="text/javascript">
12342  */
12343
12344 /**
12345  * @class Roo.data.DataProxy
12346  * @extends Roo.data.Observable
12347  * This class is an abstract base class for implementations which provide retrieval of
12348  * unformatted data objects.<br>
12349  * <p>
12350  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
12351  * (of the appropriate type which knows how to parse the data object) to provide a block of
12352  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
12353  * <p>
12354  * Custom implementations must implement the load method as described in
12355  * {@link Roo.data.HttpProxy#load}.
12356  */
12357 Roo.data.DataProxy = function(){
12358     this.addEvents({
12359         /**
12360          * @event beforeload
12361          * Fires before a network request is made to retrieve a data object.
12362          * @param {Object} This DataProxy object.
12363          * @param {Object} params The params parameter to the load function.
12364          */
12365         beforeload : true,
12366         /**
12367          * @event load
12368          * Fires before the load method's callback is called.
12369          * @param {Object} This DataProxy object.
12370          * @param {Object} o The data object.
12371          * @param {Object} arg The callback argument object passed to the load function.
12372          */
12373         load : true,
12374         /**
12375          * @event loadexception
12376          * Fires if an Exception occurs during data retrieval.
12377          * @param {Object} This DataProxy object.
12378          * @param {Object} o The data object.
12379          * @param {Object} arg The callback argument object passed to the load function.
12380          * @param {Object} e The Exception.
12381          */
12382         loadexception : true
12383     });
12384     Roo.data.DataProxy.superclass.constructor.call(this);
12385 };
12386
12387 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
12388
12389     /**
12390      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
12391      */
12392 /*
12393  * Based on:
12394  * Ext JS Library 1.1.1
12395  * Copyright(c) 2006-2007, Ext JS, LLC.
12396  *
12397  * Originally Released Under LGPL - original licence link has changed is not relivant.
12398  *
12399  * Fork - LGPL
12400  * <script type="text/javascript">
12401  */
12402 /**
12403  * @class Roo.data.MemoryProxy
12404  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
12405  * to the Reader when its load method is called.
12406  * @constructor
12407  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
12408  */
12409 Roo.data.MemoryProxy = function(data){
12410     if (data.data) {
12411         data = data.data;
12412     }
12413     Roo.data.MemoryProxy.superclass.constructor.call(this);
12414     this.data = data;
12415 };
12416
12417 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
12418     
12419     /**
12420      * Load data from the requested source (in this case an in-memory
12421      * data object passed to the constructor), read the data object into
12422      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12423      * process that block using the passed callback.
12424      * @param {Object} params This parameter is not used by the MemoryProxy class.
12425      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12426      * object into a block of Roo.data.Records.
12427      * @param {Function} callback The function into which to pass the block of Roo.data.records.
12428      * The function must be passed <ul>
12429      * <li>The Record block object</li>
12430      * <li>The "arg" argument from the load function</li>
12431      * <li>A boolean success indicator</li>
12432      * </ul>
12433      * @param {Object} scope The scope in which to call the callback
12434      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12435      */
12436     load : function(params, reader, callback, scope, arg){
12437         params = params || {};
12438         var result;
12439         try {
12440             result = reader.readRecords(params.data ? params.data :this.data);
12441         }catch(e){
12442             this.fireEvent("loadexception", this, arg, null, e);
12443             callback.call(scope, null, arg, false);
12444             return;
12445         }
12446         callback.call(scope, result, arg, true);
12447     },
12448     
12449     // private
12450     update : function(params, records){
12451         
12452     }
12453 });/*
12454  * Based on:
12455  * Ext JS Library 1.1.1
12456  * Copyright(c) 2006-2007, Ext JS, LLC.
12457  *
12458  * Originally Released Under LGPL - original licence link has changed is not relivant.
12459  *
12460  * Fork - LGPL
12461  * <script type="text/javascript">
12462  */
12463 /**
12464  * @class Roo.data.HttpProxy
12465  * @extends Roo.data.DataProxy
12466  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
12467  * configured to reference a certain URL.<br><br>
12468  * <p>
12469  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
12470  * from which the running page was served.<br><br>
12471  * <p>
12472  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
12473  * <p>
12474  * Be aware that to enable the browser to parse an XML document, the server must set
12475  * the Content-Type header in the HTTP response to "text/xml".
12476  * @constructor
12477  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
12478  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
12479  * will be used to make the request.
12480  */
12481 Roo.data.HttpProxy = function(conn){
12482     Roo.data.HttpProxy.superclass.constructor.call(this);
12483     // is conn a conn config or a real conn?
12484     this.conn = conn;
12485     this.useAjax = !conn || !conn.events;
12486   
12487 };
12488
12489 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
12490     // thse are take from connection...
12491     
12492     /**
12493      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12494      */
12495     /**
12496      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12497      * extra parameters to each request made by this object. (defaults to undefined)
12498      */
12499     /**
12500      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12501      *  to each request made by this object. (defaults to undefined)
12502      */
12503     /**
12504      * @cfg {String} method (Optional) The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
12505      */
12506     /**
12507      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
12508      */
12509      /**
12510      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
12511      * @type Boolean
12512      */
12513   
12514
12515     /**
12516      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
12517      * @type Boolean
12518      */
12519     /**
12520      * Return the {@link Roo.data.Connection} object being used by this Proxy.
12521      * @return {Connection} The Connection object. This object may be used to subscribe to events on
12522      * a finer-grained basis than the DataProxy events.
12523      */
12524     getConnection : function(){
12525         return this.useAjax ? Roo.Ajax : this.conn;
12526     },
12527
12528     /**
12529      * Load data from the configured {@link Roo.data.Connection}, read the data object into
12530      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
12531      * process that block using the passed callback.
12532      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12533      * for the request to the remote server.
12534      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12535      * object into a block of Roo.data.Records.
12536      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12537      * The function must be passed <ul>
12538      * <li>The Record block object</li>
12539      * <li>The "arg" argument from the load function</li>
12540      * <li>A boolean success indicator</li>
12541      * </ul>
12542      * @param {Object} scope The scope in which to call the callback
12543      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12544      */
12545     load : function(params, reader, callback, scope, arg){
12546         if(this.fireEvent("beforeload", this, params) !== false){
12547             var  o = {
12548                 params : params || {},
12549                 request: {
12550                     callback : callback,
12551                     scope : scope,
12552                     arg : arg
12553                 },
12554                 reader: reader,
12555                 callback : this.loadResponse,
12556                 scope: this
12557             };
12558             if(this.useAjax){
12559                 Roo.applyIf(o, this.conn);
12560                 if(this.activeRequest){
12561                     Roo.Ajax.abort(this.activeRequest);
12562                 }
12563                 this.activeRequest = Roo.Ajax.request(o);
12564             }else{
12565                 this.conn.request(o);
12566             }
12567         }else{
12568             callback.call(scope||this, null, arg, false);
12569         }
12570     },
12571
12572     // private
12573     loadResponse : function(o, success, response){
12574         delete this.activeRequest;
12575         if(!success){
12576             this.fireEvent("loadexception", this, o, response);
12577             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12578             return;
12579         }
12580         var result;
12581         try {
12582             result = o.reader.read(response);
12583         }catch(e){
12584             this.fireEvent("loadexception", this, o, response, e);
12585             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12586             return;
12587         }
12588         
12589         this.fireEvent("load", this, o, o.request.arg);
12590         o.request.callback.call(o.request.scope, result, o.request.arg, true);
12591     },
12592
12593     // private
12594     update : function(dataSet){
12595
12596     },
12597
12598     // private
12599     updateResponse : function(dataSet){
12600
12601     }
12602 });/*
12603  * Based on:
12604  * Ext JS Library 1.1.1
12605  * Copyright(c) 2006-2007, Ext JS, LLC.
12606  *
12607  * Originally Released Under LGPL - original licence link has changed is not relivant.
12608  *
12609  * Fork - LGPL
12610  * <script type="text/javascript">
12611  */
12612
12613 /**
12614  * @class Roo.data.ScriptTagProxy
12615  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
12616  * other than the originating domain of the running page.<br><br>
12617  * <p>
12618  * <em>Note that if you are retrieving data from a page that is in a domain that is NOT the same as the originating domain
12619  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
12620  * <p>
12621  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
12622  * source code that is used as the source inside a &lt;script> tag.<br><br>
12623  * <p>
12624  * In order for the browser to process the returned data, the server must wrap the data object
12625  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
12626  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
12627  * depending on whether the callback name was passed:
12628  * <p>
12629  * <pre><code>
12630 boolean scriptTag = false;
12631 String cb = request.getParameter("callback");
12632 if (cb != null) {
12633     scriptTag = true;
12634     response.setContentType("text/javascript");
12635 } else {
12636     response.setContentType("application/x-json");
12637 }
12638 Writer out = response.getWriter();
12639 if (scriptTag) {
12640     out.write(cb + "(");
12641 }
12642 out.print(dataBlock.toJsonString());
12643 if (scriptTag) {
12644     out.write(");");
12645 }
12646 </pre></code>
12647  *
12648  * @constructor
12649  * @param {Object} config A configuration object.
12650  */
12651 Roo.data.ScriptTagProxy = function(config){
12652     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
12653     Roo.apply(this, config);
12654     this.head = document.getElementsByTagName("head")[0];
12655 };
12656
12657 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
12658
12659 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
12660     /**
12661      * @cfg {String} url The URL from which to request the data object.
12662      */
12663     /**
12664      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
12665      */
12666     timeout : 30000,
12667     /**
12668      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
12669      * the server the name of the callback function set up by the load call to process the returned data object.
12670      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
12671      * javascript output which calls this named function passing the data object as its only parameter.
12672      */
12673     callbackParam : "callback",
12674     /**
12675      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
12676      * name to the request.
12677      */
12678     nocache : true,
12679
12680     /**
12681      * Load data from the configured URL, read the data object into
12682      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12683      * process that block using the passed callback.
12684      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12685      * for the request to the remote server.
12686      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12687      * object into a block of Roo.data.Records.
12688      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12689      * The function must be passed <ul>
12690      * <li>The Record block object</li>
12691      * <li>The "arg" argument from the load function</li>
12692      * <li>A boolean success indicator</li>
12693      * </ul>
12694      * @param {Object} scope The scope in which to call the callback
12695      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12696      */
12697     load : function(params, reader, callback, scope, arg){
12698         if(this.fireEvent("beforeload", this, params) !== false){
12699
12700             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
12701
12702             var url = this.url;
12703             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
12704             if(this.nocache){
12705                 url += "&_dc=" + (new Date().getTime());
12706             }
12707             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
12708             var trans = {
12709                 id : transId,
12710                 cb : "stcCallback"+transId,
12711                 scriptId : "stcScript"+transId,
12712                 params : params,
12713                 arg : arg,
12714                 url : url,
12715                 callback : callback,
12716                 scope : scope,
12717                 reader : reader
12718             };
12719             var conn = this;
12720
12721             window[trans.cb] = function(o){
12722                 conn.handleResponse(o, trans);
12723             };
12724
12725             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
12726
12727             if(this.autoAbort !== false){
12728                 this.abort();
12729             }
12730
12731             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
12732
12733             var script = document.createElement("script");
12734             script.setAttribute("src", url);
12735             script.setAttribute("type", "text/javascript");
12736             script.setAttribute("id", trans.scriptId);
12737             this.head.appendChild(script);
12738
12739             this.trans = trans;
12740         }else{
12741             callback.call(scope||this, null, arg, false);
12742         }
12743     },
12744
12745     // private
12746     isLoading : function(){
12747         return this.trans ? true : false;
12748     },
12749
12750     /**
12751      * Abort the current server request.
12752      */
12753     abort : function(){
12754         if(this.isLoading()){
12755             this.destroyTrans(this.trans);
12756         }
12757     },
12758
12759     // private
12760     destroyTrans : function(trans, isLoaded){
12761         this.head.removeChild(document.getElementById(trans.scriptId));
12762         clearTimeout(trans.timeoutId);
12763         if(isLoaded){
12764             window[trans.cb] = undefined;
12765             try{
12766                 delete window[trans.cb];
12767             }catch(e){}
12768         }else{
12769             // if hasn't been loaded, wait for load to remove it to prevent script error
12770             window[trans.cb] = function(){
12771                 window[trans.cb] = undefined;
12772                 try{
12773                     delete window[trans.cb];
12774                 }catch(e){}
12775             };
12776         }
12777     },
12778
12779     // private
12780     handleResponse : function(o, trans){
12781         this.trans = false;
12782         this.destroyTrans(trans, true);
12783         var result;
12784         try {
12785             result = trans.reader.readRecords(o);
12786         }catch(e){
12787             this.fireEvent("loadexception", this, o, trans.arg, e);
12788             trans.callback.call(trans.scope||window, null, trans.arg, false);
12789             return;
12790         }
12791         this.fireEvent("load", this, o, trans.arg);
12792         trans.callback.call(trans.scope||window, result, trans.arg, true);
12793     },
12794
12795     // private
12796     handleFailure : function(trans){
12797         this.trans = false;
12798         this.destroyTrans(trans, false);
12799         this.fireEvent("loadexception", this, null, trans.arg);
12800         trans.callback.call(trans.scope||window, null, trans.arg, false);
12801     }
12802 });/*
12803  * Based on:
12804  * Ext JS Library 1.1.1
12805  * Copyright(c) 2006-2007, Ext JS, LLC.
12806  *
12807  * Originally Released Under LGPL - original licence link has changed is not relivant.
12808  *
12809  * Fork - LGPL
12810  * <script type="text/javascript">
12811  */
12812
12813 /**
12814  * @class Roo.data.JsonReader
12815  * @extends Roo.data.DataReader
12816  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
12817  * based on mappings in a provided Roo.data.Record constructor.
12818  * 
12819  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
12820  * in the reply previously. 
12821  * 
12822  * <p>
12823  * Example code:
12824  * <pre><code>
12825 var RecordDef = Roo.data.Record.create([
12826     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
12827     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
12828 ]);
12829 var myReader = new Roo.data.JsonReader({
12830     totalProperty: "results",    // The property which contains the total dataset size (optional)
12831     root: "rows",                // The property which contains an Array of row objects
12832     id: "id"                     // The property within each row object that provides an ID for the record (optional)
12833 }, RecordDef);
12834 </code></pre>
12835  * <p>
12836  * This would consume a JSON file like this:
12837  * <pre><code>
12838 { 'results': 2, 'rows': [
12839     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
12840     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
12841 }
12842 </code></pre>
12843  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
12844  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
12845  * paged from the remote server.
12846  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
12847  * @cfg {String} root name of the property which contains the Array of row objects.
12848  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
12849  * @cfg {Array} fields Array of field definition objects
12850  * @constructor
12851  * Create a new JsonReader
12852  * @param {Object} meta Metadata configuration options
12853  * @param {Object} recordType Either an Array of field definition objects,
12854  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
12855  */
12856 Roo.data.JsonReader = function(meta, recordType){
12857     
12858     meta = meta || {};
12859     // set some defaults:
12860     Roo.applyIf(meta, {
12861         totalProperty: 'total',
12862         successProperty : 'success',
12863         root : 'data',
12864         id : 'id'
12865     });
12866     
12867     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
12868 };
12869 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
12870     
12871     /**
12872      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
12873      * Used by Store query builder to append _requestMeta to params.
12874      * 
12875      */
12876     metaFromRemote : false,
12877     /**
12878      * This method is only used by a DataProxy which has retrieved data from a remote server.
12879      * @param {Object} response The XHR object which contains the JSON data in its responseText.
12880      * @return {Object} data A data block which is used by an Roo.data.Store object as
12881      * a cache of Roo.data.Records.
12882      */
12883     read : function(response){
12884         var json = response.responseText;
12885        
12886         var o = /* eval:var:o */ eval("("+json+")");
12887         if(!o) {
12888             throw {message: "JsonReader.read: Json object not found"};
12889         }
12890         
12891         if(o.metaData){
12892             
12893             delete this.ef;
12894             this.metaFromRemote = true;
12895             this.meta = o.metaData;
12896             this.recordType = Roo.data.Record.create(o.metaData.fields);
12897             this.onMetaChange(this.meta, this.recordType, o);
12898         }
12899         return this.readRecords(o);
12900     },
12901
12902     // private function a store will implement
12903     onMetaChange : function(meta, recordType, o){
12904
12905     },
12906
12907     /**
12908          * @ignore
12909          */
12910     simpleAccess: function(obj, subsc) {
12911         return obj[subsc];
12912     },
12913
12914         /**
12915          * @ignore
12916          */
12917     getJsonAccessor: function(){
12918         var re = /[\[\.]/;
12919         return function(expr) {
12920             try {
12921                 return(re.test(expr))
12922                     ? new Function("obj", "return obj." + expr)
12923                     : function(obj){
12924                         return obj[expr];
12925                     };
12926             } catch(e){}
12927             return Roo.emptyFn;
12928         };
12929     }(),
12930
12931     /**
12932      * Create a data block containing Roo.data.Records from an XML document.
12933      * @param {Object} o An object which contains an Array of row objects in the property specified
12934      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
12935      * which contains the total size of the dataset.
12936      * @return {Object} data A data block which is used by an Roo.data.Store object as
12937      * a cache of Roo.data.Records.
12938      */
12939     readRecords : function(o){
12940         /**
12941          * After any data loads, the raw JSON data is available for further custom processing.
12942          * @type Object
12943          */
12944         this.o = o;
12945         var s = this.meta, Record = this.recordType,
12946             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
12947
12948 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
12949         if (!this.ef) {
12950             if(s.totalProperty) {
12951                     this.getTotal = this.getJsonAccessor(s.totalProperty);
12952                 }
12953                 if(s.successProperty) {
12954                     this.getSuccess = this.getJsonAccessor(s.successProperty);
12955                 }
12956                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
12957                 if (s.id) {
12958                         var g = this.getJsonAccessor(s.id);
12959                         this.getId = function(rec) {
12960                                 var r = g(rec);  
12961                                 return (r === undefined || r === "") ? null : r;
12962                         };
12963                 } else {
12964                         this.getId = function(){return null;};
12965                 }
12966             this.ef = [];
12967             for(var jj = 0; jj < fl; jj++){
12968                 f = fi[jj];
12969                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
12970                 this.ef[jj] = this.getJsonAccessor(map);
12971             }
12972         }
12973
12974         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
12975         if(s.totalProperty){
12976             var vt = parseInt(this.getTotal(o), 10);
12977             if(!isNaN(vt)){
12978                 totalRecords = vt;
12979             }
12980         }
12981         if(s.successProperty){
12982             var vs = this.getSuccess(o);
12983             if(vs === false || vs === 'false'){
12984                 success = false;
12985             }
12986         }
12987         var records = [];
12988         for(var i = 0; i < c; i++){
12989                 var n = root[i];
12990             var values = {};
12991             var id = this.getId(n);
12992             for(var j = 0; j < fl; j++){
12993                 f = fi[j];
12994             var v = this.ef[j](n);
12995             if (!f.convert) {
12996                 Roo.log('missing convert for ' + f.name);
12997                 Roo.log(f);
12998                 continue;
12999             }
13000             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
13001             }
13002             var record = new Record(values, id);
13003             record.json = n;
13004             records[i] = record;
13005         }
13006         return {
13007             raw : o,
13008             success : success,
13009             records : records,
13010             totalRecords : totalRecords
13011         };
13012     }
13013 });/*
13014  * Based on:
13015  * Ext JS Library 1.1.1
13016  * Copyright(c) 2006-2007, Ext JS, LLC.
13017  *
13018  * Originally Released Under LGPL - original licence link has changed is not relivant.
13019  *
13020  * Fork - LGPL
13021  * <script type="text/javascript">
13022  */
13023
13024 /**
13025  * @class Roo.data.ArrayReader
13026  * @extends Roo.data.DataReader
13027  * Data reader class to create an Array of Roo.data.Record objects from an Array.
13028  * Each element of that Array represents a row of data fields. The
13029  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
13030  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
13031  * <p>
13032  * Example code:.
13033  * <pre><code>
13034 var RecordDef = Roo.data.Record.create([
13035     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
13036     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
13037 ]);
13038 var myReader = new Roo.data.ArrayReader({
13039     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
13040 }, RecordDef);
13041 </code></pre>
13042  * <p>
13043  * This would consume an Array like this:
13044  * <pre><code>
13045 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
13046   </code></pre>
13047  
13048  * @constructor
13049  * Create a new JsonReader
13050  * @param {Object} meta Metadata configuration options.
13051  * @param {Object|Array} recordType Either an Array of field definition objects
13052  * 
13053  * @cfg {Array} fields Array of field definition objects
13054  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
13055  * as specified to {@link Roo.data.Record#create},
13056  * or an {@link Roo.data.Record} object
13057  *
13058  * 
13059  * created using {@link Roo.data.Record#create}.
13060  */
13061 Roo.data.ArrayReader = function(meta, recordType){
13062     
13063      
13064     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
13065 };
13066
13067 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
13068     /**
13069      * Create a data block containing Roo.data.Records from an XML document.
13070      * @param {Object} o An Array of row objects which represents the dataset.
13071      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
13072      * a cache of Roo.data.Records.
13073      */
13074     readRecords : function(o){
13075         var sid = this.meta ? this.meta.id : null;
13076         var recordType = this.recordType, fields = recordType.prototype.fields;
13077         var records = [];
13078         var root = o;
13079             for(var i = 0; i < root.length; i++){
13080                     var n = root[i];
13081                 var values = {};
13082                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
13083                 for(var j = 0, jlen = fields.length; j < jlen; j++){
13084                 var f = fields.items[j];
13085                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
13086                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
13087                 v = f.convert(v);
13088                 values[f.name] = v;
13089             }
13090                 var record = new recordType(values, id);
13091                 record.json = n;
13092                 records[records.length] = record;
13093             }
13094             return {
13095                 records : records,
13096                 totalRecords : records.length
13097             };
13098     }
13099 });/*
13100  * - LGPL
13101  * * 
13102  */
13103
13104 /**
13105  * @class Roo.bootstrap.ComboBox
13106  * @extends Roo.bootstrap.TriggerField
13107  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
13108  * @cfg {Boolean} append (true|false) default false
13109  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
13110  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
13111  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
13112  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
13113  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
13114  * @cfg {Boolean} animate default true
13115  * @cfg {Boolean} emptyResultText only for touch device
13116  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
13117  * @cfg {String} emptyTitle default ''
13118  * @constructor
13119  * Create a new ComboBox.
13120  * @param {Object} config Configuration options
13121  */
13122 Roo.bootstrap.ComboBox = function(config){
13123     Roo.bootstrap.ComboBox.superclass.constructor.call(this, config);
13124     this.addEvents({
13125         /**
13126          * @event expand
13127          * Fires when the dropdown list is expanded
13128         * @param {Roo.bootstrap.ComboBox} combo This combo box
13129         */
13130         'expand' : true,
13131         /**
13132          * @event collapse
13133          * Fires when the dropdown list is collapsed
13134         * @param {Roo.bootstrap.ComboBox} combo This combo box
13135         */
13136         'collapse' : true,
13137         /**
13138          * @event beforeselect
13139          * Fires before a list item is selected. Return false to cancel the selection.
13140         * @param {Roo.bootstrap.ComboBox} combo This combo box
13141         * @param {Roo.data.Record} record The data record returned from the underlying store
13142         * @param {Number} index The index of the selected item in the dropdown list
13143         */
13144         'beforeselect' : true,
13145         /**
13146          * @event select
13147          * Fires when a list item is selected
13148         * @param {Roo.bootstrap.ComboBox} combo This combo box
13149         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
13150         * @param {Number} index The index of the selected item in the dropdown list
13151         */
13152         'select' : true,
13153         /**
13154          * @event beforequery
13155          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
13156          * The event object passed has these properties:
13157         * @param {Roo.bootstrap.ComboBox} combo This combo box
13158         * @param {String} query The query
13159         * @param {Boolean} forceAll true to force "all" query
13160         * @param {Boolean} cancel true to cancel the query
13161         * @param {Object} e The query event object
13162         */
13163         'beforequery': true,
13164          /**
13165          * @event add
13166          * Fires when the 'add' icon is pressed (add a listener to enable add button)
13167         * @param {Roo.bootstrap.ComboBox} combo This combo box
13168         */
13169         'add' : true,
13170         /**
13171          * @event edit
13172          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
13173         * @param {Roo.bootstrap.ComboBox} combo This combo box
13174         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
13175         */
13176         'edit' : true,
13177         /**
13178          * @event remove
13179          * Fires when the remove value from the combobox array
13180         * @param {Roo.bootstrap.ComboBox} combo This combo box
13181         */
13182         'remove' : true,
13183         /**
13184          * @event afterremove
13185          * Fires when the remove value from the combobox array
13186         * @param {Roo.bootstrap.ComboBox} combo This combo box
13187         */
13188         'afterremove' : true,
13189         /**
13190          * @event specialfilter
13191          * Fires when specialfilter
13192             * @param {Roo.bootstrap.ComboBox} combo This combo box
13193             */
13194         'specialfilter' : true,
13195         /**
13196          * @event tick
13197          * Fires when tick the element
13198             * @param {Roo.bootstrap.ComboBox} combo This combo box
13199             */
13200         'tick' : true,
13201         /**
13202          * @event touchviewdisplay
13203          * Fires when touch view require special display (default is using displayField)
13204             * @param {Roo.bootstrap.ComboBox} combo This combo box
13205             * @param {Object} cfg set html .
13206             */
13207         'touchviewdisplay' : true
13208         
13209     });
13210     
13211     this.item = [];
13212     this.tickItems = [];
13213     
13214     this.selectedIndex = -1;
13215     if(this.mode == 'local'){
13216         if(config.queryDelay === undefined){
13217             this.queryDelay = 10;
13218         }
13219         if(config.minChars === undefined){
13220             this.minChars = 0;
13221         }
13222     }
13223 };
13224
13225 Roo.extend(Roo.bootstrap.ComboBox, Roo.bootstrap.TriggerField, {
13226      
13227     /**
13228      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
13229      * rendering into an Roo.Editor, defaults to false)
13230      */
13231     /**
13232      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
13233      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
13234      */
13235     /**
13236      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
13237      */
13238     /**
13239      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
13240      * the dropdown list (defaults to undefined, with no header element)
13241      */
13242
13243      /**
13244      * @cfg {String/Roo.Template} tpl The template to use to render the output
13245      */
13246      
13247      /**
13248      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
13249      */
13250     listWidth: undefined,
13251     /**
13252      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
13253      * mode = 'remote' or 'text' if mode = 'local')
13254      */
13255     displayField: undefined,
13256     
13257     /**
13258      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
13259      * mode = 'remote' or 'value' if mode = 'local'). 
13260      * Note: use of a valueField requires the user make a selection
13261      * in order for a value to be mapped.
13262      */
13263     valueField: undefined,
13264     /**
13265      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
13266      */
13267     modalTitle : '',
13268     
13269     /**
13270      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
13271      * field's data value (defaults to the underlying DOM element's name)
13272      */
13273     hiddenName: undefined,
13274     /**
13275      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
13276      */
13277     listClass: '',
13278     /**
13279      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
13280      */
13281     selectedClass: 'active',
13282     
13283     /**
13284      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13285      */
13286     shadow:'sides',
13287     /**
13288      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
13289      * anchor positions (defaults to 'tl-bl')
13290      */
13291     listAlign: 'tl-bl?',
13292     /**
13293      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
13294      */
13295     maxHeight: 300,
13296     /**
13297      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
13298      * query specified by the allQuery config option (defaults to 'query')
13299      */
13300     triggerAction: 'query',
13301     /**
13302      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
13303      * (defaults to 4, does not apply if editable = false)
13304      */
13305     minChars : 4,
13306     /**
13307      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
13308      * delay (typeAheadDelay) if it matches a known value (defaults to false)
13309      */
13310     typeAhead: false,
13311     /**
13312      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
13313      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
13314      */
13315     queryDelay: 500,
13316     /**
13317      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
13318      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
13319      */
13320     pageSize: 0,
13321     /**
13322      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
13323      * when editable = true (defaults to false)
13324      */
13325     selectOnFocus:false,
13326     /**
13327      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
13328      */
13329     queryParam: 'query',
13330     /**
13331      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
13332      * when mode = 'remote' (defaults to 'Loading...')
13333      */
13334     loadingText: 'Loading...',
13335     /**
13336      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
13337      */
13338     resizable: false,
13339     /**
13340      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
13341      */
13342     handleHeight : 8,
13343     /**
13344      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
13345      * traditional select (defaults to true)
13346      */
13347     editable: true,
13348     /**
13349      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
13350      */
13351     allQuery: '',
13352     /**
13353      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
13354      */
13355     mode: 'remote',
13356     /**
13357      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
13358      * listWidth has a higher value)
13359      */
13360     minListWidth : 70,
13361     /**
13362      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
13363      * allow the user to set arbitrary text into the field (defaults to false)
13364      */
13365     forceSelection:false,
13366     /**
13367      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
13368      * if typeAhead = true (defaults to 250)
13369      */
13370     typeAheadDelay : 250,
13371     /**
13372      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
13373      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
13374      */
13375     valueNotFoundText : undefined,
13376     /**
13377      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
13378      */
13379     blockFocus : false,
13380     
13381     /**
13382      * @cfg {Boolean} disableClear Disable showing of clear button.
13383      */
13384     disableClear : false,
13385     /**
13386      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
13387      */
13388     alwaysQuery : false,
13389     
13390     /**
13391      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
13392      */
13393     multiple : false,
13394     
13395     /**
13396      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
13397      */
13398     invalidClass : "has-warning",
13399     
13400     /**
13401      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
13402      */
13403     validClass : "has-success",
13404     
13405     /**
13406      * @cfg {Boolean} specialFilter (true|false) special filter default false
13407      */
13408     specialFilter : false,
13409     
13410     /**
13411      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
13412      */
13413     mobileTouchView : true,
13414     
13415     /**
13416      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
13417      */
13418     useNativeIOS : false,
13419     
13420     /**
13421      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
13422      */
13423     mobile_restrict_height : false,
13424     
13425     ios_options : false,
13426     
13427     //private
13428     addicon : false,
13429     editicon: false,
13430     
13431     page: 0,
13432     hasQuery: false,
13433     append: false,
13434     loadNext: false,
13435     autoFocus : true,
13436     tickable : false,
13437     btnPosition : 'right',
13438     triggerList : true,
13439     showToggleBtn : true,
13440     animate : true,
13441     emptyResultText: 'Empty',
13442     triggerText : 'Select',
13443     emptyTitle : '',
13444     
13445     // element that contains real text value.. (when hidden is used..)
13446     
13447     getAutoCreate : function()
13448     {   
13449         var cfg = false;
13450         //render
13451         /*
13452          * Render classic select for iso
13453          */
13454         
13455         if(Roo.isIOS && this.useNativeIOS){
13456             cfg = this.getAutoCreateNativeIOS();
13457             return cfg;
13458         }
13459         
13460         /*
13461          * Touch Devices
13462          */
13463         
13464         if(Roo.isTouch && this.mobileTouchView){
13465             cfg = this.getAutoCreateTouchView();
13466             return cfg;;
13467         }
13468         
13469         /*
13470          *  Normal ComboBox
13471          */
13472         if(!this.tickable){
13473             cfg = Roo.bootstrap.ComboBox.superclass.getAutoCreate.call(this);
13474             return cfg;
13475         }
13476         
13477         /*
13478          *  ComboBox with tickable selections
13479          */
13480              
13481         var align = this.labelAlign || this.parentLabelAlign();
13482         
13483         cfg = {
13484             cls : 'form-group roo-combobox-tickable' //input-group
13485         };
13486         
13487         var btn_text_select = '';
13488         var btn_text_done = '';
13489         var btn_text_cancel = '';
13490         
13491         if (this.btn_text_show) {
13492             btn_text_select = 'Select';
13493             btn_text_done = 'Done';
13494             btn_text_cancel = 'Cancel'; 
13495         }
13496         
13497         var buttons = {
13498             tag : 'div',
13499             cls : 'tickable-buttons',
13500             cn : [
13501                 {
13502                     tag : 'button',
13503                     type : 'button',
13504                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
13505                     //html : this.triggerText
13506                     html: btn_text_select
13507                 },
13508                 {
13509                     tag : 'button',
13510                     type : 'button',
13511                     name : 'ok',
13512                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
13513                     //html : 'Done'
13514                     html: btn_text_done
13515                 },
13516                 {
13517                     tag : 'button',
13518                     type : 'button',
13519                     name : 'cancel',
13520                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
13521                     //html : 'Cancel'
13522                     html: btn_text_cancel
13523                 }
13524             ]
13525         };
13526         
13527         if(this.editable){
13528             buttons.cn.unshift({
13529                 tag: 'input',
13530                 cls: 'roo-select2-search-field-input'
13531             });
13532         }
13533         
13534         var _this = this;
13535         
13536         Roo.each(buttons.cn, function(c){
13537             if (_this.size) {
13538                 c.cls += ' btn-' + _this.size;
13539             }
13540
13541             if (_this.disabled) {
13542                 c.disabled = true;
13543             }
13544         });
13545         
13546         var box = {
13547             tag: 'div',
13548             style : 'display: contents',
13549             cn: [
13550                 {
13551                     tag: 'input',
13552                     type : 'hidden',
13553                     cls: 'form-hidden-field'
13554                 },
13555                 {
13556                     tag: 'ul',
13557                     cls: 'roo-select2-choices',
13558                     cn:[
13559                         {
13560                             tag: 'li',
13561                             cls: 'roo-select2-search-field',
13562                             cn: [
13563                                 buttons
13564                             ]
13565                         }
13566                     ]
13567                 }
13568             ]
13569         };
13570         
13571         var combobox = {
13572             cls: 'roo-select2-container input-group roo-select2-container-multi',
13573             cn: [
13574                 
13575                 box
13576 //                {
13577 //                    tag: 'ul',
13578 //                    cls: 'typeahead typeahead-long dropdown-menu',
13579 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
13580 //                }
13581             ]
13582         };
13583         
13584         if(this.hasFeedback && !this.allowBlank){
13585             
13586             var feedback = {
13587                 tag: 'span',
13588                 cls: 'glyphicon form-control-feedback'
13589             };
13590
13591             combobox.cn.push(feedback);
13592         }
13593         
13594         var indicator = {
13595             tag : 'i',
13596             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13597             tooltip : 'This field is required'
13598         };
13599         if (Roo.bootstrap.version == 4) {
13600             indicator = {
13601                 tag : 'i',
13602                 style : 'display:none'
13603             };
13604         }
13605         if (align ==='left' && this.fieldLabel.length) {
13606             
13607             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13608             
13609             cfg.cn = [
13610                 indicator,
13611                 {
13612                     tag: 'label',
13613                     'for' :  id,
13614                     cls : 'control-label col-form-label',
13615                     html : this.fieldLabel
13616
13617                 },
13618                 {
13619                     cls : "", 
13620                     cn: [
13621                         combobox
13622                     ]
13623                 }
13624
13625             ];
13626             
13627             var labelCfg = cfg.cn[1];
13628             var contentCfg = cfg.cn[2];
13629             
13630
13631             if(this.indicatorpos == 'right'){
13632                 
13633                 cfg.cn = [
13634                     {
13635                         tag: 'label',
13636                         'for' :  id,
13637                         cls : 'control-label col-form-label',
13638                         cn : [
13639                             {
13640                                 tag : 'span',
13641                                 html : this.fieldLabel
13642                             },
13643                             indicator
13644                         ]
13645                     },
13646                     {
13647                         cls : "",
13648                         cn: [
13649                             combobox
13650                         ]
13651                     }
13652
13653                 ];
13654                 
13655                 
13656                 
13657                 labelCfg = cfg.cn[0];
13658                 contentCfg = cfg.cn[1];
13659             
13660             }
13661             
13662             if(this.labelWidth > 12){
13663                 labelCfg.style = "width: " + this.labelWidth + 'px';
13664             }
13665             
13666             if(this.labelWidth < 13 && this.labelmd == 0){
13667                 this.labelmd = this.labelWidth;
13668             }
13669             
13670             if(this.labellg > 0){
13671                 labelCfg.cls += ' col-lg-' + this.labellg;
13672                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
13673             }
13674             
13675             if(this.labelmd > 0){
13676                 labelCfg.cls += ' col-md-' + this.labelmd;
13677                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
13678             }
13679             
13680             if(this.labelsm > 0){
13681                 labelCfg.cls += ' col-sm-' + this.labelsm;
13682                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
13683             }
13684             
13685             if(this.labelxs > 0){
13686                 labelCfg.cls += ' col-xs-' + this.labelxs;
13687                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
13688             }
13689                 
13690                 
13691         } else if ( this.fieldLabel.length) {
13692 //                Roo.log(" label");
13693                  cfg.cn = [
13694                    indicator,
13695                     {
13696                         tag: 'label',
13697                         //cls : 'input-group-addon',
13698                         html : this.fieldLabel
13699                     },
13700                     combobox
13701                 ];
13702                 
13703                 if(this.indicatorpos == 'right'){
13704                     cfg.cn = [
13705                         {
13706                             tag: 'label',
13707                             //cls : 'input-group-addon',
13708                             html : this.fieldLabel
13709                         },
13710                         indicator,
13711                         combobox
13712                     ];
13713                     
13714                 }
13715
13716         } else {
13717             
13718 //                Roo.log(" no label && no align");
13719                 cfg = combobox
13720                      
13721                 
13722         }
13723          
13724         var settings=this;
13725         ['xs','sm','md','lg'].map(function(size){
13726             if (settings[size]) {
13727                 cfg.cls += ' col-' + size + '-' + settings[size];
13728             }
13729         });
13730         
13731         return cfg;
13732         
13733     },
13734     
13735     _initEventsCalled : false,
13736     
13737     // private
13738     initEvents: function()
13739     {   
13740         if (this._initEventsCalled) { // as we call render... prevent looping...
13741             return;
13742         }
13743         this._initEventsCalled = true;
13744         
13745         if (!this.store) {
13746             throw "can not find store for combo";
13747         }
13748         
13749         this.indicator = this.indicatorEl();
13750         
13751         this.store = Roo.factory(this.store, Roo.data);
13752         this.store.parent = this;
13753         
13754         // if we are building from html. then this element is so complex, that we can not really
13755         // use the rendered HTML.
13756         // so we have to trash and replace the previous code.
13757         if (Roo.XComponent.build_from_html) {
13758             // remove this element....
13759             var e = this.el.dom, k=0;
13760             while (e ) { e = e.previousSibling;  ++k;}
13761
13762             this.el.remove();
13763             
13764             this.el=false;
13765             this.rendered = false;
13766             
13767             this.render(this.parent().getChildContainer(true), k);
13768         }
13769         
13770         if(Roo.isIOS && this.useNativeIOS){
13771             this.initIOSView();
13772             return;
13773         }
13774         
13775         /*
13776          * Touch Devices
13777          */
13778         
13779         if(Roo.isTouch && this.mobileTouchView){
13780             this.initTouchView();
13781             return;
13782         }
13783         
13784         if(this.tickable){
13785             this.initTickableEvents();
13786             return;
13787         }
13788         
13789         Roo.bootstrap.ComboBox.superclass.initEvents.call(this);
13790         
13791         if(this.hiddenName){
13792             
13793             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
13794             
13795             this.hiddenField.dom.value =
13796                 this.hiddenValue !== undefined ? this.hiddenValue :
13797                 this.value !== undefined ? this.value : '';
13798
13799             // prevent input submission
13800             this.el.dom.removeAttribute('name');
13801             this.hiddenField.dom.setAttribute('name', this.hiddenName);
13802              
13803              
13804         }
13805         //if(Roo.isGecko){
13806         //    this.el.dom.setAttribute('autocomplete', 'off');
13807         //}
13808         
13809         var cls = 'x-combo-list';
13810         
13811         //this.list = new Roo.Layer({
13812         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
13813         //});
13814         
13815         var _this = this;
13816         
13817         (function(){
13818             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
13819             _this.list.setWidth(lw);
13820         }).defer(100);
13821         
13822         this.list.on('mouseover', this.onViewOver, this);
13823         this.list.on('mousemove', this.onViewMove, this);
13824         this.list.on('scroll', this.onViewScroll, this);
13825         
13826         /*
13827         this.list.swallowEvent('mousewheel');
13828         this.assetHeight = 0;
13829
13830         if(this.title){
13831             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
13832             this.assetHeight += this.header.getHeight();
13833         }
13834
13835         this.innerList = this.list.createChild({cls:cls+'-inner'});
13836         this.innerList.on('mouseover', this.onViewOver, this);
13837         this.innerList.on('mousemove', this.onViewMove, this);
13838         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
13839         
13840         if(this.allowBlank && !this.pageSize && !this.disableClear){
13841             this.footer = this.list.createChild({cls:cls+'-ft'});
13842             this.pageTb = new Roo.Toolbar(this.footer);
13843            
13844         }
13845         if(this.pageSize){
13846             this.footer = this.list.createChild({cls:cls+'-ft'});
13847             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
13848                     {pageSize: this.pageSize});
13849             
13850         }
13851         
13852         if (this.pageTb && this.allowBlank && !this.disableClear) {
13853             var _this = this;
13854             this.pageTb.add(new Roo.Toolbar.Fill(), {
13855                 cls: 'x-btn-icon x-btn-clear',
13856                 text: '&#160;',
13857                 handler: function()
13858                 {
13859                     _this.collapse();
13860                     _this.clearValue();
13861                     _this.onSelect(false, -1);
13862                 }
13863             });
13864         }
13865         if (this.footer) {
13866             this.assetHeight += this.footer.getHeight();
13867         }
13868         */
13869             
13870         if(!this.tpl){
13871             this.tpl = Roo.bootstrap.version == 4 ?
13872                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
13873                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
13874         }
13875
13876         this.view = new Roo.View(this.list, this.tpl, {
13877             singleSelect:true, store: this.store, selectedClass: this.selectedClass
13878         });
13879         //this.view.wrapEl.setDisplayed(false);
13880         this.view.on('click', this.onViewClick, this);
13881         
13882         
13883         this.store.on('beforeload', this.onBeforeLoad, this);
13884         this.store.on('load', this.onLoad, this);
13885         this.store.on('loadexception', this.onLoadException, this);
13886         /*
13887         if(this.resizable){
13888             this.resizer = new Roo.Resizable(this.list,  {
13889                pinned:true, handles:'se'
13890             });
13891             this.resizer.on('resize', function(r, w, h){
13892                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
13893                 this.listWidth = w;
13894                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
13895                 this.restrictHeight();
13896             }, this);
13897             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
13898         }
13899         */
13900         if(!this.editable){
13901             this.editable = true;
13902             this.setEditable(false);
13903         }
13904         
13905         /*
13906         
13907         if (typeof(this.events.add.listeners) != 'undefined') {
13908             
13909             this.addicon = this.wrap.createChild(
13910                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
13911        
13912             this.addicon.on('click', function(e) {
13913                 this.fireEvent('add', this);
13914             }, this);
13915         }
13916         if (typeof(this.events.edit.listeners) != 'undefined') {
13917             
13918             this.editicon = this.wrap.createChild(
13919                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
13920             if (this.addicon) {
13921                 this.editicon.setStyle('margin-left', '40px');
13922             }
13923             this.editicon.on('click', function(e) {
13924                 
13925                 // we fire even  if inothing is selected..
13926                 this.fireEvent('edit', this, this.lastData );
13927                 
13928             }, this);
13929         }
13930         */
13931         
13932         this.keyNav = new Roo.KeyNav(this.inputEl(), {
13933             "up" : function(e){
13934                 this.inKeyMode = true;
13935                 this.selectPrev();
13936             },
13937
13938             "down" : function(e){
13939                 if(!this.isExpanded()){
13940                     this.onTriggerClick();
13941                 }else{
13942                     this.inKeyMode = true;
13943                     this.selectNext();
13944                 }
13945             },
13946
13947             "enter" : function(e){
13948 //                this.onViewClick();
13949                 //return true;
13950                 this.collapse();
13951                 
13952                 if(this.fireEvent("specialkey", this, e)){
13953                     this.onViewClick(false);
13954                 }
13955                 
13956                 return true;
13957             },
13958
13959             "esc" : function(e){
13960                 this.collapse();
13961             },
13962
13963             "tab" : function(e){
13964                 this.collapse();
13965                 
13966                 if(this.fireEvent("specialkey", this, e)){
13967                     this.onViewClick(false);
13968                 }
13969                 
13970                 return true;
13971             },
13972
13973             scope : this,
13974
13975             doRelay : function(foo, bar, hname){
13976                 if(hname == 'down' || this.scope.isExpanded()){
13977                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
13978                 }
13979                 return true;
13980             },
13981
13982             forceKeyDown: true
13983         });
13984         
13985         
13986         this.queryDelay = Math.max(this.queryDelay || 10,
13987                 this.mode == 'local' ? 10 : 250);
13988         
13989         
13990         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
13991         
13992         if(this.typeAhead){
13993             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
13994         }
13995         if(this.editable !== false){
13996             this.inputEl().on("keyup", this.onKeyUp, this);
13997         }
13998         if(this.forceSelection){
13999             this.inputEl().on('blur', this.doForce, this);
14000         }
14001         
14002         if(this.multiple){
14003             this.choices = this.el.select('ul.roo-select2-choices', true).first();
14004             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14005         }
14006     },
14007     
14008     initTickableEvents: function()
14009     {   
14010         this.createList();
14011         
14012         if(this.hiddenName){
14013             
14014             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
14015             
14016             this.hiddenField.dom.value =
14017                 this.hiddenValue !== undefined ? this.hiddenValue :
14018                 this.value !== undefined ? this.value : '';
14019
14020             // prevent input submission
14021             this.el.dom.removeAttribute('name');
14022             this.hiddenField.dom.setAttribute('name', this.hiddenName);
14023              
14024              
14025         }
14026         
14027 //        this.list = this.el.select('ul.dropdown-menu',true).first();
14028         
14029         this.choices = this.el.select('ul.roo-select2-choices', true).first();
14030         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14031         if(this.triggerList){
14032             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
14033         }
14034          
14035         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
14036         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
14037         
14038         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
14039         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
14040         
14041         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
14042         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
14043         
14044         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
14045         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
14046         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
14047         
14048         this.okBtn.hide();
14049         this.cancelBtn.hide();
14050         
14051         var _this = this;
14052         
14053         (function(){
14054             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
14055             _this.list.setWidth(lw);
14056         }).defer(100);
14057         
14058         this.list.on('mouseover', this.onViewOver, this);
14059         this.list.on('mousemove', this.onViewMove, this);
14060         
14061         this.list.on('scroll', this.onViewScroll, this);
14062         
14063         if(!this.tpl){
14064             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
14065                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
14066         }
14067
14068         this.view = new Roo.View(this.list, this.tpl, {
14069             singleSelect:true,
14070             tickable:true,
14071             parent:this,
14072             store: this.store,
14073             selectedClass: this.selectedClass
14074         });
14075         
14076         //this.view.wrapEl.setDisplayed(false);
14077         this.view.on('click', this.onViewClick, this);
14078         
14079         
14080         
14081         this.store.on('beforeload', this.onBeforeLoad, this);
14082         this.store.on('load', this.onLoad, this);
14083         this.store.on('loadexception', this.onLoadException, this);
14084         
14085         if(this.editable){
14086             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
14087                 "up" : function(e){
14088                     this.inKeyMode = true;
14089                     this.selectPrev();
14090                 },
14091
14092                 "down" : function(e){
14093                     this.inKeyMode = true;
14094                     this.selectNext();
14095                 },
14096
14097                 "enter" : function(e){
14098                     if(this.fireEvent("specialkey", this, e)){
14099                         this.onViewClick(false);
14100                     }
14101                     
14102                     return true;
14103                 },
14104
14105                 "esc" : function(e){
14106                     this.onTickableFooterButtonClick(e, false, false);
14107                 },
14108
14109                 "tab" : function(e){
14110                     this.fireEvent("specialkey", this, e);
14111                     
14112                     this.onTickableFooterButtonClick(e, false, false);
14113                     
14114                     return true;
14115                 },
14116
14117                 scope : this,
14118
14119                 doRelay : function(e, fn, key){
14120                     if(this.scope.isExpanded()){
14121                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14122                     }
14123                     return true;
14124                 },
14125
14126                 forceKeyDown: true
14127             });
14128         }
14129         
14130         this.queryDelay = Math.max(this.queryDelay || 10,
14131                 this.mode == 'local' ? 10 : 250);
14132         
14133         
14134         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14135         
14136         if(this.typeAhead){
14137             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14138         }
14139         
14140         if(this.editable !== false){
14141             this.tickableInputEl().on("keyup", this.onKeyUp, this);
14142         }
14143         
14144         this.indicator = this.indicatorEl();
14145         
14146         if(this.indicator){
14147             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
14148             this.indicator.hide();
14149         }
14150         
14151     },
14152
14153     onDestroy : function(){
14154         if(this.view){
14155             this.view.setStore(null);
14156             this.view.el.removeAllListeners();
14157             this.view.el.remove();
14158             this.view.purgeListeners();
14159         }
14160         if(this.list){
14161             this.list.dom.innerHTML  = '';
14162         }
14163         
14164         if(this.store){
14165             this.store.un('beforeload', this.onBeforeLoad, this);
14166             this.store.un('load', this.onLoad, this);
14167             this.store.un('loadexception', this.onLoadException, this);
14168         }
14169         Roo.bootstrap.ComboBox.superclass.onDestroy.call(this);
14170     },
14171
14172     // private
14173     fireKey : function(e){
14174         if(e.isNavKeyPress() && !this.list.isVisible()){
14175             this.fireEvent("specialkey", this, e);
14176         }
14177     },
14178
14179     // private
14180     onResize: function(w, h){
14181 //        Roo.bootstrap.ComboBox.superclass.onResize.apply(this, arguments);
14182 //        
14183 //        if(typeof w != 'number'){
14184 //            // we do not handle it!?!?
14185 //            return;
14186 //        }
14187 //        var tw = this.trigger.getWidth();
14188 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
14189 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
14190 //        var x = w - tw;
14191 //        this.inputEl().setWidth( this.adjustWidth('input', x));
14192 //            
14193 //        //this.trigger.setStyle('left', x+'px');
14194 //        
14195 //        if(this.list && this.listWidth === undefined){
14196 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
14197 //            this.list.setWidth(lw);
14198 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
14199 //        }
14200         
14201     
14202         
14203     },
14204
14205     /**
14206      * Allow or prevent the user from directly editing the field text.  If false is passed,
14207      * the user will only be able to select from the items defined in the dropdown list.  This method
14208      * is the runtime equivalent of setting the 'editable' config option at config time.
14209      * @param {Boolean} value True to allow the user to directly edit the field text
14210      */
14211     setEditable : function(value){
14212         if(value == this.editable){
14213             return;
14214         }
14215         this.editable = value;
14216         if(!value){
14217             this.inputEl().dom.setAttribute('readOnly', true);
14218             this.inputEl().on('mousedown', this.onTriggerClick,  this);
14219             this.inputEl().addClass('x-combo-noedit');
14220         }else{
14221             this.inputEl().dom.setAttribute('readOnly', false);
14222             this.inputEl().un('mousedown', this.onTriggerClick,  this);
14223             this.inputEl().removeClass('x-combo-noedit');
14224         }
14225     },
14226
14227     // private
14228     
14229     onBeforeLoad : function(combo,opts){
14230         if(!this.hasFocus){
14231             return;
14232         }
14233          if (!opts.add) {
14234             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
14235          }
14236         this.restrictHeight();
14237         this.selectedIndex = -1;
14238     },
14239
14240     // private
14241     onLoad : function(){
14242         
14243         this.hasQuery = false;
14244         
14245         if(!this.hasFocus){
14246             return;
14247         }
14248         
14249         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14250             this.loading.hide();
14251         }
14252         
14253         if(this.store.getCount() > 0){
14254             
14255             this.expand();
14256             this.restrictHeight();
14257             if(this.lastQuery == this.allQuery){
14258                 if(this.editable && !this.tickable){
14259                     this.inputEl().dom.select();
14260                 }
14261                 
14262                 if(
14263                     !this.selectByValue(this.value, true) &&
14264                     this.autoFocus && 
14265                     (
14266                         !this.store.lastOptions ||
14267                         typeof(this.store.lastOptions.add) == 'undefined' || 
14268                         this.store.lastOptions.add != true
14269                     )
14270                 ){
14271                     this.select(0, true);
14272                 }
14273             }else{
14274                 if(this.autoFocus){
14275                     this.selectNext();
14276                 }
14277                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
14278                     this.taTask.delay(this.typeAheadDelay);
14279                 }
14280             }
14281         }else{
14282             this.onEmptyResults();
14283         }
14284         
14285         //this.el.focus();
14286     },
14287     // private
14288     onLoadException : function()
14289     {
14290         this.hasQuery = false;
14291         
14292         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14293             this.loading.hide();
14294         }
14295         
14296         if(this.tickable && this.editable){
14297             return;
14298         }
14299         
14300         this.collapse();
14301         // only causes errors at present
14302         //Roo.log(this.store.reader.jsonData);
14303         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
14304             // fixme
14305             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
14306         //}
14307         
14308         
14309     },
14310     // private
14311     onTypeAhead : function(){
14312         if(this.store.getCount() > 0){
14313             var r = this.store.getAt(0);
14314             var newValue = r.data[this.displayField];
14315             var len = newValue.length;
14316             var selStart = this.getRawValue().length;
14317             
14318             if(selStart != len){
14319                 this.setRawValue(newValue);
14320                 this.selectText(selStart, newValue.length);
14321             }
14322         }
14323     },
14324
14325     // private
14326     onSelect : function(record, index){
14327         
14328         if(this.fireEvent('beforeselect', this, record, index) !== false){
14329         
14330             this.setFromData(index > -1 ? record.data : false);
14331             
14332             this.collapse();
14333             this.fireEvent('select', this, record, index);
14334         }
14335     },
14336
14337     /**
14338      * Returns the currently selected field value or empty string if no value is set.
14339      * @return {String} value The selected value
14340      */
14341     getValue : function()
14342     {
14343         if(Roo.isIOS && this.useNativeIOS){
14344             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
14345         }
14346         
14347         if(this.multiple){
14348             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
14349         }
14350         
14351         if(this.valueField){
14352             return typeof this.value != 'undefined' ? this.value : '';
14353         }else{
14354             return Roo.bootstrap.ComboBox.superclass.getValue.call(this);
14355         }
14356     },
14357     
14358     getRawValue : function()
14359     {
14360         if(Roo.isIOS && this.useNativeIOS){
14361             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
14362         }
14363         
14364         var v = this.inputEl().getValue();
14365         
14366         return v;
14367     },
14368
14369     /**
14370      * Clears any text/value currently set in the field
14371      */
14372     clearValue : function(){
14373         
14374         if(this.hiddenField){
14375             this.hiddenField.dom.value = '';
14376         }
14377         this.value = '';
14378         this.setRawValue('');
14379         this.lastSelectionText = '';
14380         this.lastData = false;
14381         
14382         var close = this.closeTriggerEl();
14383         
14384         if(close){
14385             close.hide();
14386         }
14387         
14388         this.validate();
14389         
14390     },
14391
14392     /**
14393      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
14394      * will be displayed in the field.  If the value does not match the data value of an existing item,
14395      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
14396      * Otherwise the field will be blank (although the value will still be set).
14397      * @param {String} value The value to match
14398      */
14399     setValue : function(v)
14400     {
14401         if(Roo.isIOS && this.useNativeIOS){
14402             this.setIOSValue(v);
14403             return;
14404         }
14405         
14406         if(this.multiple){
14407             this.syncValue();
14408             return;
14409         }
14410         
14411         var text = v;
14412         if(this.valueField){
14413             var r = this.findRecord(this.valueField, v);
14414             if(r){
14415                 text = r.data[this.displayField];
14416             }else if(this.valueNotFoundText !== undefined){
14417                 text = this.valueNotFoundText;
14418             }
14419         }
14420         this.lastSelectionText = text;
14421         if(this.hiddenField){
14422             this.hiddenField.dom.value = v;
14423         }
14424         Roo.bootstrap.ComboBox.superclass.setValue.call(this, text);
14425         this.value = v;
14426         
14427         var close = this.closeTriggerEl();
14428         
14429         if(close){
14430             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
14431         }
14432         
14433         this.validate();
14434     },
14435     /**
14436      * @property {Object} the last set data for the element
14437      */
14438     
14439     lastData : false,
14440     /**
14441      * Sets the value of the field based on a object which is related to the record format for the store.
14442      * @param {Object} value the value to set as. or false on reset?
14443      */
14444     setFromData : function(o){
14445         
14446         if(this.multiple){
14447             this.addItem(o);
14448             return;
14449         }
14450             
14451         var dv = ''; // display value
14452         var vv = ''; // value value..
14453         this.lastData = o;
14454         if (this.displayField) {
14455             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
14456         } else {
14457             // this is an error condition!!!
14458             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
14459         }
14460         
14461         if(this.valueField){
14462             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
14463         }
14464         
14465         var close = this.closeTriggerEl();
14466         
14467         if(close){
14468             if(dv.length || vv * 1 > 0){
14469                 close.show() ;
14470                 this.blockFocus=true;
14471             } else {
14472                 close.hide();
14473             }             
14474         }
14475         
14476         if(this.hiddenField){
14477             this.hiddenField.dom.value = vv;
14478             
14479             this.lastSelectionText = dv;
14480             Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14481             this.value = vv;
14482             return;
14483         }
14484         // no hidden field.. - we store the value in 'value', but still display
14485         // display field!!!!
14486         this.lastSelectionText = dv;
14487         Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14488         this.value = vv;
14489         
14490         
14491         
14492     },
14493     // private
14494     reset : function(){
14495         // overridden so that last data is reset..
14496         
14497         if(this.multiple){
14498             this.clearItem();
14499             return;
14500         }
14501         
14502         this.setValue(this.originalValue);
14503         //this.clearInvalid();
14504         this.lastData = false;
14505         if (this.view) {
14506             this.view.clearSelections();
14507         }
14508         
14509         this.validate();
14510     },
14511     // private
14512     findRecord : function(prop, value){
14513         var record;
14514         if(this.store.getCount() > 0){
14515             this.store.each(function(r){
14516                 if(r.data[prop] == value){
14517                     record = r;
14518                     return false;
14519                 }
14520                 return true;
14521             });
14522         }
14523         return record;
14524     },
14525     
14526     getName: function()
14527     {
14528         // returns hidden if it's set..
14529         if (!this.rendered) {return ''};
14530         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
14531         
14532     },
14533     // private
14534     onViewMove : function(e, t){
14535         this.inKeyMode = false;
14536     },
14537
14538     // private
14539     onViewOver : function(e, t){
14540         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
14541             return;
14542         }
14543         var item = this.view.findItemFromChild(t);
14544         
14545         if(item){
14546             var index = this.view.indexOf(item);
14547             this.select(index, false);
14548         }
14549     },
14550
14551     // private
14552     onViewClick : function(view, doFocus, el, e)
14553     {
14554         var index = this.view.getSelectedIndexes()[0];
14555         
14556         var r = this.store.getAt(index);
14557         
14558         if(this.tickable){
14559             
14560             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
14561                 return;
14562             }
14563             
14564             var rm = false;
14565             var _this = this;
14566             
14567             Roo.each(this.tickItems, function(v,k){
14568                 
14569                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
14570                     Roo.log(v);
14571                     _this.tickItems.splice(k, 1);
14572                     
14573                     if(typeof(e) == 'undefined' && view == false){
14574                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
14575                     }
14576                     
14577                     rm = true;
14578                     return;
14579                 }
14580             });
14581             
14582             if(rm){
14583                 return;
14584             }
14585             
14586             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
14587                 this.tickItems.push(r.data);
14588             }
14589             
14590             if(typeof(e) == 'undefined' && view == false){
14591                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
14592             }
14593                     
14594             return;
14595         }
14596         
14597         if(r){
14598             this.onSelect(r, index);
14599         }
14600         if(doFocus !== false && !this.blockFocus){
14601             this.inputEl().focus();
14602         }
14603     },
14604
14605     // private
14606     restrictHeight : function(){
14607         //this.innerList.dom.style.height = '';
14608         //var inner = this.innerList.dom;
14609         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
14610         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
14611         //this.list.beginUpdate();
14612         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
14613         this.list.alignTo(this.inputEl(), this.listAlign);
14614         this.list.alignTo(this.inputEl(), this.listAlign);
14615         //this.list.endUpdate();
14616     },
14617
14618     // private
14619     onEmptyResults : function(){
14620         
14621         if(this.tickable && this.editable){
14622             this.hasFocus = false;
14623             this.restrictHeight();
14624             return;
14625         }
14626         
14627         this.collapse();
14628     },
14629
14630     /**
14631      * Returns true if the dropdown list is expanded, else false.
14632      */
14633     isExpanded : function(){
14634         return this.list.isVisible();
14635     },
14636
14637     /**
14638      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
14639      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14640      * @param {String} value The data value of the item to select
14641      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14642      * selected item if it is not currently in view (defaults to true)
14643      * @return {Boolean} True if the value matched an item in the list, else false
14644      */
14645     selectByValue : function(v, scrollIntoView){
14646         if(v !== undefined && v !== null){
14647             var r = this.findRecord(this.valueField || this.displayField, v);
14648             if(r){
14649                 this.select(this.store.indexOf(r), scrollIntoView);
14650                 return true;
14651             }
14652         }
14653         return false;
14654     },
14655
14656     /**
14657      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
14658      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14659      * @param {Number} index The zero-based index of the list item to select
14660      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14661      * selected item if it is not currently in view (defaults to true)
14662      */
14663     select : function(index, scrollIntoView){
14664         this.selectedIndex = index;
14665         this.view.select(index);
14666         if(scrollIntoView !== false){
14667             var el = this.view.getNode(index);
14668             /*
14669              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
14670              */
14671             if(el){
14672                 this.list.scrollChildIntoView(el, false);
14673             }
14674         }
14675     },
14676
14677     // private
14678     selectNext : function(){
14679         var ct = this.store.getCount();
14680         if(ct > 0){
14681             if(this.selectedIndex == -1){
14682                 this.select(0);
14683             }else if(this.selectedIndex < ct-1){
14684                 this.select(this.selectedIndex+1);
14685             }
14686         }
14687     },
14688
14689     // private
14690     selectPrev : function(){
14691         var ct = this.store.getCount();
14692         if(ct > 0){
14693             if(this.selectedIndex == -1){
14694                 this.select(0);
14695             }else if(this.selectedIndex != 0){
14696                 this.select(this.selectedIndex-1);
14697             }
14698         }
14699     },
14700
14701     // private
14702     onKeyUp : function(e){
14703         if(this.editable !== false && !e.isSpecialKey()){
14704             this.lastKey = e.getKey();
14705             this.dqTask.delay(this.queryDelay);
14706         }
14707     },
14708
14709     // private
14710     validateBlur : function(){
14711         return !this.list || !this.list.isVisible();   
14712     },
14713
14714     // private
14715     initQuery : function(){
14716         
14717         var v = this.getRawValue();
14718         
14719         if(this.tickable && this.editable){
14720             v = this.tickableInputEl().getValue();
14721         }
14722         
14723         this.doQuery(v);
14724     },
14725
14726     // private
14727     doForce : function(){
14728         if(this.inputEl().dom.value.length > 0){
14729             this.inputEl().dom.value =
14730                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
14731              
14732         }
14733     },
14734
14735     /**
14736      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
14737      * query allowing the query action to be canceled if needed.
14738      * @param {String} query The SQL query to execute
14739      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
14740      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
14741      * saved in the current store (defaults to false)
14742      */
14743     doQuery : function(q, forceAll){
14744         
14745         if(q === undefined || q === null){
14746             q = '';
14747         }
14748         var qe = {
14749             query: q,
14750             forceAll: forceAll,
14751             combo: this,
14752             cancel:false
14753         };
14754         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
14755             return false;
14756         }
14757         q = qe.query;
14758         
14759         forceAll = qe.forceAll;
14760         if(forceAll === true || (q.length >= this.minChars)){
14761             
14762             this.hasQuery = true;
14763             
14764             if(this.lastQuery != q || this.alwaysQuery){
14765                 this.lastQuery = q;
14766                 if(this.mode == 'local'){
14767                     this.selectedIndex = -1;
14768                     if(forceAll){
14769                         this.store.clearFilter();
14770                     }else{
14771                         
14772                         if(this.specialFilter){
14773                             this.fireEvent('specialfilter', this);
14774                             this.onLoad();
14775                             return;
14776                         }
14777                         
14778                         this.store.filter(this.displayField, q);
14779                     }
14780                     
14781                     this.store.fireEvent("datachanged", this.store);
14782                     
14783                     this.onLoad();
14784                     
14785                     
14786                 }else{
14787                     
14788                     this.store.baseParams[this.queryParam] = q;
14789                     
14790                     var options = {params : this.getParams(q)};
14791                     
14792                     if(this.loadNext){
14793                         options.add = true;
14794                         options.params.start = this.page * this.pageSize;
14795                     }
14796                     
14797                     this.store.load(options);
14798                     
14799                     /*
14800                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
14801                      *  we should expand the list on onLoad
14802                      *  so command out it
14803                      */
14804 //                    this.expand();
14805                 }
14806             }else{
14807                 this.selectedIndex = -1;
14808                 this.onLoad();   
14809             }
14810         }
14811         
14812         this.loadNext = false;
14813     },
14814     
14815     // private
14816     getParams : function(q){
14817         var p = {};
14818         //p[this.queryParam] = q;
14819         
14820         if(this.pageSize){
14821             p.start = 0;
14822             p.limit = this.pageSize;
14823         }
14824         return p;
14825     },
14826
14827     /**
14828      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
14829      */
14830     collapse : function(){
14831         if(!this.isExpanded()){
14832             return;
14833         }
14834         
14835         this.list.hide();
14836         
14837         this.hasFocus = false;
14838         
14839         if(this.tickable){
14840             this.okBtn.hide();
14841             this.cancelBtn.hide();
14842             this.trigger.show();
14843             
14844             if(this.editable){
14845                 this.tickableInputEl().dom.value = '';
14846                 this.tickableInputEl().blur();
14847             }
14848             
14849         }
14850         
14851         Roo.get(document).un('mousedown', this.collapseIf, this);
14852         Roo.get(document).un('mousewheel', this.collapseIf, this);
14853         if (!this.editable) {
14854             Roo.get(document).un('keydown', this.listKeyPress, this);
14855         }
14856         this.fireEvent('collapse', this);
14857         
14858         this.validate();
14859     },
14860
14861     // private
14862     collapseIf : function(e){
14863         var in_combo  = e.within(this.el);
14864         var in_list =  e.within(this.list);
14865         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
14866         
14867         if (in_combo || in_list || is_list) {
14868             //e.stopPropagation();
14869             return;
14870         }
14871         
14872         if(this.tickable){
14873             this.onTickableFooterButtonClick(e, false, false);
14874         }
14875
14876         this.collapse();
14877         
14878     },
14879
14880     /**
14881      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
14882      */
14883     expand : function(){
14884        
14885         if(this.isExpanded() || !this.hasFocus){
14886             return;
14887         }
14888         
14889         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
14890         this.list.setWidth(lw);
14891         
14892         Roo.log('expand');
14893         
14894         this.list.show();
14895         
14896         this.restrictHeight();
14897         
14898         if(this.tickable){
14899             
14900             this.tickItems = Roo.apply([], this.item);
14901             
14902             this.okBtn.show();
14903             this.cancelBtn.show();
14904             this.trigger.hide();
14905             
14906             if(this.editable){
14907                 this.tickableInputEl().focus();
14908             }
14909             
14910         }
14911         
14912         Roo.get(document).on('mousedown', this.collapseIf, this);
14913         Roo.get(document).on('mousewheel', this.collapseIf, this);
14914         if (!this.editable) {
14915             Roo.get(document).on('keydown', this.listKeyPress, this);
14916         }
14917         
14918         this.fireEvent('expand', this);
14919     },
14920
14921     // private
14922     // Implements the default empty TriggerField.onTriggerClick function
14923     onTriggerClick : function(e)
14924     {
14925         Roo.log('trigger click');
14926         
14927         if(this.disabled || !this.triggerList){
14928             return;
14929         }
14930         
14931         this.page = 0;
14932         this.loadNext = false;
14933         
14934         if(this.isExpanded()){
14935             this.collapse();
14936             if (!this.blockFocus) {
14937                 this.inputEl().focus();
14938             }
14939             
14940         }else {
14941             this.hasFocus = true;
14942             if(this.triggerAction == 'all') {
14943                 this.doQuery(this.allQuery, true);
14944             } else {
14945                 this.doQuery(this.getRawValue());
14946             }
14947             if (!this.blockFocus) {
14948                 this.inputEl().focus();
14949             }
14950         }
14951     },
14952     
14953     onTickableTriggerClick : function(e)
14954     {
14955         if(this.disabled){
14956             return;
14957         }
14958         
14959         this.page = 0;
14960         this.loadNext = false;
14961         this.hasFocus = true;
14962         
14963         if(this.triggerAction == 'all') {
14964             this.doQuery(this.allQuery, true);
14965         } else {
14966             this.doQuery(this.getRawValue());
14967         }
14968     },
14969     
14970     onSearchFieldClick : function(e)
14971     {
14972         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
14973             this.onTickableFooterButtonClick(e, false, false);
14974             return;
14975         }
14976         
14977         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
14978             return;
14979         }
14980         
14981         this.page = 0;
14982         this.loadNext = false;
14983         this.hasFocus = true;
14984         
14985         if(this.triggerAction == 'all') {
14986             this.doQuery(this.allQuery, true);
14987         } else {
14988             this.doQuery(this.getRawValue());
14989         }
14990     },
14991     
14992     listKeyPress : function(e)
14993     {
14994         //Roo.log('listkeypress');
14995         // scroll to first matching element based on key pres..
14996         if (e.isSpecialKey()) {
14997             return false;
14998         }
14999         var k = String.fromCharCode(e.getKey()).toUpperCase();
15000         //Roo.log(k);
15001         var match  = false;
15002         var csel = this.view.getSelectedNodes();
15003         var cselitem = false;
15004         if (csel.length) {
15005             var ix = this.view.indexOf(csel[0]);
15006             cselitem  = this.store.getAt(ix);
15007             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
15008                 cselitem = false;
15009             }
15010             
15011         }
15012         
15013         this.store.each(function(v) { 
15014             if (cselitem) {
15015                 // start at existing selection.
15016                 if (cselitem.id == v.id) {
15017                     cselitem = false;
15018                 }
15019                 return true;
15020             }
15021                 
15022             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
15023                 match = this.store.indexOf(v);
15024                 return false;
15025             }
15026             return true;
15027         }, this);
15028         
15029         if (match === false) {
15030             return true; // no more action?
15031         }
15032         // scroll to?
15033         this.view.select(match);
15034         var sn = Roo.get(this.view.getSelectedNodes()[0]);
15035         sn.scrollIntoView(sn.dom.parentNode, false);
15036     },
15037     
15038     onViewScroll : function(e, t){
15039         
15040         if(this.view.el.getScroll().top == 0 ||this.view.el.getScroll().top < this.view.el.dom.scrollHeight - this.view.el.dom.clientHeight || !this.hasFocus || !this.append || this.hasQuery){
15041             return;
15042         }
15043         
15044         this.hasQuery = true;
15045         
15046         this.loading = this.list.select('.loading', true).first();
15047         
15048         if(this.loading === null){
15049             this.list.createChild({
15050                 tag: 'div',
15051                 cls: 'loading roo-select2-more-results roo-select2-active',
15052                 html: 'Loading more results...'
15053             });
15054             
15055             this.loading = this.list.select('.loading', true).first();
15056             
15057             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
15058             
15059             this.loading.hide();
15060         }
15061         
15062         this.loading.show();
15063         
15064         var _combo = this;
15065         
15066         this.page++;
15067         this.loadNext = true;
15068         
15069         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
15070         
15071         return;
15072     },
15073     
15074     addItem : function(o)
15075     {   
15076         var dv = ''; // display value
15077         
15078         if (this.displayField) {
15079             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
15080         } else {
15081             // this is an error condition!!!
15082             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
15083         }
15084         
15085         if(!dv.length){
15086             return;
15087         }
15088         
15089         var choice = this.choices.createChild({
15090             tag: 'li',
15091             cls: 'roo-select2-search-choice',
15092             cn: [
15093                 {
15094                     tag: 'div',
15095                     html: dv
15096                 },
15097                 {
15098                     tag: 'a',
15099                     href: '#',
15100                     cls: 'roo-select2-search-choice-close fa fa-times',
15101                     tabindex: '-1'
15102                 }
15103             ]
15104             
15105         }, this.searchField);
15106         
15107         var close = choice.select('a.roo-select2-search-choice-close', true).first();
15108         
15109         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
15110         
15111         this.item.push(o);
15112         
15113         this.lastData = o;
15114         
15115         this.syncValue();
15116         
15117         this.inputEl().dom.value = '';
15118         
15119         this.validate();
15120     },
15121     
15122     onRemoveItem : function(e, _self, o)
15123     {
15124         e.preventDefault();
15125         
15126         this.lastItem = Roo.apply([], this.item);
15127         
15128         var index = this.item.indexOf(o.data) * 1;
15129         
15130         if( index < 0){
15131             Roo.log('not this item?!');
15132             return;
15133         }
15134         
15135         this.item.splice(index, 1);
15136         o.item.remove();
15137         
15138         this.syncValue();
15139         
15140         this.fireEvent('remove', this, e);
15141         
15142         this.validate();
15143         
15144     },
15145     
15146     syncValue : function()
15147     {
15148         if(!this.item.length){
15149             this.clearValue();
15150             return;
15151         }
15152             
15153         var value = [];
15154         var _this = this;
15155         Roo.each(this.item, function(i){
15156             if(_this.valueField){
15157                 value.push(i[_this.valueField]);
15158                 return;
15159             }
15160
15161             value.push(i);
15162         });
15163
15164         this.value = value.join(',');
15165
15166         if(this.hiddenField){
15167             this.hiddenField.dom.value = this.value;
15168         }
15169         
15170         this.store.fireEvent("datachanged", this.store);
15171         
15172         this.validate();
15173     },
15174     
15175     clearItem : function()
15176     {
15177         if(!this.multiple){
15178             return;
15179         }
15180         
15181         this.item = [];
15182         
15183         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
15184            c.remove();
15185         });
15186         
15187         this.syncValue();
15188         
15189         this.validate();
15190         
15191         if(this.tickable && !Roo.isTouch){
15192             this.view.refresh();
15193         }
15194     },
15195     
15196     inputEl: function ()
15197     {
15198         if(Roo.isIOS && this.useNativeIOS){
15199             return this.el.select('select.roo-ios-select', true).first();
15200         }
15201         
15202         if(Roo.isTouch && this.mobileTouchView){
15203             return this.el.select('input.form-control',true).first();
15204         }
15205         
15206         if(this.tickable){
15207             return this.searchField;
15208         }
15209         
15210         return this.el.select('input.form-control',true).first();
15211     },
15212     
15213     onTickableFooterButtonClick : function(e, btn, el)
15214     {
15215         e.preventDefault();
15216         
15217         this.lastItem = Roo.apply([], this.item);
15218         
15219         if(btn && btn.name == 'cancel'){
15220             this.tickItems = Roo.apply([], this.item);
15221             this.collapse();
15222             return;
15223         }
15224         
15225         this.clearItem();
15226         
15227         var _this = this;
15228         
15229         Roo.each(this.tickItems, function(o){
15230             _this.addItem(o);
15231         });
15232         
15233         this.collapse();
15234         
15235     },
15236     
15237     validate : function()
15238     {
15239         if(this.getVisibilityEl().hasClass('hidden')){
15240             return true;
15241         }
15242         
15243         var v = this.getRawValue();
15244         
15245         if(this.multiple){
15246             v = this.getValue();
15247         }
15248         
15249         if(this.disabled || this.allowBlank || v.length){
15250             this.markValid();
15251             return true;
15252         }
15253         
15254         this.markInvalid();
15255         return false;
15256     },
15257     
15258     tickableInputEl : function()
15259     {
15260         if(!this.tickable || !this.editable){
15261             return this.inputEl();
15262         }
15263         
15264         return this.inputEl().select('.roo-select2-search-field-input', true).first();
15265     },
15266     
15267     
15268     getAutoCreateTouchView : function()
15269     {
15270         var id = Roo.id();
15271         
15272         var cfg = {
15273             cls: 'form-group' //input-group
15274         };
15275         
15276         var input =  {
15277             tag: 'input',
15278             id : id,
15279             type : this.inputType,
15280             cls : 'form-control x-combo-noedit',
15281             autocomplete: 'new-password',
15282             placeholder : this.placeholder || '',
15283             readonly : true
15284         };
15285         
15286         if (this.name) {
15287             input.name = this.name;
15288         }
15289         
15290         if (this.size) {
15291             input.cls += ' input-' + this.size;
15292         }
15293         
15294         if (this.disabled) {
15295             input.disabled = true;
15296         }
15297         
15298         var inputblock = {
15299             cls : '',
15300             cn : [
15301                 input
15302             ]
15303         };
15304         
15305         if(this.before){
15306             inputblock.cls += ' input-group';
15307             
15308             inputblock.cn.unshift({
15309                 tag :'span',
15310                 cls : 'input-group-addon input-group-prepend input-group-text',
15311                 html : this.before
15312             });
15313         }
15314         
15315         if(this.removable && !this.multiple){
15316             inputblock.cls += ' roo-removable';
15317             
15318             inputblock.cn.push({
15319                 tag: 'button',
15320                 html : 'x',
15321                 cls : 'roo-combo-removable-btn close'
15322             });
15323         }
15324
15325         if(this.hasFeedback && !this.allowBlank){
15326             
15327             inputblock.cls += ' has-feedback';
15328             
15329             inputblock.cn.push({
15330                 tag: 'span',
15331                 cls: 'glyphicon form-control-feedback'
15332             });
15333             
15334         }
15335         
15336         if (this.after) {
15337             
15338             inputblock.cls += (this.before) ? '' : ' input-group';
15339             
15340             inputblock.cn.push({
15341                 tag :'span',
15342                 cls : 'input-group-addon input-group-append input-group-text',
15343                 html : this.after
15344             });
15345         }
15346
15347         
15348         var ibwrap = inputblock;
15349         
15350         if(this.multiple){
15351             ibwrap = {
15352                 tag: 'ul',
15353                 cls: 'roo-select2-choices',
15354                 cn:[
15355                     {
15356                         tag: 'li',
15357                         cls: 'roo-select2-search-field',
15358                         cn: [
15359
15360                             inputblock
15361                         ]
15362                     }
15363                 ]
15364             };
15365         
15366             
15367         }
15368         
15369         var combobox = {
15370             cls: 'roo-select2-container input-group roo-touchview-combobox ',
15371             cn: [
15372                 {
15373                     tag: 'input',
15374                     type : 'hidden',
15375                     cls: 'form-hidden-field'
15376                 },
15377                 ibwrap
15378             ]
15379         };
15380         
15381         if(!this.multiple && this.showToggleBtn){
15382             
15383             var caret = {
15384                         tag: 'span',
15385                         cls: 'caret'
15386             };
15387             
15388             if (this.caret != false) {
15389                 caret = {
15390                      tag: 'i',
15391                      cls: 'fa fa-' + this.caret
15392                 };
15393                 
15394             }
15395             
15396             combobox.cn.push({
15397                 tag :'span',
15398                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
15399                 cn : [
15400                     caret,
15401                     {
15402                         tag: 'span',
15403                         cls: 'combobox-clear',
15404                         cn  : [
15405                             {
15406                                 tag : 'i',
15407                                 cls: 'icon-remove'
15408                             }
15409                         ]
15410                     }
15411                 ]
15412
15413             })
15414         }
15415         
15416         if(this.multiple){
15417             combobox.cls += ' roo-select2-container-multi';
15418         }
15419         
15420         var align = this.labelAlign || this.parentLabelAlign();
15421         
15422         if (align ==='left' && this.fieldLabel.length) {
15423
15424             cfg.cn = [
15425                 {
15426                    tag : 'i',
15427                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15428                    tooltip : 'This field is required'
15429                 },
15430                 {
15431                     tag: 'label',
15432                     cls : 'control-label col-form-label',
15433                     html : this.fieldLabel
15434
15435                 },
15436                 {
15437                     cls : '', 
15438                     cn: [
15439                         combobox
15440                     ]
15441                 }
15442             ];
15443             
15444             var labelCfg = cfg.cn[1];
15445             var contentCfg = cfg.cn[2];
15446             
15447
15448             if(this.indicatorpos == 'right'){
15449                 cfg.cn = [
15450                     {
15451                         tag: 'label',
15452                         'for' :  id,
15453                         cls : 'control-label col-form-label',
15454                         cn : [
15455                             {
15456                                 tag : 'span',
15457                                 html : this.fieldLabel
15458                             },
15459                             {
15460                                 tag : 'i',
15461                                 cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15462                                 tooltip : 'This field is required'
15463                             }
15464                         ]
15465                     },
15466                     {
15467                         cls : "",
15468                         cn: [
15469                             combobox
15470                         ]
15471                     }
15472
15473                 ];
15474                 
15475                 labelCfg = cfg.cn[0];
15476                 contentCfg = cfg.cn[1];
15477             }
15478             
15479            
15480             
15481             if(this.labelWidth > 12){
15482                 labelCfg.style = "width: " + this.labelWidth + 'px';
15483             }
15484             
15485             if(this.labelWidth < 13 && this.labelmd == 0){
15486                 this.labelmd = this.labelWidth;
15487             }
15488             
15489             if(this.labellg > 0){
15490                 labelCfg.cls += ' col-lg-' + this.labellg;
15491                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
15492             }
15493             
15494             if(this.labelmd > 0){
15495                 labelCfg.cls += ' col-md-' + this.labelmd;
15496                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
15497             }
15498             
15499             if(this.labelsm > 0){
15500                 labelCfg.cls += ' col-sm-' + this.labelsm;
15501                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
15502             }
15503             
15504             if(this.labelxs > 0){
15505                 labelCfg.cls += ' col-xs-' + this.labelxs;
15506                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
15507             }
15508                 
15509                 
15510         } else if ( this.fieldLabel.length) {
15511             cfg.cn = [
15512                 {
15513                    tag : 'i',
15514                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15515                    tooltip : 'This field is required'
15516                 },
15517                 {
15518                     tag: 'label',
15519                     cls : 'control-label',
15520                     html : this.fieldLabel
15521
15522                 },
15523                 {
15524                     cls : '', 
15525                     cn: [
15526                         combobox
15527                     ]
15528                 }
15529             ];
15530             
15531             if(this.indicatorpos == 'right'){
15532                 cfg.cn = [
15533                     {
15534                         tag: 'label',
15535                         cls : 'control-label',
15536                         html : this.fieldLabel,
15537                         cn : [
15538                             {
15539                                tag : 'i',
15540                                cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15541                                tooltip : 'This field is required'
15542                             }
15543                         ]
15544                     },
15545                     {
15546                         cls : '', 
15547                         cn: [
15548                             combobox
15549                         ]
15550                     }
15551                 ];
15552             }
15553         } else {
15554             cfg.cn = combobox;    
15555         }
15556         
15557         
15558         var settings = this;
15559         
15560         ['xs','sm','md','lg'].map(function(size){
15561             if (settings[size]) {
15562                 cfg.cls += ' col-' + size + '-' + settings[size];
15563             }
15564         });
15565         
15566         return cfg;
15567     },
15568     
15569     initTouchView : function()
15570     {
15571         this.renderTouchView();
15572         
15573         this.touchViewEl.on('scroll', function(){
15574             this.el.dom.scrollTop = 0;
15575         }, this);
15576         
15577         this.originalValue = this.getValue();
15578         
15579         this.triggerEl = this.el.select('span.dropdown-toggle',true).first();
15580         
15581         this.inputEl().on("click", this.showTouchView, this);
15582         if (this.triggerEl) {
15583             this.triggerEl.on("click", this.showTouchView, this);
15584         }
15585         
15586         
15587         this.touchViewFooterEl.select('.roo-touch-view-cancel', true).first().on('click', this.hideTouchView, this);
15588         this.touchViewFooterEl.select('.roo-touch-view-ok', true).first().on('click', this.setTouchViewValue, this);
15589         
15590         this.maskEl = new Roo.LoadMask(this.touchViewEl, { store : this.store, msgCls: 'roo-el-mask-msg' });
15591         
15592         this.store.on('beforeload', this.onTouchViewBeforeLoad, this);
15593         this.store.on('load', this.onTouchViewLoad, this);
15594         this.store.on('loadexception', this.onTouchViewLoadException, this);
15595         
15596         if(this.hiddenName){
15597             
15598             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
15599             
15600             this.hiddenField.dom.value =
15601                 this.hiddenValue !== undefined ? this.hiddenValue :
15602                 this.value !== undefined ? this.value : '';
15603         
15604             this.el.dom.removeAttribute('name');
15605             this.hiddenField.dom.setAttribute('name', this.hiddenName);
15606         }
15607         
15608         if(this.multiple){
15609             this.choices = this.el.select('ul.roo-select2-choices', true).first();
15610             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
15611         }
15612         
15613         if(this.removable && !this.multiple){
15614             var close = this.closeTriggerEl();
15615             if(close){
15616                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
15617                 close.on('click', this.removeBtnClick, this, close);
15618             }
15619         }
15620         /*
15621          * fix the bug in Safari iOS8
15622          */
15623         this.inputEl().on("focus", function(e){
15624             document.activeElement.blur();
15625         }, this);
15626         
15627         this._touchViewMask = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
15628         
15629         return;
15630         
15631         
15632     },
15633     
15634     renderTouchView : function()
15635     {
15636         this.touchViewEl = Roo.get(document.body).createChild(Roo.bootstrap.ComboBox.touchViewTemplate);
15637         this.touchViewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15638         
15639         this.touchViewHeaderEl = this.touchViewEl.select('.modal-header', true).first();
15640         this.touchViewHeaderEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15641         
15642         this.touchViewBodyEl = this.touchViewEl.select('.modal-body', true).first();
15643         this.touchViewBodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15644         this.touchViewBodyEl.setStyle('overflow', 'auto');
15645         
15646         this.touchViewListGroup = this.touchViewBodyEl.select('.list-group', true).first();
15647         this.touchViewListGroup.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15648         
15649         this.touchViewFooterEl = this.touchViewEl.select('.modal-footer', true).first();
15650         this.touchViewFooterEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15651         
15652     },
15653     
15654     showTouchView : function()
15655     {
15656         if(this.disabled){
15657             return;
15658         }
15659         
15660         this.touchViewHeaderEl.hide();
15661
15662         if(this.modalTitle.length){
15663             this.touchViewHeaderEl.dom.innerHTML = this.modalTitle;
15664             this.touchViewHeaderEl.show();
15665         }
15666
15667         this.touchViewEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
15668         this.touchViewEl.show();
15669
15670         this.touchViewEl.select('.modal-dialog', true).first().setStyle({ margin : '0px', width : '100%'});
15671         
15672         //this.touchViewEl.select('.modal-dialog > .modal-content', true).first().setSize(
15673         //        Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
15674
15675         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15676
15677         if(this.modalTitle.length){
15678             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15679         }
15680         
15681         this.touchViewBodyEl.setHeight(bodyHeight);
15682
15683         if(this.animate){
15684             var _this = this;
15685             (function(){ _this.touchViewEl.addClass('in'); }).defer(50);
15686         }else{
15687             this.touchViewEl.addClass('in');
15688         }
15689         
15690         if(this._touchViewMask){
15691             Roo.get(document.body).addClass("x-body-masked");
15692             this._touchViewMask.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
15693             this._touchViewMask.setStyle('z-index', 10000);
15694             this._touchViewMask.addClass('show');
15695         }
15696         
15697         this.doTouchViewQuery();
15698         
15699     },
15700     
15701     hideTouchView : function()
15702     {
15703         this.touchViewEl.removeClass('in');
15704
15705         if(this.animate){
15706             var _this = this;
15707             (function(){ _this.touchViewEl.setStyle('display', 'none'); }).defer(150);
15708         }else{
15709             this.touchViewEl.setStyle('display', 'none');
15710         }
15711         
15712         if(this._touchViewMask){
15713             this._touchViewMask.removeClass('show');
15714             Roo.get(document.body).removeClass("x-body-masked");
15715         }
15716     },
15717     
15718     setTouchViewValue : function()
15719     {
15720         if(this.multiple){
15721             this.clearItem();
15722         
15723             var _this = this;
15724
15725             Roo.each(this.tickItems, function(o){
15726                 this.addItem(o);
15727             }, this);
15728         }
15729         
15730         this.hideTouchView();
15731     },
15732     
15733     doTouchViewQuery : function()
15734     {
15735         var qe = {
15736             query: '',
15737             forceAll: true,
15738             combo: this,
15739             cancel:false
15740         };
15741         
15742         if(this.fireEvent('beforequery', qe) ===false || qe.cancel){
15743             return false;
15744         }
15745         
15746         if(!this.alwaysQuery || this.mode == 'local'){
15747             this.onTouchViewLoad();
15748             return;
15749         }
15750         
15751         this.store.load();
15752     },
15753     
15754     onTouchViewBeforeLoad : function(combo,opts)
15755     {
15756         return;
15757     },
15758
15759     // private
15760     onTouchViewLoad : function()
15761     {
15762         if(this.store.getCount() < 1){
15763             this.onTouchViewEmptyResults();
15764             return;
15765         }
15766         
15767         this.clearTouchView();
15768         
15769         var rawValue = this.getRawValue();
15770         
15771         var template = (this.multiple) ? Roo.bootstrap.ComboBox.listItemCheckbox : Roo.bootstrap.ComboBox.listItemRadio;
15772         
15773         this.tickItems = [];
15774         
15775         this.store.data.each(function(d, rowIndex){
15776             var row = this.touchViewListGroup.createChild(template);
15777             
15778             if(typeof(d.data.cls) != 'undefined' && d.data.cls.length){
15779                 row.addClass(d.data.cls);
15780             }
15781             
15782             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15783                 var cfg = {
15784                     data : d.data,
15785                     html : d.data[this.displayField]
15786                 };
15787                 
15788                 if(this.fireEvent('touchviewdisplay', this, cfg) !== false){
15789                     row.select('.roo-combobox-list-group-item-value', true).first().dom.innerHTML = cfg.html;
15790                 }
15791             }
15792             row.removeClass('selected');
15793             if(!this.multiple && this.valueField &&
15794                     typeof(d.data[this.valueField]) != 'undefined' && d.data[this.valueField] == this.getValue())
15795             {
15796                 // radio buttons..
15797                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15798                 row.addClass('selected');
15799             }
15800             
15801             if(this.multiple && this.valueField &&
15802                     typeof(d.data[this.valueField]) != 'undefined' && this.getValue().indexOf(d.data[this.valueField]) != -1)
15803             {
15804                 
15805                 // checkboxes...
15806                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15807                 this.tickItems.push(d.data);
15808             }
15809             
15810             row.on('click', this.onTouchViewClick, this, {row : row, rowIndex : rowIndex});
15811             
15812         }, this);
15813         
15814         var firstChecked = this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).first();
15815         
15816         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15817
15818         if(this.modalTitle.length){
15819             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15820         }
15821
15822         var listHeight = this.touchViewListGroup.getHeight() + this.touchViewBodyEl.getPadding('tb') * 2;
15823         
15824         if(this.mobile_restrict_height && listHeight < bodyHeight){
15825             this.touchViewBodyEl.setHeight(listHeight);
15826         }
15827         
15828         var _this = this;
15829         
15830         if(firstChecked && listHeight > bodyHeight){
15831             (function() { firstChecked.findParent('li').scrollIntoView(_this.touchViewListGroup.dom); }).defer(500);
15832         }
15833         
15834     },
15835     
15836     onTouchViewLoadException : function()
15837     {
15838         this.hideTouchView();
15839     },
15840     
15841     onTouchViewEmptyResults : function()
15842     {
15843         this.clearTouchView();
15844         
15845         this.touchViewListGroup.createChild(Roo.bootstrap.ComboBox.emptyResult);
15846         
15847         this.touchViewListGroup.select('.roo-combobox-touch-view-empty-result', true).first().dom.innerHTML = this.emptyResultText;
15848         
15849     },
15850     
15851     clearTouchView : function()
15852     {
15853         this.touchViewListGroup.dom.innerHTML = '';
15854     },
15855     
15856     onTouchViewClick : function(e, el, o)
15857     {
15858         e.preventDefault();
15859         
15860         var row = o.row;
15861         var rowIndex = o.rowIndex;
15862         
15863         var r = this.store.getAt(rowIndex);
15864         
15865         if(this.fireEvent('beforeselect', this, r, rowIndex) !== false){
15866             
15867             if(!this.multiple){
15868                 Roo.each(this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).elements, function(c){
15869                     c.dom.removeAttribute('checked');
15870                 }, this);
15871
15872                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15873
15874                 this.setFromData(r.data);
15875
15876                 var close = this.closeTriggerEl();
15877
15878                 if(close){
15879                     close.show();
15880                 }
15881
15882                 this.hideTouchView();
15883
15884                 this.fireEvent('select', this, r, rowIndex);
15885
15886                 return;
15887             }
15888
15889             if(this.valueField && typeof(r.data[this.valueField]) != 'undefined' && this.getValue().indexOf(r.data[this.valueField]) != -1){
15890                 row.select('.roo-combobox-list-group-item-box > input', true).first().dom.removeAttribute('checked');
15891                 this.tickItems.splice(this.tickItems.indexOf(r.data), 1);
15892                 return;
15893             }
15894
15895             row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15896             this.addItem(r.data);
15897             this.tickItems.push(r.data);
15898         }
15899     },
15900     
15901     getAutoCreateNativeIOS : function()
15902     {
15903         var cfg = {
15904             cls: 'form-group' //input-group,
15905         };
15906         
15907         var combobox =  {
15908             tag: 'select',
15909             cls : 'roo-ios-select'
15910         };
15911         
15912         if (this.name) {
15913             combobox.name = this.name;
15914         }
15915         
15916         if (this.disabled) {
15917             combobox.disabled = true;
15918         }
15919         
15920         var settings = this;
15921         
15922         ['xs','sm','md','lg'].map(function(size){
15923             if (settings[size]) {
15924                 cfg.cls += ' col-' + size + '-' + settings[size];
15925             }
15926         });
15927         
15928         cfg.cn = combobox;
15929         
15930         return cfg;
15931         
15932     },
15933     
15934     initIOSView : function()
15935     {
15936         this.store.on('load', this.onIOSViewLoad, this);
15937         
15938         return;
15939     },
15940     
15941     onIOSViewLoad : function()
15942     {
15943         if(this.store.getCount() < 1){
15944             return;
15945         }
15946         
15947         this.clearIOSView();
15948         
15949         if(this.allowBlank) {
15950             
15951             var default_text = '-- SELECT --';
15952             
15953             if(this.placeholder.length){
15954                 default_text = this.placeholder;
15955             }
15956             
15957             if(this.emptyTitle.length){
15958                 default_text += ' - ' + this.emptyTitle + ' -';
15959             }
15960             
15961             var opt = this.inputEl().createChild({
15962                 tag: 'option',
15963                 value : 0,
15964                 html : default_text
15965             });
15966             
15967             var o = {};
15968             o[this.valueField] = 0;
15969             o[this.displayField] = default_text;
15970             
15971             this.ios_options.push({
15972                 data : o,
15973                 el : opt
15974             });
15975             
15976         }
15977         
15978         this.store.data.each(function(d, rowIndex){
15979             
15980             var html = '';
15981             
15982             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15983                 html = d.data[this.displayField];
15984             }
15985             
15986             var value = '';
15987             
15988             if(this.valueField && typeof(d.data[this.valueField]) != 'undefined'){
15989                 value = d.data[this.valueField];
15990             }
15991             
15992             var option = {
15993                 tag: 'option',
15994                 value : value,
15995                 html : html
15996             };
15997             
15998             if(this.value == d.data[this.valueField]){
15999                 option['selected'] = true;
16000             }
16001             
16002             var opt = this.inputEl().createChild(option);
16003             
16004             this.ios_options.push({
16005                 data : d.data,
16006                 el : opt
16007             });
16008             
16009         }, this);
16010         
16011         this.inputEl().on('change', function(){
16012            this.fireEvent('select', this);
16013         }, this);
16014         
16015     },
16016     
16017     clearIOSView: function()
16018     {
16019         this.inputEl().dom.innerHTML = '';
16020         
16021         this.ios_options = [];
16022     },
16023     
16024     setIOSValue: function(v)
16025     {
16026         this.value = v;
16027         
16028         if(!this.ios_options){
16029             return;
16030         }
16031         
16032         Roo.each(this.ios_options, function(opts){
16033            
16034            opts.el.dom.removeAttribute('selected');
16035            
16036            if(opts.data[this.valueField] != v){
16037                return;
16038            }
16039            
16040            opts.el.dom.setAttribute('selected', true);
16041            
16042         }, this);
16043     }
16044
16045     /** 
16046     * @cfg {Boolean} grow 
16047     * @hide 
16048     */
16049     /** 
16050     * @cfg {Number} growMin 
16051     * @hide 
16052     */
16053     /** 
16054     * @cfg {Number} growMax 
16055     * @hide 
16056     */
16057     /**
16058      * @hide
16059      * @method autoSize
16060      */
16061 });
16062
16063 Roo.apply(Roo.bootstrap.ComboBox,  {
16064     
16065     header : {
16066         tag: 'div',
16067         cls: 'modal-header',
16068         cn: [
16069             {
16070                 tag: 'h4',
16071                 cls: 'modal-title'
16072             }
16073         ]
16074     },
16075     
16076     body : {
16077         tag: 'div',
16078         cls: 'modal-body',
16079         cn: [
16080             {
16081                 tag: 'ul',
16082                 cls: 'list-group'
16083             }
16084         ]
16085     },
16086     
16087     listItemRadio : {
16088         tag: 'li',
16089         cls: 'list-group-item',
16090         cn: [
16091             {
16092                 tag: 'span',
16093                 cls: 'roo-combobox-list-group-item-value'
16094             },
16095             {
16096                 tag: 'div',
16097                 cls: 'roo-combobox-list-group-item-box pull-xs-right radio-inline radio radio-info',
16098                 cn: [
16099                     {
16100                         tag: 'input',
16101                         type: 'radio'
16102                     },
16103                     {
16104                         tag: 'label'
16105                     }
16106                 ]
16107             }
16108         ]
16109     },
16110     
16111     listItemCheckbox : {
16112         tag: 'li',
16113         cls: 'list-group-item',
16114         cn: [
16115             {
16116                 tag: 'span',
16117                 cls: 'roo-combobox-list-group-item-value'
16118             },
16119             {
16120                 tag: 'div',
16121                 cls: 'roo-combobox-list-group-item-box pull-xs-right checkbox-inline checkbox checkbox-info',
16122                 cn: [
16123                     {
16124                         tag: 'input',
16125                         type: 'checkbox'
16126                     },
16127                     {
16128                         tag: 'label'
16129                     }
16130                 ]
16131             }
16132         ]
16133     },
16134     
16135     emptyResult : {
16136         tag: 'div',
16137         cls: 'alert alert-danger roo-combobox-touch-view-empty-result'
16138     },
16139     
16140     footer : {
16141         tag: 'div',
16142         cls: 'modal-footer',
16143         cn: [
16144             {
16145                 tag: 'div',
16146                 cls: 'row',
16147                 cn: [
16148                     {
16149                         tag: 'div',
16150                         cls: 'col-xs-6 text-left',
16151                         cn: {
16152                             tag: 'button',
16153                             cls: 'btn btn-danger roo-touch-view-cancel',
16154                             html: 'Cancel'
16155                         }
16156                     },
16157                     {
16158                         tag: 'div',
16159                         cls: 'col-xs-6 text-right',
16160                         cn: {
16161                             tag: 'button',
16162                             cls: 'btn btn-success roo-touch-view-ok',
16163                             html: 'OK'
16164                         }
16165                     }
16166                 ]
16167             }
16168         ]
16169         
16170     }
16171 });
16172
16173 Roo.apply(Roo.bootstrap.ComboBox,  {
16174     
16175     touchViewTemplate : {
16176         tag: 'div',
16177         cls: 'modal fade roo-combobox-touch-view',
16178         cn: [
16179             {
16180                 tag: 'div',
16181                 cls: 'modal-dialog',
16182                 style : 'position:fixed', // we have to fix position....
16183                 cn: [
16184                     {
16185                         tag: 'div',
16186                         cls: 'modal-content',
16187                         cn: [
16188                             Roo.bootstrap.ComboBox.header,
16189                             Roo.bootstrap.ComboBox.body,
16190                             Roo.bootstrap.ComboBox.footer
16191                         ]
16192                     }
16193                 ]
16194             }
16195         ]
16196     }
16197 });/*
16198  * Based on:
16199  * Ext JS Library 1.1.1
16200  * Copyright(c) 2006-2007, Ext JS, LLC.
16201  *
16202  * Originally Released Under LGPL - original licence link has changed is not relivant.
16203  *
16204  * Fork - LGPL
16205  * <script type="text/javascript">
16206  */
16207
16208 /**
16209  * @class Roo.View
16210  * @extends Roo.util.Observable
16211  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
16212  * This class also supports single and multi selection modes. <br>
16213  * Create a data model bound view:
16214  <pre><code>
16215  var store = new Roo.data.Store(...);
16216
16217  var view = new Roo.View({
16218     el : "my-element",
16219     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
16220  
16221     singleSelect: true,
16222     selectedClass: "ydataview-selected",
16223     store: store
16224  });
16225
16226  // listen for node click?
16227  view.on("click", function(vw, index, node, e){
16228  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
16229  });
16230
16231  // load XML data
16232  dataModel.load("foobar.xml");
16233  </code></pre>
16234  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
16235  * <br><br>
16236  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
16237  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
16238  * 
16239  * Note: old style constructor is still suported (container, template, config)
16240  * 
16241  * @constructor
16242  * Create a new View
16243  * @param {Object} config The config object
16244  * 
16245  */
16246 Roo.View = function(config, depreciated_tpl, depreciated_config){
16247     
16248     this.parent = false;
16249     
16250     if (typeof(depreciated_tpl) == 'undefined') {
16251         // new way.. - universal constructor.
16252         Roo.apply(this, config);
16253         this.el  = Roo.get(this.el);
16254     } else {
16255         // old format..
16256         this.el  = Roo.get(config);
16257         this.tpl = depreciated_tpl;
16258         Roo.apply(this, depreciated_config);
16259     }
16260     this.wrapEl  = this.el.wrap().wrap();
16261     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
16262     
16263     
16264     if(typeof(this.tpl) == "string"){
16265         this.tpl = new Roo.Template(this.tpl);
16266     } else {
16267         // support xtype ctors..
16268         this.tpl = new Roo.factory(this.tpl, Roo);
16269     }
16270     
16271     
16272     this.tpl.compile();
16273     
16274     /** @private */
16275     this.addEvents({
16276         /**
16277          * @event beforeclick
16278          * Fires before a click is processed. Returns false to cancel the default action.
16279          * @param {Roo.View} this
16280          * @param {Number} index The index of the target node
16281          * @param {HTMLElement} node The target node
16282          * @param {Roo.EventObject} e The raw event object
16283          */
16284             "beforeclick" : true,
16285         /**
16286          * @event click
16287          * Fires when a template node is clicked.
16288          * @param {Roo.View} this
16289          * @param {Number} index The index of the target node
16290          * @param {HTMLElement} node The target node
16291          * @param {Roo.EventObject} e The raw event object
16292          */
16293             "click" : true,
16294         /**
16295          * @event dblclick
16296          * Fires when a template node is double clicked.
16297          * @param {Roo.View} this
16298          * @param {Number} index The index of the target node
16299          * @param {HTMLElement} node The target node
16300          * @param {Roo.EventObject} e The raw event object
16301          */
16302             "dblclick" : true,
16303         /**
16304          * @event contextmenu
16305          * Fires when a template node is right clicked.
16306          * @param {Roo.View} this
16307          * @param {Number} index The index of the target node
16308          * @param {HTMLElement} node The target node
16309          * @param {Roo.EventObject} e The raw event object
16310          */
16311             "contextmenu" : true,
16312         /**
16313          * @event selectionchange
16314          * Fires when the selected nodes change.
16315          * @param {Roo.View} this
16316          * @param {Array} selections Array of the selected nodes
16317          */
16318             "selectionchange" : true,
16319     
16320         /**
16321          * @event beforeselect
16322          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
16323          * @param {Roo.View} this
16324          * @param {HTMLElement} node The node to be selected
16325          * @param {Array} selections Array of currently selected nodes
16326          */
16327             "beforeselect" : true,
16328         /**
16329          * @event preparedata
16330          * Fires on every row to render, to allow you to change the data.
16331          * @param {Roo.View} this
16332          * @param {Object} data to be rendered (change this)
16333          */
16334           "preparedata" : true
16335           
16336           
16337         });
16338
16339
16340
16341     this.el.on({
16342         "click": this.onClick,
16343         "dblclick": this.onDblClick,
16344         "contextmenu": this.onContextMenu,
16345         scope:this
16346     });
16347
16348     this.selections = [];
16349     this.nodes = [];
16350     this.cmp = new Roo.CompositeElementLite([]);
16351     if(this.store){
16352         this.store = Roo.factory(this.store, Roo.data);
16353         this.setStore(this.store, true);
16354     }
16355     
16356     if ( this.footer && this.footer.xtype) {
16357            
16358          var fctr = this.wrapEl.appendChild(document.createElement("div"));
16359         
16360         this.footer.dataSource = this.store;
16361         this.footer.container = fctr;
16362         this.footer = Roo.factory(this.footer, Roo);
16363         fctr.insertFirst(this.el);
16364         
16365         // this is a bit insane - as the paging toolbar seems to detach the el..
16366 //        dom.parentNode.parentNode.parentNode
16367          // they get detached?
16368     }
16369     
16370     
16371     Roo.View.superclass.constructor.call(this);
16372     
16373     
16374 };
16375
16376 Roo.extend(Roo.View, Roo.util.Observable, {
16377     
16378      /**
16379      * @cfg {Roo.data.Store} store Data store to load data from.
16380      */
16381     store : false,
16382     
16383     /**
16384      * @cfg {String|Roo.Element} el The container element.
16385      */
16386     el : '',
16387     
16388     /**
16389      * @cfg {String|Roo.Template} tpl The template used by this View 
16390      */
16391     tpl : false,
16392     /**
16393      * @cfg {String} dataName the named area of the template to use as the data area
16394      *                          Works with domtemplates roo-name="name"
16395      */
16396     dataName: false,
16397     /**
16398      * @cfg {String} selectedClass The css class to add to selected nodes
16399      */
16400     selectedClass : "x-view-selected",
16401      /**
16402      * @cfg {String} emptyText The empty text to show when nothing is loaded.
16403      */
16404     emptyText : "",
16405     
16406     /**
16407      * @cfg {String} text to display on mask (default Loading)
16408      */
16409     mask : false,
16410     /**
16411      * @cfg {Boolean} multiSelect Allow multiple selection
16412      */
16413     multiSelect : false,
16414     /**
16415      * @cfg {Boolean} singleSelect Allow single selection
16416      */
16417     singleSelect:  false,
16418     
16419     /**
16420      * @cfg {Boolean} toggleSelect - selecting 
16421      */
16422     toggleSelect : false,
16423     
16424     /**
16425      * @cfg {Boolean} tickable - selecting 
16426      */
16427     tickable : false,
16428     
16429     /**
16430      * Returns the element this view is bound to.
16431      * @return {Roo.Element}
16432      */
16433     getEl : function(){
16434         return this.wrapEl;
16435     },
16436     
16437     
16438
16439     /**
16440      * Refreshes the view. - called by datachanged on the store. - do not call directly.
16441      */
16442     refresh : function(){
16443         //Roo.log('refresh');
16444         var t = this.tpl;
16445         
16446         // if we are using something like 'domtemplate', then
16447         // the what gets used is:
16448         // t.applySubtemplate(NAME, data, wrapping data..)
16449         // the outer template then get' applied with
16450         //     the store 'extra data'
16451         // and the body get's added to the
16452         //      roo-name="data" node?
16453         //      <span class='roo-tpl-{name}'></span> ?????
16454         
16455         
16456         
16457         this.clearSelections();
16458         this.el.update("");
16459         var html = [];
16460         var records = this.store.getRange();
16461         if(records.length < 1) {
16462             
16463             // is this valid??  = should it render a template??
16464             
16465             this.el.update(this.emptyText);
16466             return;
16467         }
16468         var el = this.el;
16469         if (this.dataName) {
16470             this.el.update(t.apply(this.store.meta)); //????
16471             el = this.el.child('.roo-tpl-' + this.dataName);
16472         }
16473         
16474         for(var i = 0, len = records.length; i < len; i++){
16475             var data = this.prepareData(records[i].data, i, records[i]);
16476             this.fireEvent("preparedata", this, data, i, records[i]);
16477             
16478             var d = Roo.apply({}, data);
16479             
16480             if(this.tickable){
16481                 Roo.apply(d, {'roo-id' : Roo.id()});
16482                 
16483                 var _this = this;
16484             
16485                 Roo.each(this.parent.item, function(item){
16486                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
16487                         return;
16488                     }
16489                     Roo.apply(d, {'roo-data-checked' : 'checked'});
16490                 });
16491             }
16492             
16493             html[html.length] = Roo.util.Format.trim(
16494                 this.dataName ?
16495                     t.applySubtemplate(this.dataName, d, this.store.meta) :
16496                     t.apply(d)
16497             );
16498         }
16499         
16500         
16501         
16502         el.update(html.join(""));
16503         this.nodes = el.dom.childNodes;
16504         this.updateIndexes(0);
16505     },
16506     
16507
16508     /**
16509      * Function to override to reformat the data that is sent to
16510      * the template for each node.
16511      * DEPRICATED - use the preparedata event handler.
16512      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
16513      * a JSON object for an UpdateManager bound view).
16514      */
16515     prepareData : function(data, index, record)
16516     {
16517         this.fireEvent("preparedata", this, data, index, record);
16518         return data;
16519     },
16520
16521     onUpdate : function(ds, record){
16522         // Roo.log('on update');   
16523         this.clearSelections();
16524         var index = this.store.indexOf(record);
16525         var n = this.nodes[index];
16526         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
16527         n.parentNode.removeChild(n);
16528         this.updateIndexes(index, index);
16529     },
16530
16531     
16532     
16533 // --------- FIXME     
16534     onAdd : function(ds, records, index)
16535     {
16536         //Roo.log(['on Add', ds, records, index] );        
16537         this.clearSelections();
16538         if(this.nodes.length == 0){
16539             this.refresh();
16540             return;
16541         }
16542         var n = this.nodes[index];
16543         for(var i = 0, len = records.length; i < len; i++){
16544             var d = this.prepareData(records[i].data, i, records[i]);
16545             if(n){
16546                 this.tpl.insertBefore(n, d);
16547             }else{
16548                 
16549                 this.tpl.append(this.el, d);
16550             }
16551         }
16552         this.updateIndexes(index);
16553     },
16554
16555     onRemove : function(ds, record, index){
16556        // Roo.log('onRemove');
16557         this.clearSelections();
16558         var el = this.dataName  ?
16559             this.el.child('.roo-tpl-' + this.dataName) :
16560             this.el; 
16561         
16562         el.dom.removeChild(this.nodes[index]);
16563         this.updateIndexes(index);
16564     },
16565
16566     /**
16567      * Refresh an individual node.
16568      * @param {Number} index
16569      */
16570     refreshNode : function(index){
16571         this.onUpdate(this.store, this.store.getAt(index));
16572     },
16573
16574     updateIndexes : function(startIndex, endIndex){
16575         var ns = this.nodes;
16576         startIndex = startIndex || 0;
16577         endIndex = endIndex || ns.length - 1;
16578         for(var i = startIndex; i <= endIndex; i++){
16579             ns[i].nodeIndex = i;
16580         }
16581     },
16582
16583     /**
16584      * Changes the data store this view uses and refresh the view.
16585      * @param {Store} store
16586      */
16587     setStore : function(store, initial){
16588         if(!initial && this.store){
16589             this.store.un("datachanged", this.refresh);
16590             this.store.un("add", this.onAdd);
16591             this.store.un("remove", this.onRemove);
16592             this.store.un("update", this.onUpdate);
16593             this.store.un("clear", this.refresh);
16594             this.store.un("beforeload", this.onBeforeLoad);
16595             this.store.un("load", this.onLoad);
16596             this.store.un("loadexception", this.onLoad);
16597         }
16598         if(store){
16599           
16600             store.on("datachanged", this.refresh, this);
16601             store.on("add", this.onAdd, this);
16602             store.on("remove", this.onRemove, this);
16603             store.on("update", this.onUpdate, this);
16604             store.on("clear", this.refresh, this);
16605             store.on("beforeload", this.onBeforeLoad, this);
16606             store.on("load", this.onLoad, this);
16607             store.on("loadexception", this.onLoad, this);
16608         }
16609         
16610         if(store){
16611             this.refresh();
16612         }
16613     },
16614     /**
16615      * onbeforeLoad - masks the loading area.
16616      *
16617      */
16618     onBeforeLoad : function(store,opts)
16619     {
16620          //Roo.log('onBeforeLoad');   
16621         if (!opts.add) {
16622             this.el.update("");
16623         }
16624         this.el.mask(this.mask ? this.mask : "Loading" ); 
16625     },
16626     onLoad : function ()
16627     {
16628         this.el.unmask();
16629     },
16630     
16631
16632     /**
16633      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
16634      * @param {HTMLElement} node
16635      * @return {HTMLElement} The template node
16636      */
16637     findItemFromChild : function(node){
16638         var el = this.dataName  ?
16639             this.el.child('.roo-tpl-' + this.dataName,true) :
16640             this.el.dom; 
16641         
16642         if(!node || node.parentNode == el){
16643                     return node;
16644             }
16645             var p = node.parentNode;
16646             while(p && p != el){
16647             if(p.parentNode == el){
16648                 return p;
16649             }
16650             p = p.parentNode;
16651         }
16652             return null;
16653     },
16654
16655     /** @ignore */
16656     onClick : function(e){
16657         var item = this.findItemFromChild(e.getTarget());
16658         if(item){
16659             var index = this.indexOf(item);
16660             if(this.onItemClick(item, index, e) !== false){
16661                 this.fireEvent("click", this, index, item, e);
16662             }
16663         }else{
16664             this.clearSelections();
16665         }
16666     },
16667
16668     /** @ignore */
16669     onContextMenu : function(e){
16670         var item = this.findItemFromChild(e.getTarget());
16671         if(item){
16672             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
16673         }
16674     },
16675
16676     /** @ignore */
16677     onDblClick : function(e){
16678         var item = this.findItemFromChild(e.getTarget());
16679         if(item){
16680             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
16681         }
16682     },
16683
16684     onItemClick : function(item, index, e)
16685     {
16686         if(this.fireEvent("beforeclick", this, index, item, e) === false){
16687             return false;
16688         }
16689         if (this.toggleSelect) {
16690             var m = this.isSelected(item) ? 'unselect' : 'select';
16691             //Roo.log(m);
16692             var _t = this;
16693             _t[m](item, true, false);
16694             return true;
16695         }
16696         if(this.multiSelect || this.singleSelect){
16697             if(this.multiSelect && e.shiftKey && this.lastSelection){
16698                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
16699             }else{
16700                 this.select(item, this.multiSelect && e.ctrlKey);
16701                 this.lastSelection = item;
16702             }
16703             
16704             if(!this.tickable){
16705                 e.preventDefault();
16706             }
16707             
16708         }
16709         return true;
16710     },
16711
16712     /**
16713      * Get the number of selected nodes.
16714      * @return {Number}
16715      */
16716     getSelectionCount : function(){
16717         return this.selections.length;
16718     },
16719
16720     /**
16721      * Get the currently selected nodes.
16722      * @return {Array} An array of HTMLElements
16723      */
16724     getSelectedNodes : function(){
16725         return this.selections;
16726     },
16727
16728     /**
16729      * Get the indexes of the selected nodes.
16730      * @return {Array}
16731      */
16732     getSelectedIndexes : function(){
16733         var indexes = [], s = this.selections;
16734         for(var i = 0, len = s.length; i < len; i++){
16735             indexes.push(s[i].nodeIndex);
16736         }
16737         return indexes;
16738     },
16739
16740     /**
16741      * Clear all selections
16742      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
16743      */
16744     clearSelections : function(suppressEvent){
16745         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
16746             this.cmp.elements = this.selections;
16747             this.cmp.removeClass(this.selectedClass);
16748             this.selections = [];
16749             if(!suppressEvent){
16750                 this.fireEvent("selectionchange", this, this.selections);
16751             }
16752         }
16753     },
16754
16755     /**
16756      * Returns true if the passed node is selected
16757      * @param {HTMLElement/Number} node The node or node index
16758      * @return {Boolean}
16759      */
16760     isSelected : function(node){
16761         var s = this.selections;
16762         if(s.length < 1){
16763             return false;
16764         }
16765         node = this.getNode(node);
16766         return s.indexOf(node) !== -1;
16767     },
16768
16769     /**
16770      * Selects nodes.
16771      * @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
16772      * @param {Boolean} keepExisting (optional) true to keep existing selections
16773      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16774      */
16775     select : function(nodeInfo, keepExisting, suppressEvent){
16776         if(nodeInfo instanceof Array){
16777             if(!keepExisting){
16778                 this.clearSelections(true);
16779             }
16780             for(var i = 0, len = nodeInfo.length; i < len; i++){
16781                 this.select(nodeInfo[i], true, true);
16782             }
16783             return;
16784         } 
16785         var node = this.getNode(nodeInfo);
16786         if(!node || this.isSelected(node)){
16787             return; // already selected.
16788         }
16789         if(!keepExisting){
16790             this.clearSelections(true);
16791         }
16792         
16793         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
16794             Roo.fly(node).addClass(this.selectedClass);
16795             this.selections.push(node);
16796             if(!suppressEvent){
16797                 this.fireEvent("selectionchange", this, this.selections);
16798             }
16799         }
16800         
16801         
16802     },
16803       /**
16804      * Unselects nodes.
16805      * @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
16806      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
16807      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16808      */
16809     unselect : function(nodeInfo, keepExisting, suppressEvent)
16810     {
16811         if(nodeInfo instanceof Array){
16812             Roo.each(this.selections, function(s) {
16813                 this.unselect(s, nodeInfo);
16814             }, this);
16815             return;
16816         }
16817         var node = this.getNode(nodeInfo);
16818         if(!node || !this.isSelected(node)){
16819             //Roo.log("not selected");
16820             return; // not selected.
16821         }
16822         // fireevent???
16823         var ns = [];
16824         Roo.each(this.selections, function(s) {
16825             if (s == node ) {
16826                 Roo.fly(node).removeClass(this.selectedClass);
16827
16828                 return;
16829             }
16830             ns.push(s);
16831         },this);
16832         
16833         this.selections= ns;
16834         this.fireEvent("selectionchange", this, this.selections);
16835     },
16836
16837     /**
16838      * Gets a template node.
16839      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16840      * @return {HTMLElement} The node or null if it wasn't found
16841      */
16842     getNode : function(nodeInfo){
16843         if(typeof nodeInfo == "string"){
16844             return document.getElementById(nodeInfo);
16845         }else if(typeof nodeInfo == "number"){
16846             return this.nodes[nodeInfo];
16847         }
16848         return nodeInfo;
16849     },
16850
16851     /**
16852      * Gets a range template nodes.
16853      * @param {Number} startIndex
16854      * @param {Number} endIndex
16855      * @return {Array} An array of nodes
16856      */
16857     getNodes : function(start, end){
16858         var ns = this.nodes;
16859         start = start || 0;
16860         end = typeof end == "undefined" ? ns.length - 1 : end;
16861         var nodes = [];
16862         if(start <= end){
16863             for(var i = start; i <= end; i++){
16864                 nodes.push(ns[i]);
16865             }
16866         } else{
16867             for(var i = start; i >= end; i--){
16868                 nodes.push(ns[i]);
16869             }
16870         }
16871         return nodes;
16872     },
16873
16874     /**
16875      * Finds the index of the passed node
16876      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16877      * @return {Number} The index of the node or -1
16878      */
16879     indexOf : function(node){
16880         node = this.getNode(node);
16881         if(typeof node.nodeIndex == "number"){
16882             return node.nodeIndex;
16883         }
16884         var ns = this.nodes;
16885         for(var i = 0, len = ns.length; i < len; i++){
16886             if(ns[i] == node){
16887                 return i;
16888             }
16889         }
16890         return -1;
16891     }
16892 });
16893 /*
16894  * - LGPL
16895  *
16896  * based on jquery fullcalendar
16897  * 
16898  */
16899
16900 Roo.bootstrap = Roo.bootstrap || {};
16901 /**
16902  * @class Roo.bootstrap.Calendar
16903  * @extends Roo.bootstrap.Component
16904  * Bootstrap Calendar class
16905  * @cfg {Boolean} loadMask (true|false) default false
16906  * @cfg {Object} header generate the user specific header of the calendar, default false
16907
16908  * @constructor
16909  * Create a new Container
16910  * @param {Object} config The config object
16911  */
16912
16913
16914
16915 Roo.bootstrap.Calendar = function(config){
16916     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
16917      this.addEvents({
16918         /**
16919              * @event select
16920              * Fires when a date is selected
16921              * @param {DatePicker} this
16922              * @param {Date} date The selected date
16923              */
16924         'select': true,
16925         /**
16926              * @event monthchange
16927              * Fires when the displayed month changes 
16928              * @param {DatePicker} this
16929              * @param {Date} date The selected month
16930              */
16931         'monthchange': true,
16932         /**
16933              * @event evententer
16934              * Fires when mouse over an event
16935              * @param {Calendar} this
16936              * @param {event} Event
16937              */
16938         'evententer': true,
16939         /**
16940              * @event eventleave
16941              * Fires when the mouse leaves an
16942              * @param {Calendar} this
16943              * @param {event}
16944              */
16945         'eventleave': true,
16946         /**
16947              * @event eventclick
16948              * Fires when the mouse click an
16949              * @param {Calendar} this
16950              * @param {event}
16951              */
16952         'eventclick': true
16953         
16954     });
16955
16956 };
16957
16958 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
16959     
16960      /**
16961      * @cfg {Number} startDay
16962      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
16963      */
16964     startDay : 0,
16965     
16966     loadMask : false,
16967     
16968     header : false,
16969       
16970     getAutoCreate : function(){
16971         
16972         
16973         var fc_button = function(name, corner, style, content ) {
16974             return Roo.apply({},{
16975                 tag : 'span',
16976                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
16977                          (corner.length ?
16978                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
16979                             ''
16980                         ),
16981                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
16982                 unselectable: 'on'
16983             });
16984         };
16985         
16986         var header = {};
16987         
16988         if(!this.header){
16989             header = {
16990                 tag : 'table',
16991                 cls : 'fc-header',
16992                 style : 'width:100%',
16993                 cn : [
16994                     {
16995                         tag: 'tr',
16996                         cn : [
16997                             {
16998                                 tag : 'td',
16999                                 cls : 'fc-header-left',
17000                                 cn : [
17001                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
17002                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
17003                                     { tag: 'span', cls: 'fc-header-space' },
17004                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
17005
17006
17007                                 ]
17008                             },
17009
17010                             {
17011                                 tag : 'td',
17012                                 cls : 'fc-header-center',
17013                                 cn : [
17014                                     {
17015                                         tag: 'span',
17016                                         cls: 'fc-header-title',
17017                                         cn : {
17018                                             tag: 'H2',
17019                                             html : 'month / year'
17020                                         }
17021                                     }
17022
17023                                 ]
17024                             },
17025                             {
17026                                 tag : 'td',
17027                                 cls : 'fc-header-right',
17028                                 cn : [
17029                               /*      fc_button('month', 'left', '', 'month' ),
17030                                     fc_button('week', '', '', 'week' ),
17031                                     fc_button('day', 'right', '', 'day' )
17032                                 */    
17033
17034                                 ]
17035                             }
17036
17037                         ]
17038                     }
17039                 ]
17040             };
17041         }
17042         
17043         header = this.header;
17044         
17045        
17046         var cal_heads = function() {
17047             var ret = [];
17048             // fixme - handle this.
17049             
17050             for (var i =0; i < Date.dayNames.length; i++) {
17051                 var d = Date.dayNames[i];
17052                 ret.push({
17053                     tag: 'th',
17054                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
17055                     html : d.substring(0,3)
17056                 });
17057                 
17058             }
17059             ret[0].cls += ' fc-first';
17060             ret[6].cls += ' fc-last';
17061             return ret;
17062         };
17063         var cal_cell = function(n) {
17064             return  {
17065                 tag: 'td',
17066                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
17067                 cn : [
17068                     {
17069                         cn : [
17070                             {
17071                                 cls: 'fc-day-number',
17072                                 html: 'D'
17073                             },
17074                             {
17075                                 cls: 'fc-day-content',
17076                              
17077                                 cn : [
17078                                      {
17079                                         style: 'position: relative;' // height: 17px;
17080                                     }
17081                                 ]
17082                             }
17083                             
17084                             
17085                         ]
17086                     }
17087                 ]
17088                 
17089             }
17090         };
17091         var cal_rows = function() {
17092             
17093             var ret = [];
17094             for (var r = 0; r < 6; r++) {
17095                 var row= {
17096                     tag : 'tr',
17097                     cls : 'fc-week',
17098                     cn : []
17099                 };
17100                 
17101                 for (var i =0; i < Date.dayNames.length; i++) {
17102                     var d = Date.dayNames[i];
17103                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
17104
17105                 }
17106                 row.cn[0].cls+=' fc-first';
17107                 row.cn[0].cn[0].style = 'min-height:90px';
17108                 row.cn[6].cls+=' fc-last';
17109                 ret.push(row);
17110                 
17111             }
17112             ret[0].cls += ' fc-first';
17113             ret[4].cls += ' fc-prev-last';
17114             ret[5].cls += ' fc-last';
17115             return ret;
17116             
17117         };
17118         
17119         var cal_table = {
17120             tag: 'table',
17121             cls: 'fc-border-separate',
17122             style : 'width:100%',
17123             cellspacing  : 0,
17124             cn : [
17125                 { 
17126                     tag: 'thead',
17127                     cn : [
17128                         { 
17129                             tag: 'tr',
17130                             cls : 'fc-first fc-last',
17131                             cn : cal_heads()
17132                         }
17133                     ]
17134                 },
17135                 { 
17136                     tag: 'tbody',
17137                     cn : cal_rows()
17138                 }
17139                   
17140             ]
17141         };
17142          
17143          var cfg = {
17144             cls : 'fc fc-ltr',
17145             cn : [
17146                 header,
17147                 {
17148                     cls : 'fc-content',
17149                     style : "position: relative;",
17150                     cn : [
17151                         {
17152                             cls : 'fc-view fc-view-month fc-grid',
17153                             style : 'position: relative',
17154                             unselectable : 'on',
17155                             cn : [
17156                                 {
17157                                     cls : 'fc-event-container',
17158                                     style : 'position:absolute;z-index:8;top:0;left:0;'
17159                                 },
17160                                 cal_table
17161                             ]
17162                         }
17163                     ]
17164     
17165                 }
17166            ] 
17167             
17168         };
17169         
17170          
17171         
17172         return cfg;
17173     },
17174     
17175     
17176     initEvents : function()
17177     {
17178         if(!this.store){
17179             throw "can not find store for calendar";
17180         }
17181         
17182         var mark = {
17183             tag: "div",
17184             cls:"x-dlg-mask",
17185             style: "text-align:center",
17186             cn: [
17187                 {
17188                     tag: "div",
17189                     style: "background-color:white;width:50%;margin:250 auto",
17190                     cn: [
17191                         {
17192                             tag: "img",
17193                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
17194                         },
17195                         {
17196                             tag: "span",
17197                             html: "Loading"
17198                         }
17199                         
17200                     ]
17201                 }
17202             ]
17203         };
17204         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
17205         
17206         var size = this.el.select('.fc-content', true).first().getSize();
17207         this.maskEl.setSize(size.width, size.height);
17208         this.maskEl.enableDisplayMode("block");
17209         if(!this.loadMask){
17210             this.maskEl.hide();
17211         }
17212         
17213         this.store = Roo.factory(this.store, Roo.data);
17214         this.store.on('load', this.onLoad, this);
17215         this.store.on('beforeload', this.onBeforeLoad, this);
17216         
17217         this.resize();
17218         
17219         this.cells = this.el.select('.fc-day',true);
17220         //Roo.log(this.cells);
17221         this.textNodes = this.el.query('.fc-day-number');
17222         this.cells.addClassOnOver('fc-state-hover');
17223         
17224         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
17225         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
17226         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
17227         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
17228         
17229         this.on('monthchange', this.onMonthChange, this);
17230         
17231         this.update(new Date().clearTime());
17232     },
17233     
17234     resize : function() {
17235         var sz  = this.el.getSize();
17236         
17237         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
17238         this.el.select('.fc-day-content div',true).setHeight(34);
17239     },
17240     
17241     
17242     // private
17243     showPrevMonth : function(e){
17244         this.update(this.activeDate.add("mo", -1));
17245     },
17246     showToday : function(e){
17247         this.update(new Date().clearTime());
17248     },
17249     // private
17250     showNextMonth : function(e){
17251         this.update(this.activeDate.add("mo", 1));
17252     },
17253
17254     // private
17255     showPrevYear : function(){
17256         this.update(this.activeDate.add("y", -1));
17257     },
17258
17259     // private
17260     showNextYear : function(){
17261         this.update(this.activeDate.add("y", 1));
17262     },
17263
17264     
17265    // private
17266     update : function(date)
17267     {
17268         var vd = this.activeDate;
17269         this.activeDate = date;
17270 //        if(vd && this.el){
17271 //            var t = date.getTime();
17272 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
17273 //                Roo.log('using add remove');
17274 //                
17275 //                this.fireEvent('monthchange', this, date);
17276 //                
17277 //                this.cells.removeClass("fc-state-highlight");
17278 //                this.cells.each(function(c){
17279 //                   if(c.dateValue == t){
17280 //                       c.addClass("fc-state-highlight");
17281 //                       setTimeout(function(){
17282 //                            try{c.dom.firstChild.focus();}catch(e){}
17283 //                       }, 50);
17284 //                       return false;
17285 //                   }
17286 //                   return true;
17287 //                });
17288 //                return;
17289 //            }
17290 //        }
17291         
17292         var days = date.getDaysInMonth();
17293         
17294         var firstOfMonth = date.getFirstDateOfMonth();
17295         var startingPos = firstOfMonth.getDay()-this.startDay;
17296         
17297         if(startingPos < this.startDay){
17298             startingPos += 7;
17299         }
17300         
17301         var pm = date.add(Date.MONTH, -1);
17302         var prevStart = pm.getDaysInMonth()-startingPos;
17303 //        
17304         this.cells = this.el.select('.fc-day',true);
17305         this.textNodes = this.el.query('.fc-day-number');
17306         this.cells.addClassOnOver('fc-state-hover');
17307         
17308         var cells = this.cells.elements;
17309         var textEls = this.textNodes;
17310         
17311         Roo.each(cells, function(cell){
17312             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
17313         });
17314         
17315         days += startingPos;
17316
17317         // convert everything to numbers so it's fast
17318         var day = 86400000;
17319         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
17320         //Roo.log(d);
17321         //Roo.log(pm);
17322         //Roo.log(prevStart);
17323         
17324         var today = new Date().clearTime().getTime();
17325         var sel = date.clearTime().getTime();
17326         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
17327         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
17328         var ddMatch = this.disabledDatesRE;
17329         var ddText = this.disabledDatesText;
17330         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
17331         var ddaysText = this.disabledDaysText;
17332         var format = this.format;
17333         
17334         var setCellClass = function(cal, cell){
17335             cell.row = 0;
17336             cell.events = [];
17337             cell.more = [];
17338             //Roo.log('set Cell Class');
17339             cell.title = "";
17340             var t = d.getTime();
17341             
17342             //Roo.log(d);
17343             
17344             cell.dateValue = t;
17345             if(t == today){
17346                 cell.className += " fc-today";
17347                 cell.className += " fc-state-highlight";
17348                 cell.title = cal.todayText;
17349             }
17350             if(t == sel){
17351                 // disable highlight in other month..
17352                 //cell.className += " fc-state-highlight";
17353                 
17354             }
17355             // disabling
17356             if(t < min) {
17357                 cell.className = " fc-state-disabled";
17358                 cell.title = cal.minText;
17359                 return;
17360             }
17361             if(t > max) {
17362                 cell.className = " fc-state-disabled";
17363                 cell.title = cal.maxText;
17364                 return;
17365             }
17366             if(ddays){
17367                 if(ddays.indexOf(d.getDay()) != -1){
17368                     cell.title = ddaysText;
17369                     cell.className = " fc-state-disabled";
17370                 }
17371             }
17372             if(ddMatch && format){
17373                 var fvalue = d.dateFormat(format);
17374                 if(ddMatch.test(fvalue)){
17375                     cell.title = ddText.replace("%0", fvalue);
17376                     cell.className = " fc-state-disabled";
17377                 }
17378             }
17379             
17380             if (!cell.initialClassName) {
17381                 cell.initialClassName = cell.dom.className;
17382             }
17383             
17384             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
17385         };
17386
17387         var i = 0;
17388         
17389         for(; i < startingPos; i++) {
17390             textEls[i].innerHTML = (++prevStart);
17391             d.setDate(d.getDate()+1);
17392             
17393             cells[i].className = "fc-past fc-other-month";
17394             setCellClass(this, cells[i]);
17395         }
17396         
17397         var intDay = 0;
17398         
17399         for(; i < days; i++){
17400             intDay = i - startingPos + 1;
17401             textEls[i].innerHTML = (intDay);
17402             d.setDate(d.getDate()+1);
17403             
17404             cells[i].className = ''; // "x-date-active";
17405             setCellClass(this, cells[i]);
17406         }
17407         var extraDays = 0;
17408         
17409         for(; i < 42; i++) {
17410             textEls[i].innerHTML = (++extraDays);
17411             d.setDate(d.getDate()+1);
17412             
17413             cells[i].className = "fc-future fc-other-month";
17414             setCellClass(this, cells[i]);
17415         }
17416         
17417         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
17418         
17419         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
17420         
17421         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
17422         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
17423         
17424         if(totalRows != 6){
17425             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
17426             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
17427         }
17428         
17429         this.fireEvent('monthchange', this, date);
17430         
17431         
17432         /*
17433         if(!this.internalRender){
17434             var main = this.el.dom.firstChild;
17435             var w = main.offsetWidth;
17436             this.el.setWidth(w + this.el.getBorderWidth("lr"));
17437             Roo.fly(main).setWidth(w);
17438             this.internalRender = true;
17439             // opera does not respect the auto grow header center column
17440             // then, after it gets a width opera refuses to recalculate
17441             // without a second pass
17442             if(Roo.isOpera && !this.secondPass){
17443                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
17444                 this.secondPass = true;
17445                 this.update.defer(10, this, [date]);
17446             }
17447         }
17448         */
17449         
17450     },
17451     
17452     findCell : function(dt) {
17453         dt = dt.clearTime().getTime();
17454         var ret = false;
17455         this.cells.each(function(c){
17456             //Roo.log("check " +c.dateValue + '?=' + dt);
17457             if(c.dateValue == dt){
17458                 ret = c;
17459                 return false;
17460             }
17461             return true;
17462         });
17463         
17464         return ret;
17465     },
17466     
17467     findCells : function(ev) {
17468         var s = ev.start.clone().clearTime().getTime();
17469        // Roo.log(s);
17470         var e= ev.end.clone().clearTime().getTime();
17471        // Roo.log(e);
17472         var ret = [];
17473         this.cells.each(function(c){
17474              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
17475             
17476             if(c.dateValue > e){
17477                 return ;
17478             }
17479             if(c.dateValue < s){
17480                 return ;
17481             }
17482             ret.push(c);
17483         });
17484         
17485         return ret;    
17486     },
17487     
17488 //    findBestRow: function(cells)
17489 //    {
17490 //        var ret = 0;
17491 //        
17492 //        for (var i =0 ; i < cells.length;i++) {
17493 //            ret  = Math.max(cells[i].rows || 0,ret);
17494 //        }
17495 //        return ret;
17496 //        
17497 //    },
17498     
17499     
17500     addItem : function(ev)
17501     {
17502         // look for vertical location slot in
17503         var cells = this.findCells(ev);
17504         
17505 //        ev.row = this.findBestRow(cells);
17506         
17507         // work out the location.
17508         
17509         var crow = false;
17510         var rows = [];
17511         for(var i =0; i < cells.length; i++) {
17512             
17513             cells[i].row = cells[0].row;
17514             
17515             if(i == 0){
17516                 cells[i].row = cells[i].row + 1;
17517             }
17518             
17519             if (!crow) {
17520                 crow = {
17521                     start : cells[i],
17522                     end :  cells[i]
17523                 };
17524                 continue;
17525             }
17526             if (crow.start.getY() == cells[i].getY()) {
17527                 // on same row.
17528                 crow.end = cells[i];
17529                 continue;
17530             }
17531             // different row.
17532             rows.push(crow);
17533             crow = {
17534                 start: cells[i],
17535                 end : cells[i]
17536             };
17537             
17538         }
17539         
17540         rows.push(crow);
17541         ev.els = [];
17542         ev.rows = rows;
17543         ev.cells = cells;
17544         
17545         cells[0].events.push(ev);
17546         
17547         this.calevents.push(ev);
17548     },
17549     
17550     clearEvents: function() {
17551         
17552         if(!this.calevents){
17553             return;
17554         }
17555         
17556         Roo.each(this.cells.elements, function(c){
17557             c.row = 0;
17558             c.events = [];
17559             c.more = [];
17560         });
17561         
17562         Roo.each(this.calevents, function(e) {
17563             Roo.each(e.els, function(el) {
17564                 el.un('mouseenter' ,this.onEventEnter, this);
17565                 el.un('mouseleave' ,this.onEventLeave, this);
17566                 el.remove();
17567             },this);
17568         },this);
17569         
17570         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
17571             e.remove();
17572         });
17573         
17574     },
17575     
17576     renderEvents: function()
17577     {   
17578         var _this = this;
17579         
17580         this.cells.each(function(c) {
17581             
17582             if(c.row < 5){
17583                 return;
17584             }
17585             
17586             var ev = c.events;
17587             
17588             var r = 4;
17589             if(c.row != c.events.length){
17590                 r = 4 - (4 - (c.row - c.events.length));
17591             }
17592             
17593             c.events = ev.slice(0, r);
17594             c.more = ev.slice(r);
17595             
17596             if(c.more.length && c.more.length == 1){
17597                 c.events.push(c.more.pop());
17598             }
17599             
17600             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
17601             
17602         });
17603             
17604         this.cells.each(function(c) {
17605             
17606             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
17607             
17608             
17609             for (var e = 0; e < c.events.length; e++){
17610                 var ev = c.events[e];
17611                 var rows = ev.rows;
17612                 
17613                 for(var i = 0; i < rows.length; i++) {
17614                 
17615                     // how many rows should it span..
17616
17617                     var  cfg = {
17618                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
17619                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
17620
17621                         unselectable : "on",
17622                         cn : [
17623                             {
17624                                 cls: 'fc-event-inner',
17625                                 cn : [
17626     //                                {
17627     //                                  tag:'span',
17628     //                                  cls: 'fc-event-time',
17629     //                                  html : cells.length > 1 ? '' : ev.time
17630     //                                },
17631                                     {
17632                                       tag:'span',
17633                                       cls: 'fc-event-title',
17634                                       html : String.format('{0}', ev.title)
17635                                     }
17636
17637
17638                                 ]
17639                             },
17640                             {
17641                                 cls: 'ui-resizable-handle ui-resizable-e',
17642                                 html : '&nbsp;&nbsp;&nbsp'
17643                             }
17644
17645                         ]
17646                     };
17647
17648                     if (i == 0) {
17649                         cfg.cls += ' fc-event-start';
17650                     }
17651                     if ((i+1) == rows.length) {
17652                         cfg.cls += ' fc-event-end';
17653                     }
17654
17655                     var ctr = _this.el.select('.fc-event-container',true).first();
17656                     var cg = ctr.createChild(cfg);
17657
17658                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
17659                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
17660
17661                     var r = (c.more.length) ? 1 : 0;
17662                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
17663                     cg.setWidth(ebox.right - sbox.x -2);
17664
17665                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
17666                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
17667                     cg.on('click', _this.onEventClick, _this, ev);
17668
17669                     ev.els.push(cg);
17670                     
17671                 }
17672                 
17673             }
17674             
17675             
17676             if(c.more.length){
17677                 var  cfg = {
17678                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
17679                     style : 'position: absolute',
17680                     unselectable : "on",
17681                     cn : [
17682                         {
17683                             cls: 'fc-event-inner',
17684                             cn : [
17685                                 {
17686                                   tag:'span',
17687                                   cls: 'fc-event-title',
17688                                   html : 'More'
17689                                 }
17690
17691
17692                             ]
17693                         },
17694                         {
17695                             cls: 'ui-resizable-handle ui-resizable-e',
17696                             html : '&nbsp;&nbsp;&nbsp'
17697                         }
17698
17699                     ]
17700                 };
17701
17702                 var ctr = _this.el.select('.fc-event-container',true).first();
17703                 var cg = ctr.createChild(cfg);
17704
17705                 var sbox = c.select('.fc-day-content',true).first().getBox();
17706                 var ebox = c.select('.fc-day-content',true).first().getBox();
17707                 //Roo.log(cg);
17708                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
17709                 cg.setWidth(ebox.right - sbox.x -2);
17710
17711                 cg.on('click', _this.onMoreEventClick, _this, c.more);
17712                 
17713             }
17714             
17715         });
17716         
17717         
17718         
17719     },
17720     
17721     onEventEnter: function (e, el,event,d) {
17722         this.fireEvent('evententer', this, el, event);
17723     },
17724     
17725     onEventLeave: function (e, el,event,d) {
17726         this.fireEvent('eventleave', this, el, event);
17727     },
17728     
17729     onEventClick: function (e, el,event,d) {
17730         this.fireEvent('eventclick', this, el, event);
17731     },
17732     
17733     onMonthChange: function () {
17734         this.store.load();
17735     },
17736     
17737     onMoreEventClick: function(e, el, more)
17738     {
17739         var _this = this;
17740         
17741         this.calpopover.placement = 'right';
17742         this.calpopover.setTitle('More');
17743         
17744         this.calpopover.setContent('');
17745         
17746         var ctr = this.calpopover.el.select('.popover-content', true).first();
17747         
17748         Roo.each(more, function(m){
17749             var cfg = {
17750                 cls : 'fc-event-hori fc-event-draggable',
17751                 html : m.title
17752             };
17753             var cg = ctr.createChild(cfg);
17754             
17755             cg.on('click', _this.onEventClick, _this, m);
17756         });
17757         
17758         this.calpopover.show(el);
17759         
17760         
17761     },
17762     
17763     onLoad: function () 
17764     {   
17765         this.calevents = [];
17766         var cal = this;
17767         
17768         if(this.store.getCount() > 0){
17769             this.store.data.each(function(d){
17770                cal.addItem({
17771                     id : d.data.id,
17772                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
17773                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
17774                     time : d.data.start_time,
17775                     title : d.data.title,
17776                     description : d.data.description,
17777                     venue : d.data.venue
17778                 });
17779             });
17780         }
17781         
17782         this.renderEvents();
17783         
17784         if(this.calevents.length && this.loadMask){
17785             this.maskEl.hide();
17786         }
17787     },
17788     
17789     onBeforeLoad: function()
17790     {
17791         this.clearEvents();
17792         if(this.loadMask){
17793             this.maskEl.show();
17794         }
17795     }
17796 });
17797
17798  
17799  /*
17800  * - LGPL
17801  *
17802  * element
17803  * 
17804  */
17805
17806 /**
17807  * @class Roo.bootstrap.Popover
17808  * @extends Roo.bootstrap.Component
17809  * Bootstrap Popover class
17810  * @cfg {String} html contents of the popover   (or false to use children..)
17811  * @cfg {String} title of popover (or false to hide)
17812  * @cfg {String} placement how it is placed
17813  * @cfg {String} trigger click || hover (or false to trigger manually)
17814  * @cfg {String} over what (parent or false to trigger manually.)
17815  * @cfg {Number} delay - delay before showing
17816  
17817  * @constructor
17818  * Create a new Popover
17819  * @param {Object} config The config object
17820  */
17821
17822 Roo.bootstrap.Popover = function(config){
17823     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
17824     
17825     this.addEvents({
17826         // raw events
17827          /**
17828          * @event show
17829          * After the popover show
17830          * 
17831          * @param {Roo.bootstrap.Popover} this
17832          */
17833         "show" : true,
17834         /**
17835          * @event hide
17836          * After the popover hide
17837          * 
17838          * @param {Roo.bootstrap.Popover} this
17839          */
17840         "hide" : true
17841     });
17842 };
17843
17844 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
17845     
17846     title: 'Fill in a title',
17847     html: false,
17848     
17849     placement : 'right',
17850     trigger : 'hover', // hover
17851     
17852     delay : 0,
17853     
17854     over: 'parent',
17855     
17856     can_build_overlaid : false,
17857     
17858     getChildContainer : function()
17859     {
17860         return this.el.select('.popover-content',true).first();
17861     },
17862     
17863     getAutoCreate : function(){
17864          
17865         var cfg = {
17866            cls : 'popover roo-dynamic',
17867            style: 'display:block',
17868            cn : [
17869                 {
17870                     cls : 'arrow'
17871                 },
17872                 {
17873                     cls : 'popover-inner',
17874                     cn : [
17875                         {
17876                             tag: 'h3',
17877                             cls: 'popover-title popover-header',
17878                             html : this.title
17879                         },
17880                         {
17881                             cls : 'popover-content popover-body',
17882                             html : this.html
17883                         }
17884                     ]
17885                     
17886                 }
17887            ]
17888         };
17889         
17890         return cfg;
17891     },
17892     setTitle: function(str)
17893     {
17894         this.title = str;
17895         this.el.select('.popover-title',true).first().dom.innerHTML = str;
17896     },
17897     setContent: function(str)
17898     {
17899         this.html = str;
17900         this.el.select('.popover-content',true).first().dom.innerHTML = str;
17901     },
17902     // as it get's added to the bottom of the page.
17903     onRender : function(ct, position)
17904     {
17905         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
17906         if(!this.el){
17907             var cfg = Roo.apply({},  this.getAutoCreate());
17908             cfg.id = Roo.id();
17909             
17910             if (this.cls) {
17911                 cfg.cls += ' ' + this.cls;
17912             }
17913             if (this.style) {
17914                 cfg.style = this.style;
17915             }
17916             //Roo.log("adding to ");
17917             this.el = Roo.get(document.body).createChild(cfg, position);
17918 //            Roo.log(this.el);
17919         }
17920         this.initEvents();
17921     },
17922     
17923     initEvents : function()
17924     {
17925         this.el.select('.popover-title',true).setVisibilityMode(Roo.Element.DISPLAY);
17926         this.el.enableDisplayMode('block');
17927         this.el.hide();
17928         if (this.over === false) {
17929             return; 
17930         }
17931         if (this.triggers === false) {
17932             return;
17933         }
17934         var on_el = (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
17935         var triggers = this.trigger ? this.trigger.split(' ') : [];
17936         Roo.each(triggers, function(trigger) {
17937         
17938             if (trigger == 'click') {
17939                 on_el.on('click', this.toggle, this);
17940             } else if (trigger != 'manual') {
17941                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin';
17942                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout';
17943       
17944                 on_el.on(eventIn  ,this.enter, this);
17945                 on_el.on(eventOut, this.leave, this);
17946             }
17947         }, this);
17948         
17949     },
17950     
17951     
17952     // private
17953     timeout : null,
17954     hoverState : null,
17955     
17956     toggle : function () {
17957         this.hoverState == 'in' ? this.leave() : this.enter();
17958     },
17959     
17960     enter : function () {
17961         
17962         clearTimeout(this.timeout);
17963     
17964         this.hoverState = 'in';
17965     
17966         if (!this.delay || !this.delay.show) {
17967             this.show();
17968             return;
17969         }
17970         var _t = this;
17971         this.timeout = setTimeout(function () {
17972             if (_t.hoverState == 'in') {
17973                 _t.show();
17974             }
17975         }, this.delay.show)
17976     },
17977     
17978     leave : function() {
17979         clearTimeout(this.timeout);
17980     
17981         this.hoverState = 'out';
17982     
17983         if (!this.delay || !this.delay.hide) {
17984             this.hide();
17985             return;
17986         }
17987         var _t = this;
17988         this.timeout = setTimeout(function () {
17989             if (_t.hoverState == 'out') {
17990                 _t.hide();
17991             }
17992         }, this.delay.hide)
17993     },
17994     
17995     show : function (on_el)
17996     {
17997         if (!on_el) {
17998             on_el= (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
17999         }
18000         
18001         // set content.
18002         this.el.select('.popover-title',true).first().dom.innerHtml = this.title;
18003         if (this.html !== false) {
18004             this.el.select('.popover-content',true).first().dom.innerHtml = this.html;
18005         }
18006         this.el.removeClass([
18007             'fade','top','bottom', 'left', 'right','in',
18008             'bs-popover-top','bs-popover-bottom', 'bs-popover-left', 'bs-popover-right'
18009         ]);
18010         if (!this.title.length) {
18011             this.el.select('.popover-title',true).hide();
18012         }
18013         
18014         var placement = typeof this.placement == 'function' ?
18015             this.placement.call(this, this.el, on_el) :
18016             this.placement;
18017             
18018         var autoToken = /\s?auto?\s?/i;
18019         var autoPlace = autoToken.test(placement);
18020         if (autoPlace) {
18021             placement = placement.replace(autoToken, '') || 'top';
18022         }
18023         
18024         //this.el.detach()
18025         //this.el.setXY([0,0]);
18026         this.el.show();
18027         this.el.dom.style.display='block';
18028         this.el.addClass(placement);
18029         
18030         //this.el.appendTo(on_el);
18031         
18032         var p = this.getPosition();
18033         var box = this.el.getBox();
18034         
18035         if (autoPlace) {
18036             // fixme..
18037         }
18038         var align = Roo.bootstrap.Popover.alignment[placement];
18039         
18040 //        Roo.log(align);
18041         this.el.alignTo(on_el, align[0],align[1]);
18042         //var arrow = this.el.select('.arrow',true).first();
18043         //arrow.set(align[2], 
18044         
18045         this.el.addClass('in');
18046         
18047         
18048         if (this.el.hasClass('fade')) {
18049             // fade it?
18050         }
18051         
18052         this.hoverState = 'in';
18053         
18054         this.fireEvent('show', this);
18055         
18056     },
18057     hide : function()
18058     {
18059         this.el.setXY([0,0]);
18060         this.el.removeClass('in');
18061         this.el.hide();
18062         this.hoverState = null;
18063         
18064         this.fireEvent('hide', this);
18065     }
18066     
18067 });
18068
18069 Roo.bootstrap.Popover.alignment = {
18070     'left' : ['r-l', [-10,0], 'right bs-popover-right'],
18071     'right' : ['l-r', [10,0], 'left bs-popover-left'],
18072     'bottom' : ['t-b', [0,10], 'top bs-popover-top'],
18073     'top' : [ 'b-t', [0,-10], 'bottom bs-popover-bottom']
18074 };
18075
18076  /*
18077  * - LGPL
18078  *
18079  * Progress
18080  * 
18081  */
18082
18083 /**
18084  * @class Roo.bootstrap.Progress
18085  * @extends Roo.bootstrap.Component
18086  * Bootstrap Progress class
18087  * @cfg {Boolean} striped striped of the progress bar
18088  * @cfg {Boolean} active animated of the progress bar
18089  * 
18090  * 
18091  * @constructor
18092  * Create a new Progress
18093  * @param {Object} config The config object
18094  */
18095
18096 Roo.bootstrap.Progress = function(config){
18097     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
18098 };
18099
18100 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
18101     
18102     striped : false,
18103     active: false,
18104     
18105     getAutoCreate : function(){
18106         var cfg = {
18107             tag: 'div',
18108             cls: 'progress'
18109         };
18110         
18111         
18112         if(this.striped){
18113             cfg.cls += ' progress-striped';
18114         }
18115       
18116         if(this.active){
18117             cfg.cls += ' active';
18118         }
18119         
18120         
18121         return cfg;
18122     }
18123    
18124 });
18125
18126  
18127
18128  /*
18129  * - LGPL
18130  *
18131  * ProgressBar
18132  * 
18133  */
18134
18135 /**
18136  * @class Roo.bootstrap.ProgressBar
18137  * @extends Roo.bootstrap.Component
18138  * Bootstrap ProgressBar class
18139  * @cfg {Number} aria_valuenow aria-value now
18140  * @cfg {Number} aria_valuemin aria-value min
18141  * @cfg {Number} aria_valuemax aria-value max
18142  * @cfg {String} label label for the progress bar
18143  * @cfg {String} panel (success | info | warning | danger )
18144  * @cfg {String} role role of the progress bar
18145  * @cfg {String} sr_only text
18146  * 
18147  * 
18148  * @constructor
18149  * Create a new ProgressBar
18150  * @param {Object} config The config object
18151  */
18152
18153 Roo.bootstrap.ProgressBar = function(config){
18154     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
18155 };
18156
18157 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
18158     
18159     aria_valuenow : 0,
18160     aria_valuemin : 0,
18161     aria_valuemax : 100,
18162     label : false,
18163     panel : false,
18164     role : false,
18165     sr_only: false,
18166     
18167     getAutoCreate : function()
18168     {
18169         
18170         var cfg = {
18171             tag: 'div',
18172             cls: 'progress-bar',
18173             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
18174         };
18175         
18176         if(this.sr_only){
18177             cfg.cn = {
18178                 tag: 'span',
18179                 cls: 'sr-only',
18180                 html: this.sr_only
18181             }
18182         }
18183         
18184         if(this.role){
18185             cfg.role = this.role;
18186         }
18187         
18188         if(this.aria_valuenow){
18189             cfg['aria-valuenow'] = this.aria_valuenow;
18190         }
18191         
18192         if(this.aria_valuemin){
18193             cfg['aria-valuemin'] = this.aria_valuemin;
18194         }
18195         
18196         if(this.aria_valuemax){
18197             cfg['aria-valuemax'] = this.aria_valuemax;
18198         }
18199         
18200         if(this.label && !this.sr_only){
18201             cfg.html = this.label;
18202         }
18203         
18204         if(this.panel){
18205             cfg.cls += ' progress-bar-' + this.panel;
18206         }
18207         
18208         return cfg;
18209     },
18210     
18211     update : function(aria_valuenow)
18212     {
18213         this.aria_valuenow = aria_valuenow;
18214         
18215         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
18216     }
18217    
18218 });
18219
18220  
18221
18222  /*
18223  * - LGPL
18224  *
18225  * column
18226  * 
18227  */
18228
18229 /**
18230  * @class Roo.bootstrap.TabGroup
18231  * @extends Roo.bootstrap.Column
18232  * Bootstrap Column class
18233  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
18234  * @cfg {Boolean} carousel true to make the group behave like a carousel
18235  * @cfg {Boolean} bullets show bullets for the panels
18236  * @cfg {Boolean} autoslide (true|false) auto slide .. default false
18237  * @cfg {Number} timer auto slide timer .. default 0 millisecond
18238  * @cfg {Boolean} showarrow (true|false) show arrow default true
18239  * 
18240  * @constructor
18241  * Create a new TabGroup
18242  * @param {Object} config The config object
18243  */
18244
18245 Roo.bootstrap.TabGroup = function(config){
18246     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
18247     if (!this.navId) {
18248         this.navId = Roo.id();
18249     }
18250     this.tabs = [];
18251     Roo.bootstrap.TabGroup.register(this);
18252     
18253 };
18254
18255 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
18256     
18257     carousel : false,
18258     transition : false,
18259     bullets : 0,
18260     timer : 0,
18261     autoslide : false,
18262     slideFn : false,
18263     slideOnTouch : false,
18264     showarrow : true,
18265     
18266     getAutoCreate : function()
18267     {
18268         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
18269         
18270         cfg.cls += ' tab-content';
18271         
18272         if (this.carousel) {
18273             cfg.cls += ' carousel slide';
18274             
18275             cfg.cn = [{
18276                cls : 'carousel-inner',
18277                cn : []
18278             }];
18279         
18280             if(this.bullets  && !Roo.isTouch){
18281                 
18282                 var bullets = {
18283                     cls : 'carousel-bullets',
18284                     cn : []
18285                 };
18286                
18287                 if(this.bullets_cls){
18288                     bullets.cls = bullets.cls + ' ' + this.bullets_cls;
18289                 }
18290                 
18291                 bullets.cn.push({
18292                     cls : 'clear'
18293                 });
18294                 
18295                 cfg.cn[0].cn.push(bullets);
18296             }
18297             
18298             if(this.showarrow){
18299                 cfg.cn[0].cn.push({
18300                     tag : 'div',
18301                     class : 'carousel-arrow',
18302                     cn : [
18303                         {
18304                             tag : 'div',
18305                             class : 'carousel-prev',
18306                             cn : [
18307                                 {
18308                                     tag : 'i',
18309                                     class : 'fa fa-chevron-left'
18310                                 }
18311                             ]
18312                         },
18313                         {
18314                             tag : 'div',
18315                             class : 'carousel-next',
18316                             cn : [
18317                                 {
18318                                     tag : 'i',
18319                                     class : 'fa fa-chevron-right'
18320                                 }
18321                             ]
18322                         }
18323                     ]
18324                 });
18325             }
18326             
18327         }
18328         
18329         return cfg;
18330     },
18331     
18332     initEvents:  function()
18333     {
18334 //        if(Roo.isTouch && this.slideOnTouch && !this.showarrow){
18335 //            this.el.on("touchstart", this.onTouchStart, this);
18336 //        }
18337         
18338         if(this.autoslide){
18339             var _this = this;
18340             
18341             this.slideFn = window.setInterval(function() {
18342                 _this.showPanelNext();
18343             }, this.timer);
18344         }
18345         
18346         if(this.showarrow){
18347             this.el.select('.carousel-prev', true).first().on('click', this.showPanelPrev, this);
18348             this.el.select('.carousel-next', true).first().on('click', this.showPanelNext, this);
18349         }
18350         
18351         
18352     },
18353     
18354 //    onTouchStart : function(e, el, o)
18355 //    {
18356 //        if(!this.slideOnTouch || !Roo.isTouch || Roo.get(e.getTarget()).hasClass('roo-button-text')){
18357 //            return;
18358 //        }
18359 //        
18360 //        this.showPanelNext();
18361 //    },
18362     
18363     
18364     getChildContainer : function()
18365     {
18366         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
18367     },
18368     
18369     /**
18370     * register a Navigation item
18371     * @param {Roo.bootstrap.NavItem} the navitem to add
18372     */
18373     register : function(item)
18374     {
18375         this.tabs.push( item);
18376         item.navId = this.navId; // not really needed..
18377         this.addBullet();
18378     
18379     },
18380     
18381     getActivePanel : function()
18382     {
18383         var r = false;
18384         Roo.each(this.tabs, function(t) {
18385             if (t.active) {
18386                 r = t;
18387                 return false;
18388             }
18389             return null;
18390         });
18391         return r;
18392         
18393     },
18394     getPanelByName : function(n)
18395     {
18396         var r = false;
18397         Roo.each(this.tabs, function(t) {
18398             if (t.tabId == n) {
18399                 r = t;
18400                 return false;
18401             }
18402             return null;
18403         });
18404         return r;
18405     },
18406     indexOfPanel : function(p)
18407     {
18408         var r = false;
18409         Roo.each(this.tabs, function(t,i) {
18410             if (t.tabId == p.tabId) {
18411                 r = i;
18412                 return false;
18413             }
18414             return null;
18415         });
18416         return r;
18417     },
18418     /**
18419      * show a specific panel
18420      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
18421      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
18422      */
18423     showPanel : function (pan)
18424     {
18425         if(this.transition || typeof(pan) == 'undefined'){
18426             Roo.log("waiting for the transitionend");
18427             return false;
18428         }
18429         
18430         if (typeof(pan) == 'number') {
18431             pan = this.tabs[pan];
18432         }
18433         
18434         if (typeof(pan) == 'string') {
18435             pan = this.getPanelByName(pan);
18436         }
18437         
18438         var cur = this.getActivePanel();
18439         
18440         if(!pan || !cur){
18441             Roo.log('pan or acitve pan is undefined');
18442             return false;
18443         }
18444         
18445         if (pan.tabId == this.getActivePanel().tabId) {
18446             return true;
18447         }
18448         
18449         if (false === cur.fireEvent('beforedeactivate')) {
18450             return false;
18451         }
18452         
18453         if(this.bullets > 0 && !Roo.isTouch){
18454             this.setActiveBullet(this.indexOfPanel(pan));
18455         }
18456         
18457         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
18458             
18459             //class="carousel-item carousel-item-next carousel-item-left"
18460             
18461             this.transition = true;
18462             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
18463             var lr = dir == 'next' ? 'left' : 'right';
18464             pan.el.addClass(dir); // or prev
18465             pan.el.addClass('carousel-item-' + dir); // or prev
18466             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
18467             cur.el.addClass(lr); // or right
18468             pan.el.addClass(lr);
18469             cur.el.addClass('carousel-item-' +lr); // or right
18470             pan.el.addClass('carousel-item-' +lr);
18471             
18472             
18473             var _this = this;
18474             cur.el.on('transitionend', function() {
18475                 Roo.log("trans end?");
18476                 
18477                 pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
18478                 pan.setActive(true);
18479                 
18480                 cur.el.removeClass([lr, 'carousel-item-' + lr]);
18481                 cur.setActive(false);
18482                 
18483                 _this.transition = false;
18484                 
18485             }, this, { single:  true } );
18486             
18487             return true;
18488         }
18489         
18490         cur.setActive(false);
18491         pan.setActive(true);
18492         
18493         return true;
18494         
18495     },
18496     showPanelNext : function()
18497     {
18498         var i = this.indexOfPanel(this.getActivePanel());
18499         
18500         if (i >= this.tabs.length - 1 && !this.autoslide) {
18501             return;
18502         }
18503         
18504         if (i >= this.tabs.length - 1 && this.autoslide) {
18505             i = -1;
18506         }
18507         
18508         this.showPanel(this.tabs[i+1]);
18509     },
18510     
18511     showPanelPrev : function()
18512     {
18513         var i = this.indexOfPanel(this.getActivePanel());
18514         
18515         if (i  < 1 && !this.autoslide) {
18516             return;
18517         }
18518         
18519         if (i < 1 && this.autoslide) {
18520             i = this.tabs.length;
18521         }
18522         
18523         this.showPanel(this.tabs[i-1]);
18524     },
18525     
18526     
18527     addBullet: function()
18528     {
18529         if(!this.bullets || Roo.isTouch){
18530             return;
18531         }
18532         var ctr = this.el.select('.carousel-bullets',true).first();
18533         var i = this.el.select('.carousel-bullets .bullet',true).getCount() ;
18534         var bullet = ctr.createChild({
18535             cls : 'bullet bullet-' + i
18536         },ctr.dom.lastChild);
18537         
18538         
18539         var _this = this;
18540         
18541         bullet.on('click', (function(e, el, o, ii, t){
18542
18543             e.preventDefault();
18544
18545             this.showPanel(ii);
18546
18547             if(this.autoslide && this.slideFn){
18548                 clearInterval(this.slideFn);
18549                 this.slideFn = window.setInterval(function() {
18550                     _this.showPanelNext();
18551                 }, this.timer);
18552             }
18553
18554         }).createDelegate(this, [i, bullet], true));
18555                 
18556         
18557     },
18558      
18559     setActiveBullet : function(i)
18560     {
18561         if(Roo.isTouch){
18562             return;
18563         }
18564         
18565         Roo.each(this.el.select('.bullet', true).elements, function(el){
18566             el.removeClass('selected');
18567         });
18568
18569         var bullet = this.el.select('.bullet-' + i, true).first();
18570         
18571         if(!bullet){
18572             return;
18573         }
18574         
18575         bullet.addClass('selected');
18576     }
18577     
18578     
18579   
18580 });
18581
18582  
18583
18584  
18585  
18586 Roo.apply(Roo.bootstrap.TabGroup, {
18587     
18588     groups: {},
18589      /**
18590     * register a Navigation Group
18591     * @param {Roo.bootstrap.NavGroup} the navgroup to add
18592     */
18593     register : function(navgrp)
18594     {
18595         this.groups[navgrp.navId] = navgrp;
18596         
18597     },
18598     /**
18599     * fetch a Navigation Group based on the navigation ID
18600     * if one does not exist , it will get created.
18601     * @param {string} the navgroup to add
18602     * @returns {Roo.bootstrap.NavGroup} the navgroup 
18603     */
18604     get: function(navId) {
18605         if (typeof(this.groups[navId]) == 'undefined') {
18606             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
18607         }
18608         return this.groups[navId] ;
18609     }
18610     
18611     
18612     
18613 });
18614
18615  /*
18616  * - LGPL
18617  *
18618  * TabPanel
18619  * 
18620  */
18621
18622 /**
18623  * @class Roo.bootstrap.TabPanel
18624  * @extends Roo.bootstrap.Component
18625  * Bootstrap TabPanel class
18626  * @cfg {Boolean} active panel active
18627  * @cfg {String} html panel content
18628  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
18629  * @cfg {String} navId The Roo.bootstrap.NavGroup which triggers show hide ()
18630  * @cfg {String} href click to link..
18631  * 
18632  * 
18633  * @constructor
18634  * Create a new TabPanel
18635  * @param {Object} config The config object
18636  */
18637
18638 Roo.bootstrap.TabPanel = function(config){
18639     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
18640     this.addEvents({
18641         /**
18642              * @event changed
18643              * Fires when the active status changes
18644              * @param {Roo.bootstrap.TabPanel} this
18645              * @param {Boolean} state the new state
18646             
18647          */
18648         'changed': true,
18649         /**
18650              * @event beforedeactivate
18651              * Fires before a tab is de-activated - can be used to do validation on a form.
18652              * @param {Roo.bootstrap.TabPanel} this
18653              * @return {Boolean} false if there is an error
18654             
18655          */
18656         'beforedeactivate': true
18657      });
18658     
18659     this.tabId = this.tabId || Roo.id();
18660   
18661 };
18662
18663 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
18664     
18665     active: false,
18666     html: false,
18667     tabId: false,
18668     navId : false,
18669     href : '',
18670     
18671     getAutoCreate : function(){
18672         
18673         
18674         var cfg = {
18675             tag: 'div',
18676             // item is needed for carousel - not sure if it has any effect otherwise
18677             cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
18678             html: this.html || ''
18679         };
18680         
18681         if(this.active){
18682             cfg.cls += ' active';
18683         }
18684         
18685         if(this.tabId){
18686             cfg.tabId = this.tabId;
18687         }
18688         
18689         
18690         
18691         return cfg;
18692     },
18693     
18694     initEvents:  function()
18695     {
18696         var p = this.parent();
18697         
18698         this.navId = this.navId || p.navId;
18699         
18700         if (typeof(this.navId) != 'undefined') {
18701             // not really needed.. but just in case.. parent should be a NavGroup.
18702             var tg = Roo.bootstrap.TabGroup.get(this.navId);
18703             
18704             tg.register(this);
18705             
18706             var i = tg.tabs.length - 1;
18707             
18708             if(this.active && tg.bullets > 0 && i < tg.bullets){
18709                 tg.setActiveBullet(i);
18710             }
18711         }
18712         
18713         this.el.on('click', this.onClick, this);
18714         
18715         if(Roo.isTouch){
18716             this.el.on("touchstart", this.onTouchStart, this);
18717             this.el.on("touchmove", this.onTouchMove, this);
18718             this.el.on("touchend", this.onTouchEnd, this);
18719         }
18720         
18721     },
18722     
18723     onRender : function(ct, position)
18724     {
18725         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
18726     },
18727     
18728     setActive : function(state)
18729     {
18730         Roo.log("panel - set active " + this.tabId + "=" + state);
18731         
18732         this.active = state;
18733         if (!state) {
18734             this.el.removeClass('active');
18735             
18736         } else  if (!this.el.hasClass('active')) {
18737             this.el.addClass('active');
18738         }
18739         
18740         this.fireEvent('changed', this, state);
18741     },
18742     
18743     onClick : function(e)
18744     {
18745         e.preventDefault();
18746         
18747         if(!this.href.length){
18748             return;
18749         }
18750         
18751         window.location.href = this.href;
18752     },
18753     
18754     startX : 0,
18755     startY : 0,
18756     endX : 0,
18757     endY : 0,
18758     swiping : false,
18759     
18760     onTouchStart : function(e)
18761     {
18762         this.swiping = false;
18763         
18764         this.startX = e.browserEvent.touches[0].clientX;
18765         this.startY = e.browserEvent.touches[0].clientY;
18766     },
18767     
18768     onTouchMove : function(e)
18769     {
18770         this.swiping = true;
18771         
18772         this.endX = e.browserEvent.touches[0].clientX;
18773         this.endY = e.browserEvent.touches[0].clientY;
18774     },
18775     
18776     onTouchEnd : function(e)
18777     {
18778         if(!this.swiping){
18779             this.onClick(e);
18780             return;
18781         }
18782         
18783         var tabGroup = this.parent();
18784         
18785         if(this.endX > this.startX){ // swiping right
18786             tabGroup.showPanelPrev();
18787             return;
18788         }
18789         
18790         if(this.startX > this.endX){ // swiping left
18791             tabGroup.showPanelNext();
18792             return;
18793         }
18794     }
18795     
18796     
18797 });
18798  
18799
18800  
18801
18802  /*
18803  * - LGPL
18804  *
18805  * DateField
18806  * 
18807  */
18808
18809 /**
18810  * @class Roo.bootstrap.DateField
18811  * @extends Roo.bootstrap.Input
18812  * Bootstrap DateField class
18813  * @cfg {Number} weekStart default 0
18814  * @cfg {String} viewMode default empty, (months|years)
18815  * @cfg {String} minViewMode default empty, (months|years)
18816  * @cfg {Number} startDate default -Infinity
18817  * @cfg {Number} endDate default Infinity
18818  * @cfg {Boolean} todayHighlight default false
18819  * @cfg {Boolean} todayBtn default false
18820  * @cfg {Boolean} calendarWeeks default false
18821  * @cfg {Object} daysOfWeekDisabled default empty
18822  * @cfg {Boolean} singleMode default false (true | false)
18823  * 
18824  * @cfg {Boolean} keyboardNavigation default true
18825  * @cfg {String} language default en
18826  * 
18827  * @constructor
18828  * Create a new DateField
18829  * @param {Object} config The config object
18830  */
18831
18832 Roo.bootstrap.DateField = function(config){
18833     Roo.bootstrap.DateField.superclass.constructor.call(this, config);
18834      this.addEvents({
18835             /**
18836              * @event show
18837              * Fires when this field show.
18838              * @param {Roo.bootstrap.DateField} this
18839              * @param {Mixed} date The date value
18840              */
18841             show : true,
18842             /**
18843              * @event show
18844              * Fires when this field hide.
18845              * @param {Roo.bootstrap.DateField} this
18846              * @param {Mixed} date The date value
18847              */
18848             hide : true,
18849             /**
18850              * @event select
18851              * Fires when select a date.
18852              * @param {Roo.bootstrap.DateField} this
18853              * @param {Mixed} date The date value
18854              */
18855             select : true,
18856             /**
18857              * @event beforeselect
18858              * Fires when before select a date.
18859              * @param {Roo.bootstrap.DateField} this
18860              * @param {Mixed} date The date value
18861              */
18862             beforeselect : true
18863         });
18864 };
18865
18866 Roo.extend(Roo.bootstrap.DateField, Roo.bootstrap.Input,  {
18867     
18868     /**
18869      * @cfg {String} format
18870      * The default date format string which can be overriden for localization support.  The format must be
18871      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18872      */
18873     format : "m/d/y",
18874     /**
18875      * @cfg {String} altFormats
18876      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18877      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18878      */
18879     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
18880     
18881     weekStart : 0,
18882     
18883     viewMode : '',
18884     
18885     minViewMode : '',
18886     
18887     todayHighlight : false,
18888     
18889     todayBtn: false,
18890     
18891     language: 'en',
18892     
18893     keyboardNavigation: true,
18894     
18895     calendarWeeks: false,
18896     
18897     startDate: -Infinity,
18898     
18899     endDate: Infinity,
18900     
18901     daysOfWeekDisabled: [],
18902     
18903     _events: [],
18904     
18905     singleMode : false,
18906     
18907     UTCDate: function()
18908     {
18909         return new Date(Date.UTC.apply(Date, arguments));
18910     },
18911     
18912     UTCToday: function()
18913     {
18914         var today = new Date();
18915         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
18916     },
18917     
18918     getDate: function() {
18919             var d = this.getUTCDate();
18920             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
18921     },
18922     
18923     getUTCDate: function() {
18924             return this.date;
18925     },
18926     
18927     setDate: function(d) {
18928             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
18929     },
18930     
18931     setUTCDate: function(d) {
18932             this.date = d;
18933             this.setValue(this.formatDate(this.date));
18934     },
18935         
18936     onRender: function(ct, position)
18937     {
18938         
18939         Roo.bootstrap.DateField.superclass.onRender.call(this, ct, position);
18940         
18941         this.language = this.language || 'en';
18942         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : this.language.split('-')[0];
18943         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : "en";
18944         
18945         this.isRTL = Roo.bootstrap.DateField.dates[this.language].rtl || false;
18946         this.format = this.format || 'm/d/y';
18947         this.isInline = false;
18948         this.isInput = true;
18949         this.component = this.el.select('.add-on', true).first() || false;
18950         this.component = (this.component && this.component.length === 0) ? false : this.component;
18951         this.hasInput = this.component && this.inputEl().length;
18952         
18953         if (typeof(this.minViewMode === 'string')) {
18954             switch (this.minViewMode) {
18955                 case 'months':
18956                     this.minViewMode = 1;
18957                     break;
18958                 case 'years':
18959                     this.minViewMode = 2;
18960                     break;
18961                 default:
18962                     this.minViewMode = 0;
18963                     break;
18964             }
18965         }
18966         
18967         if (typeof(this.viewMode === 'string')) {
18968             switch (this.viewMode) {
18969                 case 'months':
18970                     this.viewMode = 1;
18971                     break;
18972                 case 'years':
18973                     this.viewMode = 2;
18974                     break;
18975                 default:
18976                     this.viewMode = 0;
18977                     break;
18978             }
18979         }
18980                 
18981         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.DateField.template);
18982         
18983 //        this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.DateField.template);
18984         
18985         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
18986         
18987         this.picker().on('mousedown', this.onMousedown, this);
18988         this.picker().on('click', this.onClick, this);
18989         
18990         this.picker().addClass('datepicker-dropdown');
18991         
18992         this.startViewMode = this.viewMode;
18993         
18994         if(this.singleMode){
18995             Roo.each(this.picker().select('thead > tr > th', true).elements, function(v){
18996                 v.setVisibilityMode(Roo.Element.DISPLAY);
18997                 v.hide();
18998             });
18999             
19000             Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
19001                 v.setStyle('width', '189px');
19002             });
19003         }
19004         
19005         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
19006             if(!this.calendarWeeks){
19007                 v.remove();
19008                 return;
19009             }
19010             
19011             v.dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19012             v.attr('colspan', function(i, val){
19013                 return parseInt(val) + 1;
19014             });
19015         });
19016                         
19017         
19018         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
19019         
19020         this.setStartDate(this.startDate);
19021         this.setEndDate(this.endDate);
19022         
19023         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
19024         
19025         this.fillDow();
19026         this.fillMonths();
19027         this.update();
19028         this.showMode();
19029         
19030         if(this.isInline) {
19031             this.showPopup();
19032         }
19033     },
19034     
19035     picker : function()
19036     {
19037         return this.pickerEl;
19038 //        return this.el.select('.datepicker', true).first();
19039     },
19040     
19041     fillDow: function()
19042     {
19043         var dowCnt = this.weekStart;
19044         
19045         var dow = {
19046             tag: 'tr',
19047             cn: [
19048                 
19049             ]
19050         };
19051         
19052         if(this.calendarWeeks){
19053             dow.cn.push({
19054                 tag: 'th',
19055                 cls: 'cw',
19056                 html: '&nbsp;'
19057             })
19058         }
19059         
19060         while (dowCnt < this.weekStart + 7) {
19061             dow.cn.push({
19062                 tag: 'th',
19063                 cls: 'dow',
19064                 html: Roo.bootstrap.DateField.dates[this.language].daysMin[(dowCnt++)%7]
19065             });
19066         }
19067         
19068         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
19069     },
19070     
19071     fillMonths: function()
19072     {    
19073         var i = 0;
19074         var months = this.picker().select('>.datepicker-months td', true).first();
19075         
19076         months.dom.innerHTML = '';
19077         
19078         while (i < 12) {
19079             var month = {
19080                 tag: 'span',
19081                 cls: 'month',
19082                 html: Roo.bootstrap.DateField.dates[this.language].monthsShort[i++]
19083             };
19084             
19085             months.createChild(month);
19086         }
19087         
19088     },
19089     
19090     update: function()
19091     {
19092         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;
19093         
19094         if (this.date < this.startDate) {
19095             this.viewDate = new Date(this.startDate);
19096         } else if (this.date > this.endDate) {
19097             this.viewDate = new Date(this.endDate);
19098         } else {
19099             this.viewDate = new Date(this.date);
19100         }
19101         
19102         this.fill();
19103     },
19104     
19105     fill: function() 
19106     {
19107         var d = new Date(this.viewDate),
19108                 year = d.getUTCFullYear(),
19109                 month = d.getUTCMonth(),
19110                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
19111                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
19112                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
19113                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
19114                 currentDate = this.date && this.date.valueOf(),
19115                 today = this.UTCToday();
19116         
19117         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].months[month]+' '+year;
19118         
19119 //        this.picker().select('>tfoot th.today', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19120         
19121 //        this.picker.select('>tfoot th.today').
19122 //                                              .text(dates[this.language].today)
19123 //                                              .toggle(this.todayBtn !== false);
19124     
19125         this.updateNavArrows();
19126         this.fillMonths();
19127                                                 
19128         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
19129         
19130         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
19131          
19132         prevMonth.setUTCDate(day);
19133         
19134         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
19135         
19136         var nextMonth = new Date(prevMonth);
19137         
19138         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
19139         
19140         nextMonth = nextMonth.valueOf();
19141         
19142         var fillMonths = false;
19143         
19144         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
19145         
19146         while(prevMonth.valueOf() <= nextMonth) {
19147             var clsName = '';
19148             
19149             if (prevMonth.getUTCDay() === this.weekStart) {
19150                 if(fillMonths){
19151                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
19152                 }
19153                     
19154                 fillMonths = {
19155                     tag: 'tr',
19156                     cn: []
19157                 };
19158                 
19159                 if(this.calendarWeeks){
19160                     // ISO 8601: First week contains first thursday.
19161                     // ISO also states week starts on Monday, but we can be more abstract here.
19162                     var
19163                     // Start of current week: based on weekstart/current date
19164                     ws = new Date(+prevMonth + (this.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
19165                     // Thursday of this week
19166                     th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
19167                     // First Thursday of year, year from thursday
19168                     yth = new Date(+(yth = this.UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
19169                     // Calendar week: ms between thursdays, div ms per day, div 7 days
19170                     calWeek =  (th - yth) / 864e5 / 7 + 1;
19171                     
19172                     fillMonths.cn.push({
19173                         tag: 'td',
19174                         cls: 'cw',
19175                         html: calWeek
19176                     });
19177                 }
19178             }
19179             
19180             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
19181                 clsName += ' old';
19182             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
19183                 clsName += ' new';
19184             }
19185             if (this.todayHighlight &&
19186                 prevMonth.getUTCFullYear() == today.getFullYear() &&
19187                 prevMonth.getUTCMonth() == today.getMonth() &&
19188                 prevMonth.getUTCDate() == today.getDate()) {
19189                 clsName += ' today';
19190             }
19191             
19192             if (currentDate && prevMonth.valueOf() === currentDate) {
19193                 clsName += ' active';
19194             }
19195             
19196             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
19197                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
19198                     clsName += ' disabled';
19199             }
19200             
19201             fillMonths.cn.push({
19202                 tag: 'td',
19203                 cls: 'day ' + clsName,
19204                 html: prevMonth.getDate()
19205             });
19206             
19207             prevMonth.setDate(prevMonth.getDate()+1);
19208         }
19209           
19210         var currentYear = this.date && this.date.getUTCFullYear();
19211         var currentMonth = this.date && this.date.getUTCMonth();
19212         
19213         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
19214         
19215         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
19216             v.removeClass('active');
19217             
19218             if(currentYear === year && k === currentMonth){
19219                 v.addClass('active');
19220             }
19221             
19222             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
19223                 v.addClass('disabled');
19224             }
19225             
19226         });
19227         
19228         
19229         year = parseInt(year/10, 10) * 10;
19230         
19231         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
19232         
19233         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
19234         
19235         year -= 1;
19236         for (var i = -1; i < 11; i++) {
19237             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
19238                 tag: 'span',
19239                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
19240                 html: year
19241             });
19242             
19243             year += 1;
19244         }
19245     },
19246     
19247     showMode: function(dir) 
19248     {
19249         if (dir) {
19250             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
19251         }
19252         
19253         Roo.each(this.picker().select('>div',true).elements, function(v){
19254             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19255             v.hide();
19256         });
19257         this.picker().select('>.datepicker-'+Roo.bootstrap.DateField.modes[this.viewMode].clsName, true).first().show();
19258     },
19259     
19260     place: function()
19261     {
19262         if(this.isInline) {
19263             return;
19264         }
19265         
19266         this.picker().removeClass(['bottom', 'top']);
19267         
19268         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
19269             /*
19270              * place to the top of element!
19271              *
19272              */
19273             
19274             this.picker().addClass('top');
19275             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
19276             
19277             return;
19278         }
19279         
19280         this.picker().addClass('bottom');
19281         
19282         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
19283     },
19284     
19285     parseDate : function(value)
19286     {
19287         if(!value || value instanceof Date){
19288             return value;
19289         }
19290         var v = Date.parseDate(value, this.format);
19291         if (!v && (this.useIso || value.match(/^(\d{4})-0?(\d+)-0?(\d+)/))) {
19292             v = Date.parseDate(value, 'Y-m-d');
19293         }
19294         if(!v && this.altFormats){
19295             if(!this.altFormatsArray){
19296                 this.altFormatsArray = this.altFormats.split("|");
19297             }
19298             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
19299                 v = Date.parseDate(value, this.altFormatsArray[i]);
19300             }
19301         }
19302         return v;
19303     },
19304     
19305     formatDate : function(date, fmt)
19306     {   
19307         return (!date || !(date instanceof Date)) ?
19308         date : date.dateFormat(fmt || this.format);
19309     },
19310     
19311     onFocus : function()
19312     {
19313         Roo.bootstrap.DateField.superclass.onFocus.call(this);
19314         this.showPopup();
19315     },
19316     
19317     onBlur : function()
19318     {
19319         Roo.bootstrap.DateField.superclass.onBlur.call(this);
19320         
19321         var d = this.inputEl().getValue();
19322         
19323         this.setValue(d);
19324                 
19325         this.hidePopup();
19326     },
19327     
19328     showPopup : function()
19329     {
19330         this.picker().show();
19331         this.update();
19332         this.place();
19333         
19334         this.fireEvent('showpopup', this, this.date);
19335     },
19336     
19337     hidePopup : function()
19338     {
19339         if(this.isInline) {
19340             return;
19341         }
19342         this.picker().hide();
19343         this.viewMode = this.startViewMode;
19344         this.showMode();
19345         
19346         this.fireEvent('hidepopup', this, this.date);
19347         
19348     },
19349     
19350     onMousedown: function(e)
19351     {
19352         e.stopPropagation();
19353         e.preventDefault();
19354     },
19355     
19356     keyup: function(e)
19357     {
19358         Roo.bootstrap.DateField.superclass.keyup.call(this);
19359         this.update();
19360     },
19361
19362     setValue: function(v)
19363     {
19364         if(this.fireEvent('beforeselect', this, v) !== false){
19365             var d = new Date(this.parseDate(v) ).clearTime();
19366         
19367             if(isNaN(d.getTime())){
19368                 this.date = this.viewDate = '';
19369                 Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19370                 return;
19371             }
19372
19373             v = this.formatDate(d);
19374
19375             Roo.bootstrap.DateField.superclass.setValue.call(this, v);
19376
19377             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
19378
19379             this.update();
19380
19381             this.fireEvent('select', this, this.date);
19382         }
19383     },
19384     
19385     getValue: function()
19386     {
19387         return this.formatDate(this.date);
19388     },
19389     
19390     fireKey: function(e)
19391     {
19392         if (!this.picker().isVisible()){
19393             if (e.keyCode == 27) { // allow escape to hide and re-show picker
19394                 this.showPopup();
19395             }
19396             return;
19397         }
19398         
19399         var dateChanged = false,
19400         dir, day, month,
19401         newDate, newViewDate;
19402         
19403         switch(e.keyCode){
19404             case 27: // escape
19405                 this.hidePopup();
19406                 e.preventDefault();
19407                 break;
19408             case 37: // left
19409             case 39: // right
19410                 if (!this.keyboardNavigation) {
19411                     break;
19412                 }
19413                 dir = e.keyCode == 37 ? -1 : 1;
19414                 
19415                 if (e.ctrlKey){
19416                     newDate = this.moveYear(this.date, dir);
19417                     newViewDate = this.moveYear(this.viewDate, dir);
19418                 } else if (e.shiftKey){
19419                     newDate = this.moveMonth(this.date, dir);
19420                     newViewDate = this.moveMonth(this.viewDate, dir);
19421                 } else {
19422                     newDate = new Date(this.date);
19423                     newDate.setUTCDate(this.date.getUTCDate() + dir);
19424                     newViewDate = new Date(this.viewDate);
19425                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
19426                 }
19427                 if (this.dateWithinRange(newDate)){
19428                     this.date = newDate;
19429                     this.viewDate = newViewDate;
19430                     this.setValue(this.formatDate(this.date));
19431 //                    this.update();
19432                     e.preventDefault();
19433                     dateChanged = true;
19434                 }
19435                 break;
19436             case 38: // up
19437             case 40: // down
19438                 if (!this.keyboardNavigation) {
19439                     break;
19440                 }
19441                 dir = e.keyCode == 38 ? -1 : 1;
19442                 if (e.ctrlKey){
19443                     newDate = this.moveYear(this.date, dir);
19444                     newViewDate = this.moveYear(this.viewDate, dir);
19445                 } else if (e.shiftKey){
19446                     newDate = this.moveMonth(this.date, dir);
19447                     newViewDate = this.moveMonth(this.viewDate, dir);
19448                 } else {
19449                     newDate = new Date(this.date);
19450                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
19451                     newViewDate = new Date(this.viewDate);
19452                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
19453                 }
19454                 if (this.dateWithinRange(newDate)){
19455                     this.date = newDate;
19456                     this.viewDate = newViewDate;
19457                     this.setValue(this.formatDate(this.date));
19458 //                    this.update();
19459                     e.preventDefault();
19460                     dateChanged = true;
19461                 }
19462                 break;
19463             case 13: // enter
19464                 this.setValue(this.formatDate(this.date));
19465                 this.hidePopup();
19466                 e.preventDefault();
19467                 break;
19468             case 9: // tab
19469                 this.setValue(this.formatDate(this.date));
19470                 this.hidePopup();
19471                 break;
19472             case 16: // shift
19473             case 17: // ctrl
19474             case 18: // alt
19475                 break;
19476             default :
19477                 this.hidePopup();
19478                 
19479         }
19480     },
19481     
19482     
19483     onClick: function(e) 
19484     {
19485         e.stopPropagation();
19486         e.preventDefault();
19487         
19488         var target = e.getTarget();
19489         
19490         if(target.nodeName.toLowerCase() === 'i'){
19491             target = Roo.get(target).dom.parentNode;
19492         }
19493         
19494         var nodeName = target.nodeName;
19495         var className = target.className;
19496         var html = target.innerHTML;
19497         //Roo.log(nodeName);
19498         
19499         switch(nodeName.toLowerCase()) {
19500             case 'th':
19501                 switch(className) {
19502                     case 'switch':
19503                         this.showMode(1);
19504                         break;
19505                     case 'prev':
19506                     case 'next':
19507                         var dir = Roo.bootstrap.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
19508                         switch(this.viewMode){
19509                                 case 0:
19510                                         this.viewDate = this.moveMonth(this.viewDate, dir);
19511                                         break;
19512                                 case 1:
19513                                 case 2:
19514                                         this.viewDate = this.moveYear(this.viewDate, dir);
19515                                         break;
19516                         }
19517                         this.fill();
19518                         break;
19519                     case 'today':
19520                         var date = new Date();
19521                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
19522 //                        this.fill()
19523                         this.setValue(this.formatDate(this.date));
19524                         
19525                         this.hidePopup();
19526                         break;
19527                 }
19528                 break;
19529             case 'span':
19530                 if (className.indexOf('disabled') < 0) {
19531                     this.viewDate.setUTCDate(1);
19532                     if (className.indexOf('month') > -1) {
19533                         this.viewDate.setUTCMonth(Roo.bootstrap.DateField.dates[this.language].monthsShort.indexOf(html));
19534                     } else {
19535                         var year = parseInt(html, 10) || 0;
19536                         this.viewDate.setUTCFullYear(year);
19537                         
19538                     }
19539                     
19540                     if(this.singleMode){
19541                         this.setValue(this.formatDate(this.viewDate));
19542                         this.hidePopup();
19543                         return;
19544                     }
19545                     
19546                     this.showMode(-1);
19547                     this.fill();
19548                 }
19549                 break;
19550                 
19551             case 'td':
19552                 //Roo.log(className);
19553                 if (className.indexOf('day') > -1 && className.indexOf('disabled') < 0 ){
19554                     var day = parseInt(html, 10) || 1;
19555                     var year = this.viewDate.getUTCFullYear(),
19556                         month = this.viewDate.getUTCMonth();
19557
19558                     if (className.indexOf('old') > -1) {
19559                         if(month === 0 ){
19560                             month = 11;
19561                             year -= 1;
19562                         }else{
19563                             month -= 1;
19564                         }
19565                     } else if (className.indexOf('new') > -1) {
19566                         if (month == 11) {
19567                             month = 0;
19568                             year += 1;
19569                         } else {
19570                             month += 1;
19571                         }
19572                     }
19573                     //Roo.log([year,month,day]);
19574                     this.date = this.UTCDate(year, month, day,0,0,0,0);
19575                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
19576 //                    this.fill();
19577                     //Roo.log(this.formatDate(this.date));
19578                     this.setValue(this.formatDate(this.date));
19579                     this.hidePopup();
19580                 }
19581                 break;
19582         }
19583     },
19584     
19585     setStartDate: function(startDate)
19586     {
19587         this.startDate = startDate || -Infinity;
19588         if (this.startDate !== -Infinity) {
19589             this.startDate = this.parseDate(this.startDate);
19590         }
19591         this.update();
19592         this.updateNavArrows();
19593     },
19594
19595     setEndDate: function(endDate)
19596     {
19597         this.endDate = endDate || Infinity;
19598         if (this.endDate !== Infinity) {
19599             this.endDate = this.parseDate(this.endDate);
19600         }
19601         this.update();
19602         this.updateNavArrows();
19603     },
19604     
19605     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
19606     {
19607         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
19608         if (typeof(this.daysOfWeekDisabled) !== 'object') {
19609             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
19610         }
19611         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
19612             return parseInt(d, 10);
19613         });
19614         this.update();
19615         this.updateNavArrows();
19616     },
19617     
19618     updateNavArrows: function() 
19619     {
19620         if(this.singleMode){
19621             return;
19622         }
19623         
19624         var d = new Date(this.viewDate),
19625         year = d.getUTCFullYear(),
19626         month = d.getUTCMonth();
19627         
19628         Roo.each(this.picker().select('.prev', true).elements, function(v){
19629             v.show();
19630             switch (this.viewMode) {
19631                 case 0:
19632
19633                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
19634                         v.hide();
19635                     }
19636                     break;
19637                 case 1:
19638                 case 2:
19639                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
19640                         v.hide();
19641                     }
19642                     break;
19643             }
19644         });
19645         
19646         Roo.each(this.picker().select('.next', true).elements, function(v){
19647             v.show();
19648             switch (this.viewMode) {
19649                 case 0:
19650
19651                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
19652                         v.hide();
19653                     }
19654                     break;
19655                 case 1:
19656                 case 2:
19657                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
19658                         v.hide();
19659                     }
19660                     break;
19661             }
19662         })
19663     },
19664     
19665     moveMonth: function(date, dir)
19666     {
19667         if (!dir) {
19668             return date;
19669         }
19670         var new_date = new Date(date.valueOf()),
19671         day = new_date.getUTCDate(),
19672         month = new_date.getUTCMonth(),
19673         mag = Math.abs(dir),
19674         new_month, test;
19675         dir = dir > 0 ? 1 : -1;
19676         if (mag == 1){
19677             test = dir == -1
19678             // If going back one month, make sure month is not current month
19679             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
19680             ? function(){
19681                 return new_date.getUTCMonth() == month;
19682             }
19683             // If going forward one month, make sure month is as expected
19684             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
19685             : function(){
19686                 return new_date.getUTCMonth() != new_month;
19687             };
19688             new_month = month + dir;
19689             new_date.setUTCMonth(new_month);
19690             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
19691             if (new_month < 0 || new_month > 11) {
19692                 new_month = (new_month + 12) % 12;
19693             }
19694         } else {
19695             // For magnitudes >1, move one month at a time...
19696             for (var i=0; i<mag; i++) {
19697                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
19698                 new_date = this.moveMonth(new_date, dir);
19699             }
19700             // ...then reset the day, keeping it in the new month
19701             new_month = new_date.getUTCMonth();
19702             new_date.setUTCDate(day);
19703             test = function(){
19704                 return new_month != new_date.getUTCMonth();
19705             };
19706         }
19707         // Common date-resetting loop -- if date is beyond end of month, make it
19708         // end of month
19709         while (test()){
19710             new_date.setUTCDate(--day);
19711             new_date.setUTCMonth(new_month);
19712         }
19713         return new_date;
19714     },
19715
19716     moveYear: function(date, dir)
19717     {
19718         return this.moveMonth(date, dir*12);
19719     },
19720
19721     dateWithinRange: function(date)
19722     {
19723         return date >= this.startDate && date <= this.endDate;
19724     },
19725
19726     
19727     remove: function() 
19728     {
19729         this.picker().remove();
19730     },
19731     
19732     validateValue : function(value)
19733     {
19734         if(this.getVisibilityEl().hasClass('hidden')){
19735             return true;
19736         }
19737         
19738         if(value.length < 1)  {
19739             if(this.allowBlank){
19740                 return true;
19741             }
19742             return false;
19743         }
19744         
19745         if(value.length < this.minLength){
19746             return false;
19747         }
19748         if(value.length > this.maxLength){
19749             return false;
19750         }
19751         if(this.vtype){
19752             var vt = Roo.form.VTypes;
19753             if(!vt[this.vtype](value, this)){
19754                 return false;
19755             }
19756         }
19757         if(typeof this.validator == "function"){
19758             var msg = this.validator(value);
19759             if(msg !== true){
19760                 return false;
19761             }
19762         }
19763         
19764         if(this.regex && !this.regex.test(value)){
19765             return false;
19766         }
19767         
19768         if(typeof(this.parseDate(value)) == 'undefined'){
19769             return false;
19770         }
19771         
19772         if (this.endDate !== Infinity && this.parseDate(value).getTime() > this.endDate.getTime()) {
19773             return false;
19774         }      
19775         
19776         if (this.startDate !== -Infinity && this.parseDate(value).getTime() < this.startDate.getTime()) {
19777             return false;
19778         } 
19779         
19780         
19781         return true;
19782     },
19783     
19784     reset : function()
19785     {
19786         this.date = this.viewDate = '';
19787         
19788         Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19789     }
19790    
19791 });
19792
19793 Roo.apply(Roo.bootstrap.DateField,  {
19794     
19795     head : {
19796         tag: 'thead',
19797         cn: [
19798         {
19799             tag: 'tr',
19800             cn: [
19801             {
19802                 tag: 'th',
19803                 cls: 'prev',
19804                 html: '<i class="fa fa-arrow-left"/>'
19805             },
19806             {
19807                 tag: 'th',
19808                 cls: 'switch',
19809                 colspan: '5'
19810             },
19811             {
19812                 tag: 'th',
19813                 cls: 'next',
19814                 html: '<i class="fa fa-arrow-right"/>'
19815             }
19816
19817             ]
19818         }
19819         ]
19820     },
19821     
19822     content : {
19823         tag: 'tbody',
19824         cn: [
19825         {
19826             tag: 'tr',
19827             cn: [
19828             {
19829                 tag: 'td',
19830                 colspan: '7'
19831             }
19832             ]
19833         }
19834         ]
19835     },
19836     
19837     footer : {
19838         tag: 'tfoot',
19839         cn: [
19840         {
19841             tag: 'tr',
19842             cn: [
19843             {
19844                 tag: 'th',
19845                 colspan: '7',
19846                 cls: 'today'
19847             }
19848                     
19849             ]
19850         }
19851         ]
19852     },
19853     
19854     dates:{
19855         en: {
19856             days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
19857             daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
19858             daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
19859             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
19860             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
19861             today: "Today"
19862         }
19863     },
19864     
19865     modes: [
19866     {
19867         clsName: 'days',
19868         navFnc: 'Month',
19869         navStep: 1
19870     },
19871     {
19872         clsName: 'months',
19873         navFnc: 'FullYear',
19874         navStep: 1
19875     },
19876     {
19877         clsName: 'years',
19878         navFnc: 'FullYear',
19879         navStep: 10
19880     }]
19881 });
19882
19883 Roo.apply(Roo.bootstrap.DateField,  {
19884   
19885     template : {
19886         tag: 'div',
19887         cls: 'datepicker dropdown-menu roo-dynamic',
19888         cn: [
19889         {
19890             tag: 'div',
19891             cls: 'datepicker-days',
19892             cn: [
19893             {
19894                 tag: 'table',
19895                 cls: 'table-condensed',
19896                 cn:[
19897                 Roo.bootstrap.DateField.head,
19898                 {
19899                     tag: 'tbody'
19900                 },
19901                 Roo.bootstrap.DateField.footer
19902                 ]
19903             }
19904             ]
19905         },
19906         {
19907             tag: 'div',
19908             cls: 'datepicker-months',
19909             cn: [
19910             {
19911                 tag: 'table',
19912                 cls: 'table-condensed',
19913                 cn:[
19914                 Roo.bootstrap.DateField.head,
19915                 Roo.bootstrap.DateField.content,
19916                 Roo.bootstrap.DateField.footer
19917                 ]
19918             }
19919             ]
19920         },
19921         {
19922             tag: 'div',
19923             cls: 'datepicker-years',
19924             cn: [
19925             {
19926                 tag: 'table',
19927                 cls: 'table-condensed',
19928                 cn:[
19929                 Roo.bootstrap.DateField.head,
19930                 Roo.bootstrap.DateField.content,
19931                 Roo.bootstrap.DateField.footer
19932                 ]
19933             }
19934             ]
19935         }
19936         ]
19937     }
19938 });
19939
19940  
19941
19942  /*
19943  * - LGPL
19944  *
19945  * TimeField
19946  * 
19947  */
19948
19949 /**
19950  * @class Roo.bootstrap.TimeField
19951  * @extends Roo.bootstrap.Input
19952  * Bootstrap DateField class
19953  * 
19954  * 
19955  * @constructor
19956  * Create a new TimeField
19957  * @param {Object} config The config object
19958  */
19959
19960 Roo.bootstrap.TimeField = function(config){
19961     Roo.bootstrap.TimeField.superclass.constructor.call(this, config);
19962     this.addEvents({
19963             /**
19964              * @event show
19965              * Fires when this field show.
19966              * @param {Roo.bootstrap.DateField} thisthis
19967              * @param {Mixed} date The date value
19968              */
19969             show : true,
19970             /**
19971              * @event show
19972              * Fires when this field hide.
19973              * @param {Roo.bootstrap.DateField} this
19974              * @param {Mixed} date The date value
19975              */
19976             hide : true,
19977             /**
19978              * @event select
19979              * Fires when select a date.
19980              * @param {Roo.bootstrap.DateField} this
19981              * @param {Mixed} date The date value
19982              */
19983             select : true
19984         });
19985 };
19986
19987 Roo.extend(Roo.bootstrap.TimeField, Roo.bootstrap.Input,  {
19988     
19989     /**
19990      * @cfg {String} format
19991      * The default time format string which can be overriden for localization support.  The format must be
19992      * valid according to {@link Date#parseDate} (defaults to 'H:i').
19993      */
19994     format : "H:i",
19995        
19996     onRender: function(ct, position)
19997     {
19998         
19999         Roo.bootstrap.TimeField.superclass.onRender.call(this, ct, position);
20000                 
20001         this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.TimeField.template);
20002         
20003         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20004         
20005         this.pop = this.picker().select('>.datepicker-time',true).first();
20006         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20007         
20008         this.picker().on('mousedown', this.onMousedown, this);
20009         this.picker().on('click', this.onClick, this);
20010         
20011         this.picker().addClass('datepicker-dropdown');
20012     
20013         this.fillTime();
20014         this.update();
20015             
20016         this.pop.select('span.hours-up', true).first().on('click', this.onIncrementHours, this);
20017         this.pop.select('span.hours-down', true).first().on('click', this.onDecrementHours, this);
20018         this.pop.select('span.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
20019         this.pop.select('span.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
20020         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
20021         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
20022
20023     },
20024     
20025     fireKey: function(e){
20026         if (!this.picker().isVisible()){
20027             if (e.keyCode == 27) { // allow escape to hide and re-show picker
20028                 this.show();
20029             }
20030             return;
20031         }
20032
20033         e.preventDefault();
20034         
20035         switch(e.keyCode){
20036             case 27: // escape
20037                 this.hide();
20038                 break;
20039             case 37: // left
20040             case 39: // right
20041                 this.onTogglePeriod();
20042                 break;
20043             case 38: // up
20044                 this.onIncrementMinutes();
20045                 break;
20046             case 40: // down
20047                 this.onDecrementMinutes();
20048                 break;
20049             case 13: // enter
20050             case 9: // tab
20051                 this.setTime();
20052                 break;
20053         }
20054     },
20055     
20056     onClick: function(e) {
20057         e.stopPropagation();
20058         e.preventDefault();
20059     },
20060     
20061     picker : function()
20062     {
20063         return this.el.select('.datepicker', true).first();
20064     },
20065     
20066     fillTime: function()
20067     {    
20068         var time = this.pop.select('tbody', true).first();
20069         
20070         time.dom.innerHTML = '';
20071         
20072         time.createChild({
20073             tag: 'tr',
20074             cn: [
20075                 {
20076                     tag: 'td',
20077                     cn: [
20078                         {
20079                             tag: 'a',
20080                             href: '#',
20081                             cls: 'btn',
20082                             cn: [
20083                                 {
20084                                     tag: 'span',
20085                                     cls: 'hours-up glyphicon glyphicon-chevron-up'
20086                                 }
20087                             ]
20088                         } 
20089                     ]
20090                 },
20091                 {
20092                     tag: 'td',
20093                     cls: 'separator'
20094                 },
20095                 {
20096                     tag: 'td',
20097                     cn: [
20098                         {
20099                             tag: 'a',
20100                             href: '#',
20101                             cls: 'btn',
20102                             cn: [
20103                                 {
20104                                     tag: 'span',
20105                                     cls: 'minutes-up glyphicon glyphicon-chevron-up'
20106                                 }
20107                             ]
20108                         }
20109                     ]
20110                 },
20111                 {
20112                     tag: 'td',
20113                     cls: 'separator'
20114                 }
20115             ]
20116         });
20117         
20118         time.createChild({
20119             tag: 'tr',
20120             cn: [
20121                 {
20122                     tag: 'td',
20123                     cn: [
20124                         {
20125                             tag: 'span',
20126                             cls: 'timepicker-hour',
20127                             html: '00'
20128                         }  
20129                     ]
20130                 },
20131                 {
20132                     tag: 'td',
20133                     cls: 'separator',
20134                     html: ':'
20135                 },
20136                 {
20137                     tag: 'td',
20138                     cn: [
20139                         {
20140                             tag: 'span',
20141                             cls: 'timepicker-minute',
20142                             html: '00'
20143                         }  
20144                     ]
20145                 },
20146                 {
20147                     tag: 'td',
20148                     cls: 'separator'
20149                 },
20150                 {
20151                     tag: 'td',
20152                     cn: [
20153                         {
20154                             tag: 'button',
20155                             type: 'button',
20156                             cls: 'btn btn-primary period',
20157                             html: 'AM'
20158                             
20159                         }
20160                     ]
20161                 }
20162             ]
20163         });
20164         
20165         time.createChild({
20166             tag: 'tr',
20167             cn: [
20168                 {
20169                     tag: 'td',
20170                     cn: [
20171                         {
20172                             tag: 'a',
20173                             href: '#',
20174                             cls: 'btn',
20175                             cn: [
20176                                 {
20177                                     tag: 'span',
20178                                     cls: 'hours-down glyphicon glyphicon-chevron-down'
20179                                 }
20180                             ]
20181                         }
20182                     ]
20183                 },
20184                 {
20185                     tag: 'td',
20186                     cls: 'separator'
20187                 },
20188                 {
20189                     tag: 'td',
20190                     cn: [
20191                         {
20192                             tag: 'a',
20193                             href: '#',
20194                             cls: 'btn',
20195                             cn: [
20196                                 {
20197                                     tag: 'span',
20198                                     cls: 'minutes-down glyphicon glyphicon-chevron-down'
20199                                 }
20200                             ]
20201                         }
20202                     ]
20203                 },
20204                 {
20205                     tag: 'td',
20206                     cls: 'separator'
20207                 }
20208             ]
20209         });
20210         
20211     },
20212     
20213     update: function()
20214     {
20215         
20216         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
20217         
20218         this.fill();
20219     },
20220     
20221     fill: function() 
20222     {
20223         var hours = this.time.getHours();
20224         var minutes = this.time.getMinutes();
20225         var period = 'AM';
20226         
20227         if(hours > 11){
20228             period = 'PM';
20229         }
20230         
20231         if(hours == 0){
20232             hours = 12;
20233         }
20234         
20235         
20236         if(hours > 12){
20237             hours = hours - 12;
20238         }
20239         
20240         if(hours < 10){
20241             hours = '0' + hours;
20242         }
20243         
20244         if(minutes < 10){
20245             minutes = '0' + minutes;
20246         }
20247         
20248         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
20249         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
20250         this.pop.select('button', true).first().dom.innerHTML = period;
20251         
20252     },
20253     
20254     place: function()
20255     {   
20256         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
20257         
20258         var cls = ['bottom'];
20259         
20260         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
20261             cls.pop();
20262             cls.push('top');
20263         }
20264         
20265         cls.push('right');
20266         
20267         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
20268             cls.pop();
20269             cls.push('left');
20270         }
20271         
20272         this.picker().addClass(cls.join('-'));
20273         
20274         var _this = this;
20275         
20276         Roo.each(cls, function(c){
20277             if(c == 'bottom'){
20278                 _this.picker().setTop(_this.inputEl().getHeight());
20279                 return;
20280             }
20281             if(c == 'top'){
20282                 _this.picker().setTop(0 - _this.picker().getHeight());
20283                 return;
20284             }
20285             
20286             if(c == 'left'){
20287                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
20288                 return;
20289             }
20290             if(c == 'right'){
20291                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
20292                 return;
20293             }
20294         });
20295         
20296     },
20297   
20298     onFocus : function()
20299     {
20300         Roo.bootstrap.TimeField.superclass.onFocus.call(this);
20301         this.show();
20302     },
20303     
20304     onBlur : function()
20305     {
20306         Roo.bootstrap.TimeField.superclass.onBlur.call(this);
20307         this.hide();
20308     },
20309     
20310     show : function()
20311     {
20312         this.picker().show();
20313         this.pop.show();
20314         this.update();
20315         this.place();
20316         
20317         this.fireEvent('show', this, this.date);
20318     },
20319     
20320     hide : function()
20321     {
20322         this.picker().hide();
20323         this.pop.hide();
20324         
20325         this.fireEvent('hide', this, this.date);
20326     },
20327     
20328     setTime : function()
20329     {
20330         this.hide();
20331         this.setValue(this.time.format(this.format));
20332         
20333         this.fireEvent('select', this, this.date);
20334         
20335         
20336     },
20337     
20338     onMousedown: function(e){
20339         e.stopPropagation();
20340         e.preventDefault();
20341     },
20342     
20343     onIncrementHours: function()
20344     {
20345         Roo.log('onIncrementHours');
20346         this.time = this.time.add(Date.HOUR, 1);
20347         this.update();
20348         
20349     },
20350     
20351     onDecrementHours: function()
20352     {
20353         Roo.log('onDecrementHours');
20354         this.time = this.time.add(Date.HOUR, -1);
20355         this.update();
20356     },
20357     
20358     onIncrementMinutes: function()
20359     {
20360         Roo.log('onIncrementMinutes');
20361         this.time = this.time.add(Date.MINUTE, 1);
20362         this.update();
20363     },
20364     
20365     onDecrementMinutes: function()
20366     {
20367         Roo.log('onDecrementMinutes');
20368         this.time = this.time.add(Date.MINUTE, -1);
20369         this.update();
20370     },
20371     
20372     onTogglePeriod: function()
20373     {
20374         Roo.log('onTogglePeriod');
20375         this.time = this.time.add(Date.HOUR, 12);
20376         this.update();
20377     }
20378     
20379    
20380 });
20381
20382 Roo.apply(Roo.bootstrap.TimeField,  {
20383     
20384     content : {
20385         tag: 'tbody',
20386         cn: [
20387             {
20388                 tag: 'tr',
20389                 cn: [
20390                 {
20391                     tag: 'td',
20392                     colspan: '7'
20393                 }
20394                 ]
20395             }
20396         ]
20397     },
20398     
20399     footer : {
20400         tag: 'tfoot',
20401         cn: [
20402             {
20403                 tag: 'tr',
20404                 cn: [
20405                 {
20406                     tag: 'th',
20407                     colspan: '7',
20408                     cls: '',
20409                     cn: [
20410                         {
20411                             tag: 'button',
20412                             cls: 'btn btn-info ok',
20413                             html: 'OK'
20414                         }
20415                     ]
20416                 }
20417
20418                 ]
20419             }
20420         ]
20421     }
20422 });
20423
20424 Roo.apply(Roo.bootstrap.TimeField,  {
20425   
20426     template : {
20427         tag: 'div',
20428         cls: 'datepicker dropdown-menu',
20429         cn: [
20430             {
20431                 tag: 'div',
20432                 cls: 'datepicker-time',
20433                 cn: [
20434                 {
20435                     tag: 'table',
20436                     cls: 'table-condensed',
20437                     cn:[
20438                     Roo.bootstrap.TimeField.content,
20439                     Roo.bootstrap.TimeField.footer
20440                     ]
20441                 }
20442                 ]
20443             }
20444         ]
20445     }
20446 });
20447
20448  
20449
20450  /*
20451  * - LGPL
20452  *
20453  * MonthField
20454  * 
20455  */
20456
20457 /**
20458  * @class Roo.bootstrap.MonthField
20459  * @extends Roo.bootstrap.Input
20460  * Bootstrap MonthField class
20461  * 
20462  * @cfg {String} language default en
20463  * 
20464  * @constructor
20465  * Create a new MonthField
20466  * @param {Object} config The config object
20467  */
20468
20469 Roo.bootstrap.MonthField = function(config){
20470     Roo.bootstrap.MonthField.superclass.constructor.call(this, config);
20471     
20472     this.addEvents({
20473         /**
20474          * @event show
20475          * Fires when this field show.
20476          * @param {Roo.bootstrap.MonthField} this
20477          * @param {Mixed} date The date value
20478          */
20479         show : true,
20480         /**
20481          * @event show
20482          * Fires when this field hide.
20483          * @param {Roo.bootstrap.MonthField} this
20484          * @param {Mixed} date The date value
20485          */
20486         hide : true,
20487         /**
20488          * @event select
20489          * Fires when select a date.
20490          * @param {Roo.bootstrap.MonthField} this
20491          * @param {String} oldvalue The old value
20492          * @param {String} newvalue The new value
20493          */
20494         select : true
20495     });
20496 };
20497
20498 Roo.extend(Roo.bootstrap.MonthField, Roo.bootstrap.Input,  {
20499     
20500     onRender: function(ct, position)
20501     {
20502         
20503         Roo.bootstrap.MonthField.superclass.onRender.call(this, ct, position);
20504         
20505         this.language = this.language || 'en';
20506         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : this.language.split('-')[0];
20507         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : "en";
20508         
20509         this.isRTL = Roo.bootstrap.MonthField.dates[this.language].rtl || false;
20510         this.isInline = false;
20511         this.isInput = true;
20512         this.component = this.el.select('.add-on', true).first() || false;
20513         this.component = (this.component && this.component.length === 0) ? false : this.component;
20514         this.hasInput = this.component && this.inputEL().length;
20515         
20516         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.MonthField.template);
20517         
20518         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20519         
20520         this.picker().on('mousedown', this.onMousedown, this);
20521         this.picker().on('click', this.onClick, this);
20522         
20523         this.picker().addClass('datepicker-dropdown');
20524         
20525         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
20526             v.setStyle('width', '189px');
20527         });
20528         
20529         this.fillMonths();
20530         
20531         this.update();
20532         
20533         if(this.isInline) {
20534             this.show();
20535         }
20536         
20537     },
20538     
20539     setValue: function(v, suppressEvent)
20540     {   
20541         var o = this.getValue();
20542         
20543         Roo.bootstrap.MonthField.superclass.setValue.call(this, v);
20544         
20545         this.update();
20546
20547         if(suppressEvent !== true){
20548             this.fireEvent('select', this, o, v);
20549         }
20550         
20551     },
20552     
20553     getValue: function()
20554     {
20555         return this.value;
20556     },
20557     
20558     onClick: function(e) 
20559     {
20560         e.stopPropagation();
20561         e.preventDefault();
20562         
20563         var target = e.getTarget();
20564         
20565         if(target.nodeName.toLowerCase() === 'i'){
20566             target = Roo.get(target).dom.parentNode;
20567         }
20568         
20569         var nodeName = target.nodeName;
20570         var className = target.className;
20571         var html = target.innerHTML;
20572         
20573         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
20574             return;
20575         }
20576         
20577         this.vIndex = Roo.bootstrap.MonthField.dates[this.language].monthsShort.indexOf(html);
20578         
20579         this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20580         
20581         this.hide();
20582                         
20583     },
20584     
20585     picker : function()
20586     {
20587         return this.pickerEl;
20588     },
20589     
20590     fillMonths: function()
20591     {    
20592         var i = 0;
20593         var months = this.picker().select('>.datepicker-months td', true).first();
20594         
20595         months.dom.innerHTML = '';
20596         
20597         while (i < 12) {
20598             var month = {
20599                 tag: 'span',
20600                 cls: 'month',
20601                 html: Roo.bootstrap.MonthField.dates[this.language].monthsShort[i++]
20602             };
20603             
20604             months.createChild(month);
20605         }
20606         
20607     },
20608     
20609     update: function()
20610     {
20611         var _this = this;
20612         
20613         if(typeof(this.vIndex) == 'undefined' && this.value.length){
20614             this.vIndex = Roo.bootstrap.MonthField.dates[this.language].months.indexOf(this.value);
20615         }
20616         
20617         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
20618             e.removeClass('active');
20619             
20620             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
20621                 e.addClass('active');
20622             }
20623         })
20624     },
20625     
20626     place: function()
20627     {
20628         if(this.isInline) {
20629             return;
20630         }
20631         
20632         this.picker().removeClass(['bottom', 'top']);
20633         
20634         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
20635             /*
20636              * place to the top of element!
20637              *
20638              */
20639             
20640             this.picker().addClass('top');
20641             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
20642             
20643             return;
20644         }
20645         
20646         this.picker().addClass('bottom');
20647         
20648         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
20649     },
20650     
20651     onFocus : function()
20652     {
20653         Roo.bootstrap.MonthField.superclass.onFocus.call(this);
20654         this.show();
20655     },
20656     
20657     onBlur : function()
20658     {
20659         Roo.bootstrap.MonthField.superclass.onBlur.call(this);
20660         
20661         var d = this.inputEl().getValue();
20662         
20663         this.setValue(d);
20664                 
20665         this.hide();
20666     },
20667     
20668     show : function()
20669     {
20670         this.picker().show();
20671         this.picker().select('>.datepicker-months', true).first().show();
20672         this.update();
20673         this.place();
20674         
20675         this.fireEvent('show', this, this.date);
20676     },
20677     
20678     hide : function()
20679     {
20680         if(this.isInline) {
20681             return;
20682         }
20683         this.picker().hide();
20684         this.fireEvent('hide', this, this.date);
20685         
20686     },
20687     
20688     onMousedown: function(e)
20689     {
20690         e.stopPropagation();
20691         e.preventDefault();
20692     },
20693     
20694     keyup: function(e)
20695     {
20696         Roo.bootstrap.MonthField.superclass.keyup.call(this);
20697         this.update();
20698     },
20699
20700     fireKey: function(e)
20701     {
20702         if (!this.picker().isVisible()){
20703             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
20704                 this.show();
20705             }
20706             return;
20707         }
20708         
20709         var dir;
20710         
20711         switch(e.keyCode){
20712             case 27: // escape
20713                 this.hide();
20714                 e.preventDefault();
20715                 break;
20716             case 37: // left
20717             case 39: // right
20718                 dir = e.keyCode == 37 ? -1 : 1;
20719                 
20720                 this.vIndex = this.vIndex + dir;
20721                 
20722                 if(this.vIndex < 0){
20723                     this.vIndex = 0;
20724                 }
20725                 
20726                 if(this.vIndex > 11){
20727                     this.vIndex = 11;
20728                 }
20729                 
20730                 if(isNaN(this.vIndex)){
20731                     this.vIndex = 0;
20732                 }
20733                 
20734                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20735                 
20736                 break;
20737             case 38: // up
20738             case 40: // down
20739                 
20740                 dir = e.keyCode == 38 ? -1 : 1;
20741                 
20742                 this.vIndex = this.vIndex + dir * 4;
20743                 
20744                 if(this.vIndex < 0){
20745                     this.vIndex = 0;
20746                 }
20747                 
20748                 if(this.vIndex > 11){
20749                     this.vIndex = 11;
20750                 }
20751                 
20752                 if(isNaN(this.vIndex)){
20753                     this.vIndex = 0;
20754                 }
20755                 
20756                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20757                 break;
20758                 
20759             case 13: // enter
20760                 
20761                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20762                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20763                 }
20764                 
20765                 this.hide();
20766                 e.preventDefault();
20767                 break;
20768             case 9: // tab
20769                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20770                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20771                 }
20772                 this.hide();
20773                 break;
20774             case 16: // shift
20775             case 17: // ctrl
20776             case 18: // alt
20777                 break;
20778             default :
20779                 this.hide();
20780                 
20781         }
20782     },
20783     
20784     remove: function() 
20785     {
20786         this.picker().remove();
20787     }
20788    
20789 });
20790
20791 Roo.apply(Roo.bootstrap.MonthField,  {
20792     
20793     content : {
20794         tag: 'tbody',
20795         cn: [
20796         {
20797             tag: 'tr',
20798             cn: [
20799             {
20800                 tag: 'td',
20801                 colspan: '7'
20802             }
20803             ]
20804         }
20805         ]
20806     },
20807     
20808     dates:{
20809         en: {
20810             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
20811             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
20812         }
20813     }
20814 });
20815
20816 Roo.apply(Roo.bootstrap.MonthField,  {
20817   
20818     template : {
20819         tag: 'div',
20820         cls: 'datepicker dropdown-menu roo-dynamic',
20821         cn: [
20822             {
20823                 tag: 'div',
20824                 cls: 'datepicker-months',
20825                 cn: [
20826                 {
20827                     tag: 'table',
20828                     cls: 'table-condensed',
20829                     cn:[
20830                         Roo.bootstrap.DateField.content
20831                     ]
20832                 }
20833                 ]
20834             }
20835         ]
20836     }
20837 });
20838
20839  
20840
20841  
20842  /*
20843  * - LGPL
20844  *
20845  * CheckBox
20846  * 
20847  */
20848
20849 /**
20850  * @class Roo.bootstrap.CheckBox
20851  * @extends Roo.bootstrap.Input
20852  * Bootstrap CheckBox class
20853  * 
20854  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20855  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
20856  * @cfg {String} boxLabel The text that appears beside the checkbox
20857  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
20858  * @cfg {Boolean} checked initnal the element
20859  * @cfg {Boolean} inline inline the element (default false)
20860  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
20861  * @cfg {String} tooltip label tooltip
20862  * 
20863  * @constructor
20864  * Create a new CheckBox
20865  * @param {Object} config The config object
20866  */
20867
20868 Roo.bootstrap.CheckBox = function(config){
20869     Roo.bootstrap.CheckBox.superclass.constructor.call(this, config);
20870    
20871     this.addEvents({
20872         /**
20873         * @event check
20874         * Fires when the element is checked or unchecked.
20875         * @param {Roo.bootstrap.CheckBox} this This input
20876         * @param {Boolean} checked The new checked value
20877         */
20878        check : true,
20879        /**
20880         * @event click
20881         * Fires when the element is click.
20882         * @param {Roo.bootstrap.CheckBox} this This input
20883         */
20884        click : true
20885     });
20886     
20887 };
20888
20889 Roo.extend(Roo.bootstrap.CheckBox, Roo.bootstrap.Input,  {
20890   
20891     inputType: 'checkbox',
20892     inputValue: 1,
20893     valueOff: 0,
20894     boxLabel: false,
20895     checked: false,
20896     weight : false,
20897     inline: false,
20898     tooltip : '',
20899     
20900     getAutoCreate : function()
20901     {
20902         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
20903         
20904         var id = Roo.id();
20905         
20906         var cfg = {};
20907         
20908         cfg.cls = 'form-group ' + this.inputType; //input-group
20909         
20910         if(this.inline){
20911             cfg.cls += ' ' + this.inputType + '-inline';
20912         }
20913         
20914         var input =  {
20915             tag: 'input',
20916             id : id,
20917             type : this.inputType,
20918             value : this.inputValue,
20919             cls : 'roo-' + this.inputType, //'form-box',
20920             placeholder : this.placeholder || ''
20921             
20922         };
20923         
20924         if(this.inputType != 'radio'){
20925             var hidden =  {
20926                 tag: 'input',
20927                 type : 'hidden',
20928                 cls : 'roo-hidden-value',
20929                 value : this.checked ? this.inputValue : this.valueOff
20930             };
20931         }
20932         
20933             
20934         if (this.weight) { // Validity check?
20935             cfg.cls += " " + this.inputType + "-" + this.weight;
20936         }
20937         
20938         if (this.disabled) {
20939             input.disabled=true;
20940         }
20941         
20942         if(this.checked){
20943             input.checked = this.checked;
20944         }
20945         
20946         if (this.name) {
20947             
20948             input.name = this.name;
20949             
20950             if(this.inputType != 'radio'){
20951                 hidden.name = this.name;
20952                 input.name = '_hidden_' + this.name;
20953             }
20954         }
20955         
20956         if (this.size) {
20957             input.cls += ' input-' + this.size;
20958         }
20959         
20960         var settings=this;
20961         
20962         ['xs','sm','md','lg'].map(function(size){
20963             if (settings[size]) {
20964                 cfg.cls += ' col-' + size + '-' + settings[size];
20965             }
20966         });
20967         
20968         var inputblock = input;
20969          
20970         if (this.before || this.after) {
20971             
20972             inputblock = {
20973                 cls : 'input-group',
20974                 cn :  [] 
20975             };
20976             
20977             if (this.before) {
20978                 inputblock.cn.push({
20979                     tag :'span',
20980                     cls : 'input-group-addon',
20981                     html : this.before
20982                 });
20983             }
20984             
20985             inputblock.cn.push(input);
20986             
20987             if(this.inputType != 'radio'){
20988                 inputblock.cn.push(hidden);
20989             }
20990             
20991             if (this.after) {
20992                 inputblock.cn.push({
20993                     tag :'span',
20994                     cls : 'input-group-addon',
20995                     html : this.after
20996                 });
20997             }
20998             
20999         }
21000         
21001         if (align ==='left' && this.fieldLabel.length) {
21002 //                Roo.log("left and has label");
21003             cfg.cn = [
21004                 {
21005                     tag: 'label',
21006                     'for' :  id,
21007                     cls : 'control-label',
21008                     html : this.fieldLabel
21009                 },
21010                 {
21011                     cls : "", 
21012                     cn: [
21013                         inputblock
21014                     ]
21015                 }
21016             ];
21017             
21018             if(this.labelWidth > 12){
21019                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
21020             }
21021             
21022             if(this.labelWidth < 13 && this.labelmd == 0){
21023                 this.labelmd = this.labelWidth;
21024             }
21025             
21026             if(this.labellg > 0){
21027                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
21028                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
21029             }
21030             
21031             if(this.labelmd > 0){
21032                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
21033                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
21034             }
21035             
21036             if(this.labelsm > 0){
21037                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
21038                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
21039             }
21040             
21041             if(this.labelxs > 0){
21042                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
21043                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
21044             }
21045             
21046         } else if ( this.fieldLabel.length) {
21047 //                Roo.log(" label");
21048                 cfg.cn = [
21049                    
21050                     {
21051                         tag: this.boxLabel ? 'span' : 'label',
21052                         'for': id,
21053                         cls: 'control-label box-input-label',
21054                         //cls : 'input-group-addon',
21055                         html : this.fieldLabel
21056                     },
21057                     
21058                     inputblock
21059                     
21060                 ];
21061
21062         } else {
21063             
21064 //                Roo.log(" no label && no align");
21065                 cfg.cn = [  inputblock ] ;
21066                 
21067                 
21068         }
21069         
21070         if(this.boxLabel){
21071              var boxLabelCfg = {
21072                 tag: 'label',
21073                 //'for': id, // box label is handled by onclick - so no for...
21074                 cls: 'box-label',
21075                 html: this.boxLabel
21076             };
21077             
21078             if(this.tooltip){
21079                 boxLabelCfg.tooltip = this.tooltip;
21080             }
21081              
21082             cfg.cn.push(boxLabelCfg);
21083         }
21084         
21085         if(this.inputType != 'radio'){
21086             cfg.cn.push(hidden);
21087         }
21088         
21089         return cfg;
21090         
21091     },
21092     
21093     /**
21094      * return the real input element.
21095      */
21096     inputEl: function ()
21097     {
21098         return this.el.select('input.roo-' + this.inputType,true).first();
21099     },
21100     hiddenEl: function ()
21101     {
21102         return this.el.select('input.roo-hidden-value',true).first();
21103     },
21104     
21105     labelEl: function()
21106     {
21107         return this.el.select('label.control-label',true).first();
21108     },
21109     /* depricated... */
21110     
21111     label: function()
21112     {
21113         return this.labelEl();
21114     },
21115     
21116     boxLabelEl: function()
21117     {
21118         return this.el.select('label.box-label',true).first();
21119     },
21120     
21121     initEvents : function()
21122     {
21123 //        Roo.bootstrap.CheckBox.superclass.initEvents.call(this);
21124         
21125         this.inputEl().on('click', this.onClick,  this);
21126         
21127         if (this.boxLabel) { 
21128             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
21129         }
21130         
21131         this.startValue = this.getValue();
21132         
21133         if(this.groupId){
21134             Roo.bootstrap.CheckBox.register(this);
21135         }
21136     },
21137     
21138     onClick : function(e)
21139     {   
21140         if(this.fireEvent('click', this, e) !== false){
21141             this.setChecked(!this.checked);
21142         }
21143         
21144     },
21145     
21146     setChecked : function(state,suppressEvent)
21147     {
21148         this.startValue = this.getValue();
21149
21150         if(this.inputType == 'radio'){
21151             
21152             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21153                 e.dom.checked = false;
21154             });
21155             
21156             this.inputEl().dom.checked = true;
21157             
21158             this.inputEl().dom.value = this.inputValue;
21159             
21160             if(suppressEvent !== true){
21161                 this.fireEvent('check', this, true);
21162             }
21163             
21164             this.validate();
21165             
21166             return;
21167         }
21168         
21169         this.checked = state;
21170         
21171         this.inputEl().dom.checked = state;
21172         
21173         
21174         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
21175         
21176         if(suppressEvent !== true){
21177             this.fireEvent('check', this, state);
21178         }
21179         
21180         this.validate();
21181     },
21182     
21183     getValue : function()
21184     {
21185         if(this.inputType == 'radio'){
21186             return this.getGroupValue();
21187         }
21188         
21189         return this.hiddenEl().dom.value;
21190         
21191     },
21192     
21193     getGroupValue : function()
21194     {
21195         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
21196             return '';
21197         }
21198         
21199         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
21200     },
21201     
21202     setValue : function(v,suppressEvent)
21203     {
21204         if(this.inputType == 'radio'){
21205             this.setGroupValue(v, suppressEvent);
21206             return;
21207         }
21208         
21209         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
21210         
21211         this.validate();
21212     },
21213     
21214     setGroupValue : function(v, suppressEvent)
21215     {
21216         this.startValue = this.getValue();
21217         
21218         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21219             e.dom.checked = false;
21220             
21221             if(e.dom.value == v){
21222                 e.dom.checked = true;
21223             }
21224         });
21225         
21226         if(suppressEvent !== true){
21227             this.fireEvent('check', this, true);
21228         }
21229
21230         this.validate();
21231         
21232         return;
21233     },
21234     
21235     validate : function()
21236     {
21237         if(this.getVisibilityEl().hasClass('hidden')){
21238             return true;
21239         }
21240         
21241         if(
21242                 this.disabled || 
21243                 (this.inputType == 'radio' && this.validateRadio()) ||
21244                 (this.inputType == 'checkbox' && this.validateCheckbox())
21245         ){
21246             this.markValid();
21247             return true;
21248         }
21249         
21250         this.markInvalid();
21251         return false;
21252     },
21253     
21254     validateRadio : function()
21255     {
21256         if(this.getVisibilityEl().hasClass('hidden')){
21257             return true;
21258         }
21259         
21260         if(this.allowBlank){
21261             return true;
21262         }
21263         
21264         var valid = false;
21265         
21266         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21267             if(!e.dom.checked){
21268                 return;
21269             }
21270             
21271             valid = true;
21272             
21273             return false;
21274         });
21275         
21276         return valid;
21277     },
21278     
21279     validateCheckbox : function()
21280     {
21281         if(!this.groupId){
21282             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
21283             //return (this.getValue() == this.inputValue) ? true : false;
21284         }
21285         
21286         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21287         
21288         if(!group){
21289             return false;
21290         }
21291         
21292         var r = false;
21293         
21294         for(var i in group){
21295             if(group[i].el.isVisible(true)){
21296                 r = false;
21297                 break;
21298             }
21299             
21300             r = true;
21301         }
21302         
21303         for(var i in group){
21304             if(r){
21305                 break;
21306             }
21307             
21308             r = (group[i].getValue() == group[i].inputValue) ? true : false;
21309         }
21310         
21311         return r;
21312     },
21313     
21314     /**
21315      * Mark this field as valid
21316      */
21317     markValid : function()
21318     {
21319         var _this = this;
21320         
21321         this.fireEvent('valid', this);
21322         
21323         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21324         
21325         if(this.groupId){
21326             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21327         }
21328         
21329         if(label){
21330             label.markValid();
21331         }
21332
21333         if(this.inputType == 'radio'){
21334             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21335                 var fg = e.findParent('.form-group', false, true);
21336                 if (Roo.bootstrap.version == 3) {
21337                     fg.removeClass([_this.invalidClass, _this.validClass]);
21338                     fg.addClass(_this.validClass);
21339                 } else {
21340                     fg.removeClass(['is-valid', 'is-invalid']);
21341                     fg.addClass('is-valid');
21342                 }
21343             });
21344             
21345             return;
21346         }
21347
21348         if(!this.groupId){
21349             var fg = this.el.findParent('.form-group', false, true);
21350             if (Roo.bootstrap.version == 3) {
21351                 fg.removeClass([this.invalidClass, this.validClass]);
21352                 fg.addClass(this.validClass);
21353             } else {
21354                 fg.removeClass(['is-valid', 'is-invalid']);
21355                 fg.addClass('is-valid');
21356             }
21357             return;
21358         }
21359         
21360         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21361         
21362         if(!group){
21363             return;
21364         }
21365         
21366         for(var i in group){
21367             var fg = group[i].el.findParent('.form-group', false, true);
21368             if (Roo.bootstrap.version == 3) {
21369                 fg.removeClass([this.invalidClass, this.validClass]);
21370                 fg.addClass(this.validClass);
21371             } else {
21372                 fg.removeClass(['is-valid', 'is-invalid']);
21373                 fg.addClass('is-valid');
21374             }
21375         }
21376     },
21377     
21378      /**
21379      * Mark this field as invalid
21380      * @param {String} msg The validation message
21381      */
21382     markInvalid : function(msg)
21383     {
21384         if(this.allowBlank){
21385             return;
21386         }
21387         
21388         var _this = this;
21389         
21390         this.fireEvent('invalid', this, msg);
21391         
21392         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21393         
21394         if(this.groupId){
21395             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21396         }
21397         
21398         if(label){
21399             label.markInvalid();
21400         }
21401             
21402         if(this.inputType == 'radio'){
21403             
21404             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21405                 var fg = e.findParent('.form-group', false, true);
21406                 if (Roo.bootstrap.version == 3) {
21407                     fg.removeClass([_this.invalidClass, _this.validClass]);
21408                     fg.addClass(_this.invalidClass);
21409                 } else {
21410                     fg.removeClass(['is-invalid', 'is-valid']);
21411                     fg.addClass('is-invalid');
21412                 }
21413             });
21414             
21415             return;
21416         }
21417         
21418         if(!this.groupId){
21419             var fg = this.el.findParent('.form-group', false, true);
21420             if (Roo.bootstrap.version == 3) {
21421                 fg.removeClass([_this.invalidClass, _this.validClass]);
21422                 fg.addClass(_this.invalidClass);
21423             } else {
21424                 fg.removeClass(['is-invalid', 'is-valid']);
21425                 fg.addClass('is-invalid');
21426             }
21427             return;
21428         }
21429         
21430         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21431         
21432         if(!group){
21433             return;
21434         }
21435         
21436         for(var i in group){
21437             var fg = group[i].el.findParent('.form-group', false, true);
21438             if (Roo.bootstrap.version == 3) {
21439                 fg.removeClass([_this.invalidClass, _this.validClass]);
21440                 fg.addClass(_this.invalidClass);
21441             } else {
21442                 fg.removeClass(['is-invalid', 'is-valid']);
21443                 fg.addClass('is-invalid');
21444             }
21445         }
21446         
21447     },
21448     
21449     clearInvalid : function()
21450     {
21451         Roo.bootstrap.Input.prototype.clearInvalid.call(this);
21452         
21453         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
21454         
21455         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21456         
21457         if (label && label.iconEl) {
21458             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
21459             label.iconEl.removeClass(['is-invalid', 'is-valid']);
21460         }
21461     },
21462     
21463     disable : function()
21464     {
21465         if(this.inputType != 'radio'){
21466             Roo.bootstrap.CheckBox.superclass.disable.call(this);
21467             return;
21468         }
21469         
21470         var _this = this;
21471         
21472         if(this.rendered){
21473             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21474                 _this.getActionEl().addClass(this.disabledClass);
21475                 e.dom.disabled = true;
21476             });
21477         }
21478         
21479         this.disabled = true;
21480         this.fireEvent("disable", this);
21481         return this;
21482     },
21483
21484     enable : function()
21485     {
21486         if(this.inputType != 'radio'){
21487             Roo.bootstrap.CheckBox.superclass.enable.call(this);
21488             return;
21489         }
21490         
21491         var _this = this;
21492         
21493         if(this.rendered){
21494             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21495                 _this.getActionEl().removeClass(this.disabledClass);
21496                 e.dom.disabled = false;
21497             });
21498         }
21499         
21500         this.disabled = false;
21501         this.fireEvent("enable", this);
21502         return this;
21503     },
21504     
21505     setBoxLabel : function(v)
21506     {
21507         this.boxLabel = v;
21508         
21509         if(this.rendered){
21510             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21511         }
21512     }
21513
21514 });
21515
21516 Roo.apply(Roo.bootstrap.CheckBox, {
21517     
21518     groups: {},
21519     
21520      /**
21521     * register a CheckBox Group
21522     * @param {Roo.bootstrap.CheckBox} the CheckBox to add
21523     */
21524     register : function(checkbox)
21525     {
21526         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
21527             this.groups[checkbox.groupId] = {};
21528         }
21529         
21530         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
21531             return;
21532         }
21533         
21534         this.groups[checkbox.groupId][checkbox.name] = checkbox;
21535         
21536     },
21537     /**
21538     * fetch a CheckBox Group based on the group ID
21539     * @param {string} the group ID
21540     * @returns {Roo.bootstrap.CheckBox} the CheckBox group
21541     */
21542     get: function(groupId) {
21543         if (typeof(this.groups[groupId]) == 'undefined') {
21544             return false;
21545         }
21546         
21547         return this.groups[groupId] ;
21548     }
21549     
21550     
21551 });
21552 /*
21553  * - LGPL
21554  *
21555  * RadioItem
21556  * 
21557  */
21558
21559 /**
21560  * @class Roo.bootstrap.Radio
21561  * @extends Roo.bootstrap.Component
21562  * Bootstrap Radio class
21563  * @cfg {String} boxLabel - the label associated
21564  * @cfg {String} value - the value of radio
21565  * 
21566  * @constructor
21567  * Create a new Radio
21568  * @param {Object} config The config object
21569  */
21570 Roo.bootstrap.Radio = function(config){
21571     Roo.bootstrap.Radio.superclass.constructor.call(this, config);
21572     
21573 };
21574
21575 Roo.extend(Roo.bootstrap.Radio, Roo.bootstrap.Component, {
21576     
21577     boxLabel : '',
21578     
21579     value : '',
21580     
21581     getAutoCreate : function()
21582     {
21583         var cfg = {
21584             tag : 'div',
21585             cls : 'form-group radio',
21586             cn : [
21587                 {
21588                     tag : 'label',
21589                     cls : 'box-label',
21590                     html : this.boxLabel
21591                 }
21592             ]
21593         };
21594         
21595         return cfg;
21596     },
21597     
21598     initEvents : function() 
21599     {
21600         this.parent().register(this);
21601         
21602         this.el.on('click', this.onClick, this);
21603         
21604     },
21605     
21606     onClick : function(e)
21607     {
21608         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
21609             this.setChecked(true);
21610         }
21611     },
21612     
21613     setChecked : function(state, suppressEvent)
21614     {
21615         this.parent().setValue(this.value, suppressEvent);
21616         
21617     },
21618     
21619     setBoxLabel : function(v)
21620     {
21621         this.boxLabel = v;
21622         
21623         if(this.rendered){
21624             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21625         }
21626     }
21627     
21628 });
21629  
21630
21631  /*
21632  * - LGPL
21633  *
21634  * Input
21635  * 
21636  */
21637
21638 /**
21639  * @class Roo.bootstrap.SecurePass
21640  * @extends Roo.bootstrap.Input
21641  * Bootstrap SecurePass class
21642  *
21643  * 
21644  * @constructor
21645  * Create a new SecurePass
21646  * @param {Object} config The config object
21647  */
21648  
21649 Roo.bootstrap.SecurePass = function (config) {
21650     // these go here, so the translation tool can replace them..
21651     this.errors = {
21652         PwdEmpty: "Please type a password, and then retype it to confirm.",
21653         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21654         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21655         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21656         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21657         FNInPwd: "Your password can't contain your first name. Please type a different password.",
21658         LNInPwd: "Your password can't contain your last name. Please type a different password.",
21659         TooWeak: "Your password is Too Weak."
21660     },
21661     this.meterLabel = "Password strength:";
21662     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
21663     this.meterClass = [
21664         "roo-password-meter-tooweak", 
21665         "roo-password-meter-weak", 
21666         "roo-password-meter-medium", 
21667         "roo-password-meter-strong", 
21668         "roo-password-meter-grey"
21669     ];
21670     
21671     this.errors = {};
21672     
21673     Roo.bootstrap.SecurePass.superclass.constructor.call(this, config);
21674 }
21675
21676 Roo.extend(Roo.bootstrap.SecurePass, Roo.bootstrap.Input, {
21677     /**
21678      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
21679      * {
21680      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
21681      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21682      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21683      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21684      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21685      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
21686      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
21687      * })
21688      */
21689     // private
21690     
21691     meterWidth: 300,
21692     errorMsg :'',    
21693     errors: false,
21694     imageRoot: '/',
21695     /**
21696      * @cfg {String/Object} Label for the strength meter (defaults to
21697      * 'Password strength:')
21698      */
21699     // private
21700     meterLabel: '',
21701     /**
21702      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
21703      * ['Weak', 'Medium', 'Strong'])
21704      */
21705     // private    
21706     pwdStrengths: false,    
21707     // private
21708     strength: 0,
21709     // private
21710     _lastPwd: null,
21711     // private
21712     kCapitalLetter: 0,
21713     kSmallLetter: 1,
21714     kDigit: 2,
21715     kPunctuation: 3,
21716     
21717     insecure: false,
21718     // private
21719     initEvents: function ()
21720     {
21721         Roo.bootstrap.SecurePass.superclass.initEvents.call(this);
21722
21723         if (this.el.is('input[type=password]') && Roo.isSafari) {
21724             this.el.on('keydown', this.SafariOnKeyDown, this);
21725         }
21726
21727         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
21728     },
21729     // private
21730     onRender: function (ct, position)
21731     {
21732         Roo.bootstrap.SecurePass.superclass.onRender.call(this, ct, position);
21733         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
21734         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
21735
21736         this.trigger.createChild({
21737                    cn: [
21738                     {
21739                     //id: 'PwdMeter',
21740                     tag: 'div',
21741                     cls: 'roo-password-meter-grey col-xs-12',
21742                     style: {
21743                         //width: 0,
21744                         //width: this.meterWidth + 'px'                                                
21745                         }
21746                     },
21747                     {                            
21748                          cls: 'roo-password-meter-text'                          
21749                     }
21750                 ]            
21751         });
21752
21753          
21754         if (this.hideTrigger) {
21755             this.trigger.setDisplayed(false);
21756         }
21757         this.setSize(this.width || '', this.height || '');
21758     },
21759     // private
21760     onDestroy: function ()
21761     {
21762         if (this.trigger) {
21763             this.trigger.removeAllListeners();
21764             this.trigger.remove();
21765         }
21766         if (this.wrap) {
21767             this.wrap.remove();
21768         }
21769         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
21770     },
21771     // private
21772     checkStrength: function ()
21773     {
21774         var pwd = this.inputEl().getValue();
21775         if (pwd == this._lastPwd) {
21776             return;
21777         }
21778
21779         var strength;
21780         if (this.ClientSideStrongPassword(pwd)) {
21781             strength = 3;
21782         } else if (this.ClientSideMediumPassword(pwd)) {
21783             strength = 2;
21784         } else if (this.ClientSideWeakPassword(pwd)) {
21785             strength = 1;
21786         } else {
21787             strength = 0;
21788         }
21789         
21790         Roo.log('strength1: ' + strength);
21791         
21792         //var pm = this.trigger.child('div/div/div').dom;
21793         var pm = this.trigger.child('div/div');
21794         pm.removeClass(this.meterClass);
21795         pm.addClass(this.meterClass[strength]);
21796                 
21797         
21798         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21799                 
21800         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21801         
21802         this._lastPwd = pwd;
21803     },
21804     reset: function ()
21805     {
21806         Roo.bootstrap.SecurePass.superclass.reset.call(this);
21807         
21808         this._lastPwd = '';
21809         
21810         var pm = this.trigger.child('div/div');
21811         pm.removeClass(this.meterClass);
21812         pm.addClass('roo-password-meter-grey');        
21813         
21814         
21815         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21816         
21817         pt.innerHTML = '';
21818         this.inputEl().dom.type='password';
21819     },
21820     // private
21821     validateValue: function (value)
21822     {
21823         
21824         if (!Roo.bootstrap.SecurePass.superclass.validateValue.call(this, value)) {
21825             return false;
21826         }
21827         if (value.length == 0) {
21828             if (this.allowBlank) {
21829                 this.clearInvalid();
21830                 return true;
21831             }
21832
21833             this.markInvalid(this.errors.PwdEmpty);
21834             this.errorMsg = this.errors.PwdEmpty;
21835             return false;
21836         }
21837         
21838         if(this.insecure){
21839             return true;
21840         }
21841         
21842         if ('[\x21-\x7e]*'.match(value)) {
21843             this.markInvalid(this.errors.PwdBadChar);
21844             this.errorMsg = this.errors.PwdBadChar;
21845             return false;
21846         }
21847         if (value.length < 6) {
21848             this.markInvalid(this.errors.PwdShort);
21849             this.errorMsg = this.errors.PwdShort;
21850             return false;
21851         }
21852         if (value.length > 16) {
21853             this.markInvalid(this.errors.PwdLong);
21854             this.errorMsg = this.errors.PwdLong;
21855             return false;
21856         }
21857         var strength;
21858         if (this.ClientSideStrongPassword(value)) {
21859             strength = 3;
21860         } else if (this.ClientSideMediumPassword(value)) {
21861             strength = 2;
21862         } else if (this.ClientSideWeakPassword(value)) {
21863             strength = 1;
21864         } else {
21865             strength = 0;
21866         }
21867
21868         
21869         if (strength < 2) {
21870             //this.markInvalid(this.errors.TooWeak);
21871             this.errorMsg = this.errors.TooWeak;
21872             //return false;
21873         }
21874         
21875         
21876         console.log('strength2: ' + strength);
21877         
21878         //var pm = this.trigger.child('div/div/div').dom;
21879         
21880         var pm = this.trigger.child('div/div');
21881         pm.removeClass(this.meterClass);
21882         pm.addClass(this.meterClass[strength]);
21883                 
21884         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21885                 
21886         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21887         
21888         this.errorMsg = ''; 
21889         return true;
21890     },
21891     // private
21892     CharacterSetChecks: function (type)
21893     {
21894         this.type = type;
21895         this.fResult = false;
21896     },
21897     // private
21898     isctype: function (character, type)
21899     {
21900         switch (type) {  
21901             case this.kCapitalLetter:
21902                 if (character >= 'A' && character <= 'Z') {
21903                     return true;
21904                 }
21905                 break;
21906             
21907             case this.kSmallLetter:
21908                 if (character >= 'a' && character <= 'z') {
21909                     return true;
21910                 }
21911                 break;
21912             
21913             case this.kDigit:
21914                 if (character >= '0' && character <= '9') {
21915                     return true;
21916                 }
21917                 break;
21918             
21919             case this.kPunctuation:
21920                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
21921                     return true;
21922                 }
21923                 break;
21924             
21925             default:
21926                 return false;
21927         }
21928
21929     },
21930     // private
21931     IsLongEnough: function (pwd, size)
21932     {
21933         return !(pwd == null || isNaN(size) || pwd.length < size);
21934     },
21935     // private
21936     SpansEnoughCharacterSets: function (word, nb)
21937     {
21938         if (!this.IsLongEnough(word, nb))
21939         {
21940             return false;
21941         }
21942
21943         var characterSetChecks = new Array(
21944             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
21945             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
21946         );
21947         
21948         for (var index = 0; index < word.length; ++index) {
21949             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
21950                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
21951                     characterSetChecks[nCharSet].fResult = true;
21952                     break;
21953                 }
21954             }
21955         }
21956
21957         var nCharSets = 0;
21958         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
21959             if (characterSetChecks[nCharSet].fResult) {
21960                 ++nCharSets;
21961             }
21962         }
21963
21964         if (nCharSets < nb) {
21965             return false;
21966         }
21967         return true;
21968     },
21969     // private
21970     ClientSideStrongPassword: function (pwd)
21971     {
21972         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
21973     },
21974     // private
21975     ClientSideMediumPassword: function (pwd)
21976     {
21977         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
21978     },
21979     // private
21980     ClientSideWeakPassword: function (pwd)
21981     {
21982         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
21983     }
21984           
21985 })//<script type="text/javascript">
21986
21987 /*
21988  * Based  Ext JS Library 1.1.1
21989  * Copyright(c) 2006-2007, Ext JS, LLC.
21990  * LGPL
21991  *
21992  */
21993  
21994 /**
21995  * @class Roo.HtmlEditorCore
21996  * @extends Roo.Component
21997  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
21998  *
21999  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22000  */
22001
22002 Roo.HtmlEditorCore = function(config){
22003     
22004     
22005     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
22006     
22007     
22008     this.addEvents({
22009         /**
22010          * @event initialize
22011          * Fires when the editor is fully initialized (including the iframe)
22012          * @param {Roo.HtmlEditorCore} this
22013          */
22014         initialize: true,
22015         /**
22016          * @event activate
22017          * Fires when the editor is first receives the focus. Any insertion must wait
22018          * until after this event.
22019          * @param {Roo.HtmlEditorCore} this
22020          */
22021         activate: true,
22022          /**
22023          * @event beforesync
22024          * Fires before the textarea is updated with content from the editor iframe. Return false
22025          * to cancel the sync.
22026          * @param {Roo.HtmlEditorCore} this
22027          * @param {String} html
22028          */
22029         beforesync: true,
22030          /**
22031          * @event beforepush
22032          * Fires before the iframe editor is updated with content from the textarea. Return false
22033          * to cancel the push.
22034          * @param {Roo.HtmlEditorCore} this
22035          * @param {String} html
22036          */
22037         beforepush: true,
22038          /**
22039          * @event sync
22040          * Fires when the textarea is updated with content from the editor iframe.
22041          * @param {Roo.HtmlEditorCore} this
22042          * @param {String} html
22043          */
22044         sync: true,
22045          /**
22046          * @event push
22047          * Fires when the iframe editor is updated with content from the textarea.
22048          * @param {Roo.HtmlEditorCore} this
22049          * @param {String} html
22050          */
22051         push: true,
22052         
22053         /**
22054          * @event editorevent
22055          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22056          * @param {Roo.HtmlEditorCore} this
22057          */
22058         editorevent: true
22059         
22060     });
22061     
22062     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
22063     
22064     // defaults : white / black...
22065     this.applyBlacklists();
22066     
22067     
22068     
22069 };
22070
22071
22072 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
22073
22074
22075      /**
22076      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
22077      */
22078     
22079     owner : false,
22080     
22081      /**
22082      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22083      *                        Roo.resizable.
22084      */
22085     resizable : false,
22086      /**
22087      * @cfg {Number} height (in pixels)
22088      */   
22089     height: 300,
22090    /**
22091      * @cfg {Number} width (in pixels)
22092      */   
22093     width: 500,
22094     
22095     /**
22096      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22097      * 
22098      */
22099     stylesheets: false,
22100     
22101     // id of frame..
22102     frameId: false,
22103     
22104     // private properties
22105     validationEvent : false,
22106     deferHeight: true,
22107     initialized : false,
22108     activated : false,
22109     sourceEditMode : false,
22110     onFocus : Roo.emptyFn,
22111     iframePad:3,
22112     hideMode:'offsets',
22113     
22114     clearUp: true,
22115     
22116     // blacklist + whitelisted elements..
22117     black: false,
22118     white: false,
22119      
22120     bodyCls : '',
22121
22122     /**
22123      * Protected method that will not generally be called directly. It
22124      * is called when the editor initializes the iframe with HTML contents. Override this method if you
22125      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
22126      */
22127     getDocMarkup : function(){
22128         // body styles..
22129         var st = '';
22130         
22131         // inherit styels from page...?? 
22132         if (this.stylesheets === false) {
22133             
22134             Roo.get(document.head).select('style').each(function(node) {
22135                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22136             });
22137             
22138             Roo.get(document.head).select('link').each(function(node) { 
22139                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22140             });
22141             
22142         } else if (!this.stylesheets.length) {
22143                 // simple..
22144                 st = '<style type="text/css">' +
22145                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22146                    '</style>';
22147         } else { 
22148             st = '<style type="text/css">' +
22149                     this.stylesheets +
22150                 '</style>';
22151         }
22152         
22153         st +=  '<style type="text/css">' +
22154             'IMG { cursor: pointer } ' +
22155         '</style>';
22156
22157         var cls = 'roo-htmleditor-body';
22158         
22159         if(this.bodyCls.length){
22160             cls += ' ' + this.bodyCls;
22161         }
22162         
22163         return '<html><head>' + st  +
22164             //<style type="text/css">' +
22165             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22166             //'</style>' +
22167             ' </head><body class="' +  cls + '"></body></html>';
22168     },
22169
22170     // private
22171     onRender : function(ct, position)
22172     {
22173         var _t = this;
22174         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
22175         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
22176         
22177         
22178         this.el.dom.style.border = '0 none';
22179         this.el.dom.setAttribute('tabIndex', -1);
22180         this.el.addClass('x-hidden hide');
22181         
22182         
22183         
22184         if(Roo.isIE){ // fix IE 1px bogus margin
22185             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
22186         }
22187        
22188         
22189         this.frameId = Roo.id();
22190         
22191          
22192         
22193         var iframe = this.owner.wrap.createChild({
22194             tag: 'iframe',
22195             cls: 'form-control', // bootstrap..
22196             id: this.frameId,
22197             name: this.frameId,
22198             frameBorder : 'no',
22199             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
22200         }, this.el
22201         );
22202         
22203         
22204         this.iframe = iframe.dom;
22205
22206          this.assignDocWin();
22207         
22208         this.doc.designMode = 'on';
22209        
22210         this.doc.open();
22211         this.doc.write(this.getDocMarkup());
22212         this.doc.close();
22213
22214         
22215         var task = { // must defer to wait for browser to be ready
22216             run : function(){
22217                 //console.log("run task?" + this.doc.readyState);
22218                 this.assignDocWin();
22219                 if(this.doc.body || this.doc.readyState == 'complete'){
22220                     try {
22221                         this.doc.designMode="on";
22222                     } catch (e) {
22223                         return;
22224                     }
22225                     Roo.TaskMgr.stop(task);
22226                     this.initEditor.defer(10, this);
22227                 }
22228             },
22229             interval : 10,
22230             duration: 10000,
22231             scope: this
22232         };
22233         Roo.TaskMgr.start(task);
22234
22235     },
22236
22237     // private
22238     onResize : function(w, h)
22239     {
22240          Roo.log('resize: ' +w + ',' + h );
22241         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
22242         if(!this.iframe){
22243             return;
22244         }
22245         if(typeof w == 'number'){
22246             
22247             this.iframe.style.width = w + 'px';
22248         }
22249         if(typeof h == 'number'){
22250             
22251             this.iframe.style.height = h + 'px';
22252             if(this.doc){
22253                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
22254             }
22255         }
22256         
22257     },
22258
22259     /**
22260      * Toggles the editor between standard and source edit mode.
22261      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22262      */
22263     toggleSourceEdit : function(sourceEditMode){
22264         
22265         this.sourceEditMode = sourceEditMode === true;
22266         
22267         if(this.sourceEditMode){
22268  
22269             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
22270             
22271         }else{
22272             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
22273             //this.iframe.className = '';
22274             this.deferFocus();
22275         }
22276         //this.setSize(this.owner.wrap.getSize());
22277         //this.fireEvent('editmodechange', this, this.sourceEditMode);
22278     },
22279
22280     
22281   
22282
22283     /**
22284      * Protected method that will not generally be called directly. If you need/want
22285      * custom HTML cleanup, this is the method you should override.
22286      * @param {String} html The HTML to be cleaned
22287      * return {String} The cleaned HTML
22288      */
22289     cleanHtml : function(html){
22290         html = String(html);
22291         if(html.length > 5){
22292             if(Roo.isSafari){ // strip safari nonsense
22293                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
22294             }
22295         }
22296         if(html == '&nbsp;'){
22297             html = '';
22298         }
22299         return html;
22300     },
22301
22302     /**
22303      * HTML Editor -> Textarea
22304      * Protected method that will not generally be called directly. Syncs the contents
22305      * of the editor iframe with the textarea.
22306      */
22307     syncValue : function(){
22308         if(this.initialized){
22309             var bd = (this.doc.body || this.doc.documentElement);
22310             //this.cleanUpPaste(); -- this is done else where and causes havoc..
22311             var html = bd.innerHTML;
22312             if(Roo.isSafari){
22313                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
22314                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
22315                 if(m && m[1]){
22316                     html = '<div style="'+m[0]+'">' + html + '</div>';
22317                 }
22318             }
22319             html = this.cleanHtml(html);
22320             // fix up the special chars.. normaly like back quotes in word...
22321             // however we do not want to do this with chinese..
22322             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
22323                 var cc = b.charCodeAt();
22324                 if (
22325                     (cc >= 0x4E00 && cc < 0xA000 ) ||
22326                     (cc >= 0x3400 && cc < 0x4E00 ) ||
22327                     (cc >= 0xf900 && cc < 0xfb00 )
22328                 ) {
22329                         return b;
22330                 }
22331                 return "&#"+cc+";" 
22332             });
22333             if(this.owner.fireEvent('beforesync', this, html) !== false){
22334                 this.el.dom.value = html;
22335                 this.owner.fireEvent('sync', this, html);
22336             }
22337         }
22338     },
22339
22340     /**
22341      * Protected method that will not generally be called directly. Pushes the value of the textarea
22342      * into the iframe editor.
22343      */
22344     pushValue : function(){
22345         if(this.initialized){
22346             var v = this.el.dom.value.trim();
22347             
22348 //            if(v.length < 1){
22349 //                v = '&#160;';
22350 //            }
22351             
22352             if(this.owner.fireEvent('beforepush', this, v) !== false){
22353                 var d = (this.doc.body || this.doc.documentElement);
22354                 d.innerHTML = v;
22355                 this.cleanUpPaste();
22356                 this.el.dom.value = d.innerHTML;
22357                 this.owner.fireEvent('push', this, v);
22358             }
22359         }
22360     },
22361
22362     // private
22363     deferFocus : function(){
22364         this.focus.defer(10, this);
22365     },
22366
22367     // doc'ed in Field
22368     focus : function(){
22369         if(this.win && !this.sourceEditMode){
22370             this.win.focus();
22371         }else{
22372             this.el.focus();
22373         }
22374     },
22375     
22376     assignDocWin: function()
22377     {
22378         var iframe = this.iframe;
22379         
22380          if(Roo.isIE){
22381             this.doc = iframe.contentWindow.document;
22382             this.win = iframe.contentWindow;
22383         } else {
22384 //            if (!Roo.get(this.frameId)) {
22385 //                return;
22386 //            }
22387 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22388 //            this.win = Roo.get(this.frameId).dom.contentWindow;
22389             
22390             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
22391                 return;
22392             }
22393             
22394             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22395             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
22396         }
22397     },
22398     
22399     // private
22400     initEditor : function(){
22401         //console.log("INIT EDITOR");
22402         this.assignDocWin();
22403         
22404         
22405         
22406         this.doc.designMode="on";
22407         this.doc.open();
22408         this.doc.write(this.getDocMarkup());
22409         this.doc.close();
22410         
22411         var dbody = (this.doc.body || this.doc.documentElement);
22412         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
22413         // this copies styles from the containing element into thsi one..
22414         // not sure why we need all of this..
22415         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
22416         
22417         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
22418         //ss['background-attachment'] = 'fixed'; // w3c
22419         dbody.bgProperties = 'fixed'; // ie
22420         //Roo.DomHelper.applyStyles(dbody, ss);
22421         Roo.EventManager.on(this.doc, {
22422             //'mousedown': this.onEditorEvent,
22423             'mouseup': this.onEditorEvent,
22424             'dblclick': this.onEditorEvent,
22425             'click': this.onEditorEvent,
22426             'keyup': this.onEditorEvent,
22427             buffer:100,
22428             scope: this
22429         });
22430         if(Roo.isGecko){
22431             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
22432         }
22433         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
22434             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
22435         }
22436         this.initialized = true;
22437
22438         this.owner.fireEvent('initialize', this);
22439         this.pushValue();
22440     },
22441
22442     // private
22443     onDestroy : function(){
22444         
22445         
22446         
22447         if(this.rendered){
22448             
22449             //for (var i =0; i < this.toolbars.length;i++) {
22450             //    // fixme - ask toolbars for heights?
22451             //    this.toolbars[i].onDestroy();
22452            // }
22453             
22454             //this.wrap.dom.innerHTML = '';
22455             //this.wrap.remove();
22456         }
22457     },
22458
22459     // private
22460     onFirstFocus : function(){
22461         
22462         this.assignDocWin();
22463         
22464         
22465         this.activated = true;
22466          
22467     
22468         if(Roo.isGecko){ // prevent silly gecko errors
22469             this.win.focus();
22470             var s = this.win.getSelection();
22471             if(!s.focusNode || s.focusNode.nodeType != 3){
22472                 var r = s.getRangeAt(0);
22473                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
22474                 r.collapse(true);
22475                 this.deferFocus();
22476             }
22477             try{
22478                 this.execCmd('useCSS', true);
22479                 this.execCmd('styleWithCSS', false);
22480             }catch(e){}
22481         }
22482         this.owner.fireEvent('activate', this);
22483     },
22484
22485     // private
22486     adjustFont: function(btn){
22487         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
22488         //if(Roo.isSafari){ // safari
22489         //    adjust *= 2;
22490        // }
22491         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
22492         if(Roo.isSafari){ // safari
22493             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
22494             v =  (v < 10) ? 10 : v;
22495             v =  (v > 48) ? 48 : v;
22496             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
22497             
22498         }
22499         
22500         
22501         v = Math.max(1, v+adjust);
22502         
22503         this.execCmd('FontSize', v  );
22504     },
22505
22506     onEditorEvent : function(e)
22507     {
22508         this.owner.fireEvent('editorevent', this, e);
22509       //  this.updateToolbar();
22510         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
22511     },
22512
22513     insertTag : function(tg)
22514     {
22515         // could be a bit smarter... -> wrap the current selected tRoo..
22516         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
22517             
22518             range = this.createRange(this.getSelection());
22519             var wrappingNode = this.doc.createElement(tg.toLowerCase());
22520             wrappingNode.appendChild(range.extractContents());
22521             range.insertNode(wrappingNode);
22522
22523             return;
22524             
22525             
22526             
22527         }
22528         this.execCmd("formatblock",   tg);
22529         
22530     },
22531     
22532     insertText : function(txt)
22533     {
22534         
22535         
22536         var range = this.createRange();
22537         range.deleteContents();
22538                //alert(Sender.getAttribute('label'));
22539                
22540         range.insertNode(this.doc.createTextNode(txt));
22541     } ,
22542     
22543      
22544
22545     /**
22546      * Executes a Midas editor command on the editor document and performs necessary focus and
22547      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
22548      * @param {String} cmd The Midas command
22549      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22550      */
22551     relayCmd : function(cmd, value){
22552         this.win.focus();
22553         this.execCmd(cmd, value);
22554         this.owner.fireEvent('editorevent', this);
22555         //this.updateToolbar();
22556         this.owner.deferFocus();
22557     },
22558
22559     /**
22560      * Executes a Midas editor command directly on the editor document.
22561      * For visual commands, you should use {@link #relayCmd} instead.
22562      * <b>This should only be called after the editor is initialized.</b>
22563      * @param {String} cmd The Midas command
22564      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22565      */
22566     execCmd : function(cmd, value){
22567         this.doc.execCommand(cmd, false, value === undefined ? null : value);
22568         this.syncValue();
22569     },
22570  
22571  
22572    
22573     /**
22574      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
22575      * to insert tRoo.
22576      * @param {String} text | dom node.. 
22577      */
22578     insertAtCursor : function(text)
22579     {
22580         
22581         if(!this.activated){
22582             return;
22583         }
22584         /*
22585         if(Roo.isIE){
22586             this.win.focus();
22587             var r = this.doc.selection.createRange();
22588             if(r){
22589                 r.collapse(true);
22590                 r.pasteHTML(text);
22591                 this.syncValue();
22592                 this.deferFocus();
22593             
22594             }
22595             return;
22596         }
22597         */
22598         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
22599             this.win.focus();
22600             
22601             
22602             // from jquery ui (MIT licenced)
22603             var range, node;
22604             var win = this.win;
22605             
22606             if (win.getSelection && win.getSelection().getRangeAt) {
22607                 range = win.getSelection().getRangeAt(0);
22608                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
22609                 range.insertNode(node);
22610             } else if (win.document.selection && win.document.selection.createRange) {
22611                 // no firefox support
22612                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22613                 win.document.selection.createRange().pasteHTML(txt);
22614             } else {
22615                 // no firefox support
22616                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22617                 this.execCmd('InsertHTML', txt);
22618             } 
22619             
22620             this.syncValue();
22621             
22622             this.deferFocus();
22623         }
22624     },
22625  // private
22626     mozKeyPress : function(e){
22627         if(e.ctrlKey){
22628             var c = e.getCharCode(), cmd;
22629           
22630             if(c > 0){
22631                 c = String.fromCharCode(c).toLowerCase();
22632                 switch(c){
22633                     case 'b':
22634                         cmd = 'bold';
22635                         break;
22636                     case 'i':
22637                         cmd = 'italic';
22638                         break;
22639                     
22640                     case 'u':
22641                         cmd = 'underline';
22642                         break;
22643                     
22644                     case 'v':
22645                         this.cleanUpPaste.defer(100, this);
22646                         return;
22647                         
22648                 }
22649                 if(cmd){
22650                     this.win.focus();
22651                     this.execCmd(cmd);
22652                     this.deferFocus();
22653                     e.preventDefault();
22654                 }
22655                 
22656             }
22657         }
22658     },
22659
22660     // private
22661     fixKeys : function(){ // load time branching for fastest keydown performance
22662         if(Roo.isIE){
22663             return function(e){
22664                 var k = e.getKey(), r;
22665                 if(k == e.TAB){
22666                     e.stopEvent();
22667                     r = this.doc.selection.createRange();
22668                     if(r){
22669                         r.collapse(true);
22670                         r.pasteHTML('&#160;&#160;&#160;&#160;');
22671                         this.deferFocus();
22672                     }
22673                     return;
22674                 }
22675                 
22676                 if(k == e.ENTER){
22677                     r = this.doc.selection.createRange();
22678                     if(r){
22679                         var target = r.parentElement();
22680                         if(!target || target.tagName.toLowerCase() != 'li'){
22681                             e.stopEvent();
22682                             r.pasteHTML('<br />');
22683                             r.collapse(false);
22684                             r.select();
22685                         }
22686                     }
22687                 }
22688                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22689                     this.cleanUpPaste.defer(100, this);
22690                     return;
22691                 }
22692                 
22693                 
22694             };
22695         }else if(Roo.isOpera){
22696             return function(e){
22697                 var k = e.getKey();
22698                 if(k == e.TAB){
22699                     e.stopEvent();
22700                     this.win.focus();
22701                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
22702                     this.deferFocus();
22703                 }
22704                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22705                     this.cleanUpPaste.defer(100, this);
22706                     return;
22707                 }
22708                 
22709             };
22710         }else if(Roo.isSafari){
22711             return function(e){
22712                 var k = e.getKey();
22713                 
22714                 if(k == e.TAB){
22715                     e.stopEvent();
22716                     this.execCmd('InsertText','\t');
22717                     this.deferFocus();
22718                     return;
22719                 }
22720                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22721                     this.cleanUpPaste.defer(100, this);
22722                     return;
22723                 }
22724                 
22725              };
22726         }
22727     }(),
22728     
22729     getAllAncestors: function()
22730     {
22731         var p = this.getSelectedNode();
22732         var a = [];
22733         if (!p) {
22734             a.push(p); // push blank onto stack..
22735             p = this.getParentElement();
22736         }
22737         
22738         
22739         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
22740             a.push(p);
22741             p = p.parentNode;
22742         }
22743         a.push(this.doc.body);
22744         return a;
22745     },
22746     lastSel : false,
22747     lastSelNode : false,
22748     
22749     
22750     getSelection : function() 
22751     {
22752         this.assignDocWin();
22753         return Roo.isIE ? this.doc.selection : this.win.getSelection();
22754     },
22755     
22756     getSelectedNode: function() 
22757     {
22758         // this may only work on Gecko!!!
22759         
22760         // should we cache this!!!!
22761         
22762         
22763         
22764          
22765         var range = this.createRange(this.getSelection()).cloneRange();
22766         
22767         if (Roo.isIE) {
22768             var parent = range.parentElement();
22769             while (true) {
22770                 var testRange = range.duplicate();
22771                 testRange.moveToElementText(parent);
22772                 if (testRange.inRange(range)) {
22773                     break;
22774                 }
22775                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
22776                     break;
22777                 }
22778                 parent = parent.parentElement;
22779             }
22780             return parent;
22781         }
22782         
22783         // is ancestor a text element.
22784         var ac =  range.commonAncestorContainer;
22785         if (ac.nodeType == 3) {
22786             ac = ac.parentNode;
22787         }
22788         
22789         var ar = ac.childNodes;
22790          
22791         var nodes = [];
22792         var other_nodes = [];
22793         var has_other_nodes = false;
22794         for (var i=0;i<ar.length;i++) {
22795             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
22796                 continue;
22797             }
22798             // fullly contained node.
22799             
22800             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
22801                 nodes.push(ar[i]);
22802                 continue;
22803             }
22804             
22805             // probably selected..
22806             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
22807                 other_nodes.push(ar[i]);
22808                 continue;
22809             }
22810             // outer..
22811             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
22812                 continue;
22813             }
22814             
22815             
22816             has_other_nodes = true;
22817         }
22818         if (!nodes.length && other_nodes.length) {
22819             nodes= other_nodes;
22820         }
22821         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
22822             return false;
22823         }
22824         
22825         return nodes[0];
22826     },
22827     createRange: function(sel)
22828     {
22829         // this has strange effects when using with 
22830         // top toolbar - not sure if it's a great idea.
22831         //this.editor.contentWindow.focus();
22832         if (typeof sel != "undefined") {
22833             try {
22834                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
22835             } catch(e) {
22836                 return this.doc.createRange();
22837             }
22838         } else {
22839             return this.doc.createRange();
22840         }
22841     },
22842     getParentElement: function()
22843     {
22844         
22845         this.assignDocWin();
22846         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
22847         
22848         var range = this.createRange(sel);
22849          
22850         try {
22851             var p = range.commonAncestorContainer;
22852             while (p.nodeType == 3) { // text node
22853                 p = p.parentNode;
22854             }
22855             return p;
22856         } catch (e) {
22857             return null;
22858         }
22859     
22860     },
22861     /***
22862      *
22863      * Range intersection.. the hard stuff...
22864      *  '-1' = before
22865      *  '0' = hits..
22866      *  '1' = after.
22867      *         [ -- selected range --- ]
22868      *   [fail]                        [fail]
22869      *
22870      *    basically..
22871      *      if end is before start or  hits it. fail.
22872      *      if start is after end or hits it fail.
22873      *
22874      *   if either hits (but other is outside. - then it's not 
22875      *   
22876      *    
22877      **/
22878     
22879     
22880     // @see http://www.thismuchiknow.co.uk/?p=64.
22881     rangeIntersectsNode : function(range, node)
22882     {
22883         var nodeRange = node.ownerDocument.createRange();
22884         try {
22885             nodeRange.selectNode(node);
22886         } catch (e) {
22887             nodeRange.selectNodeContents(node);
22888         }
22889     
22890         var rangeStartRange = range.cloneRange();
22891         rangeStartRange.collapse(true);
22892     
22893         var rangeEndRange = range.cloneRange();
22894         rangeEndRange.collapse(false);
22895     
22896         var nodeStartRange = nodeRange.cloneRange();
22897         nodeStartRange.collapse(true);
22898     
22899         var nodeEndRange = nodeRange.cloneRange();
22900         nodeEndRange.collapse(false);
22901     
22902         return rangeStartRange.compareBoundaryPoints(
22903                  Range.START_TO_START, nodeEndRange) == -1 &&
22904                rangeEndRange.compareBoundaryPoints(
22905                  Range.START_TO_START, nodeStartRange) == 1;
22906         
22907          
22908     },
22909     rangeCompareNode : function(range, node)
22910     {
22911         var nodeRange = node.ownerDocument.createRange();
22912         try {
22913             nodeRange.selectNode(node);
22914         } catch (e) {
22915             nodeRange.selectNodeContents(node);
22916         }
22917         
22918         
22919         range.collapse(true);
22920     
22921         nodeRange.collapse(true);
22922      
22923         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
22924         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
22925          
22926         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
22927         
22928         var nodeIsBefore   =  ss == 1;
22929         var nodeIsAfter    = ee == -1;
22930         
22931         if (nodeIsBefore && nodeIsAfter) {
22932             return 0; // outer
22933         }
22934         if (!nodeIsBefore && nodeIsAfter) {
22935             return 1; //right trailed.
22936         }
22937         
22938         if (nodeIsBefore && !nodeIsAfter) {
22939             return 2;  // left trailed.
22940         }
22941         // fully contined.
22942         return 3;
22943     },
22944
22945     // private? - in a new class?
22946     cleanUpPaste :  function()
22947     {
22948         // cleans up the whole document..
22949         Roo.log('cleanuppaste');
22950         
22951         this.cleanUpChildren(this.doc.body);
22952         var clean = this.cleanWordChars(this.doc.body.innerHTML);
22953         if (clean != this.doc.body.innerHTML) {
22954             this.doc.body.innerHTML = clean;
22955         }
22956         
22957     },
22958     
22959     cleanWordChars : function(input) {// change the chars to hex code
22960         var he = Roo.HtmlEditorCore;
22961         
22962         var output = input;
22963         Roo.each(he.swapCodes, function(sw) { 
22964             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
22965             
22966             output = output.replace(swapper, sw[1]);
22967         });
22968         
22969         return output;
22970     },
22971     
22972     
22973     cleanUpChildren : function (n)
22974     {
22975         if (!n.childNodes.length) {
22976             return;
22977         }
22978         for (var i = n.childNodes.length-1; i > -1 ; i--) {
22979            this.cleanUpChild(n.childNodes[i]);
22980         }
22981     },
22982     
22983     
22984         
22985     
22986     cleanUpChild : function (node)
22987     {
22988         var ed = this;
22989         //console.log(node);
22990         if (node.nodeName == "#text") {
22991             // clean up silly Windows -- stuff?
22992             return; 
22993         }
22994         if (node.nodeName == "#comment") {
22995             node.parentNode.removeChild(node);
22996             // clean up silly Windows -- stuff?
22997             return; 
22998         }
22999         var lcname = node.tagName.toLowerCase();
23000         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
23001         // whitelist of tags..
23002         
23003         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
23004             // remove node.
23005             node.parentNode.removeChild(node);
23006             return;
23007             
23008         }
23009         
23010         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
23011         
23012         // remove <a name=....> as rendering on yahoo mailer is borked with this.
23013         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
23014         
23015         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
23016         //    remove_keep_children = true;
23017         //}
23018         
23019         if (remove_keep_children) {
23020             this.cleanUpChildren(node);
23021             // inserts everything just before this node...
23022             while (node.childNodes.length) {
23023                 var cn = node.childNodes[0];
23024                 node.removeChild(cn);
23025                 node.parentNode.insertBefore(cn, node);
23026             }
23027             node.parentNode.removeChild(node);
23028             return;
23029         }
23030         
23031         if (!node.attributes || !node.attributes.length) {
23032             this.cleanUpChildren(node);
23033             return;
23034         }
23035         
23036         function cleanAttr(n,v)
23037         {
23038             
23039             if (v.match(/^\./) || v.match(/^\//)) {
23040                 return;
23041             }
23042             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
23043                 return;
23044             }
23045             if (v.match(/^#/)) {
23046                 return;
23047             }
23048 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
23049             node.removeAttribute(n);
23050             
23051         }
23052         
23053         var cwhite = this.cwhite;
23054         var cblack = this.cblack;
23055             
23056         function cleanStyle(n,v)
23057         {
23058             if (v.match(/expression/)) { //XSS?? should we even bother..
23059                 node.removeAttribute(n);
23060                 return;
23061             }
23062             
23063             var parts = v.split(/;/);
23064             var clean = [];
23065             
23066             Roo.each(parts, function(p) {
23067                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
23068                 if (!p.length) {
23069                     return true;
23070                 }
23071                 var l = p.split(':').shift().replace(/\s+/g,'');
23072                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
23073                 
23074                 if ( cwhite.length && cblack.indexOf(l) > -1) {
23075 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23076                     //node.removeAttribute(n);
23077                     return true;
23078                 }
23079                 //Roo.log()
23080                 // only allow 'c whitelisted system attributes'
23081                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
23082 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23083                     //node.removeAttribute(n);
23084                     return true;
23085                 }
23086                 
23087                 
23088                  
23089                 
23090                 clean.push(p);
23091                 return true;
23092             });
23093             if (clean.length) { 
23094                 node.setAttribute(n, clean.join(';'));
23095             } else {
23096                 node.removeAttribute(n);
23097             }
23098             
23099         }
23100         
23101         
23102         for (var i = node.attributes.length-1; i > -1 ; i--) {
23103             var a = node.attributes[i];
23104             //console.log(a);
23105             
23106             if (a.name.toLowerCase().substr(0,2)=='on')  {
23107                 node.removeAttribute(a.name);
23108                 continue;
23109             }
23110             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
23111                 node.removeAttribute(a.name);
23112                 continue;
23113             }
23114             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
23115                 cleanAttr(a.name,a.value); // fixme..
23116                 continue;
23117             }
23118             if (a.name == 'style') {
23119                 cleanStyle(a.name,a.value);
23120                 continue;
23121             }
23122             /// clean up MS crap..
23123             // tecnically this should be a list of valid class'es..
23124             
23125             
23126             if (a.name == 'class') {
23127                 if (a.value.match(/^Mso/)) {
23128                     node.className = '';
23129                 }
23130                 
23131                 if (a.value.match(/^body$/)) {
23132                     node.className = '';
23133                 }
23134                 continue;
23135             }
23136             
23137             // style cleanup!?
23138             // class cleanup?
23139             
23140         }
23141         
23142         
23143         this.cleanUpChildren(node);
23144         
23145         
23146     },
23147     
23148     /**
23149      * Clean up MS wordisms...
23150      */
23151     cleanWord : function(node)
23152     {
23153         
23154         
23155         if (!node) {
23156             this.cleanWord(this.doc.body);
23157             return;
23158         }
23159         if (node.nodeName == "#text") {
23160             // clean up silly Windows -- stuff?
23161             return; 
23162         }
23163         if (node.nodeName == "#comment") {
23164             node.parentNode.removeChild(node);
23165             // clean up silly Windows -- stuff?
23166             return; 
23167         }
23168         
23169         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
23170             node.parentNode.removeChild(node);
23171             return;
23172         }
23173         
23174         // remove - but keep children..
23175         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|font)/)) {
23176             while (node.childNodes.length) {
23177                 var cn = node.childNodes[0];
23178                 node.removeChild(cn);
23179                 node.parentNode.insertBefore(cn, node);
23180             }
23181             node.parentNode.removeChild(node);
23182             this.iterateChildren(node, this.cleanWord);
23183             return;
23184         }
23185         // clean styles
23186         if (node.className.length) {
23187             
23188             var cn = node.className.split(/\W+/);
23189             var cna = [];
23190             Roo.each(cn, function(cls) {
23191                 if (cls.match(/Mso[a-zA-Z]+/)) {
23192                     return;
23193                 }
23194                 cna.push(cls);
23195             });
23196             node.className = cna.length ? cna.join(' ') : '';
23197             if (!cna.length) {
23198                 node.removeAttribute("class");
23199             }
23200         }
23201         
23202         if (node.hasAttribute("lang")) {
23203             node.removeAttribute("lang");
23204         }
23205         
23206         if (node.hasAttribute("style")) {
23207             
23208             var styles = node.getAttribute("style").split(";");
23209             var nstyle = [];
23210             Roo.each(styles, function(s) {
23211                 if (!s.match(/:/)) {
23212                     return;
23213                 }
23214                 var kv = s.split(":");
23215                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
23216                     return;
23217                 }
23218                 // what ever is left... we allow.
23219                 nstyle.push(s);
23220             });
23221             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23222             if (!nstyle.length) {
23223                 node.removeAttribute('style');
23224             }
23225         }
23226         this.iterateChildren(node, this.cleanWord);
23227         
23228         
23229         
23230     },
23231     /**
23232      * iterateChildren of a Node, calling fn each time, using this as the scole..
23233      * @param {DomNode} node node to iterate children of.
23234      * @param {Function} fn method of this class to call on each item.
23235      */
23236     iterateChildren : function(node, fn)
23237     {
23238         if (!node.childNodes.length) {
23239                 return;
23240         }
23241         for (var i = node.childNodes.length-1; i > -1 ; i--) {
23242            fn.call(this, node.childNodes[i])
23243         }
23244     },
23245     
23246     
23247     /**
23248      * cleanTableWidths.
23249      *
23250      * Quite often pasting from word etc.. results in tables with column and widths.
23251      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
23252      *
23253      */
23254     cleanTableWidths : function(node)
23255     {
23256          
23257          
23258         if (!node) {
23259             this.cleanTableWidths(this.doc.body);
23260             return;
23261         }
23262         
23263         // ignore list...
23264         if (node.nodeName == "#text" || node.nodeName == "#comment") {
23265             return; 
23266         }
23267         Roo.log(node.tagName);
23268         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
23269             this.iterateChildren(node, this.cleanTableWidths);
23270             return;
23271         }
23272         if (node.hasAttribute('width')) {
23273             node.removeAttribute('width');
23274         }
23275         
23276          
23277         if (node.hasAttribute("style")) {
23278             // pretty basic...
23279             
23280             var styles = node.getAttribute("style").split(";");
23281             var nstyle = [];
23282             Roo.each(styles, function(s) {
23283                 if (!s.match(/:/)) {
23284                     return;
23285                 }
23286                 var kv = s.split(":");
23287                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
23288                     return;
23289                 }
23290                 // what ever is left... we allow.
23291                 nstyle.push(s);
23292             });
23293             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23294             if (!nstyle.length) {
23295                 node.removeAttribute('style');
23296             }
23297         }
23298         
23299         this.iterateChildren(node, this.cleanTableWidths);
23300         
23301         
23302     },
23303     
23304     
23305     
23306     
23307     domToHTML : function(currentElement, depth, nopadtext) {
23308         
23309         depth = depth || 0;
23310         nopadtext = nopadtext || false;
23311     
23312         if (!currentElement) {
23313             return this.domToHTML(this.doc.body);
23314         }
23315         
23316         //Roo.log(currentElement);
23317         var j;
23318         var allText = false;
23319         var nodeName = currentElement.nodeName;
23320         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
23321         
23322         if  (nodeName == '#text') {
23323             
23324             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
23325         }
23326         
23327         
23328         var ret = '';
23329         if (nodeName != 'BODY') {
23330              
23331             var i = 0;
23332             // Prints the node tagName, such as <A>, <IMG>, etc
23333             if (tagName) {
23334                 var attr = [];
23335                 for(i = 0; i < currentElement.attributes.length;i++) {
23336                     // quoting?
23337                     var aname = currentElement.attributes.item(i).name;
23338                     if (!currentElement.attributes.item(i).value.length) {
23339                         continue;
23340                     }
23341                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
23342                 }
23343                 
23344                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
23345             } 
23346             else {
23347                 
23348                 // eack
23349             }
23350         } else {
23351             tagName = false;
23352         }
23353         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
23354             return ret;
23355         }
23356         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
23357             nopadtext = true;
23358         }
23359         
23360         
23361         // Traverse the tree
23362         i = 0;
23363         var currentElementChild = currentElement.childNodes.item(i);
23364         var allText = true;
23365         var innerHTML  = '';
23366         lastnode = '';
23367         while (currentElementChild) {
23368             // Formatting code (indent the tree so it looks nice on the screen)
23369             var nopad = nopadtext;
23370             if (lastnode == 'SPAN') {
23371                 nopad  = true;
23372             }
23373             // text
23374             if  (currentElementChild.nodeName == '#text') {
23375                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
23376                 toadd = nopadtext ? toadd : toadd.trim();
23377                 if (!nopad && toadd.length > 80) {
23378                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
23379                 }
23380                 innerHTML  += toadd;
23381                 
23382                 i++;
23383                 currentElementChild = currentElement.childNodes.item(i);
23384                 lastNode = '';
23385                 continue;
23386             }
23387             allText = false;
23388             
23389             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
23390                 
23391             // Recursively traverse the tree structure of the child node
23392             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
23393             lastnode = currentElementChild.nodeName;
23394             i++;
23395             currentElementChild=currentElement.childNodes.item(i);
23396         }
23397         
23398         ret += innerHTML;
23399         
23400         if (!allText) {
23401                 // The remaining code is mostly for formatting the tree
23402             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
23403         }
23404         
23405         
23406         if (tagName) {
23407             ret+= "</"+tagName+">";
23408         }
23409         return ret;
23410         
23411     },
23412         
23413     applyBlacklists : function()
23414     {
23415         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
23416         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
23417         
23418         this.white = [];
23419         this.black = [];
23420         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
23421             if (b.indexOf(tag) > -1) {
23422                 return;
23423             }
23424             this.white.push(tag);
23425             
23426         }, this);
23427         
23428         Roo.each(w, function(tag) {
23429             if (b.indexOf(tag) > -1) {
23430                 return;
23431             }
23432             if (this.white.indexOf(tag) > -1) {
23433                 return;
23434             }
23435             this.white.push(tag);
23436             
23437         }, this);
23438         
23439         
23440         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
23441             if (w.indexOf(tag) > -1) {
23442                 return;
23443             }
23444             this.black.push(tag);
23445             
23446         }, this);
23447         
23448         Roo.each(b, function(tag) {
23449             if (w.indexOf(tag) > -1) {
23450                 return;
23451             }
23452             if (this.black.indexOf(tag) > -1) {
23453                 return;
23454             }
23455             this.black.push(tag);
23456             
23457         }, this);
23458         
23459         
23460         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
23461         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
23462         
23463         this.cwhite = [];
23464         this.cblack = [];
23465         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
23466             if (b.indexOf(tag) > -1) {
23467                 return;
23468             }
23469             this.cwhite.push(tag);
23470             
23471         }, this);
23472         
23473         Roo.each(w, function(tag) {
23474             if (b.indexOf(tag) > -1) {
23475                 return;
23476             }
23477             if (this.cwhite.indexOf(tag) > -1) {
23478                 return;
23479             }
23480             this.cwhite.push(tag);
23481             
23482         }, this);
23483         
23484         
23485         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
23486             if (w.indexOf(tag) > -1) {
23487                 return;
23488             }
23489             this.cblack.push(tag);
23490             
23491         }, this);
23492         
23493         Roo.each(b, function(tag) {
23494             if (w.indexOf(tag) > -1) {
23495                 return;
23496             }
23497             if (this.cblack.indexOf(tag) > -1) {
23498                 return;
23499             }
23500             this.cblack.push(tag);
23501             
23502         }, this);
23503     },
23504     
23505     setStylesheets : function(stylesheets)
23506     {
23507         if(typeof(stylesheets) == 'string'){
23508             Roo.get(this.iframe.contentDocument.head).createChild({
23509                 tag : 'link',
23510                 rel : 'stylesheet',
23511                 type : 'text/css',
23512                 href : stylesheets
23513             });
23514             
23515             return;
23516         }
23517         var _this = this;
23518      
23519         Roo.each(stylesheets, function(s) {
23520             if(!s.length){
23521                 return;
23522             }
23523             
23524             Roo.get(_this.iframe.contentDocument.head).createChild({
23525                 tag : 'link',
23526                 rel : 'stylesheet',
23527                 type : 'text/css',
23528                 href : s
23529             });
23530         });
23531
23532         
23533     },
23534     
23535     removeStylesheets : function()
23536     {
23537         var _this = this;
23538         
23539         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
23540             s.remove();
23541         });
23542     },
23543     
23544     setStyle : function(style)
23545     {
23546         Roo.get(this.iframe.contentDocument.head).createChild({
23547             tag : 'style',
23548             type : 'text/css',
23549             html : style
23550         });
23551
23552         return;
23553     }
23554     
23555     // hide stuff that is not compatible
23556     /**
23557      * @event blur
23558      * @hide
23559      */
23560     /**
23561      * @event change
23562      * @hide
23563      */
23564     /**
23565      * @event focus
23566      * @hide
23567      */
23568     /**
23569      * @event specialkey
23570      * @hide
23571      */
23572     /**
23573      * @cfg {String} fieldClass @hide
23574      */
23575     /**
23576      * @cfg {String} focusClass @hide
23577      */
23578     /**
23579      * @cfg {String} autoCreate @hide
23580      */
23581     /**
23582      * @cfg {String} inputType @hide
23583      */
23584     /**
23585      * @cfg {String} invalidClass @hide
23586      */
23587     /**
23588      * @cfg {String} invalidText @hide
23589      */
23590     /**
23591      * @cfg {String} msgFx @hide
23592      */
23593     /**
23594      * @cfg {String} validateOnBlur @hide
23595      */
23596 });
23597
23598 Roo.HtmlEditorCore.white = [
23599         'area', 'br', 'img', 'input', 'hr', 'wbr',
23600         
23601        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
23602        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
23603        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
23604        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
23605        'table',   'ul',         'xmp', 
23606        
23607        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
23608       'thead',   'tr', 
23609      
23610       'dir', 'menu', 'ol', 'ul', 'dl',
23611        
23612       'embed',  'object'
23613 ];
23614
23615
23616 Roo.HtmlEditorCore.black = [
23617     //    'embed',  'object', // enable - backend responsiblity to clean thiese
23618         'applet', // 
23619         'base',   'basefont', 'bgsound', 'blink',  'body', 
23620         'frame',  'frameset', 'head',    'html',   'ilayer', 
23621         'iframe', 'layer',  'link',     'meta',    'object',   
23622         'script', 'style' ,'title',  'xml' // clean later..
23623 ];
23624 Roo.HtmlEditorCore.clean = [
23625     'script', 'style', 'title', 'xml'
23626 ];
23627 Roo.HtmlEditorCore.remove = [
23628     'font'
23629 ];
23630 // attributes..
23631
23632 Roo.HtmlEditorCore.ablack = [
23633     'on'
23634 ];
23635     
23636 Roo.HtmlEditorCore.aclean = [ 
23637     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
23638 ];
23639
23640 // protocols..
23641 Roo.HtmlEditorCore.pwhite= [
23642         'http',  'https',  'mailto'
23643 ];
23644
23645 // white listed style attributes.
23646 Roo.HtmlEditorCore.cwhite= [
23647       //  'text-align', /// default is to allow most things..
23648       
23649          
23650 //        'font-size'//??
23651 ];
23652
23653 // black listed style attributes.
23654 Roo.HtmlEditorCore.cblack= [
23655       //  'font-size' -- this can be set by the project 
23656 ];
23657
23658
23659 Roo.HtmlEditorCore.swapCodes   =[ 
23660     [    8211, "--" ], 
23661     [    8212, "--" ], 
23662     [    8216,  "'" ],  
23663     [    8217, "'" ],  
23664     [    8220, '"' ],  
23665     [    8221, '"' ],  
23666     [    8226, "*" ],  
23667     [    8230, "..." ]
23668 ]; 
23669
23670     /*
23671  * - LGPL
23672  *
23673  * HtmlEditor
23674  * 
23675  */
23676
23677 /**
23678  * @class Roo.bootstrap.HtmlEditor
23679  * @extends Roo.bootstrap.TextArea
23680  * Bootstrap HtmlEditor class
23681
23682  * @constructor
23683  * Create a new HtmlEditor
23684  * @param {Object} config The config object
23685  */
23686
23687 Roo.bootstrap.HtmlEditor = function(config){
23688     Roo.bootstrap.HtmlEditor.superclass.constructor.call(this, config);
23689     if (!this.toolbars) {
23690         this.toolbars = [];
23691     }
23692     
23693     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
23694     this.addEvents({
23695             /**
23696              * @event initialize
23697              * Fires when the editor is fully initialized (including the iframe)
23698              * @param {HtmlEditor} this
23699              */
23700             initialize: true,
23701             /**
23702              * @event activate
23703              * Fires when the editor is first receives the focus. Any insertion must wait
23704              * until after this event.
23705              * @param {HtmlEditor} this
23706              */
23707             activate: true,
23708              /**
23709              * @event beforesync
23710              * Fires before the textarea is updated with content from the editor iframe. Return false
23711              * to cancel the sync.
23712              * @param {HtmlEditor} this
23713              * @param {String} html
23714              */
23715             beforesync: true,
23716              /**
23717              * @event beforepush
23718              * Fires before the iframe editor is updated with content from the textarea. Return false
23719              * to cancel the push.
23720              * @param {HtmlEditor} this
23721              * @param {String} html
23722              */
23723             beforepush: true,
23724              /**
23725              * @event sync
23726              * Fires when the textarea is updated with content from the editor iframe.
23727              * @param {HtmlEditor} this
23728              * @param {String} html
23729              */
23730             sync: true,
23731              /**
23732              * @event push
23733              * Fires when the iframe editor is updated with content from the textarea.
23734              * @param {HtmlEditor} this
23735              * @param {String} html
23736              */
23737             push: true,
23738              /**
23739              * @event editmodechange
23740              * Fires when the editor switches edit modes
23741              * @param {HtmlEditor} this
23742              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
23743              */
23744             editmodechange: true,
23745             /**
23746              * @event editorevent
23747              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
23748              * @param {HtmlEditor} this
23749              */
23750             editorevent: true,
23751             /**
23752              * @event firstfocus
23753              * Fires when on first focus - needed by toolbars..
23754              * @param {HtmlEditor} this
23755              */
23756             firstfocus: true,
23757             /**
23758              * @event autosave
23759              * Auto save the htmlEditor value as a file into Events
23760              * @param {HtmlEditor} this
23761              */
23762             autosave: true,
23763             /**
23764              * @event savedpreview
23765              * preview the saved version of htmlEditor
23766              * @param {HtmlEditor} this
23767              */
23768             savedpreview: true
23769         });
23770 };
23771
23772
23773 Roo.extend(Roo.bootstrap.HtmlEditor, Roo.bootstrap.TextArea,  {
23774     
23775     
23776       /**
23777      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
23778      */
23779     toolbars : false,
23780     
23781      /**
23782     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
23783     */
23784     btns : [],
23785    
23786      /**
23787      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
23788      *                        Roo.resizable.
23789      */
23790     resizable : false,
23791      /**
23792      * @cfg {Number} height (in pixels)
23793      */   
23794     height: 300,
23795    /**
23796      * @cfg {Number} width (in pixels)
23797      */   
23798     width: false,
23799     
23800     /**
23801      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
23802      * 
23803      */
23804     stylesheets: false,
23805     
23806     // id of frame..
23807     frameId: false,
23808     
23809     // private properties
23810     validationEvent : false,
23811     deferHeight: true,
23812     initialized : false,
23813     activated : false,
23814     
23815     onFocus : Roo.emptyFn,
23816     iframePad:3,
23817     hideMode:'offsets',
23818     
23819     tbContainer : false,
23820     
23821     bodyCls : '',
23822     
23823     toolbarContainer :function() {
23824         return this.wrap.select('.x-html-editor-tb',true).first();
23825     },
23826
23827     /**
23828      * Protected method that will not generally be called directly. It
23829      * is called when the editor creates its toolbar. Override this method if you need to
23830      * add custom toolbar buttons.
23831      * @param {HtmlEditor} editor
23832      */
23833     createToolbar : function(){
23834         Roo.log('renewing');
23835         Roo.log("create toolbars");
23836         
23837         this.toolbars = [ new Roo.bootstrap.htmleditor.ToolbarStandard({editor: this} ) ];
23838         this.toolbars[0].render(this.toolbarContainer());
23839         
23840         return;
23841         
23842 //        if (!editor.toolbars || !editor.toolbars.length) {
23843 //            editor.toolbars = [ new Roo.bootstrap.HtmlEditor.ToolbarStandard() ]; // can be empty?
23844 //        }
23845 //        
23846 //        for (var i =0 ; i < editor.toolbars.length;i++) {
23847 //            editor.toolbars[i] = Roo.factory(
23848 //                    typeof(editor.toolbars[i]) == 'string' ?
23849 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
23850 //                Roo.bootstrap.HtmlEditor);
23851 //            editor.toolbars[i].init(editor);
23852 //        }
23853     },
23854
23855      
23856     // private
23857     onRender : function(ct, position)
23858     {
23859        // Roo.log("Call onRender: " + this.xtype);
23860         var _t = this;
23861         Roo.bootstrap.HtmlEditor.superclass.onRender.call(this, ct, position);
23862       
23863         this.wrap = this.inputEl().wrap({
23864             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
23865         });
23866         
23867         this.editorcore.onRender(ct, position);
23868          
23869         if (this.resizable) {
23870             this.resizeEl = new Roo.Resizable(this.wrap, {
23871                 pinned : true,
23872                 wrap: true,
23873                 dynamic : true,
23874                 minHeight : this.height,
23875                 height: this.height,
23876                 handles : this.resizable,
23877                 width: this.width,
23878                 listeners : {
23879                     resize : function(r, w, h) {
23880                         _t.onResize(w,h); // -something
23881                     }
23882                 }
23883             });
23884             
23885         }
23886         this.createToolbar(this);
23887        
23888         
23889         if(!this.width && this.resizable){
23890             this.setSize(this.wrap.getSize());
23891         }
23892         if (this.resizeEl) {
23893             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
23894             // should trigger onReize..
23895         }
23896         
23897     },
23898
23899     // private
23900     onResize : function(w, h)
23901     {
23902         Roo.log('resize: ' +w + ',' + h );
23903         Roo.bootstrap.HtmlEditor.superclass.onResize.apply(this, arguments);
23904         var ew = false;
23905         var eh = false;
23906         
23907         if(this.inputEl() ){
23908             if(typeof w == 'number'){
23909                 var aw = w - this.wrap.getFrameWidth('lr');
23910                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
23911                 ew = aw;
23912             }
23913             if(typeof h == 'number'){
23914                  var tbh = -11;  // fixme it needs to tool bar size!
23915                 for (var i =0; i < this.toolbars.length;i++) {
23916                     // fixme - ask toolbars for heights?
23917                     tbh += this.toolbars[i].el.getHeight();
23918                     //if (this.toolbars[i].footer) {
23919                     //    tbh += this.toolbars[i].footer.el.getHeight();
23920                     //}
23921                 }
23922               
23923                 
23924                 
23925                 
23926                 
23927                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
23928                 ah -= 5; // knock a few pixes off for look..
23929                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
23930                 var eh = ah;
23931             }
23932         }
23933         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
23934         this.editorcore.onResize(ew,eh);
23935         
23936     },
23937
23938     /**
23939      * Toggles the editor between standard and source edit mode.
23940      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
23941      */
23942     toggleSourceEdit : function(sourceEditMode)
23943     {
23944         this.editorcore.toggleSourceEdit(sourceEditMode);
23945         
23946         if(this.editorcore.sourceEditMode){
23947             Roo.log('editor - showing textarea');
23948             
23949 //            Roo.log('in');
23950 //            Roo.log(this.syncValue());
23951             this.syncValue();
23952             this.inputEl().removeClass(['hide', 'x-hidden']);
23953             this.inputEl().dom.removeAttribute('tabIndex');
23954             this.inputEl().focus();
23955         }else{
23956             Roo.log('editor - hiding textarea');
23957 //            Roo.log('out')
23958 //            Roo.log(this.pushValue()); 
23959             this.pushValue();
23960             
23961             this.inputEl().addClass(['hide', 'x-hidden']);
23962             this.inputEl().dom.setAttribute('tabIndex', -1);
23963             //this.deferFocus();
23964         }
23965          
23966         if(this.resizable){
23967             this.setSize(this.wrap.getSize());
23968         }
23969         
23970         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
23971     },
23972  
23973     // private (for BoxComponent)
23974     adjustSize : Roo.BoxComponent.prototype.adjustSize,
23975
23976     // private (for BoxComponent)
23977     getResizeEl : function(){
23978         return this.wrap;
23979     },
23980
23981     // private (for BoxComponent)
23982     getPositionEl : function(){
23983         return this.wrap;
23984     },
23985
23986     // private
23987     initEvents : function(){
23988         this.originalValue = this.getValue();
23989     },
23990
23991 //    /**
23992 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23993 //     * @method
23994 //     */
23995 //    markInvalid : Roo.emptyFn,
23996 //    /**
23997 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23998 //     * @method
23999 //     */
24000 //    clearInvalid : Roo.emptyFn,
24001
24002     setValue : function(v){
24003         Roo.bootstrap.HtmlEditor.superclass.setValue.call(this, v);
24004         this.editorcore.pushValue();
24005     },
24006
24007      
24008     // private
24009     deferFocus : function(){
24010         this.focus.defer(10, this);
24011     },
24012
24013     // doc'ed in Field
24014     focus : function(){
24015         this.editorcore.focus();
24016         
24017     },
24018       
24019
24020     // private
24021     onDestroy : function(){
24022         
24023         
24024         
24025         if(this.rendered){
24026             
24027             for (var i =0; i < this.toolbars.length;i++) {
24028                 // fixme - ask toolbars for heights?
24029                 this.toolbars[i].onDestroy();
24030             }
24031             
24032             this.wrap.dom.innerHTML = '';
24033             this.wrap.remove();
24034         }
24035     },
24036
24037     // private
24038     onFirstFocus : function(){
24039         //Roo.log("onFirstFocus");
24040         this.editorcore.onFirstFocus();
24041          for (var i =0; i < this.toolbars.length;i++) {
24042             this.toolbars[i].onFirstFocus();
24043         }
24044         
24045     },
24046     
24047     // private
24048     syncValue : function()
24049     {   
24050         this.editorcore.syncValue();
24051     },
24052     
24053     pushValue : function()
24054     {   
24055         this.editorcore.pushValue();
24056     }
24057      
24058     
24059     // hide stuff that is not compatible
24060     /**
24061      * @event blur
24062      * @hide
24063      */
24064     /**
24065      * @event change
24066      * @hide
24067      */
24068     /**
24069      * @event focus
24070      * @hide
24071      */
24072     /**
24073      * @event specialkey
24074      * @hide
24075      */
24076     /**
24077      * @cfg {String} fieldClass @hide
24078      */
24079     /**
24080      * @cfg {String} focusClass @hide
24081      */
24082     /**
24083      * @cfg {String} autoCreate @hide
24084      */
24085     /**
24086      * @cfg {String} inputType @hide
24087      */
24088      
24089     /**
24090      * @cfg {String} invalidText @hide
24091      */
24092     /**
24093      * @cfg {String} msgFx @hide
24094      */
24095     /**
24096      * @cfg {String} validateOnBlur @hide
24097      */
24098 });
24099  
24100     
24101    
24102    
24103    
24104       
24105 Roo.namespace('Roo.bootstrap.htmleditor');
24106 /**
24107  * @class Roo.bootstrap.HtmlEditorToolbar1
24108  * Basic Toolbar
24109  * 
24110  * @example
24111  * Usage:
24112  *
24113  new Roo.bootstrap.HtmlEditor({
24114     ....
24115     toolbars : [
24116         new Roo.bootstrap.HtmlEditorToolbar1({
24117             disable : { fonts: 1 , format: 1, ..., ... , ...],
24118             btns : [ .... ]
24119         })
24120     }
24121      
24122  * 
24123  * @cfg {Object} disable List of elements to disable..
24124  * @cfg {Array} btns List of additional buttons.
24125  * 
24126  * 
24127  * NEEDS Extra CSS? 
24128  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
24129  */
24130  
24131 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
24132 {
24133     
24134     Roo.apply(this, config);
24135     
24136     // default disabled, based on 'good practice'..
24137     this.disable = this.disable || {};
24138     Roo.applyIf(this.disable, {
24139         fontSize : true,
24140         colors : true,
24141         specialElements : true
24142     });
24143     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
24144     
24145     this.editor = config.editor;
24146     this.editorcore = config.editor.editorcore;
24147     
24148     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
24149     
24150     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
24151     // dont call parent... till later.
24152 }
24153 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
24154      
24155     bar : true,
24156     
24157     editor : false,
24158     editorcore : false,
24159     
24160     
24161     formats : [
24162         "p" ,  
24163         "h1","h2","h3","h4","h5","h6", 
24164         "pre", "code", 
24165         "abbr", "acronym", "address", "cite", "samp", "var",
24166         'div','span'
24167     ],
24168     
24169     onRender : function(ct, position)
24170     {
24171        // Roo.log("Call onRender: " + this.xtype);
24172         
24173        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
24174        Roo.log(this.el);
24175        this.el.dom.style.marginBottom = '0';
24176        var _this = this;
24177        var editorcore = this.editorcore;
24178        var editor= this.editor;
24179        
24180        var children = [];
24181        var btn = function(id,cmd , toggle, handler, html){
24182        
24183             var  event = toggle ? 'toggle' : 'click';
24184        
24185             var a = {
24186                 size : 'sm',
24187                 xtype: 'Button',
24188                 xns: Roo.bootstrap,
24189                 //glyphicon : id,
24190                 fa: id,
24191                 cmd : id || cmd,
24192                 enableToggle:toggle !== false,
24193                 html : html || '',
24194                 pressed : toggle ? false : null,
24195                 listeners : {}
24196             };
24197             a.listeners[toggle ? 'toggle' : 'click'] = function() {
24198                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
24199             };
24200             children.push(a);
24201             return a;
24202        }
24203        
24204     //    var cb_box = function...
24205         
24206         var style = {
24207                 xtype: 'Button',
24208                 size : 'sm',
24209                 xns: Roo.bootstrap,
24210                 fa : 'font',
24211                 //html : 'submit'
24212                 menu : {
24213                     xtype: 'Menu',
24214                     xns: Roo.bootstrap,
24215                     items:  []
24216                 }
24217         };
24218         Roo.each(this.formats, function(f) {
24219             style.menu.items.push({
24220                 xtype :'MenuItem',
24221                 xns: Roo.bootstrap,
24222                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
24223                 tagname : f,
24224                 listeners : {
24225                     click : function()
24226                     {
24227                         editorcore.insertTag(this.tagname);
24228                         editor.focus();
24229                     }
24230                 }
24231                 
24232             });
24233         });
24234         children.push(style);   
24235         
24236         btn('bold',false,true);
24237         btn('italic',false,true);
24238         btn('align-left', 'justifyleft',true);
24239         btn('align-center', 'justifycenter',true);
24240         btn('align-right' , 'justifyright',true);
24241         btn('link', false, false, function(btn) {
24242             //Roo.log("create link?");
24243             var url = prompt(this.createLinkText, this.defaultLinkValue);
24244             if(url && url != 'http:/'+'/'){
24245                 this.editorcore.relayCmd('createlink', url);
24246             }
24247         }),
24248         btn('list','insertunorderedlist',true);
24249         btn('pencil', false,true, function(btn){
24250                 Roo.log(this);
24251                 this.toggleSourceEdit(btn.pressed);
24252         });
24253         
24254         if (this.editor.btns.length > 0) {
24255             for (var i = 0; i<this.editor.btns.length; i++) {
24256                 children.push(this.editor.btns[i]);
24257             }
24258         }
24259         
24260         /*
24261         var cog = {
24262                 xtype: 'Button',
24263                 size : 'sm',
24264                 xns: Roo.bootstrap,
24265                 glyphicon : 'cog',
24266                 //html : 'submit'
24267                 menu : {
24268                     xtype: 'Menu',
24269                     xns: Roo.bootstrap,
24270                     items:  []
24271                 }
24272         };
24273         
24274         cog.menu.items.push({
24275             xtype :'MenuItem',
24276             xns: Roo.bootstrap,
24277             html : Clean styles,
24278             tagname : f,
24279             listeners : {
24280                 click : function()
24281                 {
24282                     editorcore.insertTag(this.tagname);
24283                     editor.focus();
24284                 }
24285             }
24286             
24287         });
24288        */
24289         
24290          
24291        this.xtype = 'NavSimplebar';
24292         
24293         for(var i=0;i< children.length;i++) {
24294             
24295             this.buttons.add(this.addxtypeChild(children[i]));
24296             
24297         }
24298         
24299         editor.on('editorevent', this.updateToolbar, this);
24300     },
24301     onBtnClick : function(id)
24302     {
24303        this.editorcore.relayCmd(id);
24304        this.editorcore.focus();
24305     },
24306     
24307     /**
24308      * Protected method that will not generally be called directly. It triggers
24309      * a toolbar update by reading the markup state of the current selection in the editor.
24310      */
24311     updateToolbar: function(){
24312
24313         if(!this.editorcore.activated){
24314             this.editor.onFirstFocus(); // is this neeed?
24315             return;
24316         }
24317
24318         var btns = this.buttons; 
24319         var doc = this.editorcore.doc;
24320         btns.get('bold').setActive(doc.queryCommandState('bold'));
24321         btns.get('italic').setActive(doc.queryCommandState('italic'));
24322         //btns.get('underline').setActive(doc.queryCommandState('underline'));
24323         
24324         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
24325         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
24326         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
24327         
24328         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
24329         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
24330          /*
24331         
24332         var ans = this.editorcore.getAllAncestors();
24333         if (this.formatCombo) {
24334             
24335             
24336             var store = this.formatCombo.store;
24337             this.formatCombo.setValue("");
24338             for (var i =0; i < ans.length;i++) {
24339                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
24340                     // select it..
24341                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
24342                     break;
24343                 }
24344             }
24345         }
24346         
24347         
24348         
24349         // hides menus... - so this cant be on a menu...
24350         Roo.bootstrap.MenuMgr.hideAll();
24351         */
24352         Roo.bootstrap.MenuMgr.hideAll();
24353         //this.editorsyncValue();
24354     },
24355     onFirstFocus: function() {
24356         this.buttons.each(function(item){
24357            item.enable();
24358         });
24359     },
24360     toggleSourceEdit : function(sourceEditMode){
24361         
24362           
24363         if(sourceEditMode){
24364             Roo.log("disabling buttons");
24365            this.buttons.each( function(item){
24366                 if(item.cmd != 'pencil'){
24367                     item.disable();
24368                 }
24369             });
24370           
24371         }else{
24372             Roo.log("enabling buttons");
24373             if(this.editorcore.initialized){
24374                 this.buttons.each( function(item){
24375                     item.enable();
24376                 });
24377             }
24378             
24379         }
24380         Roo.log("calling toggole on editor");
24381         // tell the editor that it's been pressed..
24382         this.editor.toggleSourceEdit(sourceEditMode);
24383        
24384     }
24385 });
24386
24387
24388
24389
24390
24391 /**
24392  * @class Roo.bootstrap.Table.AbstractSelectionModel
24393  * @extends Roo.util.Observable
24394  * Abstract base class for grid SelectionModels.  It provides the interface that should be
24395  * implemented by descendant classes.  This class should not be directly instantiated.
24396  * @constructor
24397  */
24398 Roo.bootstrap.Table.AbstractSelectionModel = function(){
24399     this.locked = false;
24400     Roo.bootstrap.Table.AbstractSelectionModel.superclass.constructor.call(this);
24401 };
24402
24403
24404 Roo.extend(Roo.bootstrap.Table.AbstractSelectionModel, Roo.util.Observable,  {
24405     /** @ignore Called by the grid automatically. Do not call directly. */
24406     init : function(grid){
24407         this.grid = grid;
24408         this.initEvents();
24409     },
24410
24411     /**
24412      * Locks the selections.
24413      */
24414     lock : function(){
24415         this.locked = true;
24416     },
24417
24418     /**
24419      * Unlocks the selections.
24420      */
24421     unlock : function(){
24422         this.locked = false;
24423     },
24424
24425     /**
24426      * Returns true if the selections are locked.
24427      * @return {Boolean}
24428      */
24429     isLocked : function(){
24430         return this.locked;
24431     }
24432 });
24433 /**
24434  * @extends Roo.bootstrap.Table.AbstractSelectionModel
24435  * @class Roo.bootstrap.Table.RowSelectionModel
24436  * The default SelectionModel used by {@link Roo.bootstrap.Table}.
24437  * It supports multiple selections and keyboard selection/navigation. 
24438  * @constructor
24439  * @param {Object} config
24440  */
24441
24442 Roo.bootstrap.Table.RowSelectionModel = function(config){
24443     Roo.apply(this, config);
24444     this.selections = new Roo.util.MixedCollection(false, function(o){
24445         return o.id;
24446     });
24447
24448     this.last = false;
24449     this.lastActive = false;
24450
24451     this.addEvents({
24452         /**
24453              * @event selectionchange
24454              * Fires when the selection changes
24455              * @param {SelectionModel} this
24456              */
24457             "selectionchange" : true,
24458         /**
24459              * @event afterselectionchange
24460              * Fires after the selection changes (eg. by key press or clicking)
24461              * @param {SelectionModel} this
24462              */
24463             "afterselectionchange" : true,
24464         /**
24465              * @event beforerowselect
24466              * Fires when a row is selected being selected, return false to cancel.
24467              * @param {SelectionModel} this
24468              * @param {Number} rowIndex The selected index
24469              * @param {Boolean} keepExisting False if other selections will be cleared
24470              */
24471             "beforerowselect" : true,
24472         /**
24473              * @event rowselect
24474              * Fires when a row is selected.
24475              * @param {SelectionModel} this
24476              * @param {Number} rowIndex The selected index
24477              * @param {Roo.data.Record} r The record
24478              */
24479             "rowselect" : true,
24480         /**
24481              * @event rowdeselect
24482              * Fires when a row is deselected.
24483              * @param {SelectionModel} this
24484              * @param {Number} rowIndex The selected index
24485              */
24486         "rowdeselect" : true
24487     });
24488     Roo.bootstrap.Table.RowSelectionModel.superclass.constructor.call(this);
24489     this.locked = false;
24490  };
24491
24492 Roo.extend(Roo.bootstrap.Table.RowSelectionModel, Roo.bootstrap.Table.AbstractSelectionModel,  {
24493     /**
24494      * @cfg {Boolean} singleSelect
24495      * True to allow selection of only one row at a time (defaults to false)
24496      */
24497     singleSelect : false,
24498
24499     // private
24500     initEvents : function()
24501     {
24502
24503         //if(!this.grid.enableDragDrop && !this.grid.enableDrag){
24504         //    this.growclickrid.on("mousedown", this.handleMouseDown, this);
24505         //}else{ // allow click to work like normal
24506          //   this.grid.on("rowclick", this.handleDragableRowClick, this);
24507         //}
24508         //this.grid.on("rowdblclick", this.handleMouseDBClick, this);
24509         this.grid.on("rowclick", this.handleMouseDown, this);
24510         
24511         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
24512             "up" : function(e){
24513                 if(!e.shiftKey){
24514                     this.selectPrevious(e.shiftKey);
24515                 }else if(this.last !== false && this.lastActive !== false){
24516                     var last = this.last;
24517                     this.selectRange(this.last,  this.lastActive-1);
24518                     this.grid.getView().focusRow(this.lastActive);
24519                     if(last !== false){
24520                         this.last = last;
24521                     }
24522                 }else{
24523                     this.selectFirstRow();
24524                 }
24525                 this.fireEvent("afterselectionchange", this);
24526             },
24527             "down" : function(e){
24528                 if(!e.shiftKey){
24529                     this.selectNext(e.shiftKey);
24530                 }else if(this.last !== false && this.lastActive !== false){
24531                     var last = this.last;
24532                     this.selectRange(this.last,  this.lastActive+1);
24533                     this.grid.getView().focusRow(this.lastActive);
24534                     if(last !== false){
24535                         this.last = last;
24536                     }
24537                 }else{
24538                     this.selectFirstRow();
24539                 }
24540                 this.fireEvent("afterselectionchange", this);
24541             },
24542             scope: this
24543         });
24544         this.grid.store.on('load', function(){
24545             this.selections.clear();
24546         },this);
24547         /*
24548         var view = this.grid.view;
24549         view.on("refresh", this.onRefresh, this);
24550         view.on("rowupdated", this.onRowUpdated, this);
24551         view.on("rowremoved", this.onRemove, this);
24552         */
24553     },
24554
24555     // private
24556     onRefresh : function()
24557     {
24558         var ds = this.grid.store, i, v = this.grid.view;
24559         var s = this.selections;
24560         s.each(function(r){
24561             if((i = ds.indexOfId(r.id)) != -1){
24562                 v.onRowSelect(i);
24563             }else{
24564                 s.remove(r);
24565             }
24566         });
24567     },
24568
24569     // private
24570     onRemove : function(v, index, r){
24571         this.selections.remove(r);
24572     },
24573
24574     // private
24575     onRowUpdated : function(v, index, r){
24576         if(this.isSelected(r)){
24577             v.onRowSelect(index);
24578         }
24579     },
24580
24581     /**
24582      * Select records.
24583      * @param {Array} records The records to select
24584      * @param {Boolean} keepExisting (optional) True to keep existing selections
24585      */
24586     selectRecords : function(records, keepExisting)
24587     {
24588         if(!keepExisting){
24589             this.clearSelections();
24590         }
24591             var ds = this.grid.store;
24592         for(var i = 0, len = records.length; i < len; i++){
24593             this.selectRow(ds.indexOf(records[i]), true);
24594         }
24595     },
24596
24597     /**
24598      * Gets the number of selected rows.
24599      * @return {Number}
24600      */
24601     getCount : function(){
24602         return this.selections.length;
24603     },
24604
24605     /**
24606      * Selects the first row in the grid.
24607      */
24608     selectFirstRow : function(){
24609         this.selectRow(0);
24610     },
24611
24612     /**
24613      * Select the last row.
24614      * @param {Boolean} keepExisting (optional) True to keep existing selections
24615      */
24616     selectLastRow : function(keepExisting){
24617         //this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
24618         this.selectRow(this.grid.store.getCount() - 1, keepExisting);
24619     },
24620
24621     /**
24622      * Selects the row immediately following the last selected row.
24623      * @param {Boolean} keepExisting (optional) True to keep existing selections
24624      */
24625     selectNext : function(keepExisting)
24626     {
24627             if(this.last !== false && (this.last+1) < this.grid.store.getCount()){
24628             this.selectRow(this.last+1, keepExisting);
24629             this.grid.getView().focusRow(this.last);
24630         }
24631     },
24632
24633     /**
24634      * Selects the row that precedes the last selected row.
24635      * @param {Boolean} keepExisting (optional) True to keep existing selections
24636      */
24637     selectPrevious : function(keepExisting){
24638         if(this.last){
24639             this.selectRow(this.last-1, keepExisting);
24640             this.grid.getView().focusRow(this.last);
24641         }
24642     },
24643
24644     /**
24645      * Returns the selected records
24646      * @return {Array} Array of selected records
24647      */
24648     getSelections : function(){
24649         return [].concat(this.selections.items);
24650     },
24651
24652     /**
24653      * Returns the first selected record.
24654      * @return {Record}
24655      */
24656     getSelected : function(){
24657         return this.selections.itemAt(0);
24658     },
24659
24660
24661     /**
24662      * Clears all selections.
24663      */
24664     clearSelections : function(fast)
24665     {
24666         if(this.locked) {
24667             return;
24668         }
24669         if(fast !== true){
24670                 var ds = this.grid.store;
24671             var s = this.selections;
24672             s.each(function(r){
24673                 this.deselectRow(ds.indexOfId(r.id));
24674             }, this);
24675             s.clear();
24676         }else{
24677             this.selections.clear();
24678         }
24679         this.last = false;
24680     },
24681
24682
24683     /**
24684      * Selects all rows.
24685      */
24686     selectAll : function(){
24687         if(this.locked) {
24688             return;
24689         }
24690         this.selections.clear();
24691         for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
24692             this.selectRow(i, true);
24693         }
24694     },
24695
24696     /**
24697      * Returns True if there is a selection.
24698      * @return {Boolean}
24699      */
24700     hasSelection : function(){
24701         return this.selections.length > 0;
24702     },
24703
24704     /**
24705      * Returns True if the specified row is selected.
24706      * @param {Number/Record} record The record or index of the record to check
24707      * @return {Boolean}
24708      */
24709     isSelected : function(index){
24710             var r = typeof index == "number" ? this.grid.store.getAt(index) : index;
24711         return (r && this.selections.key(r.id) ? true : false);
24712     },
24713
24714     /**
24715      * Returns True if the specified record id is selected.
24716      * @param {String} id The id of record to check
24717      * @return {Boolean}
24718      */
24719     isIdSelected : function(id){
24720         return (this.selections.key(id) ? true : false);
24721     },
24722
24723
24724     // private
24725     handleMouseDBClick : function(e, t){
24726         
24727     },
24728     // private
24729     handleMouseDown : function(e, t)
24730     {
24731             var rowIndex = this.grid.headerShow  ? t.dom.rowIndex - 1 : t.dom.rowIndex ; // first row is header???
24732         if(this.isLocked() || rowIndex < 0 ){
24733             return;
24734         };
24735         if(e.shiftKey && this.last !== false){
24736             var last = this.last;
24737             this.selectRange(last, rowIndex, e.ctrlKey);
24738             this.last = last; // reset the last
24739             t.focus();
24740     
24741         }else{
24742             var isSelected = this.isSelected(rowIndex);
24743             //Roo.log("select row:" + rowIndex);
24744             if(isSelected){
24745                 this.deselectRow(rowIndex);
24746             } else {
24747                         this.selectRow(rowIndex, true);
24748             }
24749     
24750             /*
24751                 if(e.button !== 0 && isSelected){
24752                 alert('rowIndex 2: ' + rowIndex);
24753                     view.focusRow(rowIndex);
24754                 }else if(e.ctrlKey && isSelected){
24755                     this.deselectRow(rowIndex);
24756                 }else if(!isSelected){
24757                     this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
24758                     view.focusRow(rowIndex);
24759                 }
24760             */
24761         }
24762         this.fireEvent("afterselectionchange", this);
24763     },
24764     // private
24765     handleDragableRowClick :  function(grid, rowIndex, e) 
24766     {
24767         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
24768             this.selectRow(rowIndex, false);
24769             grid.view.focusRow(rowIndex);
24770              this.fireEvent("afterselectionchange", this);
24771         }
24772     },
24773     
24774     /**
24775      * Selects multiple rows.
24776      * @param {Array} rows Array of the indexes of the row to select
24777      * @param {Boolean} keepExisting (optional) True to keep existing selections
24778      */
24779     selectRows : function(rows, keepExisting){
24780         if(!keepExisting){
24781             this.clearSelections();
24782         }
24783         for(var i = 0, len = rows.length; i < len; i++){
24784             this.selectRow(rows[i], true);
24785         }
24786     },
24787
24788     /**
24789      * Selects a range of rows. All rows in between startRow and endRow are also selected.
24790      * @param {Number} startRow The index of the first row in the range
24791      * @param {Number} endRow The index of the last row in the range
24792      * @param {Boolean} keepExisting (optional) True to retain existing selections
24793      */
24794     selectRange : function(startRow, endRow, keepExisting){
24795         if(this.locked) {
24796             return;
24797         }
24798         if(!keepExisting){
24799             this.clearSelections();
24800         }
24801         if(startRow <= endRow){
24802             for(var i = startRow; i <= endRow; i++){
24803                 this.selectRow(i, true);
24804             }
24805         }else{
24806             for(var i = startRow; i >= endRow; i--){
24807                 this.selectRow(i, true);
24808             }
24809         }
24810     },
24811
24812     /**
24813      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
24814      * @param {Number} startRow The index of the first row in the range
24815      * @param {Number} endRow The index of the last row in the range
24816      */
24817     deselectRange : function(startRow, endRow, preventViewNotify){
24818         if(this.locked) {
24819             return;
24820         }
24821         for(var i = startRow; i <= endRow; i++){
24822             this.deselectRow(i, preventViewNotify);
24823         }
24824     },
24825
24826     /**
24827      * Selects a row.
24828      * @param {Number} row The index of the row to select
24829      * @param {Boolean} keepExisting (optional) True to keep existing selections
24830      */
24831     selectRow : function(index, keepExisting, preventViewNotify)
24832     {
24833             if(this.locked || (index < 0 || index > this.grid.store.getCount())) {
24834             return;
24835         }
24836         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
24837             if(!keepExisting || this.singleSelect){
24838                 this.clearSelections();
24839             }
24840             
24841             var r = this.grid.store.getAt(index);
24842             //console.log('selectRow - record id :' + r.id);
24843             
24844             this.selections.add(r);
24845             this.last = this.lastActive = index;
24846             if(!preventViewNotify){
24847                 var proxy = new Roo.Element(
24848                                 this.grid.getRowDom(index)
24849                 );
24850                 proxy.addClass('bg-info info');
24851             }
24852             this.fireEvent("rowselect", this, index, r);
24853             this.fireEvent("selectionchange", this);
24854         }
24855     },
24856
24857     /**
24858      * Deselects a row.
24859      * @param {Number} row The index of the row to deselect
24860      */
24861     deselectRow : function(index, preventViewNotify)
24862     {
24863         if(this.locked) {
24864             return;
24865         }
24866         if(this.last == index){
24867             this.last = false;
24868         }
24869         if(this.lastActive == index){
24870             this.lastActive = false;
24871         }
24872         
24873         var r = this.grid.store.getAt(index);
24874         if (!r) {
24875             return;
24876         }
24877         
24878         this.selections.remove(r);
24879         //.console.log('deselectRow - record id :' + r.id);
24880         if(!preventViewNotify){
24881         
24882             var proxy = new Roo.Element(
24883                 this.grid.getRowDom(index)
24884             );
24885             proxy.removeClass('bg-info info');
24886         }
24887         this.fireEvent("rowdeselect", this, index);
24888         this.fireEvent("selectionchange", this);
24889     },
24890
24891     // private
24892     restoreLast : function(){
24893         if(this._last){
24894             this.last = this._last;
24895         }
24896     },
24897
24898     // private
24899     acceptsNav : function(row, col, cm){
24900         return !cm.isHidden(col) && cm.isCellEditable(col, row);
24901     },
24902
24903     // private
24904     onEditorKey : function(field, e){
24905         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
24906         if(k == e.TAB){
24907             e.stopEvent();
24908             ed.completeEdit();
24909             if(e.shiftKey){
24910                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
24911             }else{
24912                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
24913             }
24914         }else if(k == e.ENTER && !e.ctrlKey){
24915             e.stopEvent();
24916             ed.completeEdit();
24917             if(e.shiftKey){
24918                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
24919             }else{
24920                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
24921             }
24922         }else if(k == e.ESC){
24923             ed.cancelEdit();
24924         }
24925         if(newCell){
24926             g.startEditing(newCell[0], newCell[1]);
24927         }
24928     }
24929 });
24930 /*
24931  * Based on:
24932  * Ext JS Library 1.1.1
24933  * Copyright(c) 2006-2007, Ext JS, LLC.
24934  *
24935  * Originally Released Under LGPL - original licence link has changed is not relivant.
24936  *
24937  * Fork - LGPL
24938  * <script type="text/javascript">
24939  */
24940  
24941 /**
24942  * @class Roo.bootstrap.PagingToolbar
24943  * @extends Roo.bootstrap.NavSimplebar
24944  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
24945  * @constructor
24946  * Create a new PagingToolbar
24947  * @param {Object} config The config object
24948  * @param {Roo.data.Store} store
24949  */
24950 Roo.bootstrap.PagingToolbar = function(config)
24951 {
24952     // old args format still supported... - xtype is prefered..
24953         // created from xtype...
24954     
24955     this.ds = config.dataSource;
24956     
24957     if (config.store && !this.ds) {
24958         this.store= Roo.factory(config.store, Roo.data);
24959         this.ds = this.store;
24960         this.ds.xmodule = this.xmodule || false;
24961     }
24962     
24963     this.toolbarItems = [];
24964     if (config.items) {
24965         this.toolbarItems = config.items;
24966     }
24967     
24968     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
24969     
24970     this.cursor = 0;
24971     
24972     if (this.ds) { 
24973         this.bind(this.ds);
24974     }
24975     
24976     if (Roo.bootstrap.version == 4) {
24977         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
24978     } else {
24979         this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
24980     }
24981     
24982 };
24983
24984 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
24985     /**
24986      * @cfg {Roo.data.Store} dataSource
24987      * The underlying data store providing the paged data
24988      */
24989     /**
24990      * @cfg {String/HTMLElement/Element} container
24991      * container The id or element that will contain the toolbar
24992      */
24993     /**
24994      * @cfg {Boolean} displayInfo
24995      * True to display the displayMsg (defaults to false)
24996      */
24997     /**
24998      * @cfg {Number} pageSize
24999      * The number of records to display per page (defaults to 20)
25000      */
25001     pageSize: 20,
25002     /**
25003      * @cfg {String} displayMsg
25004      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
25005      */
25006     displayMsg : 'Displaying {0} - {1} of {2}',
25007     /**
25008      * @cfg {String} emptyMsg
25009      * The message to display when no records are found (defaults to "No data to display")
25010      */
25011     emptyMsg : 'No data to display',
25012     /**
25013      * Customizable piece of the default paging text (defaults to "Page")
25014      * @type String
25015      */
25016     beforePageText : "Page",
25017     /**
25018      * Customizable piece of the default paging text (defaults to "of %0")
25019      * @type String
25020      */
25021     afterPageText : "of {0}",
25022     /**
25023      * Customizable piece of the default paging text (defaults to "First Page")
25024      * @type String
25025      */
25026     firstText : "First Page",
25027     /**
25028      * Customizable piece of the default paging text (defaults to "Previous Page")
25029      * @type String
25030      */
25031     prevText : "Previous Page",
25032     /**
25033      * Customizable piece of the default paging text (defaults to "Next Page")
25034      * @type String
25035      */
25036     nextText : "Next Page",
25037     /**
25038      * Customizable piece of the default paging text (defaults to "Last Page")
25039      * @type String
25040      */
25041     lastText : "Last Page",
25042     /**
25043      * Customizable piece of the default paging text (defaults to "Refresh")
25044      * @type String
25045      */
25046     refreshText : "Refresh",
25047
25048     buttons : false,
25049     // private
25050     onRender : function(ct, position) 
25051     {
25052         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
25053         this.navgroup.parentId = this.id;
25054         this.navgroup.onRender(this.el, null);
25055         // add the buttons to the navgroup
25056         
25057         if(this.displayInfo){
25058             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
25059             this.displayEl = this.el.select('.x-paging-info', true).first();
25060 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
25061 //            this.displayEl = navel.el.select('span',true).first();
25062         }
25063         
25064         var _this = this;
25065         
25066         if(this.buttons){
25067             Roo.each(_this.buttons, function(e){ // this might need to use render????
25068                Roo.factory(e).render(_this.el);
25069             });
25070         }
25071             
25072         Roo.each(_this.toolbarItems, function(e) {
25073             _this.navgroup.addItem(e);
25074         });
25075         
25076         
25077         this.first = this.navgroup.addItem({
25078             tooltip: this.firstText,
25079             cls: "prev btn-outline-secondary",
25080             html : ' <i class="fa fa-step-backward"></i>',
25081             disabled: true,
25082             preventDefault: true,
25083             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
25084         });
25085         
25086         this.prev =  this.navgroup.addItem({
25087             tooltip: this.prevText,
25088             cls: "prev btn-outline-secondary",
25089             html : ' <i class="fa fa-backward"></i>',
25090             disabled: true,
25091             preventDefault: true,
25092             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
25093         });
25094     //this.addSeparator();
25095         
25096         
25097         var field = this.navgroup.addItem( {
25098             tagtype : 'span',
25099             cls : 'x-paging-position  btn-outline-secondary',
25100              disabled: true,
25101             html : this.beforePageText  +
25102                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
25103                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
25104          } ); //?? escaped?
25105         
25106         this.field = field.el.select('input', true).first();
25107         this.field.on("keydown", this.onPagingKeydown, this);
25108         this.field.on("focus", function(){this.dom.select();});
25109     
25110     
25111         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
25112         //this.field.setHeight(18);
25113         //this.addSeparator();
25114         this.next = this.navgroup.addItem({
25115             tooltip: this.nextText,
25116             cls: "next btn-outline-secondary",
25117             html : ' <i class="fa fa-forward"></i>',
25118             disabled: true,
25119             preventDefault: true,
25120             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
25121         });
25122         this.last = this.navgroup.addItem({
25123             tooltip: this.lastText,
25124             html : ' <i class="fa fa-step-forward"></i>',
25125             cls: "next btn-outline-secondary",
25126             disabled: true,
25127             preventDefault: true,
25128             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
25129         });
25130     //this.addSeparator();
25131         this.loading = this.navgroup.addItem({
25132             tooltip: this.refreshText,
25133             cls: "btn-outline-secondary",
25134             html : ' <i class="fa fa-refresh"></i>',
25135             preventDefault: true,
25136             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
25137         });
25138         
25139     },
25140
25141     // private
25142     updateInfo : function(){
25143         if(this.displayEl){
25144             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
25145             var msg = count == 0 ?
25146                 this.emptyMsg :
25147                 String.format(
25148                     this.displayMsg,
25149                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
25150                 );
25151             this.displayEl.update(msg);
25152         }
25153     },
25154
25155     // private
25156     onLoad : function(ds, r, o)
25157     {
25158         this.cursor = o.params.start ? o.params.start : 0;
25159         
25160         var d = this.getPageData(),
25161             ap = d.activePage,
25162             ps = d.pages;
25163         
25164         
25165         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
25166         this.field.dom.value = ap;
25167         this.first.setDisabled(ap == 1);
25168         this.prev.setDisabled(ap == 1);
25169         this.next.setDisabled(ap == ps);
25170         this.last.setDisabled(ap == ps);
25171         this.loading.enable();
25172         this.updateInfo();
25173     },
25174
25175     // private
25176     getPageData : function(){
25177         var total = this.ds.getTotalCount();
25178         return {
25179             total : total,
25180             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
25181             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
25182         };
25183     },
25184
25185     // private
25186     onLoadError : function(){
25187         this.loading.enable();
25188     },
25189
25190     // private
25191     onPagingKeydown : function(e){
25192         var k = e.getKey();
25193         var d = this.getPageData();
25194         if(k == e.RETURN){
25195             var v = this.field.dom.value, pageNum;
25196             if(!v || isNaN(pageNum = parseInt(v, 10))){
25197                 this.field.dom.value = d.activePage;
25198                 return;
25199             }
25200             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
25201             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25202             e.stopEvent();
25203         }
25204         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))
25205         {
25206           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
25207           this.field.dom.value = pageNum;
25208           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
25209           e.stopEvent();
25210         }
25211         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
25212         {
25213           var v = this.field.dom.value, pageNum; 
25214           var increment = (e.shiftKey) ? 10 : 1;
25215           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
25216                 increment *= -1;
25217           }
25218           if(!v || isNaN(pageNum = parseInt(v, 10))) {
25219             this.field.dom.value = d.activePage;
25220             return;
25221           }
25222           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
25223           {
25224             this.field.dom.value = parseInt(v, 10) + increment;
25225             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
25226             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25227           }
25228           e.stopEvent();
25229         }
25230     },
25231
25232     // private
25233     beforeLoad : function(){
25234         if(this.loading){
25235             this.loading.disable();
25236         }
25237     },
25238
25239     // private
25240     onClick : function(which){
25241         
25242         var ds = this.ds;
25243         if (!ds) {
25244             return;
25245         }
25246         
25247         switch(which){
25248             case "first":
25249                 ds.load({params:{start: 0, limit: this.pageSize}});
25250             break;
25251             case "prev":
25252                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
25253             break;
25254             case "next":
25255                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
25256             break;
25257             case "last":
25258                 var total = ds.getTotalCount();
25259                 var extra = total % this.pageSize;
25260                 var lastStart = extra ? (total - extra) : total-this.pageSize;
25261                 ds.load({params:{start: lastStart, limit: this.pageSize}});
25262             break;
25263             case "refresh":
25264                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
25265             break;
25266         }
25267     },
25268
25269     /**
25270      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
25271      * @param {Roo.data.Store} store The data store to unbind
25272      */
25273     unbind : function(ds){
25274         ds.un("beforeload", this.beforeLoad, this);
25275         ds.un("load", this.onLoad, this);
25276         ds.un("loadexception", this.onLoadError, this);
25277         ds.un("remove", this.updateInfo, this);
25278         ds.un("add", this.updateInfo, this);
25279         this.ds = undefined;
25280     },
25281
25282     /**
25283      * Binds the paging toolbar to the specified {@link Roo.data.Store}
25284      * @param {Roo.data.Store} store The data store to bind
25285      */
25286     bind : function(ds){
25287         ds.on("beforeload", this.beforeLoad, this);
25288         ds.on("load", this.onLoad, this);
25289         ds.on("loadexception", this.onLoadError, this);
25290         ds.on("remove", this.updateInfo, this);
25291         ds.on("add", this.updateInfo, this);
25292         this.ds = ds;
25293     }
25294 });/*
25295  * - LGPL
25296  *
25297  * element
25298  * 
25299  */
25300
25301 /**
25302  * @class Roo.bootstrap.MessageBar
25303  * @extends Roo.bootstrap.Component
25304  * Bootstrap MessageBar class
25305  * @cfg {String} html contents of the MessageBar
25306  * @cfg {String} weight (info | success | warning | danger) default info
25307  * @cfg {String} beforeClass insert the bar before the given class
25308  * @cfg {Boolean} closable (true | false) default false
25309  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
25310  * 
25311  * @constructor
25312  * Create a new Element
25313  * @param {Object} config The config object
25314  */
25315
25316 Roo.bootstrap.MessageBar = function(config){
25317     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
25318 };
25319
25320 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
25321     
25322     html: '',
25323     weight: 'info',
25324     closable: false,
25325     fixed: false,
25326     beforeClass: 'bootstrap-sticky-wrap',
25327     
25328     getAutoCreate : function(){
25329         
25330         var cfg = {
25331             tag: 'div',
25332             cls: 'alert alert-dismissable alert-' + this.weight,
25333             cn: [
25334                 {
25335                     tag: 'span',
25336                     cls: 'message',
25337                     html: this.html || ''
25338                 }
25339             ]
25340         };
25341         
25342         if(this.fixed){
25343             cfg.cls += ' alert-messages-fixed';
25344         }
25345         
25346         if(this.closable){
25347             cfg.cn.push({
25348                 tag: 'button',
25349                 cls: 'close',
25350                 html: 'x'
25351             });
25352         }
25353         
25354         return cfg;
25355     },
25356     
25357     onRender : function(ct, position)
25358     {
25359         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
25360         
25361         if(!this.el){
25362             var cfg = Roo.apply({},  this.getAutoCreate());
25363             cfg.id = Roo.id();
25364             
25365             if (this.cls) {
25366                 cfg.cls += ' ' + this.cls;
25367             }
25368             if (this.style) {
25369                 cfg.style = this.style;
25370             }
25371             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
25372             
25373             this.el.setVisibilityMode(Roo.Element.DISPLAY);
25374         }
25375         
25376         this.el.select('>button.close').on('click', this.hide, this);
25377         
25378     },
25379     
25380     show : function()
25381     {
25382         if (!this.rendered) {
25383             this.render();
25384         }
25385         
25386         this.el.show();
25387         
25388         this.fireEvent('show', this);
25389         
25390     },
25391     
25392     hide : function()
25393     {
25394         if (!this.rendered) {
25395             this.render();
25396         }
25397         
25398         this.el.hide();
25399         
25400         this.fireEvent('hide', this);
25401     },
25402     
25403     update : function()
25404     {
25405 //        var e = this.el.dom.firstChild;
25406 //        
25407 //        if(this.closable){
25408 //            e = e.nextSibling;
25409 //        }
25410 //        
25411 //        e.data = this.html || '';
25412
25413         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
25414     }
25415    
25416 });
25417
25418  
25419
25420      /*
25421  * - LGPL
25422  *
25423  * Graph
25424  * 
25425  */
25426
25427
25428 /**
25429  * @class Roo.bootstrap.Graph
25430  * @extends Roo.bootstrap.Component
25431  * Bootstrap Graph class
25432 > Prameters
25433  -sm {number} sm 4
25434  -md {number} md 5
25435  @cfg {String} graphtype  bar | vbar | pie
25436  @cfg {number} g_x coodinator | centre x (pie)
25437  @cfg {number} g_y coodinator | centre y (pie)
25438  @cfg {number} g_r radius (pie)
25439  @cfg {number} g_height height of the chart (respected by all elements in the set)
25440  @cfg {number} g_width width of the chart (respected by all elements in the set)
25441  @cfg {Object} title The title of the chart
25442     
25443  -{Array}  values
25444  -opts (object) options for the chart 
25445      o {
25446      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
25447      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
25448      o vgutter (number)
25449      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.
25450      o stacked (boolean) whether or not to tread values as in a stacked bar chart
25451      o to
25452      o stretch (boolean)
25453      o }
25454  -opts (object) options for the pie
25455      o{
25456      o cut
25457      o startAngle (number)
25458      o endAngle (number)
25459      } 
25460  *
25461  * @constructor
25462  * Create a new Input
25463  * @param {Object} config The config object
25464  */
25465
25466 Roo.bootstrap.Graph = function(config){
25467     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
25468     
25469     this.addEvents({
25470         // img events
25471         /**
25472          * @event click
25473          * The img click event for the img.
25474          * @param {Roo.EventObject} e
25475          */
25476         "click" : true
25477     });
25478 };
25479
25480 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
25481     
25482     sm: 4,
25483     md: 5,
25484     graphtype: 'bar',
25485     g_height: 250,
25486     g_width: 400,
25487     g_x: 50,
25488     g_y: 50,
25489     g_r: 30,
25490     opts:{
25491         //g_colors: this.colors,
25492         g_type: 'soft',
25493         g_gutter: '20%'
25494
25495     },
25496     title : false,
25497
25498     getAutoCreate : function(){
25499         
25500         var cfg = {
25501             tag: 'div',
25502             html : null
25503         };
25504         
25505         
25506         return  cfg;
25507     },
25508
25509     onRender : function(ct,position){
25510         
25511         
25512         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
25513         
25514         if (typeof(Raphael) == 'undefined') {
25515             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
25516             return;
25517         }
25518         
25519         this.raphael = Raphael(this.el.dom);
25520         
25521                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25522                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25523                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25524                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
25525                 /*
25526                 r.text(160, 10, "Single Series Chart").attr(txtattr);
25527                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
25528                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
25529                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
25530                 
25531                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
25532                 r.barchart(330, 10, 300, 220, data1);
25533                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
25534                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
25535                 */
25536                 
25537                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25538                 // r.barchart(30, 30, 560, 250,  xdata, {
25539                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
25540                 //     axis : "0 0 1 1",
25541                 //     axisxlabels :  xdata
25542                 //     //yvalues : cols,
25543                    
25544                 // });
25545 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25546 //        
25547 //        this.load(null,xdata,{
25548 //                axis : "0 0 1 1",
25549 //                axisxlabels :  xdata
25550 //                });
25551
25552     },
25553
25554     load : function(graphtype,xdata,opts)
25555     {
25556         this.raphael.clear();
25557         if(!graphtype) {
25558             graphtype = this.graphtype;
25559         }
25560         if(!opts){
25561             opts = this.opts;
25562         }
25563         var r = this.raphael,
25564             fin = function () {
25565                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
25566             },
25567             fout = function () {
25568                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
25569             },
25570             pfin = function() {
25571                 this.sector.stop();
25572                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
25573
25574                 if (this.label) {
25575                     this.label[0].stop();
25576                     this.label[0].attr({ r: 7.5 });
25577                     this.label[1].attr({ "font-weight": 800 });
25578                 }
25579             },
25580             pfout = function() {
25581                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
25582
25583                 if (this.label) {
25584                     this.label[0].animate({ r: 5 }, 500, "bounce");
25585                     this.label[1].attr({ "font-weight": 400 });
25586                 }
25587             };
25588
25589         switch(graphtype){
25590             case 'bar':
25591                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25592                 break;
25593             case 'hbar':
25594                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25595                 break;
25596             case 'pie':
25597 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
25598 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
25599 //            
25600                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
25601                 
25602                 break;
25603
25604         }
25605         
25606         if(this.title){
25607             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
25608         }
25609         
25610     },
25611     
25612     setTitle: function(o)
25613     {
25614         this.title = o;
25615     },
25616     
25617     initEvents: function() {
25618         
25619         if(!this.href){
25620             this.el.on('click', this.onClick, this);
25621         }
25622     },
25623     
25624     onClick : function(e)
25625     {
25626         Roo.log('img onclick');
25627         this.fireEvent('click', this, e);
25628     }
25629    
25630 });
25631
25632  
25633 /*
25634  * - LGPL
25635  *
25636  * numberBox
25637  * 
25638  */
25639 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25640
25641 /**
25642  * @class Roo.bootstrap.dash.NumberBox
25643  * @extends Roo.bootstrap.Component
25644  * Bootstrap NumberBox class
25645  * @cfg {String} headline Box headline
25646  * @cfg {String} content Box content
25647  * @cfg {String} icon Box icon
25648  * @cfg {String} footer Footer text
25649  * @cfg {String} fhref Footer href
25650  * 
25651  * @constructor
25652  * Create a new NumberBox
25653  * @param {Object} config The config object
25654  */
25655
25656
25657 Roo.bootstrap.dash.NumberBox = function(config){
25658     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
25659     
25660 };
25661
25662 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
25663     
25664     headline : '',
25665     content : '',
25666     icon : '',
25667     footer : '',
25668     fhref : '',
25669     ficon : '',
25670     
25671     getAutoCreate : function(){
25672         
25673         var cfg = {
25674             tag : 'div',
25675             cls : 'small-box ',
25676             cn : [
25677                 {
25678                     tag : 'div',
25679                     cls : 'inner',
25680                     cn :[
25681                         {
25682                             tag : 'h3',
25683                             cls : 'roo-headline',
25684                             html : this.headline
25685                         },
25686                         {
25687                             tag : 'p',
25688                             cls : 'roo-content',
25689                             html : this.content
25690                         }
25691                     ]
25692                 }
25693             ]
25694         };
25695         
25696         if(this.icon){
25697             cfg.cn.push({
25698                 tag : 'div',
25699                 cls : 'icon',
25700                 cn :[
25701                     {
25702                         tag : 'i',
25703                         cls : 'ion ' + this.icon
25704                     }
25705                 ]
25706             });
25707         }
25708         
25709         if(this.footer){
25710             var footer = {
25711                 tag : 'a',
25712                 cls : 'small-box-footer',
25713                 href : this.fhref || '#',
25714                 html : this.footer
25715             };
25716             
25717             cfg.cn.push(footer);
25718             
25719         }
25720         
25721         return  cfg;
25722     },
25723
25724     onRender : function(ct,position){
25725         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
25726
25727
25728        
25729                 
25730     },
25731
25732     setHeadline: function (value)
25733     {
25734         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
25735     },
25736     
25737     setFooter: function (value, href)
25738     {
25739         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
25740         
25741         if(href){
25742             this.el.select('a.small-box-footer',true).first().attr('href', href);
25743         }
25744         
25745     },
25746
25747     setContent: function (value)
25748     {
25749         this.el.select('.roo-content',true).first().dom.innerHTML = value;
25750     },
25751
25752     initEvents: function() 
25753     {   
25754         
25755     }
25756     
25757 });
25758
25759  
25760 /*
25761  * - LGPL
25762  *
25763  * TabBox
25764  * 
25765  */
25766 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25767
25768 /**
25769  * @class Roo.bootstrap.dash.TabBox
25770  * @extends Roo.bootstrap.Component
25771  * Bootstrap TabBox class
25772  * @cfg {String} title Title of the TabBox
25773  * @cfg {String} icon Icon of the TabBox
25774  * @cfg {Boolean} showtabs (true|false) show the tabs default true
25775  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
25776  * 
25777  * @constructor
25778  * Create a new TabBox
25779  * @param {Object} config The config object
25780  */
25781
25782
25783 Roo.bootstrap.dash.TabBox = function(config){
25784     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
25785     this.addEvents({
25786         // raw events
25787         /**
25788          * @event addpane
25789          * When a pane is added
25790          * @param {Roo.bootstrap.dash.TabPane} pane
25791          */
25792         "addpane" : true,
25793         /**
25794          * @event activatepane
25795          * When a pane is activated
25796          * @param {Roo.bootstrap.dash.TabPane} pane
25797          */
25798         "activatepane" : true
25799         
25800          
25801     });
25802     
25803     this.panes = [];
25804 };
25805
25806 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
25807
25808     title : '',
25809     icon : false,
25810     showtabs : true,
25811     tabScrollable : false,
25812     
25813     getChildContainer : function()
25814     {
25815         return this.el.select('.tab-content', true).first();
25816     },
25817     
25818     getAutoCreate : function(){
25819         
25820         var header = {
25821             tag: 'li',
25822             cls: 'pull-left header',
25823             html: this.title,
25824             cn : []
25825         };
25826         
25827         if(this.icon){
25828             header.cn.push({
25829                 tag: 'i',
25830                 cls: 'fa ' + this.icon
25831             });
25832         }
25833         
25834         var h = {
25835             tag: 'ul',
25836             cls: 'nav nav-tabs pull-right',
25837             cn: [
25838                 header
25839             ]
25840         };
25841         
25842         if(this.tabScrollable){
25843             h = {
25844                 tag: 'div',
25845                 cls: 'tab-header',
25846                 cn: [
25847                     {
25848                         tag: 'ul',
25849                         cls: 'nav nav-tabs pull-right',
25850                         cn: [
25851                             header
25852                         ]
25853                     }
25854                 ]
25855             };
25856         }
25857         
25858         var cfg = {
25859             tag: 'div',
25860             cls: 'nav-tabs-custom',
25861             cn: [
25862                 h,
25863                 {
25864                     tag: 'div',
25865                     cls: 'tab-content no-padding',
25866                     cn: []
25867                 }
25868             ]
25869         };
25870
25871         return  cfg;
25872     },
25873     initEvents : function()
25874     {
25875         //Roo.log('add add pane handler');
25876         this.on('addpane', this.onAddPane, this);
25877     },
25878      /**
25879      * Updates the box title
25880      * @param {String} html to set the title to.
25881      */
25882     setTitle : function(value)
25883     {
25884         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
25885     },
25886     onAddPane : function(pane)
25887     {
25888         this.panes.push(pane);
25889         //Roo.log('addpane');
25890         //Roo.log(pane);
25891         // tabs are rendere left to right..
25892         if(!this.showtabs){
25893             return;
25894         }
25895         
25896         var ctr = this.el.select('.nav-tabs', true).first();
25897          
25898          
25899         var existing = ctr.select('.nav-tab',true);
25900         var qty = existing.getCount();;
25901         
25902         
25903         var tab = ctr.createChild({
25904             tag : 'li',
25905             cls : 'nav-tab' + (qty ? '' : ' active'),
25906             cn : [
25907                 {
25908                     tag : 'a',
25909                     href:'#',
25910                     html : pane.title
25911                 }
25912             ]
25913         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
25914         pane.tab = tab;
25915         
25916         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
25917         if (!qty) {
25918             pane.el.addClass('active');
25919         }
25920         
25921                 
25922     },
25923     onTabClick : function(ev,un,ob,pane)
25924     {
25925         //Roo.log('tab - prev default');
25926         ev.preventDefault();
25927         
25928         
25929         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
25930         pane.tab.addClass('active');
25931         //Roo.log(pane.title);
25932         this.getChildContainer().select('.tab-pane',true).removeClass('active');
25933         // technically we should have a deactivate event.. but maybe add later.
25934         // and it should not de-activate the selected tab...
25935         this.fireEvent('activatepane', pane);
25936         pane.el.addClass('active');
25937         pane.fireEvent('activate');
25938         
25939         
25940     },
25941     
25942     getActivePane : function()
25943     {
25944         var r = false;
25945         Roo.each(this.panes, function(p) {
25946             if(p.el.hasClass('active')){
25947                 r = p;
25948                 return false;
25949             }
25950             
25951             return;
25952         });
25953         
25954         return r;
25955     }
25956     
25957     
25958 });
25959
25960  
25961 /*
25962  * - LGPL
25963  *
25964  * Tab pane
25965  * 
25966  */
25967 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25968 /**
25969  * @class Roo.bootstrap.TabPane
25970  * @extends Roo.bootstrap.Component
25971  * Bootstrap TabPane class
25972  * @cfg {Boolean} active (false | true) Default false
25973  * @cfg {String} title title of panel
25974
25975  * 
25976  * @constructor
25977  * Create a new TabPane
25978  * @param {Object} config The config object
25979  */
25980
25981 Roo.bootstrap.dash.TabPane = function(config){
25982     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
25983     
25984     this.addEvents({
25985         // raw events
25986         /**
25987          * @event activate
25988          * When a pane is activated
25989          * @param {Roo.bootstrap.dash.TabPane} pane
25990          */
25991         "activate" : true
25992          
25993     });
25994 };
25995
25996 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
25997     
25998     active : false,
25999     title : '',
26000     
26001     // the tabBox that this is attached to.
26002     tab : false,
26003      
26004     getAutoCreate : function() 
26005     {
26006         var cfg = {
26007             tag: 'div',
26008             cls: 'tab-pane'
26009         };
26010         
26011         if(this.active){
26012             cfg.cls += ' active';
26013         }
26014         
26015         return cfg;
26016     },
26017     initEvents  : function()
26018     {
26019         //Roo.log('trigger add pane handler');
26020         this.parent().fireEvent('addpane', this)
26021     },
26022     
26023      /**
26024      * Updates the tab title 
26025      * @param {String} html to set the title to.
26026      */
26027     setTitle: function(str)
26028     {
26029         if (!this.tab) {
26030             return;
26031         }
26032         this.title = str;
26033         this.tab.select('a', true).first().dom.innerHTML = str;
26034         
26035     }
26036     
26037     
26038     
26039 });
26040
26041  
26042
26043
26044  /*
26045  * - LGPL
26046  *
26047  * menu
26048  * 
26049  */
26050 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26051
26052 /**
26053  * @class Roo.bootstrap.menu.Menu
26054  * @extends Roo.bootstrap.Component
26055  * Bootstrap Menu class - container for Menu
26056  * @cfg {String} html Text of the menu
26057  * @cfg {String} weight (default | primary | success | info | warning | danger | inverse)
26058  * @cfg {String} icon Font awesome icon
26059  * @cfg {String} pos Menu align to (top | bottom) default bottom
26060  * 
26061  * 
26062  * @constructor
26063  * Create a new Menu
26064  * @param {Object} config The config object
26065  */
26066
26067
26068 Roo.bootstrap.menu.Menu = function(config){
26069     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
26070     
26071     this.addEvents({
26072         /**
26073          * @event beforeshow
26074          * Fires before this menu is displayed
26075          * @param {Roo.bootstrap.menu.Menu} this
26076          */
26077         beforeshow : true,
26078         /**
26079          * @event beforehide
26080          * Fires before this menu is hidden
26081          * @param {Roo.bootstrap.menu.Menu} this
26082          */
26083         beforehide : true,
26084         /**
26085          * @event show
26086          * Fires after this menu is displayed
26087          * @param {Roo.bootstrap.menu.Menu} this
26088          */
26089         show : true,
26090         /**
26091          * @event hide
26092          * Fires after this menu is hidden
26093          * @param {Roo.bootstrap.menu.Menu} this
26094          */
26095         hide : true,
26096         /**
26097          * @event click
26098          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
26099          * @param {Roo.bootstrap.menu.Menu} this
26100          * @param {Roo.EventObject} e
26101          */
26102         click : true
26103     });
26104     
26105 };
26106
26107 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
26108     
26109     submenu : false,
26110     html : '',
26111     weight : 'default',
26112     icon : false,
26113     pos : 'bottom',
26114     
26115     
26116     getChildContainer : function() {
26117         if(this.isSubMenu){
26118             return this.el;
26119         }
26120         
26121         return this.el.select('ul.dropdown-menu', true).first();  
26122     },
26123     
26124     getAutoCreate : function()
26125     {
26126         var text = [
26127             {
26128                 tag : 'span',
26129                 cls : 'roo-menu-text',
26130                 html : this.html
26131             }
26132         ];
26133         
26134         if(this.icon){
26135             text.unshift({
26136                 tag : 'i',
26137                 cls : 'fa ' + this.icon
26138             })
26139         }
26140         
26141         
26142         var cfg = {
26143             tag : 'div',
26144             cls : 'btn-group',
26145             cn : [
26146                 {
26147                     tag : 'button',
26148                     cls : 'dropdown-button btn btn-' + this.weight,
26149                     cn : text
26150                 },
26151                 {
26152                     tag : 'button',
26153                     cls : 'dropdown-toggle btn btn-' + this.weight,
26154                     cn : [
26155                         {
26156                             tag : 'span',
26157                             cls : 'caret'
26158                         }
26159                     ]
26160                 },
26161                 {
26162                     tag : 'ul',
26163                     cls : 'dropdown-menu'
26164                 }
26165             ]
26166             
26167         };
26168         
26169         if(this.pos == 'top'){
26170             cfg.cls += ' dropup';
26171         }
26172         
26173         if(this.isSubMenu){
26174             cfg = {
26175                 tag : 'ul',
26176                 cls : 'dropdown-menu'
26177             }
26178         }
26179         
26180         return cfg;
26181     },
26182     
26183     onRender : function(ct, position)
26184     {
26185         this.isSubMenu = ct.hasClass('dropdown-submenu');
26186         
26187         Roo.bootstrap.menu.Menu.superclass.onRender.call(this, ct, position);
26188     },
26189     
26190     initEvents : function() 
26191     {
26192         if(this.isSubMenu){
26193             return;
26194         }
26195         
26196         this.hidden = true;
26197         
26198         this.triggerEl = this.el.select('button.dropdown-toggle', true).first();
26199         this.triggerEl.on('click', this.onTriggerPress, this);
26200         
26201         this.buttonEl = this.el.select('button.dropdown-button', true).first();
26202         this.buttonEl.on('click', this.onClick, this);
26203         
26204     },
26205     
26206     list : function()
26207     {
26208         if(this.isSubMenu){
26209             return this.el;
26210         }
26211         
26212         return this.el.select('ul.dropdown-menu', true).first();
26213     },
26214     
26215     onClick : function(e)
26216     {
26217         this.fireEvent("click", this, e);
26218     },
26219     
26220     onTriggerPress  : function(e)
26221     {   
26222         if (this.isVisible()) {
26223             this.hide();
26224         } else {
26225             this.show();
26226         }
26227     },
26228     
26229     isVisible : function(){
26230         return !this.hidden;
26231     },
26232     
26233     show : function()
26234     {
26235         this.fireEvent("beforeshow", this);
26236         
26237         this.hidden = false;
26238         this.el.addClass('open');
26239         
26240         Roo.get(document).on("mouseup", this.onMouseUp, this);
26241         
26242         this.fireEvent("show", this);
26243         
26244         
26245     },
26246     
26247     hide : function()
26248     {
26249         this.fireEvent("beforehide", this);
26250         
26251         this.hidden = true;
26252         this.el.removeClass('open');
26253         
26254         Roo.get(document).un("mouseup", this.onMouseUp);
26255         
26256         this.fireEvent("hide", this);
26257     },
26258     
26259     onMouseUp : function()
26260     {
26261         this.hide();
26262     }
26263     
26264 });
26265
26266  
26267  /*
26268  * - LGPL
26269  *
26270  * menu item
26271  * 
26272  */
26273 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26274
26275 /**
26276  * @class Roo.bootstrap.menu.Item
26277  * @extends Roo.bootstrap.Component
26278  * Bootstrap MenuItem class
26279  * @cfg {Boolean} submenu (true | false) default false
26280  * @cfg {String} html text of the item
26281  * @cfg {String} href the link
26282  * @cfg {Boolean} disable (true | false) default false
26283  * @cfg {Boolean} preventDefault (true | false) default true
26284  * @cfg {String} icon Font awesome icon
26285  * @cfg {String} pos Submenu align to (left | right) default right 
26286  * 
26287  * 
26288  * @constructor
26289  * Create a new Item
26290  * @param {Object} config The config object
26291  */
26292
26293
26294 Roo.bootstrap.menu.Item = function(config){
26295     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
26296     this.addEvents({
26297         /**
26298          * @event mouseover
26299          * Fires when the mouse is hovering over this menu
26300          * @param {Roo.bootstrap.menu.Item} this
26301          * @param {Roo.EventObject} e
26302          */
26303         mouseover : true,
26304         /**
26305          * @event mouseout
26306          * Fires when the mouse exits this menu
26307          * @param {Roo.bootstrap.menu.Item} this
26308          * @param {Roo.EventObject} e
26309          */
26310         mouseout : true,
26311         // raw events
26312         /**
26313          * @event click
26314          * The raw click event for the entire grid.
26315          * @param {Roo.EventObject} e
26316          */
26317         click : true
26318     });
26319 };
26320
26321 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
26322     
26323     submenu : false,
26324     href : '',
26325     html : '',
26326     preventDefault: true,
26327     disable : false,
26328     icon : false,
26329     pos : 'right',
26330     
26331     getAutoCreate : function()
26332     {
26333         var text = [
26334             {
26335                 tag : 'span',
26336                 cls : 'roo-menu-item-text',
26337                 html : this.html
26338             }
26339         ];
26340         
26341         if(this.icon){
26342             text.unshift({
26343                 tag : 'i',
26344                 cls : 'fa ' + this.icon
26345             })
26346         }
26347         
26348         var cfg = {
26349             tag : 'li',
26350             cn : [
26351                 {
26352                     tag : 'a',
26353                     href : this.href || '#',
26354                     cn : text
26355                 }
26356             ]
26357         };
26358         
26359         if(this.disable){
26360             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'disabled' : (cfg.cls + ' disabled');
26361         }
26362         
26363         if(this.submenu){
26364             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'dropdown-submenu' : (cfg.cls + ' dropdown-submenu');
26365             
26366             if(this.pos == 'left'){
26367                 cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'pull-left' : (cfg.cls + ' pull-left');
26368             }
26369         }
26370         
26371         return cfg;
26372     },
26373     
26374     initEvents : function() 
26375     {
26376         this.el.on('mouseover', this.onMouseOver, this);
26377         this.el.on('mouseout', this.onMouseOut, this);
26378         
26379         this.el.select('a', true).first().on('click', this.onClick, this);
26380         
26381     },
26382     
26383     onClick : function(e)
26384     {
26385         if(this.preventDefault){
26386             e.preventDefault();
26387         }
26388         
26389         this.fireEvent("click", this, e);
26390     },
26391     
26392     onMouseOver : function(e)
26393     {
26394         if(this.submenu && this.pos == 'left'){
26395             this.el.select('ul.dropdown-menu', true).first().setLeft(this.el.select('ul.dropdown-menu', true).first().getWidth() * -1);
26396         }
26397         
26398         this.fireEvent("mouseover", this, e);
26399     },
26400     
26401     onMouseOut : function(e)
26402     {
26403         this.fireEvent("mouseout", this, e);
26404     }
26405 });
26406
26407  
26408
26409  /*
26410  * - LGPL
26411  *
26412  * menu separator
26413  * 
26414  */
26415 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26416
26417 /**
26418  * @class Roo.bootstrap.menu.Separator
26419  * @extends Roo.bootstrap.Component
26420  * Bootstrap Separator class
26421  * 
26422  * @constructor
26423  * Create a new Separator
26424  * @param {Object} config The config object
26425  */
26426
26427
26428 Roo.bootstrap.menu.Separator = function(config){
26429     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
26430 };
26431
26432 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
26433     
26434     getAutoCreate : function(){
26435         var cfg = {
26436             tag : 'li',
26437             cls: 'divider'
26438         };
26439         
26440         return cfg;
26441     }
26442    
26443 });
26444
26445  
26446
26447  /*
26448  * - LGPL
26449  *
26450  * Tooltip
26451  * 
26452  */
26453
26454 /**
26455  * @class Roo.bootstrap.Tooltip
26456  * Bootstrap Tooltip class
26457  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
26458  * to determine which dom element triggers the tooltip.
26459  * 
26460  * It needs to add support for additional attributes like tooltip-position
26461  * 
26462  * @constructor
26463  * Create a new Toolti
26464  * @param {Object} config The config object
26465  */
26466
26467 Roo.bootstrap.Tooltip = function(config){
26468     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
26469     
26470     this.alignment = Roo.bootstrap.Tooltip.alignment;
26471     
26472     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
26473         this.alignment = config.alignment;
26474     }
26475     
26476 };
26477
26478 Roo.apply(Roo.bootstrap.Tooltip, {
26479     /**
26480      * @function init initialize tooltip monitoring.
26481      * @static
26482      */
26483     currentEl : false,
26484     currentTip : false,
26485     currentRegion : false,
26486     
26487     //  init : delay?
26488     
26489     init : function()
26490     {
26491         Roo.get(document).on('mouseover', this.enter ,this);
26492         Roo.get(document).on('mouseout', this.leave, this);
26493          
26494         
26495         this.currentTip = new Roo.bootstrap.Tooltip();
26496     },
26497     
26498     enter : function(ev)
26499     {
26500         var dom = ev.getTarget();
26501         
26502         //Roo.log(['enter',dom]);
26503         var el = Roo.fly(dom);
26504         if (this.currentEl) {
26505             //Roo.log(dom);
26506             //Roo.log(this.currentEl);
26507             //Roo.log(this.currentEl.contains(dom));
26508             if (this.currentEl == el) {
26509                 return;
26510             }
26511             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
26512                 return;
26513             }
26514
26515         }
26516         
26517         if (this.currentTip.el) {
26518             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
26519         }    
26520         //Roo.log(ev);
26521         
26522         if(!el || el.dom == document){
26523             return;
26524         }
26525         
26526         var bindEl = el;
26527         
26528         // you can not look for children, as if el is the body.. then everythign is the child..
26529         if (!el.attr('tooltip')) { //
26530             if (!el.select("[tooltip]").elements.length) {
26531                 return;
26532             }
26533             // is the mouse over this child...?
26534             bindEl = el.select("[tooltip]").first();
26535             var xy = ev.getXY();
26536             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
26537                 //Roo.log("not in region.");
26538                 return;
26539             }
26540             //Roo.log("child element over..");
26541             
26542         }
26543         this.currentEl = bindEl;
26544         this.currentTip.bind(bindEl);
26545         this.currentRegion = Roo.lib.Region.getRegion(dom);
26546         this.currentTip.enter();
26547         
26548     },
26549     leave : function(ev)
26550     {
26551         var dom = ev.getTarget();
26552         //Roo.log(['leave',dom]);
26553         if (!this.currentEl) {
26554             return;
26555         }
26556         
26557         
26558         if (dom != this.currentEl.dom) {
26559             return;
26560         }
26561         var xy = ev.getXY();
26562         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
26563             return;
26564         }
26565         // only activate leave if mouse cursor is outside... bounding box..
26566         
26567         
26568         
26569         
26570         if (this.currentTip) {
26571             this.currentTip.leave();
26572         }
26573         //Roo.log('clear currentEl');
26574         this.currentEl = false;
26575         
26576         
26577     },
26578     alignment : {
26579         'left' : ['r-l', [-2,0], 'right'],
26580         'right' : ['l-r', [2,0], 'left'],
26581         'bottom' : ['t-b', [0,2], 'top'],
26582         'top' : [ 'b-t', [0,-2], 'bottom']
26583     }
26584     
26585 });
26586
26587
26588 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
26589     
26590     
26591     bindEl : false,
26592     
26593     delay : null, // can be { show : 300 , hide: 500}
26594     
26595     timeout : null,
26596     
26597     hoverState : null, //???
26598     
26599     placement : 'bottom', 
26600     
26601     alignment : false,
26602     
26603     getAutoCreate : function(){
26604     
26605         var cfg = {
26606            cls : 'tooltip',
26607            role : 'tooltip',
26608            cn : [
26609                 {
26610                     cls : 'tooltip-arrow'
26611                 },
26612                 {
26613                     cls : 'tooltip-inner'
26614                 }
26615            ]
26616         };
26617         
26618         return cfg;
26619     },
26620     bind : function(el)
26621     {
26622         this.bindEl = el;
26623     },
26624       
26625     
26626     enter : function () {
26627        
26628         if (this.timeout != null) {
26629             clearTimeout(this.timeout);
26630         }
26631         
26632         this.hoverState = 'in';
26633          //Roo.log("enter - show");
26634         if (!this.delay || !this.delay.show) {
26635             this.show();
26636             return;
26637         }
26638         var _t = this;
26639         this.timeout = setTimeout(function () {
26640             if (_t.hoverState == 'in') {
26641                 _t.show();
26642             }
26643         }, this.delay.show);
26644     },
26645     leave : function()
26646     {
26647         clearTimeout(this.timeout);
26648     
26649         this.hoverState = 'out';
26650          if (!this.delay || !this.delay.hide) {
26651             this.hide();
26652             return;
26653         }
26654        
26655         var _t = this;
26656         this.timeout = setTimeout(function () {
26657             //Roo.log("leave - timeout");
26658             
26659             if (_t.hoverState == 'out') {
26660                 _t.hide();
26661                 Roo.bootstrap.Tooltip.currentEl = false;
26662             }
26663         }, delay);
26664     },
26665     
26666     show : function (msg)
26667     {
26668         if (!this.el) {
26669             this.render(document.body);
26670         }
26671         // set content.
26672         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
26673         
26674         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
26675         
26676         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
26677         
26678         this.el.removeClass(['fade','top','bottom', 'left', 'right','in']);
26679         
26680         var placement = typeof this.placement == 'function' ?
26681             this.placement.call(this, this.el, on_el) :
26682             this.placement;
26683             
26684         var autoToken = /\s?auto?\s?/i;
26685         var autoPlace = autoToken.test(placement);
26686         if (autoPlace) {
26687             placement = placement.replace(autoToken, '') || 'top';
26688         }
26689         
26690         //this.el.detach()
26691         //this.el.setXY([0,0]);
26692         this.el.show();
26693         //this.el.dom.style.display='block';
26694         
26695         //this.el.appendTo(on_el);
26696         
26697         var p = this.getPosition();
26698         var box = this.el.getBox();
26699         
26700         if (autoPlace) {
26701             // fixme..
26702         }
26703         
26704         var align = this.alignment[placement];
26705         
26706         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
26707         
26708         if(placement == 'top' || placement == 'bottom'){
26709             if(xy[0] < 0){
26710                 placement = 'right';
26711             }
26712             
26713             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
26714                 placement = 'left';
26715             }
26716             
26717             var scroll = Roo.select('body', true).first().getScroll();
26718             
26719             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
26720                 placement = 'top';
26721             }
26722             
26723             align = this.alignment[placement];
26724         }
26725         
26726         this.el.alignTo(this.bindEl, align[0],align[1]);
26727         //var arrow = this.el.select('.arrow',true).first();
26728         //arrow.set(align[2], 
26729         
26730         this.el.addClass(placement);
26731         
26732         this.el.addClass('in fade');
26733         
26734         this.hoverState = null;
26735         
26736         if (this.el.hasClass('fade')) {
26737             // fade it?
26738         }
26739         
26740     },
26741     hide : function()
26742     {
26743          
26744         if (!this.el) {
26745             return;
26746         }
26747         //this.el.setXY([0,0]);
26748         this.el.removeClass('in');
26749         //this.el.hide();
26750         
26751     }
26752     
26753 });
26754  
26755
26756  /*
26757  * - LGPL
26758  *
26759  * Location Picker
26760  * 
26761  */
26762
26763 /**
26764  * @class Roo.bootstrap.LocationPicker
26765  * @extends Roo.bootstrap.Component
26766  * Bootstrap LocationPicker class
26767  * @cfg {Number} latitude Position when init default 0
26768  * @cfg {Number} longitude Position when init default 0
26769  * @cfg {Number} zoom default 15
26770  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
26771  * @cfg {Boolean} mapTypeControl default false
26772  * @cfg {Boolean} disableDoubleClickZoom default false
26773  * @cfg {Boolean} scrollwheel default true
26774  * @cfg {Boolean} streetViewControl default false
26775  * @cfg {Number} radius default 0
26776  * @cfg {String} locationName
26777  * @cfg {Boolean} draggable default true
26778  * @cfg {Boolean} enableAutocomplete default false
26779  * @cfg {Boolean} enableReverseGeocode default true
26780  * @cfg {String} markerTitle
26781  * 
26782  * @constructor
26783  * Create a new LocationPicker
26784  * @param {Object} config The config object
26785  */
26786
26787
26788 Roo.bootstrap.LocationPicker = function(config){
26789     
26790     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
26791     
26792     this.addEvents({
26793         /**
26794          * @event initial
26795          * Fires when the picker initialized.
26796          * @param {Roo.bootstrap.LocationPicker} this
26797          * @param {Google Location} location
26798          */
26799         initial : true,
26800         /**
26801          * @event positionchanged
26802          * Fires when the picker position changed.
26803          * @param {Roo.bootstrap.LocationPicker} this
26804          * @param {Google Location} location
26805          */
26806         positionchanged : true,
26807         /**
26808          * @event resize
26809          * Fires when the map resize.
26810          * @param {Roo.bootstrap.LocationPicker} this
26811          */
26812         resize : true,
26813         /**
26814          * @event show
26815          * Fires when the map show.
26816          * @param {Roo.bootstrap.LocationPicker} this
26817          */
26818         show : true,
26819         /**
26820          * @event hide
26821          * Fires when the map hide.
26822          * @param {Roo.bootstrap.LocationPicker} this
26823          */
26824         hide : true,
26825         /**
26826          * @event mapClick
26827          * Fires when click the map.
26828          * @param {Roo.bootstrap.LocationPicker} this
26829          * @param {Map event} e
26830          */
26831         mapClick : true,
26832         /**
26833          * @event mapRightClick
26834          * Fires when right click the map.
26835          * @param {Roo.bootstrap.LocationPicker} this
26836          * @param {Map event} e
26837          */
26838         mapRightClick : true,
26839         /**
26840          * @event markerClick
26841          * Fires when click the marker.
26842          * @param {Roo.bootstrap.LocationPicker} this
26843          * @param {Map event} e
26844          */
26845         markerClick : true,
26846         /**
26847          * @event markerRightClick
26848          * Fires when right click the marker.
26849          * @param {Roo.bootstrap.LocationPicker} this
26850          * @param {Map event} e
26851          */
26852         markerRightClick : true,
26853         /**
26854          * @event OverlayViewDraw
26855          * Fires when OverlayView Draw
26856          * @param {Roo.bootstrap.LocationPicker} this
26857          */
26858         OverlayViewDraw : true,
26859         /**
26860          * @event OverlayViewOnAdd
26861          * Fires when OverlayView Draw
26862          * @param {Roo.bootstrap.LocationPicker} this
26863          */
26864         OverlayViewOnAdd : true,
26865         /**
26866          * @event OverlayViewOnRemove
26867          * Fires when OverlayView Draw
26868          * @param {Roo.bootstrap.LocationPicker} this
26869          */
26870         OverlayViewOnRemove : true,
26871         /**
26872          * @event OverlayViewShow
26873          * Fires when OverlayView Draw
26874          * @param {Roo.bootstrap.LocationPicker} this
26875          * @param {Pixel} cpx
26876          */
26877         OverlayViewShow : true,
26878         /**
26879          * @event OverlayViewHide
26880          * Fires when OverlayView Draw
26881          * @param {Roo.bootstrap.LocationPicker} this
26882          */
26883         OverlayViewHide : true,
26884         /**
26885          * @event loadexception
26886          * Fires when load google lib failed.
26887          * @param {Roo.bootstrap.LocationPicker} this
26888          */
26889         loadexception : true
26890     });
26891         
26892 };
26893
26894 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
26895     
26896     gMapContext: false,
26897     
26898     latitude: 0,
26899     longitude: 0,
26900     zoom: 15,
26901     mapTypeId: false,
26902     mapTypeControl: false,
26903     disableDoubleClickZoom: false,
26904     scrollwheel: true,
26905     streetViewControl: false,
26906     radius: 0,
26907     locationName: '',
26908     draggable: true,
26909     enableAutocomplete: false,
26910     enableReverseGeocode: true,
26911     markerTitle: '',
26912     
26913     getAutoCreate: function()
26914     {
26915
26916         var cfg = {
26917             tag: 'div',
26918             cls: 'roo-location-picker'
26919         };
26920         
26921         return cfg
26922     },
26923     
26924     initEvents: function(ct, position)
26925     {       
26926         if(!this.el.getWidth() || this.isApplied()){
26927             return;
26928         }
26929         
26930         this.el.setVisibilityMode(Roo.Element.DISPLAY);
26931         
26932         this.initial();
26933     },
26934     
26935     initial: function()
26936     {
26937         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
26938             this.fireEvent('loadexception', this);
26939             return;
26940         }
26941         
26942         if(!this.mapTypeId){
26943             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
26944         }
26945         
26946         this.gMapContext = this.GMapContext();
26947         
26948         this.initOverlayView();
26949         
26950         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
26951         
26952         var _this = this;
26953                 
26954         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
26955             _this.setPosition(_this.gMapContext.marker.position);
26956         });
26957         
26958         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
26959             _this.fireEvent('mapClick', this, event);
26960             
26961         });
26962
26963         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
26964             _this.fireEvent('mapRightClick', this, event);
26965             
26966         });
26967         
26968         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
26969             _this.fireEvent('markerClick', this, event);
26970             
26971         });
26972
26973         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
26974             _this.fireEvent('markerRightClick', this, event);
26975             
26976         });
26977         
26978         this.setPosition(this.gMapContext.location);
26979         
26980         this.fireEvent('initial', this, this.gMapContext.location);
26981     },
26982     
26983     initOverlayView: function()
26984     {
26985         var _this = this;
26986         
26987         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
26988             
26989             draw: function()
26990             {
26991                 _this.fireEvent('OverlayViewDraw', _this);
26992             },
26993             
26994             onAdd: function()
26995             {
26996                 _this.fireEvent('OverlayViewOnAdd', _this);
26997             },
26998             
26999             onRemove: function()
27000             {
27001                 _this.fireEvent('OverlayViewOnRemove', _this);
27002             },
27003             
27004             show: function(cpx)
27005             {
27006                 _this.fireEvent('OverlayViewShow', _this, cpx);
27007             },
27008             
27009             hide: function()
27010             {
27011                 _this.fireEvent('OverlayViewHide', _this);
27012             }
27013             
27014         });
27015     },
27016     
27017     fromLatLngToContainerPixel: function(event)
27018     {
27019         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
27020     },
27021     
27022     isApplied: function() 
27023     {
27024         return this.getGmapContext() == false ? false : true;
27025     },
27026     
27027     getGmapContext: function() 
27028     {
27029         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
27030     },
27031     
27032     GMapContext: function() 
27033     {
27034         var position = new google.maps.LatLng(this.latitude, this.longitude);
27035         
27036         var _map = new google.maps.Map(this.el.dom, {
27037             center: position,
27038             zoom: this.zoom,
27039             mapTypeId: this.mapTypeId,
27040             mapTypeControl: this.mapTypeControl,
27041             disableDoubleClickZoom: this.disableDoubleClickZoom,
27042             scrollwheel: this.scrollwheel,
27043             streetViewControl: this.streetViewControl,
27044             locationName: this.locationName,
27045             draggable: this.draggable,
27046             enableAutocomplete: this.enableAutocomplete,
27047             enableReverseGeocode: this.enableReverseGeocode
27048         });
27049         
27050         var _marker = new google.maps.Marker({
27051             position: position,
27052             map: _map,
27053             title: this.markerTitle,
27054             draggable: this.draggable
27055         });
27056         
27057         return {
27058             map: _map,
27059             marker: _marker,
27060             circle: null,
27061             location: position,
27062             radius: this.radius,
27063             locationName: this.locationName,
27064             addressComponents: {
27065                 formatted_address: null,
27066                 addressLine1: null,
27067                 addressLine2: null,
27068                 streetName: null,
27069                 streetNumber: null,
27070                 city: null,
27071                 district: null,
27072                 state: null,
27073                 stateOrProvince: null
27074             },
27075             settings: this,
27076             domContainer: this.el.dom,
27077             geodecoder: new google.maps.Geocoder()
27078         };
27079     },
27080     
27081     drawCircle: function(center, radius, options) 
27082     {
27083         if (this.gMapContext.circle != null) {
27084             this.gMapContext.circle.setMap(null);
27085         }
27086         if (radius > 0) {
27087             radius *= 1;
27088             options = Roo.apply({}, options, {
27089                 strokeColor: "#0000FF",
27090                 strokeOpacity: .35,
27091                 strokeWeight: 2,
27092                 fillColor: "#0000FF",
27093                 fillOpacity: .2
27094             });
27095             
27096             options.map = this.gMapContext.map;
27097             options.radius = radius;
27098             options.center = center;
27099             this.gMapContext.circle = new google.maps.Circle(options);
27100             return this.gMapContext.circle;
27101         }
27102         
27103         return null;
27104     },
27105     
27106     setPosition: function(location) 
27107     {
27108         this.gMapContext.location = location;
27109         this.gMapContext.marker.setPosition(location);
27110         this.gMapContext.map.panTo(location);
27111         this.drawCircle(location, this.gMapContext.radius, {});
27112         
27113         var _this = this;
27114         
27115         if (this.gMapContext.settings.enableReverseGeocode) {
27116             this.gMapContext.geodecoder.geocode({
27117                 latLng: this.gMapContext.location
27118             }, function(results, status) {
27119                 
27120                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
27121                     _this.gMapContext.locationName = results[0].formatted_address;
27122                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
27123                     
27124                     _this.fireEvent('positionchanged', this, location);
27125                 }
27126             });
27127             
27128             return;
27129         }
27130         
27131         this.fireEvent('positionchanged', this, location);
27132     },
27133     
27134     resize: function()
27135     {
27136         google.maps.event.trigger(this.gMapContext.map, "resize");
27137         
27138         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
27139         
27140         this.fireEvent('resize', this);
27141     },
27142     
27143     setPositionByLatLng: function(latitude, longitude)
27144     {
27145         this.setPosition(new google.maps.LatLng(latitude, longitude));
27146     },
27147     
27148     getCurrentPosition: function() 
27149     {
27150         return {
27151             latitude: this.gMapContext.location.lat(),
27152             longitude: this.gMapContext.location.lng()
27153         };
27154     },
27155     
27156     getAddressName: function() 
27157     {
27158         return this.gMapContext.locationName;
27159     },
27160     
27161     getAddressComponents: function() 
27162     {
27163         return this.gMapContext.addressComponents;
27164     },
27165     
27166     address_component_from_google_geocode: function(address_components) 
27167     {
27168         var result = {};
27169         
27170         for (var i = 0; i < address_components.length; i++) {
27171             var component = address_components[i];
27172             if (component.types.indexOf("postal_code") >= 0) {
27173                 result.postalCode = component.short_name;
27174             } else if (component.types.indexOf("street_number") >= 0) {
27175                 result.streetNumber = component.short_name;
27176             } else if (component.types.indexOf("route") >= 0) {
27177                 result.streetName = component.short_name;
27178             } else if (component.types.indexOf("neighborhood") >= 0) {
27179                 result.city = component.short_name;
27180             } else if (component.types.indexOf("locality") >= 0) {
27181                 result.city = component.short_name;
27182             } else if (component.types.indexOf("sublocality") >= 0) {
27183                 result.district = component.short_name;
27184             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
27185                 result.stateOrProvince = component.short_name;
27186             } else if (component.types.indexOf("country") >= 0) {
27187                 result.country = component.short_name;
27188             }
27189         }
27190         
27191         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
27192         result.addressLine2 = "";
27193         return result;
27194     },
27195     
27196     setZoomLevel: function(zoom)
27197     {
27198         this.gMapContext.map.setZoom(zoom);
27199     },
27200     
27201     show: function()
27202     {
27203         if(!this.el){
27204             return;
27205         }
27206         
27207         this.el.show();
27208         
27209         this.resize();
27210         
27211         this.fireEvent('show', this);
27212     },
27213     
27214     hide: function()
27215     {
27216         if(!this.el){
27217             return;
27218         }
27219         
27220         this.el.hide();
27221         
27222         this.fireEvent('hide', this);
27223     }
27224     
27225 });
27226
27227 Roo.apply(Roo.bootstrap.LocationPicker, {
27228     
27229     OverlayView : function(map, options)
27230     {
27231         options = options || {};
27232         
27233         this.setMap(map);
27234     }
27235     
27236     
27237 });/**
27238  * @class Roo.bootstrap.Alert
27239  * @extends Roo.bootstrap.Component
27240  * Bootstrap Alert class - shows an alert area box
27241  * eg
27242  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
27243   Enter a valid email address
27244 </div>
27245  * @licence LGPL
27246  * @cfg {String} title The title of alert
27247  * @cfg {String} html The content of alert
27248  * @cfg {String} weight (  success | info | warning | danger )
27249  * @cfg {String} faicon font-awesomeicon
27250  * 
27251  * @constructor
27252  * Create a new alert
27253  * @param {Object} config The config object
27254  */
27255
27256
27257 Roo.bootstrap.Alert = function(config){
27258     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
27259     
27260 };
27261
27262 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
27263     
27264     title: '',
27265     html: '',
27266     weight: false,
27267     faicon: false,
27268     
27269     getAutoCreate : function()
27270     {
27271         
27272         var cfg = {
27273             tag : 'div',
27274             cls : 'alert',
27275             cn : [
27276                 {
27277                     tag : 'i',
27278                     cls : 'roo-alert-icon'
27279                     
27280                 },
27281                 {
27282                     tag : 'b',
27283                     cls : 'roo-alert-title',
27284                     html : this.title
27285                 },
27286                 {
27287                     tag : 'span',
27288                     cls : 'roo-alert-text',
27289                     html : this.html
27290                 }
27291             ]
27292         };
27293         
27294         if(this.faicon){
27295             cfg.cn[0].cls += ' fa ' + this.faicon;
27296         }
27297         
27298         if(this.weight){
27299             cfg.cls += ' alert-' + this.weight;
27300         }
27301         
27302         return cfg;
27303     },
27304     
27305     initEvents: function() 
27306     {
27307         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27308     },
27309     
27310     setTitle : function(str)
27311     {
27312         this.el.select('.roo-alert-title',true).first().dom.innerHTML = str;
27313     },
27314     
27315     setText : function(str)
27316     {
27317         this.el.select('.roo-alert-text',true).first().dom.innerHTML = str;
27318     },
27319     
27320     setWeight : function(weight)
27321     {
27322         if(this.weight){
27323             this.el.select('.alert',true).first().removeClass('alert-' + this.weight);
27324         }
27325         
27326         this.weight = weight;
27327         
27328         this.el.select('.alert',true).first().addClass('alert-' + this.weight);
27329     },
27330     
27331     setIcon : function(icon)
27332     {
27333         if(this.faicon){
27334             this.el.select('.roo-alert-icon',true).first().removeClass(['fa', 'fa-' + this.faicon]);
27335         }
27336         
27337         this.faicon = icon;
27338         
27339         this.el.select('.roo-alert-icon',true).first().addClass(['fa', 'fa-' + this.faicon]);
27340     },
27341     
27342     hide: function() 
27343     {
27344         this.el.hide();   
27345     },
27346     
27347     show: function() 
27348     {  
27349         this.el.show();   
27350     }
27351     
27352 });
27353
27354  
27355 /*
27356 * Licence: LGPL
27357 */
27358
27359 /**
27360  * @class Roo.bootstrap.UploadCropbox
27361  * @extends Roo.bootstrap.Component
27362  * Bootstrap UploadCropbox class
27363  * @cfg {String} emptyText show when image has been loaded
27364  * @cfg {String} rotateNotify show when image too small to rotate
27365  * @cfg {Number} errorTimeout default 3000
27366  * @cfg {Number} minWidth default 300
27367  * @cfg {Number} minHeight default 300
27368  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
27369  * @cfg {Boolean} isDocument (true|false) default false
27370  * @cfg {String} url action url
27371  * @cfg {String} paramName default 'imageUpload'
27372  * @cfg {String} method default POST
27373  * @cfg {Boolean} loadMask (true|false) default true
27374  * @cfg {Boolean} loadingText default 'Loading...'
27375  * 
27376  * @constructor
27377  * Create a new UploadCropbox
27378  * @param {Object} config The config object
27379  */
27380
27381 Roo.bootstrap.UploadCropbox = function(config){
27382     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
27383     
27384     this.addEvents({
27385         /**
27386          * @event beforeselectfile
27387          * Fire before select file
27388          * @param {Roo.bootstrap.UploadCropbox} this
27389          */
27390         "beforeselectfile" : true,
27391         /**
27392          * @event initial
27393          * Fire after initEvent
27394          * @param {Roo.bootstrap.UploadCropbox} this
27395          */
27396         "initial" : true,
27397         /**
27398          * @event crop
27399          * Fire after initEvent
27400          * @param {Roo.bootstrap.UploadCropbox} this
27401          * @param {String} data
27402          */
27403         "crop" : true,
27404         /**
27405          * @event prepare
27406          * Fire when preparing the file data
27407          * @param {Roo.bootstrap.UploadCropbox} this
27408          * @param {Object} file
27409          */
27410         "prepare" : true,
27411         /**
27412          * @event exception
27413          * Fire when get exception
27414          * @param {Roo.bootstrap.UploadCropbox} this
27415          * @param {XMLHttpRequest} xhr
27416          */
27417         "exception" : true,
27418         /**
27419          * @event beforeloadcanvas
27420          * Fire before load the canvas
27421          * @param {Roo.bootstrap.UploadCropbox} this
27422          * @param {String} src
27423          */
27424         "beforeloadcanvas" : true,
27425         /**
27426          * @event trash
27427          * Fire when trash image
27428          * @param {Roo.bootstrap.UploadCropbox} this
27429          */
27430         "trash" : true,
27431         /**
27432          * @event download
27433          * Fire when download the image
27434          * @param {Roo.bootstrap.UploadCropbox} this
27435          */
27436         "download" : true,
27437         /**
27438          * @event footerbuttonclick
27439          * Fire when footerbuttonclick
27440          * @param {Roo.bootstrap.UploadCropbox} this
27441          * @param {String} type
27442          */
27443         "footerbuttonclick" : true,
27444         /**
27445          * @event resize
27446          * Fire when resize
27447          * @param {Roo.bootstrap.UploadCropbox} this
27448          */
27449         "resize" : true,
27450         /**
27451          * @event rotate
27452          * Fire when rotate the image
27453          * @param {Roo.bootstrap.UploadCropbox} this
27454          * @param {String} pos
27455          */
27456         "rotate" : true,
27457         /**
27458          * @event inspect
27459          * Fire when inspect the file
27460          * @param {Roo.bootstrap.UploadCropbox} this
27461          * @param {Object} file
27462          */
27463         "inspect" : true,
27464         /**
27465          * @event upload
27466          * Fire when xhr upload the file
27467          * @param {Roo.bootstrap.UploadCropbox} this
27468          * @param {Object} data
27469          */
27470         "upload" : true,
27471         /**
27472          * @event arrange
27473          * Fire when arrange the file data
27474          * @param {Roo.bootstrap.UploadCropbox} this
27475          * @param {Object} formData
27476          */
27477         "arrange" : true
27478     });
27479     
27480     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
27481 };
27482
27483 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
27484     
27485     emptyText : 'Click to upload image',
27486     rotateNotify : 'Image is too small to rotate',
27487     errorTimeout : 3000,
27488     scale : 0,
27489     baseScale : 1,
27490     rotate : 0,
27491     dragable : false,
27492     pinching : false,
27493     mouseX : 0,
27494     mouseY : 0,
27495     cropData : false,
27496     minWidth : 300,
27497     minHeight : 300,
27498     file : false,
27499     exif : {},
27500     baseRotate : 1,
27501     cropType : 'image/jpeg',
27502     buttons : false,
27503     canvasLoaded : false,
27504     isDocument : false,
27505     method : 'POST',
27506     paramName : 'imageUpload',
27507     loadMask : true,
27508     loadingText : 'Loading...',
27509     maskEl : false,
27510     
27511     getAutoCreate : function()
27512     {
27513         var cfg = {
27514             tag : 'div',
27515             cls : 'roo-upload-cropbox',
27516             cn : [
27517                 {
27518                     tag : 'input',
27519                     cls : 'roo-upload-cropbox-selector',
27520                     type : 'file'
27521                 },
27522                 {
27523                     tag : 'div',
27524                     cls : 'roo-upload-cropbox-body',
27525                     style : 'cursor:pointer',
27526                     cn : [
27527                         {
27528                             tag : 'div',
27529                             cls : 'roo-upload-cropbox-preview'
27530                         },
27531                         {
27532                             tag : 'div',
27533                             cls : 'roo-upload-cropbox-thumb'
27534                         },
27535                         {
27536                             tag : 'div',
27537                             cls : 'roo-upload-cropbox-empty-notify',
27538                             html : this.emptyText
27539                         },
27540                         {
27541                             tag : 'div',
27542                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
27543                             html : this.rotateNotify
27544                         }
27545                     ]
27546                 },
27547                 {
27548                     tag : 'div',
27549                     cls : 'roo-upload-cropbox-footer',
27550                     cn : {
27551                         tag : 'div',
27552                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
27553                         cn : []
27554                     }
27555                 }
27556             ]
27557         };
27558         
27559         return cfg;
27560     },
27561     
27562     onRender : function(ct, position)
27563     {
27564         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
27565         
27566         if (this.buttons.length) {
27567             
27568             Roo.each(this.buttons, function(bb) {
27569                 
27570                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
27571                 
27572                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
27573                 
27574             }, this);
27575         }
27576         
27577         if(this.loadMask){
27578             this.maskEl = this.el;
27579         }
27580     },
27581     
27582     initEvents : function()
27583     {
27584         this.urlAPI = (window.createObjectURL && window) || 
27585                                 (window.URL && URL.revokeObjectURL && URL) || 
27586                                 (window.webkitURL && webkitURL);
27587                         
27588         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
27589         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27590         
27591         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
27592         this.selectorEl.hide();
27593         
27594         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
27595         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27596         
27597         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
27598         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27599         this.thumbEl.hide();
27600         
27601         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
27602         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27603         
27604         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
27605         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27606         this.errorEl.hide();
27607         
27608         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
27609         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27610         this.footerEl.hide();
27611         
27612         this.setThumbBoxSize();
27613         
27614         this.bind();
27615         
27616         this.resize();
27617         
27618         this.fireEvent('initial', this);
27619     },
27620
27621     bind : function()
27622     {
27623         var _this = this;
27624         
27625         window.addEventListener("resize", function() { _this.resize(); } );
27626         
27627         this.bodyEl.on('click', this.beforeSelectFile, this);
27628         
27629         if(Roo.isTouch){
27630             this.bodyEl.on('touchstart', this.onTouchStart, this);
27631             this.bodyEl.on('touchmove', this.onTouchMove, this);
27632             this.bodyEl.on('touchend', this.onTouchEnd, this);
27633         }
27634         
27635         if(!Roo.isTouch){
27636             this.bodyEl.on('mousedown', this.onMouseDown, this);
27637             this.bodyEl.on('mousemove', this.onMouseMove, this);
27638             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
27639             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
27640             Roo.get(document).on('mouseup', this.onMouseUp, this);
27641         }
27642         
27643         this.selectorEl.on('change', this.onFileSelected, this);
27644     },
27645     
27646     reset : function()
27647     {    
27648         this.scale = 0;
27649         this.baseScale = 1;
27650         this.rotate = 0;
27651         this.baseRotate = 1;
27652         this.dragable = false;
27653         this.pinching = false;
27654         this.mouseX = 0;
27655         this.mouseY = 0;
27656         this.cropData = false;
27657         this.notifyEl.dom.innerHTML = this.emptyText;
27658         
27659         this.selectorEl.dom.value = '';
27660         
27661     },
27662     
27663     resize : function()
27664     {
27665         if(this.fireEvent('resize', this) != false){
27666             this.setThumbBoxPosition();
27667             this.setCanvasPosition();
27668         }
27669     },
27670     
27671     onFooterButtonClick : function(e, el, o, type)
27672     {
27673         switch (type) {
27674             case 'rotate-left' :
27675                 this.onRotateLeft(e);
27676                 break;
27677             case 'rotate-right' :
27678                 this.onRotateRight(e);
27679                 break;
27680             case 'picture' :
27681                 this.beforeSelectFile(e);
27682                 break;
27683             case 'trash' :
27684                 this.trash(e);
27685                 break;
27686             case 'crop' :
27687                 this.crop(e);
27688                 break;
27689             case 'download' :
27690                 this.download(e);
27691                 break;
27692             default :
27693                 break;
27694         }
27695         
27696         this.fireEvent('footerbuttonclick', this, type);
27697     },
27698     
27699     beforeSelectFile : function(e)
27700     {
27701         e.preventDefault();
27702         
27703         if(this.fireEvent('beforeselectfile', this) != false){
27704             this.selectorEl.dom.click();
27705         }
27706     },
27707     
27708     onFileSelected : function(e)
27709     {
27710         e.preventDefault();
27711         
27712         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
27713             return;
27714         }
27715         
27716         var file = this.selectorEl.dom.files[0];
27717         
27718         if(this.fireEvent('inspect', this, file) != false){
27719             this.prepare(file);
27720         }
27721         
27722     },
27723     
27724     trash : function(e)
27725     {
27726         this.fireEvent('trash', this);
27727     },
27728     
27729     download : function(e)
27730     {
27731         this.fireEvent('download', this);
27732     },
27733     
27734     loadCanvas : function(src)
27735     {   
27736         if(this.fireEvent('beforeloadcanvas', this, src) != false){
27737             
27738             this.reset();
27739             
27740             this.imageEl = document.createElement('img');
27741             
27742             var _this = this;
27743             
27744             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
27745             
27746             this.imageEl.src = src;
27747         }
27748     },
27749     
27750     onLoadCanvas : function()
27751     {   
27752         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
27753         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
27754         
27755         this.bodyEl.un('click', this.beforeSelectFile, this);
27756         
27757         this.notifyEl.hide();
27758         this.thumbEl.show();
27759         this.footerEl.show();
27760         
27761         this.baseRotateLevel();
27762         
27763         if(this.isDocument){
27764             this.setThumbBoxSize();
27765         }
27766         
27767         this.setThumbBoxPosition();
27768         
27769         this.baseScaleLevel();
27770         
27771         this.draw();
27772         
27773         this.resize();
27774         
27775         this.canvasLoaded = true;
27776         
27777         if(this.loadMask){
27778             this.maskEl.unmask();
27779         }
27780         
27781     },
27782     
27783     setCanvasPosition : function()
27784     {   
27785         if(!this.canvasEl){
27786             return;
27787         }
27788         
27789         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
27790         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
27791         
27792         this.previewEl.setLeft(pw);
27793         this.previewEl.setTop(ph);
27794         
27795     },
27796     
27797     onMouseDown : function(e)
27798     {   
27799         e.stopEvent();
27800         
27801         this.dragable = true;
27802         this.pinching = false;
27803         
27804         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
27805             this.dragable = false;
27806             return;
27807         }
27808         
27809         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27810         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27811         
27812     },
27813     
27814     onMouseMove : function(e)
27815     {   
27816         e.stopEvent();
27817         
27818         if(!this.canvasLoaded){
27819             return;
27820         }
27821         
27822         if (!this.dragable){
27823             return;
27824         }
27825         
27826         var minX = Math.ceil(this.thumbEl.getLeft(true));
27827         var minY = Math.ceil(this.thumbEl.getTop(true));
27828         
27829         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
27830         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
27831         
27832         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27833         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27834         
27835         x = x - this.mouseX;
27836         y = y - this.mouseY;
27837         
27838         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
27839         var bgY = Math.ceil(y + this.previewEl.getTop(true));
27840         
27841         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
27842         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
27843         
27844         this.previewEl.setLeft(bgX);
27845         this.previewEl.setTop(bgY);
27846         
27847         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27848         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27849     },
27850     
27851     onMouseUp : function(e)
27852     {   
27853         e.stopEvent();
27854         
27855         this.dragable = false;
27856     },
27857     
27858     onMouseWheel : function(e)
27859     {   
27860         e.stopEvent();
27861         
27862         this.startScale = this.scale;
27863         
27864         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
27865         
27866         if(!this.zoomable()){
27867             this.scale = this.startScale;
27868             return;
27869         }
27870         
27871         this.draw();
27872         
27873         return;
27874     },
27875     
27876     zoomable : function()
27877     {
27878         var minScale = this.thumbEl.getWidth() / this.minWidth;
27879         
27880         if(this.minWidth < this.minHeight){
27881             minScale = this.thumbEl.getHeight() / this.minHeight;
27882         }
27883         
27884         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
27885         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
27886         
27887         if(
27888                 this.isDocument &&
27889                 (this.rotate == 0 || this.rotate == 180) && 
27890                 (
27891                     width > this.imageEl.OriginWidth || 
27892                     height > this.imageEl.OriginHeight ||
27893                     (width < this.minWidth && height < this.minHeight)
27894                 )
27895         ){
27896             return false;
27897         }
27898         
27899         if(
27900                 this.isDocument &&
27901                 (this.rotate == 90 || this.rotate == 270) && 
27902                 (
27903                     width > this.imageEl.OriginWidth || 
27904                     height > this.imageEl.OriginHeight ||
27905                     (width < this.minHeight && height < this.minWidth)
27906                 )
27907         ){
27908             return false;
27909         }
27910         
27911         if(
27912                 !this.isDocument &&
27913                 (this.rotate == 0 || this.rotate == 180) && 
27914                 (
27915                     width < this.minWidth || 
27916                     width > this.imageEl.OriginWidth || 
27917                     height < this.minHeight || 
27918                     height > this.imageEl.OriginHeight
27919                 )
27920         ){
27921             return false;
27922         }
27923         
27924         if(
27925                 !this.isDocument &&
27926                 (this.rotate == 90 || this.rotate == 270) && 
27927                 (
27928                     width < this.minHeight || 
27929                     width > this.imageEl.OriginWidth || 
27930                     height < this.minWidth || 
27931                     height > this.imageEl.OriginHeight
27932                 )
27933         ){
27934             return false;
27935         }
27936         
27937         return true;
27938         
27939     },
27940     
27941     onRotateLeft : function(e)
27942     {   
27943         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
27944             
27945             var minScale = this.thumbEl.getWidth() / this.minWidth;
27946             
27947             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
27948             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
27949             
27950             this.startScale = this.scale;
27951             
27952             while (this.getScaleLevel() < minScale){
27953             
27954                 this.scale = this.scale + 1;
27955                 
27956                 if(!this.zoomable()){
27957                     break;
27958                 }
27959                 
27960                 if(
27961                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
27962                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
27963                 ){
27964                     continue;
27965                 }
27966                 
27967                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
27968
27969                 this.draw();
27970                 
27971                 return;
27972             }
27973             
27974             this.scale = this.startScale;
27975             
27976             this.onRotateFail();
27977             
27978             return false;
27979         }
27980         
27981         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
27982
27983         if(this.isDocument){
27984             this.setThumbBoxSize();
27985             this.setThumbBoxPosition();
27986             this.setCanvasPosition();
27987         }
27988         
27989         this.draw();
27990         
27991         this.fireEvent('rotate', this, 'left');
27992         
27993     },
27994     
27995     onRotateRight : function(e)
27996     {
27997         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
27998             
27999             var minScale = this.thumbEl.getWidth() / this.minWidth;
28000         
28001             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28002             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28003             
28004             this.startScale = this.scale;
28005             
28006             while (this.getScaleLevel() < minScale){
28007             
28008                 this.scale = this.scale + 1;
28009                 
28010                 if(!this.zoomable()){
28011                     break;
28012                 }
28013                 
28014                 if(
28015                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28016                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28017                 ){
28018                     continue;
28019                 }
28020                 
28021                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28022
28023                 this.draw();
28024                 
28025                 return;
28026             }
28027             
28028             this.scale = this.startScale;
28029             
28030             this.onRotateFail();
28031             
28032             return false;
28033         }
28034         
28035         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28036
28037         if(this.isDocument){
28038             this.setThumbBoxSize();
28039             this.setThumbBoxPosition();
28040             this.setCanvasPosition();
28041         }
28042         
28043         this.draw();
28044         
28045         this.fireEvent('rotate', this, 'right');
28046     },
28047     
28048     onRotateFail : function()
28049     {
28050         this.errorEl.show(true);
28051         
28052         var _this = this;
28053         
28054         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
28055     },
28056     
28057     draw : function()
28058     {
28059         this.previewEl.dom.innerHTML = '';
28060         
28061         var canvasEl = document.createElement("canvas");
28062         
28063         var contextEl = canvasEl.getContext("2d");
28064         
28065         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28066         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28067         var center = this.imageEl.OriginWidth / 2;
28068         
28069         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
28070             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28071             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28072             center = this.imageEl.OriginHeight / 2;
28073         }
28074         
28075         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
28076         
28077         contextEl.translate(center, center);
28078         contextEl.rotate(this.rotate * Math.PI / 180);
28079
28080         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28081         
28082         this.canvasEl = document.createElement("canvas");
28083         
28084         this.contextEl = this.canvasEl.getContext("2d");
28085         
28086         switch (this.rotate) {
28087             case 0 :
28088                 
28089                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28090                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28091                 
28092                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28093                 
28094                 break;
28095             case 90 : 
28096                 
28097                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28098                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28099                 
28100                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28101                     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);
28102                     break;
28103                 }
28104                 
28105                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28106                 
28107                 break;
28108             case 180 :
28109                 
28110                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28111                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28112                 
28113                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28114                     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);
28115                     break;
28116                 }
28117                 
28118                 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);
28119                 
28120                 break;
28121             case 270 :
28122                 
28123                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28124                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28125         
28126                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28127                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28128                     break;
28129                 }
28130                 
28131                 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);
28132                 
28133                 break;
28134             default : 
28135                 break;
28136         }
28137         
28138         this.previewEl.appendChild(this.canvasEl);
28139         
28140         this.setCanvasPosition();
28141     },
28142     
28143     crop : function()
28144     {
28145         if(!this.canvasLoaded){
28146             return;
28147         }
28148         
28149         var imageCanvas = document.createElement("canvas");
28150         
28151         var imageContext = imageCanvas.getContext("2d");
28152         
28153         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28154         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28155         
28156         var center = imageCanvas.width / 2;
28157         
28158         imageContext.translate(center, center);
28159         
28160         imageContext.rotate(this.rotate * Math.PI / 180);
28161         
28162         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28163         
28164         var canvas = document.createElement("canvas");
28165         
28166         var context = canvas.getContext("2d");
28167                 
28168         canvas.width = this.minWidth;
28169         canvas.height = this.minHeight;
28170
28171         switch (this.rotate) {
28172             case 0 :
28173                 
28174                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28175                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28176                 
28177                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28178                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28179                 
28180                 var targetWidth = this.minWidth - 2 * x;
28181                 var targetHeight = this.minHeight - 2 * y;
28182                 
28183                 var scale = 1;
28184                 
28185                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28186                     scale = targetWidth / width;
28187                 }
28188                 
28189                 if(x > 0 && y == 0){
28190                     scale = targetHeight / height;
28191                 }
28192                 
28193                 if(x > 0 && y > 0){
28194                     scale = targetWidth / width;
28195                     
28196                     if(width < height){
28197                         scale = targetHeight / height;
28198                     }
28199                 }
28200                 
28201                 context.scale(scale, scale);
28202                 
28203                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28204                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28205
28206                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28207                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28208
28209                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28210                 
28211                 break;
28212             case 90 : 
28213                 
28214                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28215                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28216                 
28217                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28218                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28219                 
28220                 var targetWidth = this.minWidth - 2 * x;
28221                 var targetHeight = this.minHeight - 2 * y;
28222                 
28223                 var scale = 1;
28224                 
28225                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28226                     scale = targetWidth / width;
28227                 }
28228                 
28229                 if(x > 0 && y == 0){
28230                     scale = targetHeight / height;
28231                 }
28232                 
28233                 if(x > 0 && y > 0){
28234                     scale = targetWidth / width;
28235                     
28236                     if(width < height){
28237                         scale = targetHeight / height;
28238                     }
28239                 }
28240                 
28241                 context.scale(scale, scale);
28242                 
28243                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28244                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28245
28246                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28247                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28248                 
28249                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28250                 
28251                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28252                 
28253                 break;
28254             case 180 :
28255                 
28256                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28257                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28258                 
28259                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28260                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28261                 
28262                 var targetWidth = this.minWidth - 2 * x;
28263                 var targetHeight = this.minHeight - 2 * y;
28264                 
28265                 var scale = 1;
28266                 
28267                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28268                     scale = targetWidth / width;
28269                 }
28270                 
28271                 if(x > 0 && y == 0){
28272                     scale = targetHeight / height;
28273                 }
28274                 
28275                 if(x > 0 && y > 0){
28276                     scale = targetWidth / width;
28277                     
28278                     if(width < height){
28279                         scale = targetHeight / height;
28280                     }
28281                 }
28282                 
28283                 context.scale(scale, scale);
28284                 
28285                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28286                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28287
28288                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28289                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28290
28291                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28292                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28293                 
28294                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28295                 
28296                 break;
28297             case 270 :
28298                 
28299                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28300                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28301                 
28302                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28303                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28304                 
28305                 var targetWidth = this.minWidth - 2 * x;
28306                 var targetHeight = this.minHeight - 2 * y;
28307                 
28308                 var scale = 1;
28309                 
28310                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28311                     scale = targetWidth / width;
28312                 }
28313                 
28314                 if(x > 0 && y == 0){
28315                     scale = targetHeight / height;
28316                 }
28317                 
28318                 if(x > 0 && y > 0){
28319                     scale = targetWidth / width;
28320                     
28321                     if(width < height){
28322                         scale = targetHeight / height;
28323                     }
28324                 }
28325                 
28326                 context.scale(scale, scale);
28327                 
28328                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28329                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28330
28331                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28332                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28333                 
28334                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28335                 
28336                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28337                 
28338                 break;
28339             default : 
28340                 break;
28341         }
28342         
28343         this.cropData = canvas.toDataURL(this.cropType);
28344         
28345         if(this.fireEvent('crop', this, this.cropData) !== false){
28346             this.process(this.file, this.cropData);
28347         }
28348         
28349         return;
28350         
28351     },
28352     
28353     setThumbBoxSize : function()
28354     {
28355         var width, height;
28356         
28357         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
28358             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
28359             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
28360             
28361             this.minWidth = width;
28362             this.minHeight = height;
28363             
28364             if(this.rotate == 90 || this.rotate == 270){
28365                 this.minWidth = height;
28366                 this.minHeight = width;
28367             }
28368         }
28369         
28370         height = 300;
28371         width = Math.ceil(this.minWidth * height / this.minHeight);
28372         
28373         if(this.minWidth > this.minHeight){
28374             width = 300;
28375             height = Math.ceil(this.minHeight * width / this.minWidth);
28376         }
28377         
28378         this.thumbEl.setStyle({
28379             width : width + 'px',
28380             height : height + 'px'
28381         });
28382
28383         return;
28384             
28385     },
28386     
28387     setThumbBoxPosition : function()
28388     {
28389         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
28390         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
28391         
28392         this.thumbEl.setLeft(x);
28393         this.thumbEl.setTop(y);
28394         
28395     },
28396     
28397     baseRotateLevel : function()
28398     {
28399         this.baseRotate = 1;
28400         
28401         if(
28402                 typeof(this.exif) != 'undefined' &&
28403                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
28404                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
28405         ){
28406             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
28407         }
28408         
28409         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
28410         
28411     },
28412     
28413     baseScaleLevel : function()
28414     {
28415         var width, height;
28416         
28417         if(this.isDocument){
28418             
28419             if(this.baseRotate == 6 || this.baseRotate == 8){
28420             
28421                 height = this.thumbEl.getHeight();
28422                 this.baseScale = height / this.imageEl.OriginWidth;
28423
28424                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
28425                     width = this.thumbEl.getWidth();
28426                     this.baseScale = width / this.imageEl.OriginHeight;
28427                 }
28428
28429                 return;
28430             }
28431
28432             height = this.thumbEl.getHeight();
28433             this.baseScale = height / this.imageEl.OriginHeight;
28434
28435             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
28436                 width = this.thumbEl.getWidth();
28437                 this.baseScale = width / this.imageEl.OriginWidth;
28438             }
28439
28440             return;
28441         }
28442         
28443         if(this.baseRotate == 6 || this.baseRotate == 8){
28444             
28445             width = this.thumbEl.getHeight();
28446             this.baseScale = width / this.imageEl.OriginHeight;
28447             
28448             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
28449                 height = this.thumbEl.getWidth();
28450                 this.baseScale = height / this.imageEl.OriginHeight;
28451             }
28452             
28453             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28454                 height = this.thumbEl.getWidth();
28455                 this.baseScale = height / this.imageEl.OriginHeight;
28456                 
28457                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
28458                     width = this.thumbEl.getHeight();
28459                     this.baseScale = width / this.imageEl.OriginWidth;
28460                 }
28461             }
28462             
28463             return;
28464         }
28465         
28466         width = this.thumbEl.getWidth();
28467         this.baseScale = width / this.imageEl.OriginWidth;
28468         
28469         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
28470             height = this.thumbEl.getHeight();
28471             this.baseScale = height / this.imageEl.OriginHeight;
28472         }
28473         
28474         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28475             
28476             height = this.thumbEl.getHeight();
28477             this.baseScale = height / this.imageEl.OriginHeight;
28478             
28479             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
28480                 width = this.thumbEl.getWidth();
28481                 this.baseScale = width / this.imageEl.OriginWidth;
28482             }
28483             
28484         }
28485         
28486         return;
28487     },
28488     
28489     getScaleLevel : function()
28490     {
28491         return this.baseScale * Math.pow(1.1, this.scale);
28492     },
28493     
28494     onTouchStart : function(e)
28495     {
28496         if(!this.canvasLoaded){
28497             this.beforeSelectFile(e);
28498             return;
28499         }
28500         
28501         var touches = e.browserEvent.touches;
28502         
28503         if(!touches){
28504             return;
28505         }
28506         
28507         if(touches.length == 1){
28508             this.onMouseDown(e);
28509             return;
28510         }
28511         
28512         if(touches.length != 2){
28513             return;
28514         }
28515         
28516         var coords = [];
28517         
28518         for(var i = 0, finger; finger = touches[i]; i++){
28519             coords.push(finger.pageX, finger.pageY);
28520         }
28521         
28522         var x = Math.pow(coords[0] - coords[2], 2);
28523         var y = Math.pow(coords[1] - coords[3], 2);
28524         
28525         this.startDistance = Math.sqrt(x + y);
28526         
28527         this.startScale = this.scale;
28528         
28529         this.pinching = true;
28530         this.dragable = false;
28531         
28532     },
28533     
28534     onTouchMove : function(e)
28535     {
28536         if(!this.pinching && !this.dragable){
28537             return;
28538         }
28539         
28540         var touches = e.browserEvent.touches;
28541         
28542         if(!touches){
28543             return;
28544         }
28545         
28546         if(this.dragable){
28547             this.onMouseMove(e);
28548             return;
28549         }
28550         
28551         var coords = [];
28552         
28553         for(var i = 0, finger; finger = touches[i]; i++){
28554             coords.push(finger.pageX, finger.pageY);
28555         }
28556         
28557         var x = Math.pow(coords[0] - coords[2], 2);
28558         var y = Math.pow(coords[1] - coords[3], 2);
28559         
28560         this.endDistance = Math.sqrt(x + y);
28561         
28562         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
28563         
28564         if(!this.zoomable()){
28565             this.scale = this.startScale;
28566             return;
28567         }
28568         
28569         this.draw();
28570         
28571     },
28572     
28573     onTouchEnd : function(e)
28574     {
28575         this.pinching = false;
28576         this.dragable = false;
28577         
28578     },
28579     
28580     process : function(file, crop)
28581     {
28582         if(this.loadMask){
28583             this.maskEl.mask(this.loadingText);
28584         }
28585         
28586         this.xhr = new XMLHttpRequest();
28587         
28588         file.xhr = this.xhr;
28589
28590         this.xhr.open(this.method, this.url, true);
28591         
28592         var headers = {
28593             "Accept": "application/json",
28594             "Cache-Control": "no-cache",
28595             "X-Requested-With": "XMLHttpRequest"
28596         };
28597         
28598         for (var headerName in headers) {
28599             var headerValue = headers[headerName];
28600             if (headerValue) {
28601                 this.xhr.setRequestHeader(headerName, headerValue);
28602             }
28603         }
28604         
28605         var _this = this;
28606         
28607         this.xhr.onload = function()
28608         {
28609             _this.xhrOnLoad(_this.xhr);
28610         }
28611         
28612         this.xhr.onerror = function()
28613         {
28614             _this.xhrOnError(_this.xhr);
28615         }
28616         
28617         var formData = new FormData();
28618
28619         formData.append('returnHTML', 'NO');
28620         
28621         if(crop){
28622             formData.append('crop', crop);
28623         }
28624         
28625         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
28626             formData.append(this.paramName, file, file.name);
28627         }
28628         
28629         if(typeof(file.filename) != 'undefined'){
28630             formData.append('filename', file.filename);
28631         }
28632         
28633         if(typeof(file.mimetype) != 'undefined'){
28634             formData.append('mimetype', file.mimetype);
28635         }
28636         
28637         if(this.fireEvent('arrange', this, formData) != false){
28638             this.xhr.send(formData);
28639         };
28640     },
28641     
28642     xhrOnLoad : function(xhr)
28643     {
28644         if(this.loadMask){
28645             this.maskEl.unmask();
28646         }
28647         
28648         if (xhr.readyState !== 4) {
28649             this.fireEvent('exception', this, xhr);
28650             return;
28651         }
28652
28653         var response = Roo.decode(xhr.responseText);
28654         
28655         if(!response.success){
28656             this.fireEvent('exception', this, xhr);
28657             return;
28658         }
28659         
28660         var response = Roo.decode(xhr.responseText);
28661         
28662         this.fireEvent('upload', this, response);
28663         
28664     },
28665     
28666     xhrOnError : function()
28667     {
28668         if(this.loadMask){
28669             this.maskEl.unmask();
28670         }
28671         
28672         Roo.log('xhr on error');
28673         
28674         var response = Roo.decode(xhr.responseText);
28675           
28676         Roo.log(response);
28677         
28678     },
28679     
28680     prepare : function(file)
28681     {   
28682         if(this.loadMask){
28683             this.maskEl.mask(this.loadingText);
28684         }
28685         
28686         this.file = false;
28687         this.exif = {};
28688         
28689         if(typeof(file) === 'string'){
28690             this.loadCanvas(file);
28691             return;
28692         }
28693         
28694         if(!file || !this.urlAPI){
28695             return;
28696         }
28697         
28698         this.file = file;
28699         this.cropType = file.type;
28700         
28701         var _this = this;
28702         
28703         if(this.fireEvent('prepare', this, this.file) != false){
28704             
28705             var reader = new FileReader();
28706             
28707             reader.onload = function (e) {
28708                 if (e.target.error) {
28709                     Roo.log(e.target.error);
28710                     return;
28711                 }
28712                 
28713                 var buffer = e.target.result,
28714                     dataView = new DataView(buffer),
28715                     offset = 2,
28716                     maxOffset = dataView.byteLength - 4,
28717                     markerBytes,
28718                     markerLength;
28719                 
28720                 if (dataView.getUint16(0) === 0xffd8) {
28721                     while (offset < maxOffset) {
28722                         markerBytes = dataView.getUint16(offset);
28723                         
28724                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
28725                             markerLength = dataView.getUint16(offset + 2) + 2;
28726                             if (offset + markerLength > dataView.byteLength) {
28727                                 Roo.log('Invalid meta data: Invalid segment size.');
28728                                 break;
28729                             }
28730                             
28731                             if(markerBytes == 0xffe1){
28732                                 _this.parseExifData(
28733                                     dataView,
28734                                     offset,
28735                                     markerLength
28736                                 );
28737                             }
28738                             
28739                             offset += markerLength;
28740                             
28741                             continue;
28742                         }
28743                         
28744                         break;
28745                     }
28746                     
28747                 }
28748                 
28749                 var url = _this.urlAPI.createObjectURL(_this.file);
28750                 
28751                 _this.loadCanvas(url);
28752                 
28753                 return;
28754             }
28755             
28756             reader.readAsArrayBuffer(this.file);
28757             
28758         }
28759         
28760     },
28761     
28762     parseExifData : function(dataView, offset, length)
28763     {
28764         var tiffOffset = offset + 10,
28765             littleEndian,
28766             dirOffset;
28767     
28768         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28769             // No Exif data, might be XMP data instead
28770             return;
28771         }
28772         
28773         // Check for the ASCII code for "Exif" (0x45786966):
28774         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28775             // No Exif data, might be XMP data instead
28776             return;
28777         }
28778         if (tiffOffset + 8 > dataView.byteLength) {
28779             Roo.log('Invalid Exif data: Invalid segment size.');
28780             return;
28781         }
28782         // Check for the two null bytes:
28783         if (dataView.getUint16(offset + 8) !== 0x0000) {
28784             Roo.log('Invalid Exif data: Missing byte alignment offset.');
28785             return;
28786         }
28787         // Check the byte alignment:
28788         switch (dataView.getUint16(tiffOffset)) {
28789         case 0x4949:
28790             littleEndian = true;
28791             break;
28792         case 0x4D4D:
28793             littleEndian = false;
28794             break;
28795         default:
28796             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
28797             return;
28798         }
28799         // Check for the TIFF tag marker (0x002A):
28800         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
28801             Roo.log('Invalid Exif data: Missing TIFF marker.');
28802             return;
28803         }
28804         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
28805         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
28806         
28807         this.parseExifTags(
28808             dataView,
28809             tiffOffset,
28810             tiffOffset + dirOffset,
28811             littleEndian
28812         );
28813     },
28814     
28815     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
28816     {
28817         var tagsNumber,
28818             dirEndOffset,
28819             i;
28820         if (dirOffset + 6 > dataView.byteLength) {
28821             Roo.log('Invalid Exif data: Invalid directory offset.');
28822             return;
28823         }
28824         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
28825         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
28826         if (dirEndOffset + 4 > dataView.byteLength) {
28827             Roo.log('Invalid Exif data: Invalid directory size.');
28828             return;
28829         }
28830         for (i = 0; i < tagsNumber; i += 1) {
28831             this.parseExifTag(
28832                 dataView,
28833                 tiffOffset,
28834                 dirOffset + 2 + 12 * i, // tag offset
28835                 littleEndian
28836             );
28837         }
28838         // Return the offset to the next directory:
28839         return dataView.getUint32(dirEndOffset, littleEndian);
28840     },
28841     
28842     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
28843     {
28844         var tag = dataView.getUint16(offset, littleEndian);
28845         
28846         this.exif[tag] = this.getExifValue(
28847             dataView,
28848             tiffOffset,
28849             offset,
28850             dataView.getUint16(offset + 2, littleEndian), // tag type
28851             dataView.getUint32(offset + 4, littleEndian), // tag length
28852             littleEndian
28853         );
28854     },
28855     
28856     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
28857     {
28858         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
28859             tagSize,
28860             dataOffset,
28861             values,
28862             i,
28863             str,
28864             c;
28865     
28866         if (!tagType) {
28867             Roo.log('Invalid Exif data: Invalid tag type.');
28868             return;
28869         }
28870         
28871         tagSize = tagType.size * length;
28872         // Determine if the value is contained in the dataOffset bytes,
28873         // or if the value at the dataOffset is a pointer to the actual data:
28874         dataOffset = tagSize > 4 ?
28875                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
28876         if (dataOffset + tagSize > dataView.byteLength) {
28877             Roo.log('Invalid Exif data: Invalid data offset.');
28878             return;
28879         }
28880         if (length === 1) {
28881             return tagType.getValue(dataView, dataOffset, littleEndian);
28882         }
28883         values = [];
28884         for (i = 0; i < length; i += 1) {
28885             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
28886         }
28887         
28888         if (tagType.ascii) {
28889             str = '';
28890             // Concatenate the chars:
28891             for (i = 0; i < values.length; i += 1) {
28892                 c = values[i];
28893                 // Ignore the terminating NULL byte(s):
28894                 if (c === '\u0000') {
28895                     break;
28896                 }
28897                 str += c;
28898             }
28899             return str;
28900         }
28901         return values;
28902     }
28903     
28904 });
28905
28906 Roo.apply(Roo.bootstrap.UploadCropbox, {
28907     tags : {
28908         'Orientation': 0x0112
28909     },
28910     
28911     Orientation: {
28912             1: 0, //'top-left',
28913 //            2: 'top-right',
28914             3: 180, //'bottom-right',
28915 //            4: 'bottom-left',
28916 //            5: 'left-top',
28917             6: 90, //'right-top',
28918 //            7: 'right-bottom',
28919             8: 270 //'left-bottom'
28920     },
28921     
28922     exifTagTypes : {
28923         // byte, 8-bit unsigned int:
28924         1: {
28925             getValue: function (dataView, dataOffset) {
28926                 return dataView.getUint8(dataOffset);
28927             },
28928             size: 1
28929         },
28930         // ascii, 8-bit byte:
28931         2: {
28932             getValue: function (dataView, dataOffset) {
28933                 return String.fromCharCode(dataView.getUint8(dataOffset));
28934             },
28935             size: 1,
28936             ascii: true
28937         },
28938         // short, 16 bit int:
28939         3: {
28940             getValue: function (dataView, dataOffset, littleEndian) {
28941                 return dataView.getUint16(dataOffset, littleEndian);
28942             },
28943             size: 2
28944         },
28945         // long, 32 bit int:
28946         4: {
28947             getValue: function (dataView, dataOffset, littleEndian) {
28948                 return dataView.getUint32(dataOffset, littleEndian);
28949             },
28950             size: 4
28951         },
28952         // rational = two long values, first is numerator, second is denominator:
28953         5: {
28954             getValue: function (dataView, dataOffset, littleEndian) {
28955                 return dataView.getUint32(dataOffset, littleEndian) /
28956                     dataView.getUint32(dataOffset + 4, littleEndian);
28957             },
28958             size: 8
28959         },
28960         // slong, 32 bit signed int:
28961         9: {
28962             getValue: function (dataView, dataOffset, littleEndian) {
28963                 return dataView.getInt32(dataOffset, littleEndian);
28964             },
28965             size: 4
28966         },
28967         // srational, two slongs, first is numerator, second is denominator:
28968         10: {
28969             getValue: function (dataView, dataOffset, littleEndian) {
28970                 return dataView.getInt32(dataOffset, littleEndian) /
28971                     dataView.getInt32(dataOffset + 4, littleEndian);
28972             },
28973             size: 8
28974         }
28975     },
28976     
28977     footer : {
28978         STANDARD : [
28979             {
28980                 tag : 'div',
28981                 cls : 'btn-group roo-upload-cropbox-rotate-left',
28982                 action : 'rotate-left',
28983                 cn : [
28984                     {
28985                         tag : 'button',
28986                         cls : 'btn btn-default',
28987                         html : '<i class="fa fa-undo"></i>'
28988                     }
28989                 ]
28990             },
28991             {
28992                 tag : 'div',
28993                 cls : 'btn-group roo-upload-cropbox-picture',
28994                 action : 'picture',
28995                 cn : [
28996                     {
28997                         tag : 'button',
28998                         cls : 'btn btn-default',
28999                         html : '<i class="fa fa-picture-o"></i>'
29000                     }
29001                 ]
29002             },
29003             {
29004                 tag : 'div',
29005                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29006                 action : 'rotate-right',
29007                 cn : [
29008                     {
29009                         tag : 'button',
29010                         cls : 'btn btn-default',
29011                         html : '<i class="fa fa-repeat"></i>'
29012                     }
29013                 ]
29014             }
29015         ],
29016         DOCUMENT : [
29017             {
29018                 tag : 'div',
29019                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29020                 action : 'rotate-left',
29021                 cn : [
29022                     {
29023                         tag : 'button',
29024                         cls : 'btn btn-default',
29025                         html : '<i class="fa fa-undo"></i>'
29026                     }
29027                 ]
29028             },
29029             {
29030                 tag : 'div',
29031                 cls : 'btn-group roo-upload-cropbox-download',
29032                 action : 'download',
29033                 cn : [
29034                     {
29035                         tag : 'button',
29036                         cls : 'btn btn-default',
29037                         html : '<i class="fa fa-download"></i>'
29038                     }
29039                 ]
29040             },
29041             {
29042                 tag : 'div',
29043                 cls : 'btn-group roo-upload-cropbox-crop',
29044                 action : 'crop',
29045                 cn : [
29046                     {
29047                         tag : 'button',
29048                         cls : 'btn btn-default',
29049                         html : '<i class="fa fa-crop"></i>'
29050                     }
29051                 ]
29052             },
29053             {
29054                 tag : 'div',
29055                 cls : 'btn-group roo-upload-cropbox-trash',
29056                 action : 'trash',
29057                 cn : [
29058                     {
29059                         tag : 'button',
29060                         cls : 'btn btn-default',
29061                         html : '<i class="fa fa-trash"></i>'
29062                     }
29063                 ]
29064             },
29065             {
29066                 tag : 'div',
29067                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29068                 action : 'rotate-right',
29069                 cn : [
29070                     {
29071                         tag : 'button',
29072                         cls : 'btn btn-default',
29073                         html : '<i class="fa fa-repeat"></i>'
29074                     }
29075                 ]
29076             }
29077         ],
29078         ROTATOR : [
29079             {
29080                 tag : 'div',
29081                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29082                 action : 'rotate-left',
29083                 cn : [
29084                     {
29085                         tag : 'button',
29086                         cls : 'btn btn-default',
29087                         html : '<i class="fa fa-undo"></i>'
29088                     }
29089                 ]
29090             },
29091             {
29092                 tag : 'div',
29093                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29094                 action : 'rotate-right',
29095                 cn : [
29096                     {
29097                         tag : 'button',
29098                         cls : 'btn btn-default',
29099                         html : '<i class="fa fa-repeat"></i>'
29100                     }
29101                 ]
29102             }
29103         ]
29104     }
29105 });
29106
29107 /*
29108 * Licence: LGPL
29109 */
29110
29111 /**
29112  * @class Roo.bootstrap.DocumentManager
29113  * @extends Roo.bootstrap.Component
29114  * Bootstrap DocumentManager class
29115  * @cfg {String} paramName default 'imageUpload'
29116  * @cfg {String} toolTipName default 'filename'
29117  * @cfg {String} method default POST
29118  * @cfg {String} url action url
29119  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
29120  * @cfg {Boolean} multiple multiple upload default true
29121  * @cfg {Number} thumbSize default 300
29122  * @cfg {String} fieldLabel
29123  * @cfg {Number} labelWidth default 4
29124  * @cfg {String} labelAlign (left|top) default left
29125  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
29126 * @cfg {Number} labellg set the width of label (1-12)
29127  * @cfg {Number} labelmd set the width of label (1-12)
29128  * @cfg {Number} labelsm set the width of label (1-12)
29129  * @cfg {Number} labelxs set the width of label (1-12)
29130  * 
29131  * @constructor
29132  * Create a new DocumentManager
29133  * @param {Object} config The config object
29134  */
29135
29136 Roo.bootstrap.DocumentManager = function(config){
29137     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
29138     
29139     this.files = [];
29140     this.delegates = [];
29141     
29142     this.addEvents({
29143         /**
29144          * @event initial
29145          * Fire when initial the DocumentManager
29146          * @param {Roo.bootstrap.DocumentManager} this
29147          */
29148         "initial" : true,
29149         /**
29150          * @event inspect
29151          * inspect selected file
29152          * @param {Roo.bootstrap.DocumentManager} this
29153          * @param {File} file
29154          */
29155         "inspect" : true,
29156         /**
29157          * @event exception
29158          * Fire when xhr load exception
29159          * @param {Roo.bootstrap.DocumentManager} this
29160          * @param {XMLHttpRequest} xhr
29161          */
29162         "exception" : true,
29163         /**
29164          * @event afterupload
29165          * Fire when xhr load exception
29166          * @param {Roo.bootstrap.DocumentManager} this
29167          * @param {XMLHttpRequest} xhr
29168          */
29169         "afterupload" : true,
29170         /**
29171          * @event prepare
29172          * prepare the form data
29173          * @param {Roo.bootstrap.DocumentManager} this
29174          * @param {Object} formData
29175          */
29176         "prepare" : true,
29177         /**
29178          * @event remove
29179          * Fire when remove the file
29180          * @param {Roo.bootstrap.DocumentManager} this
29181          * @param {Object} file
29182          */
29183         "remove" : true,
29184         /**
29185          * @event refresh
29186          * Fire after refresh the file
29187          * @param {Roo.bootstrap.DocumentManager} this
29188          */
29189         "refresh" : true,
29190         /**
29191          * @event click
29192          * Fire after click the image
29193          * @param {Roo.bootstrap.DocumentManager} this
29194          * @param {Object} file
29195          */
29196         "click" : true,
29197         /**
29198          * @event edit
29199          * Fire when upload a image and editable set to true
29200          * @param {Roo.bootstrap.DocumentManager} this
29201          * @param {Object} file
29202          */
29203         "edit" : true,
29204         /**
29205          * @event beforeselectfile
29206          * Fire before select file
29207          * @param {Roo.bootstrap.DocumentManager} this
29208          */
29209         "beforeselectfile" : true,
29210         /**
29211          * @event process
29212          * Fire before process file
29213          * @param {Roo.bootstrap.DocumentManager} this
29214          * @param {Object} file
29215          */
29216         "process" : true,
29217         /**
29218          * @event previewrendered
29219          * Fire when preview rendered
29220          * @param {Roo.bootstrap.DocumentManager} this
29221          * @param {Object} file
29222          */
29223         "previewrendered" : true,
29224         /**
29225          */
29226         "previewResize" : true
29227         
29228     });
29229 };
29230
29231 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
29232     
29233     boxes : 0,
29234     inputName : '',
29235     thumbSize : 300,
29236     multiple : true,
29237     files : false,
29238     method : 'POST',
29239     url : '',
29240     paramName : 'imageUpload',
29241     toolTipName : 'filename',
29242     fieldLabel : '',
29243     labelWidth : 4,
29244     labelAlign : 'left',
29245     editable : true,
29246     delegates : false,
29247     xhr : false, 
29248     
29249     labellg : 0,
29250     labelmd : 0,
29251     labelsm : 0,
29252     labelxs : 0,
29253     
29254     getAutoCreate : function()
29255     {   
29256         var managerWidget = {
29257             tag : 'div',
29258             cls : 'roo-document-manager',
29259             cn : [
29260                 {
29261                     tag : 'input',
29262                     cls : 'roo-document-manager-selector',
29263                     type : 'file'
29264                 },
29265                 {
29266                     tag : 'div',
29267                     cls : 'roo-document-manager-uploader',
29268                     cn : [
29269                         {
29270                             tag : 'div',
29271                             cls : 'roo-document-manager-upload-btn',
29272                             html : '<i class="fa fa-plus"></i>'
29273                         }
29274                     ]
29275                     
29276                 }
29277             ]
29278         };
29279         
29280         var content = [
29281             {
29282                 tag : 'div',
29283                 cls : 'column col-md-12',
29284                 cn : managerWidget
29285             }
29286         ];
29287         
29288         if(this.fieldLabel.length){
29289             
29290             content = [
29291                 {
29292                     tag : 'div',
29293                     cls : 'column col-md-12',
29294                     html : this.fieldLabel
29295                 },
29296                 {
29297                     tag : 'div',
29298                     cls : 'column col-md-12',
29299                     cn : managerWidget
29300                 }
29301             ];
29302
29303             if(this.labelAlign == 'left'){
29304                 content = [
29305                     {
29306                         tag : 'div',
29307                         cls : 'column',
29308                         html : this.fieldLabel
29309                     },
29310                     {
29311                         tag : 'div',
29312                         cls : 'column',
29313                         cn : managerWidget
29314                     }
29315                 ];
29316                 
29317                 if(this.labelWidth > 12){
29318                     content[0].style = "width: " + this.labelWidth + 'px';
29319                 }
29320
29321                 if(this.labelWidth < 13 && this.labelmd == 0){
29322                     this.labelmd = this.labelWidth;
29323                 }
29324
29325                 if(this.labellg > 0){
29326                     content[0].cls += ' col-lg-' + this.labellg;
29327                     content[1].cls += ' col-lg-' + (12 - this.labellg);
29328                 }
29329
29330                 if(this.labelmd > 0){
29331                     content[0].cls += ' col-md-' + this.labelmd;
29332                     content[1].cls += ' col-md-' + (12 - this.labelmd);
29333                 }
29334
29335                 if(this.labelsm > 0){
29336                     content[0].cls += ' col-sm-' + this.labelsm;
29337                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
29338                 }
29339
29340                 if(this.labelxs > 0){
29341                     content[0].cls += ' col-xs-' + this.labelxs;
29342                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
29343                 }
29344                 
29345             }
29346         }
29347         
29348         var cfg = {
29349             tag : 'div',
29350             cls : 'row clearfix',
29351             cn : content
29352         };
29353         
29354         return cfg;
29355         
29356     },
29357     
29358     initEvents : function()
29359     {
29360         this.managerEl = this.el.select('.roo-document-manager', true).first();
29361         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29362         
29363         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
29364         this.selectorEl.hide();
29365         
29366         if(this.multiple){
29367             this.selectorEl.attr('multiple', 'multiple');
29368         }
29369         
29370         this.selectorEl.on('change', this.onFileSelected, this);
29371         
29372         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
29373         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29374         
29375         this.uploader.on('click', this.onUploaderClick, this);
29376         
29377         this.renderProgressDialog();
29378         
29379         var _this = this;
29380         
29381         window.addEventListener("resize", function() { _this.refresh(); } );
29382         
29383         this.fireEvent('initial', this);
29384     },
29385     
29386     renderProgressDialog : function()
29387     {
29388         var _this = this;
29389         
29390         this.progressDialog = new Roo.bootstrap.Modal({
29391             cls : 'roo-document-manager-progress-dialog',
29392             allow_close : false,
29393             animate : false,
29394             title : '',
29395             buttons : [
29396                 {
29397                     name  :'cancel',
29398                     weight : 'danger',
29399                     html : 'Cancel'
29400                 }
29401             ], 
29402             listeners : { 
29403                 btnclick : function() {
29404                     _this.uploadCancel();
29405                     this.hide();
29406                 }
29407             }
29408         });
29409          
29410         this.progressDialog.render(Roo.get(document.body));
29411          
29412         this.progress = new Roo.bootstrap.Progress({
29413             cls : 'roo-document-manager-progress',
29414             active : true,
29415             striped : true
29416         });
29417         
29418         this.progress.render(this.progressDialog.getChildContainer());
29419         
29420         this.progressBar = new Roo.bootstrap.ProgressBar({
29421             cls : 'roo-document-manager-progress-bar',
29422             aria_valuenow : 0,
29423             aria_valuemin : 0,
29424             aria_valuemax : 12,
29425             panel : 'success'
29426         });
29427         
29428         this.progressBar.render(this.progress.getChildContainer());
29429     },
29430     
29431     onUploaderClick : function(e)
29432     {
29433         e.preventDefault();
29434      
29435         if(this.fireEvent('beforeselectfile', this) != false){
29436             this.selectorEl.dom.click();
29437         }
29438         
29439     },
29440     
29441     onFileSelected : function(e)
29442     {
29443         e.preventDefault();
29444         
29445         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
29446             return;
29447         }
29448         
29449         Roo.each(this.selectorEl.dom.files, function(file){
29450             if(this.fireEvent('inspect', this, file) != false){
29451                 this.files.push(file);
29452             }
29453         }, this);
29454         
29455         this.queue();
29456         
29457     },
29458     
29459     queue : function()
29460     {
29461         this.selectorEl.dom.value = '';
29462         
29463         if(!this.files || !this.files.length){
29464             return;
29465         }
29466         
29467         if(this.boxes > 0 && this.files.length > this.boxes){
29468             this.files = this.files.slice(0, this.boxes);
29469         }
29470         
29471         this.uploader.show();
29472         
29473         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29474             this.uploader.hide();
29475         }
29476         
29477         var _this = this;
29478         
29479         var files = [];
29480         
29481         var docs = [];
29482         
29483         Roo.each(this.files, function(file){
29484             
29485             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29486                 var f = this.renderPreview(file);
29487                 files.push(f);
29488                 return;
29489             }
29490             
29491             if(file.type.indexOf('image') != -1){
29492                 this.delegates.push(
29493                     (function(){
29494                         _this.process(file);
29495                     }).createDelegate(this)
29496                 );
29497         
29498                 return;
29499             }
29500             
29501             docs.push(
29502                 (function(){
29503                     _this.process(file);
29504                 }).createDelegate(this)
29505             );
29506             
29507         }, this);
29508         
29509         this.files = files;
29510         
29511         this.delegates = this.delegates.concat(docs);
29512         
29513         if(!this.delegates.length){
29514             this.refresh();
29515             return;
29516         }
29517         
29518         this.progressBar.aria_valuemax = this.delegates.length;
29519         
29520         this.arrange();
29521         
29522         return;
29523     },
29524     
29525     arrange : function()
29526     {
29527         if(!this.delegates.length){
29528             this.progressDialog.hide();
29529             this.refresh();
29530             return;
29531         }
29532         
29533         var delegate = this.delegates.shift();
29534         
29535         this.progressDialog.show();
29536         
29537         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
29538         
29539         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
29540         
29541         delegate();
29542     },
29543     
29544     refresh : function()
29545     {
29546         this.uploader.show();
29547         
29548         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29549             this.uploader.hide();
29550         }
29551         
29552         Roo.isTouch ? this.closable(false) : this.closable(true);
29553         
29554         this.fireEvent('refresh', this);
29555     },
29556     
29557     onRemove : function(e, el, o)
29558     {
29559         e.preventDefault();
29560         
29561         this.fireEvent('remove', this, o);
29562         
29563     },
29564     
29565     remove : function(o)
29566     {
29567         var files = [];
29568         
29569         Roo.each(this.files, function(file){
29570             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
29571                 files.push(file);
29572                 return;
29573             }
29574
29575             o.target.remove();
29576
29577         }, this);
29578         
29579         this.files = files;
29580         
29581         this.refresh();
29582     },
29583     
29584     clear : function()
29585     {
29586         Roo.each(this.files, function(file){
29587             if(!file.target){
29588                 return;
29589             }
29590             
29591             file.target.remove();
29592
29593         }, this);
29594         
29595         this.files = [];
29596         
29597         this.refresh();
29598     },
29599     
29600     onClick : function(e, el, o)
29601     {
29602         e.preventDefault();
29603         
29604         this.fireEvent('click', this, o);
29605         
29606     },
29607     
29608     closable : function(closable)
29609     {
29610         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
29611             
29612             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29613             
29614             if(closable){
29615                 el.show();
29616                 return;
29617             }
29618             
29619             el.hide();
29620             
29621         }, this);
29622     },
29623     
29624     xhrOnLoad : function(xhr)
29625     {
29626         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29627             el.remove();
29628         }, this);
29629         
29630         if (xhr.readyState !== 4) {
29631             this.arrange();
29632             this.fireEvent('exception', this, xhr);
29633             return;
29634         }
29635
29636         var response = Roo.decode(xhr.responseText);
29637         
29638         if(!response.success){
29639             this.arrange();
29640             this.fireEvent('exception', this, xhr);
29641             return;
29642         }
29643         
29644         var file = this.renderPreview(response.data);
29645         
29646         this.files.push(file);
29647         
29648         this.arrange();
29649         
29650         this.fireEvent('afterupload', this, xhr);
29651         
29652     },
29653     
29654     xhrOnError : function(xhr)
29655     {
29656         Roo.log('xhr on error');
29657         
29658         var response = Roo.decode(xhr.responseText);
29659           
29660         Roo.log(response);
29661         
29662         this.arrange();
29663     },
29664     
29665     process : function(file)
29666     {
29667         if(this.fireEvent('process', this, file) !== false){
29668             if(this.editable && file.type.indexOf('image') != -1){
29669                 this.fireEvent('edit', this, file);
29670                 return;
29671             }
29672
29673             this.uploadStart(file, false);
29674
29675             return;
29676         }
29677         
29678     },
29679     
29680     uploadStart : function(file, crop)
29681     {
29682         this.xhr = new XMLHttpRequest();
29683         
29684         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29685             this.arrange();
29686             return;
29687         }
29688         
29689         file.xhr = this.xhr;
29690             
29691         this.managerEl.createChild({
29692             tag : 'div',
29693             cls : 'roo-document-manager-loading',
29694             cn : [
29695                 {
29696                     tag : 'div',
29697                     tooltip : file.name,
29698                     cls : 'roo-document-manager-thumb',
29699                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29700                 }
29701             ]
29702
29703         });
29704
29705         this.xhr.open(this.method, this.url, true);
29706         
29707         var headers = {
29708             "Accept": "application/json",
29709             "Cache-Control": "no-cache",
29710             "X-Requested-With": "XMLHttpRequest"
29711         };
29712         
29713         for (var headerName in headers) {
29714             var headerValue = headers[headerName];
29715             if (headerValue) {
29716                 this.xhr.setRequestHeader(headerName, headerValue);
29717             }
29718         }
29719         
29720         var _this = this;
29721         
29722         this.xhr.onload = function()
29723         {
29724             _this.xhrOnLoad(_this.xhr);
29725         }
29726         
29727         this.xhr.onerror = function()
29728         {
29729             _this.xhrOnError(_this.xhr);
29730         }
29731         
29732         var formData = new FormData();
29733
29734         formData.append('returnHTML', 'NO');
29735         
29736         if(crop){
29737             formData.append('crop', crop);
29738         }
29739         
29740         formData.append(this.paramName, file, file.name);
29741         
29742         var options = {
29743             file : file, 
29744             manually : false
29745         };
29746         
29747         if(this.fireEvent('prepare', this, formData, options) != false){
29748             
29749             if(options.manually){
29750                 return;
29751             }
29752             
29753             this.xhr.send(formData);
29754             return;
29755         };
29756         
29757         this.uploadCancel();
29758     },
29759     
29760     uploadCancel : function()
29761     {
29762         if (this.xhr) {
29763             this.xhr.abort();
29764         }
29765         
29766         this.delegates = [];
29767         
29768         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29769             el.remove();
29770         }, this);
29771         
29772         this.arrange();
29773     },
29774     
29775     renderPreview : function(file)
29776     {
29777         if(typeof(file.target) != 'undefined' && file.target){
29778             return file;
29779         }
29780         
29781         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
29782         
29783         var previewEl = this.managerEl.createChild({
29784             tag : 'div',
29785             cls : 'roo-document-manager-preview',
29786             cn : [
29787                 {
29788                     tag : 'div',
29789                     tooltip : file[this.toolTipName],
29790                     cls : 'roo-document-manager-thumb',
29791                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
29792                 },
29793                 {
29794                     tag : 'button',
29795                     cls : 'close',
29796                     html : '<i class="fa fa-times-circle"></i>'
29797                 }
29798             ]
29799         });
29800
29801         var close = previewEl.select('button.close', true).first();
29802
29803         close.on('click', this.onRemove, this, file);
29804
29805         file.target = previewEl;
29806
29807         var image = previewEl.select('img', true).first();
29808         
29809         var _this = this;
29810         
29811         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
29812         
29813         image.on('click', this.onClick, this, file);
29814         
29815         this.fireEvent('previewrendered', this, file);
29816         
29817         return file;
29818         
29819     },
29820     
29821     onPreviewLoad : function(file, image)
29822     {
29823         if(typeof(file.target) == 'undefined' || !file.target){
29824             return;
29825         }
29826         
29827         var width = image.dom.naturalWidth || image.dom.width;
29828         var height = image.dom.naturalHeight || image.dom.height;
29829         
29830         if(!this.previewResize) {
29831             return;
29832         }
29833         
29834         if(width > height){
29835             file.target.addClass('wide');
29836             return;
29837         }
29838         
29839         file.target.addClass('tall');
29840         return;
29841         
29842     },
29843     
29844     uploadFromSource : function(file, crop)
29845     {
29846         this.xhr = new XMLHttpRequest();
29847         
29848         this.managerEl.createChild({
29849             tag : 'div',
29850             cls : 'roo-document-manager-loading',
29851             cn : [
29852                 {
29853                     tag : 'div',
29854                     tooltip : file.name,
29855                     cls : 'roo-document-manager-thumb',
29856                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29857                 }
29858             ]
29859
29860         });
29861
29862         this.xhr.open(this.method, this.url, true);
29863         
29864         var headers = {
29865             "Accept": "application/json",
29866             "Cache-Control": "no-cache",
29867             "X-Requested-With": "XMLHttpRequest"
29868         };
29869         
29870         for (var headerName in headers) {
29871             var headerValue = headers[headerName];
29872             if (headerValue) {
29873                 this.xhr.setRequestHeader(headerName, headerValue);
29874             }
29875         }
29876         
29877         var _this = this;
29878         
29879         this.xhr.onload = function()
29880         {
29881             _this.xhrOnLoad(_this.xhr);
29882         }
29883         
29884         this.xhr.onerror = function()
29885         {
29886             _this.xhrOnError(_this.xhr);
29887         }
29888         
29889         var formData = new FormData();
29890
29891         formData.append('returnHTML', 'NO');
29892         
29893         formData.append('crop', crop);
29894         
29895         if(typeof(file.filename) != 'undefined'){
29896             formData.append('filename', file.filename);
29897         }
29898         
29899         if(typeof(file.mimetype) != 'undefined'){
29900             formData.append('mimetype', file.mimetype);
29901         }
29902         
29903         Roo.log(formData);
29904         
29905         if(this.fireEvent('prepare', this, formData) != false){
29906             this.xhr.send(formData);
29907         };
29908     }
29909 });
29910
29911 /*
29912 * Licence: LGPL
29913 */
29914
29915 /**
29916  * @class Roo.bootstrap.DocumentViewer
29917  * @extends Roo.bootstrap.Component
29918  * Bootstrap DocumentViewer class
29919  * @cfg {Boolean} showDownload (true|false) show download button (default true)
29920  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
29921  * 
29922  * @constructor
29923  * Create a new DocumentViewer
29924  * @param {Object} config The config object
29925  */
29926
29927 Roo.bootstrap.DocumentViewer = function(config){
29928     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
29929     
29930     this.addEvents({
29931         /**
29932          * @event initial
29933          * Fire after initEvent
29934          * @param {Roo.bootstrap.DocumentViewer} this
29935          */
29936         "initial" : true,
29937         /**
29938          * @event click
29939          * Fire after click
29940          * @param {Roo.bootstrap.DocumentViewer} this
29941          */
29942         "click" : true,
29943         /**
29944          * @event download
29945          * Fire after download button
29946          * @param {Roo.bootstrap.DocumentViewer} this
29947          */
29948         "download" : true,
29949         /**
29950          * @event trash
29951          * Fire after trash button
29952          * @param {Roo.bootstrap.DocumentViewer} this
29953          */
29954         "trash" : true
29955         
29956     });
29957 };
29958
29959 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
29960     
29961     showDownload : true,
29962     
29963     showTrash : true,
29964     
29965     getAutoCreate : function()
29966     {
29967         var cfg = {
29968             tag : 'div',
29969             cls : 'roo-document-viewer',
29970             cn : [
29971                 {
29972                     tag : 'div',
29973                     cls : 'roo-document-viewer-body',
29974                     cn : [
29975                         {
29976                             tag : 'div',
29977                             cls : 'roo-document-viewer-thumb',
29978                             cn : [
29979                                 {
29980                                     tag : 'img',
29981                                     cls : 'roo-document-viewer-image'
29982                                 }
29983                             ]
29984                         }
29985                     ]
29986                 },
29987                 {
29988                     tag : 'div',
29989                     cls : 'roo-document-viewer-footer',
29990                     cn : {
29991                         tag : 'div',
29992                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
29993                         cn : [
29994                             {
29995                                 tag : 'div',
29996                                 cls : 'btn-group roo-document-viewer-download',
29997                                 cn : [
29998                                     {
29999                                         tag : 'button',
30000                                         cls : 'btn btn-default',
30001                                         html : '<i class="fa fa-download"></i>'
30002                                     }
30003                                 ]
30004                             },
30005                             {
30006                                 tag : 'div',
30007                                 cls : 'btn-group roo-document-viewer-trash',
30008                                 cn : [
30009                                     {
30010                                         tag : 'button',
30011                                         cls : 'btn btn-default',
30012                                         html : '<i class="fa fa-trash"></i>'
30013                                     }
30014                                 ]
30015                             }
30016                         ]
30017                     }
30018                 }
30019             ]
30020         };
30021         
30022         return cfg;
30023     },
30024     
30025     initEvents : function()
30026     {
30027         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
30028         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
30029         
30030         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
30031         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
30032         
30033         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
30034         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
30035         
30036         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
30037         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
30038         
30039         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
30040         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
30041         
30042         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
30043         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
30044         
30045         this.bodyEl.on('click', this.onClick, this);
30046         this.downloadBtn.on('click', this.onDownload, this);
30047         this.trashBtn.on('click', this.onTrash, this);
30048         
30049         this.downloadBtn.hide();
30050         this.trashBtn.hide();
30051         
30052         if(this.showDownload){
30053             this.downloadBtn.show();
30054         }
30055         
30056         if(this.showTrash){
30057             this.trashBtn.show();
30058         }
30059         
30060         if(!this.showDownload && !this.showTrash) {
30061             this.footerEl.hide();
30062         }
30063         
30064     },
30065     
30066     initial : function()
30067     {
30068         this.fireEvent('initial', this);
30069         
30070     },
30071     
30072     onClick : function(e)
30073     {
30074         e.preventDefault();
30075         
30076         this.fireEvent('click', this);
30077     },
30078     
30079     onDownload : function(e)
30080     {
30081         e.preventDefault();
30082         
30083         this.fireEvent('download', this);
30084     },
30085     
30086     onTrash : function(e)
30087     {
30088         e.preventDefault();
30089         
30090         this.fireEvent('trash', this);
30091     }
30092     
30093 });
30094 /*
30095  * - LGPL
30096  *
30097  * nav progress bar
30098  * 
30099  */
30100
30101 /**
30102  * @class Roo.bootstrap.NavProgressBar
30103  * @extends Roo.bootstrap.Component
30104  * Bootstrap NavProgressBar class
30105  * 
30106  * @constructor
30107  * Create a new nav progress bar
30108  * @param {Object} config The config object
30109  */
30110
30111 Roo.bootstrap.NavProgressBar = function(config){
30112     Roo.bootstrap.NavProgressBar.superclass.constructor.call(this, config);
30113
30114     this.bullets = this.bullets || [];
30115    
30116 //    Roo.bootstrap.NavProgressBar.register(this);
30117      this.addEvents({
30118         /**
30119              * @event changed
30120              * Fires when the active item changes
30121              * @param {Roo.bootstrap.NavProgressBar} this
30122              * @param {Roo.bootstrap.NavProgressItem} selected The item selected
30123              * @param {Roo.bootstrap.NavProgressItem} prev The previously selected item 
30124          */
30125         'changed': true
30126      });
30127     
30128 };
30129
30130 Roo.extend(Roo.bootstrap.NavProgressBar, Roo.bootstrap.Component,  {
30131     
30132     bullets : [],
30133     barItems : [],
30134     
30135     getAutoCreate : function()
30136     {
30137         var cfg = Roo.apply({}, Roo.bootstrap.NavProgressBar.superclass.getAutoCreate.call(this));
30138         
30139         cfg = {
30140             tag : 'div',
30141             cls : 'roo-navigation-bar-group',
30142             cn : [
30143                 {
30144                     tag : 'div',
30145                     cls : 'roo-navigation-top-bar'
30146                 },
30147                 {
30148                     tag : 'div',
30149                     cls : 'roo-navigation-bullets-bar',
30150                     cn : [
30151                         {
30152                             tag : 'ul',
30153                             cls : 'roo-navigation-bar'
30154                         }
30155                     ]
30156                 },
30157                 
30158                 {
30159                     tag : 'div',
30160                     cls : 'roo-navigation-bottom-bar'
30161                 }
30162             ]
30163             
30164         };
30165         
30166         return cfg;
30167         
30168     },
30169     
30170     initEvents: function() 
30171     {
30172         
30173     },
30174     
30175     onRender : function(ct, position) 
30176     {
30177         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30178         
30179         if(this.bullets.length){
30180             Roo.each(this.bullets, function(b){
30181                this.addItem(b);
30182             }, this);
30183         }
30184         
30185         this.format();
30186         
30187     },
30188     
30189     addItem : function(cfg)
30190     {
30191         var item = new Roo.bootstrap.NavProgressItem(cfg);
30192         
30193         item.parentId = this.id;
30194         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
30195         
30196         if(cfg.html){
30197             var top = new Roo.bootstrap.Element({
30198                 tag : 'div',
30199                 cls : 'roo-navigation-bar-text'
30200             });
30201             
30202             var bottom = new Roo.bootstrap.Element({
30203                 tag : 'div',
30204                 cls : 'roo-navigation-bar-text'
30205             });
30206             
30207             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
30208             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
30209             
30210             var topText = new Roo.bootstrap.Element({
30211                 tag : 'span',
30212                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
30213             });
30214             
30215             var bottomText = new Roo.bootstrap.Element({
30216                 tag : 'span',
30217                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
30218             });
30219             
30220             topText.onRender(top.el, null);
30221             bottomText.onRender(bottom.el, null);
30222             
30223             item.topEl = top;
30224             item.bottomEl = bottom;
30225         }
30226         
30227         this.barItems.push(item);
30228         
30229         return item;
30230     },
30231     
30232     getActive : function()
30233     {
30234         var active = false;
30235         
30236         Roo.each(this.barItems, function(v){
30237             
30238             if (!v.isActive()) {
30239                 return;
30240             }
30241             
30242             active = v;
30243             return false;
30244             
30245         });
30246         
30247         return active;
30248     },
30249     
30250     setActiveItem : function(item)
30251     {
30252         var prev = false;
30253         
30254         Roo.each(this.barItems, function(v){
30255             if (v.rid == item.rid) {
30256                 return ;
30257             }
30258             
30259             if (v.isActive()) {
30260                 v.setActive(false);
30261                 prev = v;
30262             }
30263         });
30264
30265         item.setActive(true);
30266         
30267         this.fireEvent('changed', this, item, prev);
30268     },
30269     
30270     getBarItem: function(rid)
30271     {
30272         var ret = false;
30273         
30274         Roo.each(this.barItems, function(e) {
30275             if (e.rid != rid) {
30276                 return;
30277             }
30278             
30279             ret =  e;
30280             return false;
30281         });
30282         
30283         return ret;
30284     },
30285     
30286     indexOfItem : function(item)
30287     {
30288         var index = false;
30289         
30290         Roo.each(this.barItems, function(v, i){
30291             
30292             if (v.rid != item.rid) {
30293                 return;
30294             }
30295             
30296             index = i;
30297             return false
30298         });
30299         
30300         return index;
30301     },
30302     
30303     setActiveNext : function()
30304     {
30305         var i = this.indexOfItem(this.getActive());
30306         
30307         if (i > this.barItems.length) {
30308             return;
30309         }
30310         
30311         this.setActiveItem(this.barItems[i+1]);
30312     },
30313     
30314     setActivePrev : function()
30315     {
30316         var i = this.indexOfItem(this.getActive());
30317         
30318         if (i  < 1) {
30319             return;
30320         }
30321         
30322         this.setActiveItem(this.barItems[i-1]);
30323     },
30324     
30325     format : function()
30326     {
30327         if(!this.barItems.length){
30328             return;
30329         }
30330      
30331         var width = 100 / this.barItems.length;
30332         
30333         Roo.each(this.barItems, function(i){
30334             i.el.setStyle('width', width + '%');
30335             i.topEl.el.setStyle('width', width + '%');
30336             i.bottomEl.el.setStyle('width', width + '%');
30337         }, this);
30338         
30339     }
30340     
30341 });
30342 /*
30343  * - LGPL
30344  *
30345  * Nav Progress Item
30346  * 
30347  */
30348
30349 /**
30350  * @class Roo.bootstrap.NavProgressItem
30351  * @extends Roo.bootstrap.Component
30352  * Bootstrap NavProgressItem class
30353  * @cfg {String} rid the reference id
30354  * @cfg {Boolean} active (true|false) Is item active default false
30355  * @cfg {Boolean} disabled (true|false) Is item active default false
30356  * @cfg {String} html
30357  * @cfg {String} position (top|bottom) text position default bottom
30358  * @cfg {String} icon show icon instead of number
30359  * 
30360  * @constructor
30361  * Create a new NavProgressItem
30362  * @param {Object} config The config object
30363  */
30364 Roo.bootstrap.NavProgressItem = function(config){
30365     Roo.bootstrap.NavProgressItem.superclass.constructor.call(this, config);
30366     this.addEvents({
30367         // raw events
30368         /**
30369          * @event click
30370          * The raw click event for the entire grid.
30371          * @param {Roo.bootstrap.NavProgressItem} this
30372          * @param {Roo.EventObject} e
30373          */
30374         "click" : true
30375     });
30376    
30377 };
30378
30379 Roo.extend(Roo.bootstrap.NavProgressItem, Roo.bootstrap.Component,  {
30380     
30381     rid : '',
30382     active : false,
30383     disabled : false,
30384     html : '',
30385     position : 'bottom',
30386     icon : false,
30387     
30388     getAutoCreate : function()
30389     {
30390         var iconCls = 'roo-navigation-bar-item-icon';
30391         
30392         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
30393         
30394         var cfg = {
30395             tag: 'li',
30396             cls: 'roo-navigation-bar-item',
30397             cn : [
30398                 {
30399                     tag : 'i',
30400                     cls : iconCls
30401                 }
30402             ]
30403         };
30404         
30405         if(this.active){
30406             cfg.cls += ' active';
30407         }
30408         if(this.disabled){
30409             cfg.cls += ' disabled';
30410         }
30411         
30412         return cfg;
30413     },
30414     
30415     disable : function()
30416     {
30417         this.setDisabled(true);
30418     },
30419     
30420     enable : function()
30421     {
30422         this.setDisabled(false);
30423     },
30424     
30425     initEvents: function() 
30426     {
30427         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
30428         
30429         this.iconEl.on('click', this.onClick, this);
30430     },
30431     
30432     onClick : function(e)
30433     {
30434         e.preventDefault();
30435         
30436         if(this.disabled){
30437             return;
30438         }
30439         
30440         if(this.fireEvent('click', this, e) === false){
30441             return;
30442         };
30443         
30444         this.parent().setActiveItem(this);
30445     },
30446     
30447     isActive: function () 
30448     {
30449         return this.active;
30450     },
30451     
30452     setActive : function(state)
30453     {
30454         if(this.active == state){
30455             return;
30456         }
30457         
30458         this.active = state;
30459         
30460         if (state) {
30461             this.el.addClass('active');
30462             return;
30463         }
30464         
30465         this.el.removeClass('active');
30466         
30467         return;
30468     },
30469     
30470     setDisabled : function(state)
30471     {
30472         if(this.disabled == state){
30473             return;
30474         }
30475         
30476         this.disabled = state;
30477         
30478         if (state) {
30479             this.el.addClass('disabled');
30480             return;
30481         }
30482         
30483         this.el.removeClass('disabled');
30484     },
30485     
30486     tooltipEl : function()
30487     {
30488         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
30489     }
30490 });
30491  
30492
30493  /*
30494  * - LGPL
30495  *
30496  * FieldLabel
30497  * 
30498  */
30499
30500 /**
30501  * @class Roo.bootstrap.FieldLabel
30502  * @extends Roo.bootstrap.Component
30503  * Bootstrap FieldLabel class
30504  * @cfg {String} html contents of the element
30505  * @cfg {String} tag tag of the element default label
30506  * @cfg {String} cls class of the element
30507  * @cfg {String} target label target 
30508  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
30509  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
30510  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
30511  * @cfg {String} iconTooltip default "This field is required"
30512  * @cfg {String} indicatorpos (left|right) default left
30513  * 
30514  * @constructor
30515  * Create a new FieldLabel
30516  * @param {Object} config The config object
30517  */
30518
30519 Roo.bootstrap.FieldLabel = function(config){
30520     Roo.bootstrap.Element.superclass.constructor.call(this, config);
30521     
30522     this.addEvents({
30523             /**
30524              * @event invalid
30525              * Fires after the field has been marked as invalid.
30526              * @param {Roo.form.FieldLabel} this
30527              * @param {String} msg The validation message
30528              */
30529             invalid : true,
30530             /**
30531              * @event valid
30532              * Fires after the field has been validated with no errors.
30533              * @param {Roo.form.FieldLabel} this
30534              */
30535             valid : true
30536         });
30537 };
30538
30539 Roo.extend(Roo.bootstrap.FieldLabel, Roo.bootstrap.Component,  {
30540     
30541     tag: 'label',
30542     cls: '',
30543     html: '',
30544     target: '',
30545     allowBlank : true,
30546     invalidClass : 'has-warning',
30547     validClass : 'has-success',
30548     iconTooltip : 'This field is required',
30549     indicatorpos : 'left',
30550     
30551     getAutoCreate : function(){
30552         
30553         var cls = "";
30554         if (!this.allowBlank) {
30555             cls  = "visible";
30556         }
30557         
30558         var cfg = {
30559             tag : this.tag,
30560             cls : 'roo-bootstrap-field-label ' + this.cls,
30561             for : this.target,
30562             cn : [
30563                 {
30564                     tag : 'i',
30565                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
30566                     tooltip : this.iconTooltip
30567                 },
30568                 {
30569                     tag : 'span',
30570                     html : this.html
30571                 }
30572             ] 
30573         };
30574         
30575         if(this.indicatorpos == 'right'){
30576             var cfg = {
30577                 tag : this.tag,
30578                 cls : 'roo-bootstrap-field-label ' + this.cls,
30579                 for : this.target,
30580                 cn : [
30581                     {
30582                         tag : 'span',
30583                         html : this.html
30584                     },
30585                     {
30586                         tag : 'i',
30587                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
30588                         tooltip : this.iconTooltip
30589                     }
30590                 ] 
30591             };
30592         }
30593         
30594         return cfg;
30595     },
30596     
30597     initEvents: function() 
30598     {
30599         Roo.bootstrap.Element.superclass.initEvents.call(this);
30600         
30601         this.indicator = this.indicatorEl();
30602         
30603         if(this.indicator){
30604             this.indicator.removeClass('visible');
30605             this.indicator.addClass('invisible');
30606         }
30607         
30608         Roo.bootstrap.FieldLabel.register(this);
30609     },
30610     
30611     indicatorEl : function()
30612     {
30613         var indicator = this.el.select('i.roo-required-indicator',true).first();
30614         
30615         if(!indicator){
30616             return false;
30617         }
30618         
30619         return indicator;
30620         
30621     },
30622     
30623     /**
30624      * Mark this field as valid
30625      */
30626     markValid : function()
30627     {
30628         if(this.indicator){
30629             this.indicator.removeClass('visible');
30630             this.indicator.addClass('invisible');
30631         }
30632         if (Roo.bootstrap.version == 3) {
30633             this.el.removeClass(this.invalidClass);
30634             this.el.addClass(this.validClass);
30635         } else {
30636             this.el.removeClass('is-invalid');
30637             this.el.addClass('is-valid');
30638         }
30639         
30640         
30641         this.fireEvent('valid', this);
30642     },
30643     
30644     /**
30645      * Mark this field as invalid
30646      * @param {String} msg The validation message
30647      */
30648     markInvalid : function(msg)
30649     {
30650         if(this.indicator){
30651             this.indicator.removeClass('invisible');
30652             this.indicator.addClass('visible');
30653         }
30654           if (Roo.bootstrap.version == 3) {
30655             this.el.removeClass(this.validClass);
30656             this.el.addClass(this.invalidClass);
30657         } else {
30658             this.el.removeClass('is-valid');
30659             this.el.addClass('is-invalid');
30660         }
30661         
30662         
30663         this.fireEvent('invalid', this, msg);
30664     }
30665     
30666    
30667 });
30668
30669 Roo.apply(Roo.bootstrap.FieldLabel, {
30670     
30671     groups: {},
30672     
30673      /**
30674     * register a FieldLabel Group
30675     * @param {Roo.bootstrap.FieldLabel} the FieldLabel to add
30676     */
30677     register : function(label)
30678     {
30679         if(this.groups.hasOwnProperty(label.target)){
30680             return;
30681         }
30682      
30683         this.groups[label.target] = label;
30684         
30685     },
30686     /**
30687     * fetch a FieldLabel Group based on the target
30688     * @param {string} target
30689     * @returns {Roo.bootstrap.FieldLabel} the CheckBox group
30690     */
30691     get: function(target) {
30692         if (typeof(this.groups[target]) == 'undefined') {
30693             return false;
30694         }
30695         
30696         return this.groups[target] ;
30697     }
30698 });
30699
30700  
30701
30702  /*
30703  * - LGPL
30704  *
30705  * page DateSplitField.
30706  * 
30707  */
30708
30709
30710 /**
30711  * @class Roo.bootstrap.DateSplitField
30712  * @extends Roo.bootstrap.Component
30713  * Bootstrap DateSplitField class
30714  * @cfg {string} fieldLabel - the label associated
30715  * @cfg {Number} labelWidth set the width of label (0-12)
30716  * @cfg {String} labelAlign (top|left)
30717  * @cfg {Boolean} dayAllowBlank (true|false) default false
30718  * @cfg {Boolean} monthAllowBlank (true|false) default false
30719  * @cfg {Boolean} yearAllowBlank (true|false) default false
30720  * @cfg {string} dayPlaceholder 
30721  * @cfg {string} monthPlaceholder
30722  * @cfg {string} yearPlaceholder
30723  * @cfg {string} dayFormat default 'd'
30724  * @cfg {string} monthFormat default 'm'
30725  * @cfg {string} yearFormat default 'Y'
30726  * @cfg {Number} labellg set the width of label (1-12)
30727  * @cfg {Number} labelmd set the width of label (1-12)
30728  * @cfg {Number} labelsm set the width of label (1-12)
30729  * @cfg {Number} labelxs set the width of label (1-12)
30730
30731  *     
30732  * @constructor
30733  * Create a new DateSplitField
30734  * @param {Object} config The config object
30735  */
30736
30737 Roo.bootstrap.DateSplitField = function(config){
30738     Roo.bootstrap.DateSplitField.superclass.constructor.call(this, config);
30739     
30740     this.addEvents({
30741         // raw events
30742          /**
30743          * @event years
30744          * getting the data of years
30745          * @param {Roo.bootstrap.DateSplitField} this
30746          * @param {Object} years
30747          */
30748         "years" : true,
30749         /**
30750          * @event days
30751          * getting the data of days
30752          * @param {Roo.bootstrap.DateSplitField} this
30753          * @param {Object} days
30754          */
30755         "days" : true,
30756         /**
30757          * @event invalid
30758          * Fires after the field has been marked as invalid.
30759          * @param {Roo.form.Field} this
30760          * @param {String} msg The validation message
30761          */
30762         invalid : true,
30763        /**
30764          * @event valid
30765          * Fires after the field has been validated with no errors.
30766          * @param {Roo.form.Field} this
30767          */
30768         valid : true
30769     });
30770 };
30771
30772 Roo.extend(Roo.bootstrap.DateSplitField, Roo.bootstrap.Component,  {
30773     
30774     fieldLabel : '',
30775     labelAlign : 'top',
30776     labelWidth : 3,
30777     dayAllowBlank : false,
30778     monthAllowBlank : false,
30779     yearAllowBlank : false,
30780     dayPlaceholder : '',
30781     monthPlaceholder : '',
30782     yearPlaceholder : '',
30783     dayFormat : 'd',
30784     monthFormat : 'm',
30785     yearFormat : 'Y',
30786     isFormField : true,
30787     labellg : 0,
30788     labelmd : 0,
30789     labelsm : 0,
30790     labelxs : 0,
30791     
30792     getAutoCreate : function()
30793     {
30794         var cfg = {
30795             tag : 'div',
30796             cls : 'row roo-date-split-field-group',
30797             cn : [
30798                 {
30799                     tag : 'input',
30800                     type : 'hidden',
30801                     cls : 'form-hidden-field roo-date-split-field-group-value',
30802                     name : this.name
30803                 }
30804             ]
30805         };
30806         
30807         var labelCls = 'col-md-12';
30808         var contentCls = 'col-md-4';
30809         
30810         if(this.fieldLabel){
30811             
30812             var label = {
30813                 tag : 'div',
30814                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
30815                 cn : [
30816                     {
30817                         tag : 'label',
30818                         html : this.fieldLabel
30819                     }
30820                 ]
30821             };
30822             
30823             if(this.labelAlign == 'left'){
30824             
30825                 if(this.labelWidth > 12){
30826                     label.style = "width: " + this.labelWidth + 'px';
30827                 }
30828
30829                 if(this.labelWidth < 13 && this.labelmd == 0){
30830                     this.labelmd = this.labelWidth;
30831                 }
30832
30833                 if(this.labellg > 0){
30834                     labelCls = ' col-lg-' + this.labellg;
30835                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
30836                 }
30837
30838                 if(this.labelmd > 0){
30839                     labelCls = ' col-md-' + this.labelmd;
30840                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
30841                 }
30842
30843                 if(this.labelsm > 0){
30844                     labelCls = ' col-sm-' + this.labelsm;
30845                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
30846                 }
30847
30848                 if(this.labelxs > 0){
30849                     labelCls = ' col-xs-' + this.labelxs;
30850                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
30851                 }
30852             }
30853             
30854             label.cls += ' ' + labelCls;
30855             
30856             cfg.cn.push(label);
30857         }
30858         
30859         Roo.each(['day', 'month', 'year'], function(t){
30860             cfg.cn.push({
30861                 tag : 'div',
30862                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
30863             });
30864         }, this);
30865         
30866         return cfg;
30867     },
30868     
30869     inputEl: function ()
30870     {
30871         return this.el.select('.roo-date-split-field-group-value', true).first();
30872     },
30873     
30874     onRender : function(ct, position) 
30875     {
30876         var _this = this;
30877         
30878         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30879         
30880         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
30881         
30882         this.dayField = new Roo.bootstrap.ComboBox({
30883             allowBlank : this.dayAllowBlank,
30884             alwaysQuery : true,
30885             displayField : 'value',
30886             editable : false,
30887             fieldLabel : '',
30888             forceSelection : true,
30889             mode : 'local',
30890             placeholder : this.dayPlaceholder,
30891             selectOnFocus : true,
30892             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30893             triggerAction : 'all',
30894             typeAhead : true,
30895             valueField : 'value',
30896             store : new Roo.data.SimpleStore({
30897                 data : (function() {    
30898                     var days = [];
30899                     _this.fireEvent('days', _this, days);
30900                     return days;
30901                 })(),
30902                 fields : [ 'value' ]
30903             }),
30904             listeners : {
30905                 select : function (_self, record, index)
30906                 {
30907                     _this.setValue(_this.getValue());
30908                 }
30909             }
30910         });
30911
30912         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
30913         
30914         this.monthField = new Roo.bootstrap.MonthField({
30915             after : '<i class=\"fa fa-calendar\"></i>',
30916             allowBlank : this.monthAllowBlank,
30917             placeholder : this.monthPlaceholder,
30918             readOnly : true,
30919             listeners : {
30920                 render : function (_self)
30921                 {
30922                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
30923                         e.preventDefault();
30924                         _self.focus();
30925                     });
30926                 },
30927                 select : function (_self, oldvalue, newvalue)
30928                 {
30929                     _this.setValue(_this.getValue());
30930                 }
30931             }
30932         });
30933         
30934         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
30935         
30936         this.yearField = new Roo.bootstrap.ComboBox({
30937             allowBlank : this.yearAllowBlank,
30938             alwaysQuery : true,
30939             displayField : 'value',
30940             editable : false,
30941             fieldLabel : '',
30942             forceSelection : true,
30943             mode : 'local',
30944             placeholder : this.yearPlaceholder,
30945             selectOnFocus : true,
30946             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30947             triggerAction : 'all',
30948             typeAhead : true,
30949             valueField : 'value',
30950             store : new Roo.data.SimpleStore({
30951                 data : (function() {
30952                     var years = [];
30953                     _this.fireEvent('years', _this, years);
30954                     return years;
30955                 })(),
30956                 fields : [ 'value' ]
30957             }),
30958             listeners : {
30959                 select : function (_self, record, index)
30960                 {
30961                     _this.setValue(_this.getValue());
30962                 }
30963             }
30964         });
30965
30966         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
30967     },
30968     
30969     setValue : function(v, format)
30970     {
30971         this.inputEl.dom.value = v;
30972         
30973         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
30974         
30975         var d = Date.parseDate(v, f);
30976         
30977         if(!d){
30978             this.validate();
30979             return;
30980         }
30981         
30982         this.setDay(d.format(this.dayFormat));
30983         this.setMonth(d.format(this.monthFormat));
30984         this.setYear(d.format(this.yearFormat));
30985         
30986         this.validate();
30987         
30988         return;
30989     },
30990     
30991     setDay : function(v)
30992     {
30993         this.dayField.setValue(v);
30994         this.inputEl.dom.value = this.getValue();
30995         this.validate();
30996         return;
30997     },
30998     
30999     setMonth : function(v)
31000     {
31001         this.monthField.setValue(v, true);
31002         this.inputEl.dom.value = this.getValue();
31003         this.validate();
31004         return;
31005     },
31006     
31007     setYear : function(v)
31008     {
31009         this.yearField.setValue(v);
31010         this.inputEl.dom.value = this.getValue();
31011         this.validate();
31012         return;
31013     },
31014     
31015     getDay : function()
31016     {
31017         return this.dayField.getValue();
31018     },
31019     
31020     getMonth : function()
31021     {
31022         return this.monthField.getValue();
31023     },
31024     
31025     getYear : function()
31026     {
31027         return this.yearField.getValue();
31028     },
31029     
31030     getValue : function()
31031     {
31032         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
31033         
31034         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
31035         
31036         return date;
31037     },
31038     
31039     reset : function()
31040     {
31041         this.setDay('');
31042         this.setMonth('');
31043         this.setYear('');
31044         this.inputEl.dom.value = '';
31045         this.validate();
31046         return;
31047     },
31048     
31049     validate : function()
31050     {
31051         var d = this.dayField.validate();
31052         var m = this.monthField.validate();
31053         var y = this.yearField.validate();
31054         
31055         var valid = true;
31056         
31057         if(
31058                 (!this.dayAllowBlank && !d) ||
31059                 (!this.monthAllowBlank && !m) ||
31060                 (!this.yearAllowBlank && !y)
31061         ){
31062             valid = false;
31063         }
31064         
31065         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
31066             return valid;
31067         }
31068         
31069         if(valid){
31070             this.markValid();
31071             return valid;
31072         }
31073         
31074         this.markInvalid();
31075         
31076         return valid;
31077     },
31078     
31079     markValid : function()
31080     {
31081         
31082         var label = this.el.select('label', true).first();
31083         var icon = this.el.select('i.fa-star', true).first();
31084
31085         if(label && icon){
31086             icon.remove();
31087         }
31088         
31089         this.fireEvent('valid', this);
31090     },
31091     
31092      /**
31093      * Mark this field as invalid
31094      * @param {String} msg The validation message
31095      */
31096     markInvalid : function(msg)
31097     {
31098         
31099         var label = this.el.select('label', true).first();
31100         var icon = this.el.select('i.fa-star', true).first();
31101
31102         if(label && !icon){
31103             this.el.select('.roo-date-split-field-label', true).createChild({
31104                 tag : 'i',
31105                 cls : 'text-danger fa fa-lg fa-star',
31106                 tooltip : 'This field is required',
31107                 style : 'margin-right:5px;'
31108             }, label, true);
31109         }
31110         
31111         this.fireEvent('invalid', this, msg);
31112     },
31113     
31114     clearInvalid : function()
31115     {
31116         var label = this.el.select('label', true).first();
31117         var icon = this.el.select('i.fa-star', true).first();
31118
31119         if(label && icon){
31120             icon.remove();
31121         }
31122         
31123         this.fireEvent('valid', this);
31124     },
31125     
31126     getName: function()
31127     {
31128         return this.name;
31129     }
31130     
31131 });
31132
31133  /**
31134  *
31135  * This is based on 
31136  * http://masonry.desandro.com
31137  *
31138  * The idea is to render all the bricks based on vertical width...
31139  *
31140  * The original code extends 'outlayer' - we might need to use that....
31141  * 
31142  */
31143
31144
31145 /**
31146  * @class Roo.bootstrap.LayoutMasonry
31147  * @extends Roo.bootstrap.Component
31148  * Bootstrap Layout Masonry class
31149  * 
31150  * @constructor
31151  * Create a new Element
31152  * @param {Object} config The config object
31153  */
31154
31155 Roo.bootstrap.LayoutMasonry = function(config){
31156     
31157     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
31158     
31159     this.bricks = [];
31160     
31161     Roo.bootstrap.LayoutMasonry.register(this);
31162     
31163     this.addEvents({
31164         // raw events
31165         /**
31166          * @event layout
31167          * Fire after layout the items
31168          * @param {Roo.bootstrap.LayoutMasonry} this
31169          * @param {Roo.EventObject} e
31170          */
31171         "layout" : true
31172     });
31173     
31174 };
31175
31176 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
31177     
31178     /**
31179      * @cfg {Boolean} isLayoutInstant = no animation?
31180      */   
31181     isLayoutInstant : false, // needed?
31182    
31183     /**
31184      * @cfg {Number} boxWidth  width of the columns
31185      */   
31186     boxWidth : 450,
31187     
31188       /**
31189      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
31190      */   
31191     boxHeight : 0,
31192     
31193     /**
31194      * @cfg {Number} padWidth padding below box..
31195      */   
31196     padWidth : 10, 
31197     
31198     /**
31199      * @cfg {Number} gutter gutter width..
31200      */   
31201     gutter : 10,
31202     
31203      /**
31204      * @cfg {Number} maxCols maximum number of columns
31205      */   
31206     
31207     maxCols: 0,
31208     
31209     /**
31210      * @cfg {Boolean} isAutoInitial defalut true
31211      */   
31212     isAutoInitial : true, 
31213     
31214     containerWidth: 0,
31215     
31216     /**
31217      * @cfg {Boolean} isHorizontal defalut false
31218      */   
31219     isHorizontal : false, 
31220
31221     currentSize : null,
31222     
31223     tag: 'div',
31224     
31225     cls: '',
31226     
31227     bricks: null, //CompositeElement
31228     
31229     cols : 1,
31230     
31231     _isLayoutInited : false,
31232     
31233 //    isAlternative : false, // only use for vertical layout...
31234     
31235     /**
31236      * @cfg {Number} alternativePadWidth padding below box..
31237      */   
31238     alternativePadWidth : 50,
31239     
31240     selectedBrick : [],
31241     
31242     getAutoCreate : function(){
31243         
31244         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
31245         
31246         var cfg = {
31247             tag: this.tag,
31248             cls: 'blog-masonary-wrapper ' + this.cls,
31249             cn : {
31250                 cls : 'mas-boxes masonary'
31251             }
31252         };
31253         
31254         return cfg;
31255     },
31256     
31257     getChildContainer: function( )
31258     {
31259         if (this.boxesEl) {
31260             return this.boxesEl;
31261         }
31262         
31263         this.boxesEl = this.el.select('.mas-boxes').first();
31264         
31265         return this.boxesEl;
31266     },
31267     
31268     
31269     initEvents : function()
31270     {
31271         var _this = this;
31272         
31273         if(this.isAutoInitial){
31274             Roo.log('hook children rendered');
31275             this.on('childrenrendered', function() {
31276                 Roo.log('children rendered');
31277                 _this.initial();
31278             } ,this);
31279         }
31280     },
31281     
31282     initial : function()
31283     {
31284         this.selectedBrick = [];
31285         
31286         this.currentSize = this.el.getBox(true);
31287         
31288         Roo.EventManager.onWindowResize(this.resize, this); 
31289
31290         if(!this.isAutoInitial){
31291             this.layout();
31292             return;
31293         }
31294         
31295         this.layout();
31296         
31297         return;
31298         //this.layout.defer(500,this);
31299         
31300     },
31301     
31302     resize : function()
31303     {
31304         var cs = this.el.getBox(true);
31305         
31306         if (
31307                 this.currentSize.width == cs.width && 
31308                 this.currentSize.x == cs.x && 
31309                 this.currentSize.height == cs.height && 
31310                 this.currentSize.y == cs.y 
31311         ) {
31312             Roo.log("no change in with or X or Y");
31313             return;
31314         }
31315         
31316         this.currentSize = cs;
31317         
31318         this.layout();
31319         
31320     },
31321     
31322     layout : function()
31323     {   
31324         this._resetLayout();
31325         
31326         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
31327         
31328         this.layoutItems( isInstant );
31329       
31330         this._isLayoutInited = true;
31331         
31332         this.fireEvent('layout', this);
31333         
31334     },
31335     
31336     _resetLayout : function()
31337     {
31338         if(this.isHorizontal){
31339             this.horizontalMeasureColumns();
31340             return;
31341         }
31342         
31343         this.verticalMeasureColumns();
31344         
31345     },
31346     
31347     verticalMeasureColumns : function()
31348     {
31349         this.getContainerWidth();
31350         
31351 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31352 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
31353 //            return;
31354 //        }
31355         
31356         var boxWidth = this.boxWidth + this.padWidth;
31357         
31358         if(this.containerWidth < this.boxWidth){
31359             boxWidth = this.containerWidth
31360         }
31361         
31362         var containerWidth = this.containerWidth;
31363         
31364         var cols = Math.floor(containerWidth / boxWidth);
31365         
31366         this.cols = Math.max( cols, 1 );
31367         
31368         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
31369         
31370         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
31371         
31372         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
31373         
31374         this.colWidth = boxWidth + avail - this.padWidth;
31375         
31376         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
31377         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
31378     },
31379     
31380     horizontalMeasureColumns : function()
31381     {
31382         this.getContainerWidth();
31383         
31384         var boxWidth = this.boxWidth;
31385         
31386         if(this.containerWidth < boxWidth){
31387             boxWidth = this.containerWidth;
31388         }
31389         
31390         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
31391         
31392         this.el.setHeight(boxWidth);
31393         
31394     },
31395     
31396     getContainerWidth : function()
31397     {
31398         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
31399     },
31400     
31401     layoutItems : function( isInstant )
31402     {
31403         Roo.log(this.bricks);
31404         
31405         var items = Roo.apply([], this.bricks);
31406         
31407         if(this.isHorizontal){
31408             this._horizontalLayoutItems( items , isInstant );
31409             return;
31410         }
31411         
31412 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31413 //            this._verticalAlternativeLayoutItems( items , isInstant );
31414 //            return;
31415 //        }
31416         
31417         this._verticalLayoutItems( items , isInstant );
31418         
31419     },
31420     
31421     _verticalLayoutItems : function ( items , isInstant)
31422     {
31423         if ( !items || !items.length ) {
31424             return;
31425         }
31426         
31427         var standard = [
31428             ['xs', 'xs', 'xs', 'tall'],
31429             ['xs', 'xs', 'tall'],
31430             ['xs', 'xs', 'sm'],
31431             ['xs', 'xs', 'xs'],
31432             ['xs', 'tall'],
31433             ['xs', 'sm'],
31434             ['xs', 'xs'],
31435             ['xs'],
31436             
31437             ['sm', 'xs', 'xs'],
31438             ['sm', 'xs'],
31439             ['sm'],
31440             
31441             ['tall', 'xs', 'xs', 'xs'],
31442             ['tall', 'xs', 'xs'],
31443             ['tall', 'xs'],
31444             ['tall']
31445             
31446         ];
31447         
31448         var queue = [];
31449         
31450         var boxes = [];
31451         
31452         var box = [];
31453         
31454         Roo.each(items, function(item, k){
31455             
31456             switch (item.size) {
31457                 // these layouts take up a full box,
31458                 case 'md' :
31459                 case 'md-left' :
31460                 case 'md-right' :
31461                 case 'wide' :
31462                     
31463                     if(box.length){
31464                         boxes.push(box);
31465                         box = [];
31466                     }
31467                     
31468                     boxes.push([item]);
31469                     
31470                     break;
31471                     
31472                 case 'xs' :
31473                 case 'sm' :
31474                 case 'tall' :
31475                     
31476                     box.push(item);
31477                     
31478                     break;
31479                 default :
31480                     break;
31481                     
31482             }
31483             
31484         }, this);
31485         
31486         if(box.length){
31487             boxes.push(box);
31488             box = [];
31489         }
31490         
31491         var filterPattern = function(box, length)
31492         {
31493             if(!box.length){
31494                 return;
31495             }
31496             
31497             var match = false;
31498             
31499             var pattern = box.slice(0, length);
31500             
31501             var format = [];
31502             
31503             Roo.each(pattern, function(i){
31504                 format.push(i.size);
31505             }, this);
31506             
31507             Roo.each(standard, function(s){
31508                 
31509                 if(String(s) != String(format)){
31510                     return;
31511                 }
31512                 
31513                 match = true;
31514                 return false;
31515                 
31516             }, this);
31517             
31518             if(!match && length == 1){
31519                 return;
31520             }
31521             
31522             if(!match){
31523                 filterPattern(box, length - 1);
31524                 return;
31525             }
31526                 
31527             queue.push(pattern);
31528
31529             box = box.slice(length, box.length);
31530
31531             filterPattern(box, 4);
31532
31533             return;
31534             
31535         }
31536         
31537         Roo.each(boxes, function(box, k){
31538             
31539             if(!box.length){
31540                 return;
31541             }
31542             
31543             if(box.length == 1){
31544                 queue.push(box);
31545                 return;
31546             }
31547             
31548             filterPattern(box, 4);
31549             
31550         }, this);
31551         
31552         this._processVerticalLayoutQueue( queue, isInstant );
31553         
31554     },
31555     
31556 //    _verticalAlternativeLayoutItems : function( items , isInstant )
31557 //    {
31558 //        if ( !items || !items.length ) {
31559 //            return;
31560 //        }
31561 //
31562 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
31563 //        
31564 //    },
31565     
31566     _horizontalLayoutItems : function ( items , isInstant)
31567     {
31568         if ( !items || !items.length || items.length < 3) {
31569             return;
31570         }
31571         
31572         items.reverse();
31573         
31574         var eItems = items.slice(0, 3);
31575         
31576         items = items.slice(3, items.length);
31577         
31578         var standard = [
31579             ['xs', 'xs', 'xs', 'wide'],
31580             ['xs', 'xs', 'wide'],
31581             ['xs', 'xs', 'sm'],
31582             ['xs', 'xs', 'xs'],
31583             ['xs', 'wide'],
31584             ['xs', 'sm'],
31585             ['xs', 'xs'],
31586             ['xs'],
31587             
31588             ['sm', 'xs', 'xs'],
31589             ['sm', 'xs'],
31590             ['sm'],
31591             
31592             ['wide', 'xs', 'xs', 'xs'],
31593             ['wide', 'xs', 'xs'],
31594             ['wide', 'xs'],
31595             ['wide'],
31596             
31597             ['wide-thin']
31598         ];
31599         
31600         var queue = [];
31601         
31602         var boxes = [];
31603         
31604         var box = [];
31605         
31606         Roo.each(items, function(item, k){
31607             
31608             switch (item.size) {
31609                 case 'md' :
31610                 case 'md-left' :
31611                 case 'md-right' :
31612                 case 'tall' :
31613                     
31614                     if(box.length){
31615                         boxes.push(box);
31616                         box = [];
31617                     }
31618                     
31619                     boxes.push([item]);
31620                     
31621                     break;
31622                     
31623                 case 'xs' :
31624                 case 'sm' :
31625                 case 'wide' :
31626                 case 'wide-thin' :
31627                     
31628                     box.push(item);
31629                     
31630                     break;
31631                 default :
31632                     break;
31633                     
31634             }
31635             
31636         }, this);
31637         
31638         if(box.length){
31639             boxes.push(box);
31640             box = [];
31641         }
31642         
31643         var filterPattern = function(box, length)
31644         {
31645             if(!box.length){
31646                 return;
31647             }
31648             
31649             var match = false;
31650             
31651             var pattern = box.slice(0, length);
31652             
31653             var format = [];
31654             
31655             Roo.each(pattern, function(i){
31656                 format.push(i.size);
31657             }, this);
31658             
31659             Roo.each(standard, function(s){
31660                 
31661                 if(String(s) != String(format)){
31662                     return;
31663                 }
31664                 
31665                 match = true;
31666                 return false;
31667                 
31668             }, this);
31669             
31670             if(!match && length == 1){
31671                 return;
31672             }
31673             
31674             if(!match){
31675                 filterPattern(box, length - 1);
31676                 return;
31677             }
31678                 
31679             queue.push(pattern);
31680
31681             box = box.slice(length, box.length);
31682
31683             filterPattern(box, 4);
31684
31685             return;
31686             
31687         }
31688         
31689         Roo.each(boxes, function(box, k){
31690             
31691             if(!box.length){
31692                 return;
31693             }
31694             
31695             if(box.length == 1){
31696                 queue.push(box);
31697                 return;
31698             }
31699             
31700             filterPattern(box, 4);
31701             
31702         }, this);
31703         
31704         
31705         var prune = [];
31706         
31707         var pos = this.el.getBox(true);
31708         
31709         var minX = pos.x;
31710         
31711         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31712         
31713         var hit_end = false;
31714         
31715         Roo.each(queue, function(box){
31716             
31717             if(hit_end){
31718                 
31719                 Roo.each(box, function(b){
31720                 
31721                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31722                     b.el.hide();
31723
31724                 }, this);
31725
31726                 return;
31727             }
31728             
31729             var mx = 0;
31730             
31731             Roo.each(box, function(b){
31732                 
31733                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
31734                 b.el.show();
31735
31736                 mx = Math.max(mx, b.x);
31737                 
31738             }, this);
31739             
31740             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
31741             
31742             if(maxX < minX){
31743                 
31744                 Roo.each(box, function(b){
31745                 
31746                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31747                     b.el.hide();
31748                     
31749                 }, this);
31750                 
31751                 hit_end = true;
31752                 
31753                 return;
31754             }
31755             
31756             prune.push(box);
31757             
31758         }, this);
31759         
31760         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
31761     },
31762     
31763     /** Sets position of item in DOM
31764     * @param {Element} item
31765     * @param {Number} x - horizontal position
31766     * @param {Number} y - vertical position
31767     * @param {Boolean} isInstant - disables transitions
31768     */
31769     _processVerticalLayoutQueue : function( queue, isInstant )
31770     {
31771         var pos = this.el.getBox(true);
31772         var x = pos.x;
31773         var y = pos.y;
31774         var maxY = [];
31775         
31776         for (var i = 0; i < this.cols; i++){
31777             maxY[i] = pos.y;
31778         }
31779         
31780         Roo.each(queue, function(box, k){
31781             
31782             var col = k % this.cols;
31783             
31784             Roo.each(box, function(b,kk){
31785                 
31786                 b.el.position('absolute');
31787                 
31788                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31789                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31790                 
31791                 if(b.size == 'md-left' || b.size == 'md-right'){
31792                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31793                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31794                 }
31795                 
31796                 b.el.setWidth(width);
31797                 b.el.setHeight(height);
31798                 // iframe?
31799                 b.el.select('iframe',true).setSize(width,height);
31800                 
31801             }, this);
31802             
31803             for (var i = 0; i < this.cols; i++){
31804                 
31805                 if(maxY[i] < maxY[col]){
31806                     col = i;
31807                     continue;
31808                 }
31809                 
31810                 col = Math.min(col, i);
31811                 
31812             }
31813             
31814             x = pos.x + col * (this.colWidth + this.padWidth);
31815             
31816             y = maxY[col];
31817             
31818             var positions = [];
31819             
31820             switch (box.length){
31821                 case 1 :
31822                     positions = this.getVerticalOneBoxColPositions(x, y, box);
31823                     break;
31824                 case 2 :
31825                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
31826                     break;
31827                 case 3 :
31828                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
31829                     break;
31830                 case 4 :
31831                     positions = this.getVerticalFourBoxColPositions(x, y, box);
31832                     break;
31833                 default :
31834                     break;
31835             }
31836             
31837             Roo.each(box, function(b,kk){
31838                 
31839                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31840                 
31841                 var sz = b.el.getSize();
31842                 
31843                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
31844                 
31845             }, this);
31846             
31847         }, this);
31848         
31849         var mY = 0;
31850         
31851         for (var i = 0; i < this.cols; i++){
31852             mY = Math.max(mY, maxY[i]);
31853         }
31854         
31855         this.el.setHeight(mY - pos.y);
31856         
31857     },
31858     
31859 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
31860 //    {
31861 //        var pos = this.el.getBox(true);
31862 //        var x = pos.x;
31863 //        var y = pos.y;
31864 //        var maxX = pos.right;
31865 //        
31866 //        var maxHeight = 0;
31867 //        
31868 //        Roo.each(items, function(item, k){
31869 //            
31870 //            var c = k % 2;
31871 //            
31872 //            item.el.position('absolute');
31873 //                
31874 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
31875 //
31876 //            item.el.setWidth(width);
31877 //
31878 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
31879 //
31880 //            item.el.setHeight(height);
31881 //            
31882 //            if(c == 0){
31883 //                item.el.setXY([x, y], isInstant ? false : true);
31884 //            } else {
31885 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
31886 //            }
31887 //            
31888 //            y = y + height + this.alternativePadWidth;
31889 //            
31890 //            maxHeight = maxHeight + height + this.alternativePadWidth;
31891 //            
31892 //        }, this);
31893 //        
31894 //        this.el.setHeight(maxHeight);
31895 //        
31896 //    },
31897     
31898     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
31899     {
31900         var pos = this.el.getBox(true);
31901         
31902         var minX = pos.x;
31903         var minY = pos.y;
31904         
31905         var maxX = pos.right;
31906         
31907         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
31908         
31909         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31910         
31911         Roo.each(queue, function(box, k){
31912             
31913             Roo.each(box, function(b, kk){
31914                 
31915                 b.el.position('absolute');
31916                 
31917                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31918                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31919                 
31920                 if(b.size == 'md-left' || b.size == 'md-right'){
31921                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31922                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31923                 }
31924                 
31925                 b.el.setWidth(width);
31926                 b.el.setHeight(height);
31927                 
31928             }, this);
31929             
31930             if(!box.length){
31931                 return;
31932             }
31933             
31934             var positions = [];
31935             
31936             switch (box.length){
31937                 case 1 :
31938                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
31939                     break;
31940                 case 2 :
31941                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
31942                     break;
31943                 case 3 :
31944                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
31945                     break;
31946                 case 4 :
31947                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
31948                     break;
31949                 default :
31950                     break;
31951             }
31952             
31953             Roo.each(box, function(b,kk){
31954                 
31955                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31956                 
31957                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
31958                 
31959             }, this);
31960             
31961         }, this);
31962         
31963     },
31964     
31965     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
31966     {
31967         Roo.each(eItems, function(b,k){
31968             
31969             b.size = (k == 0) ? 'sm' : 'xs';
31970             b.x = (k == 0) ? 2 : 1;
31971             b.y = (k == 0) ? 2 : 1;
31972             
31973             b.el.position('absolute');
31974             
31975             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31976                 
31977             b.el.setWidth(width);
31978             
31979             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31980             
31981             b.el.setHeight(height);
31982             
31983         }, this);
31984
31985         var positions = [];
31986         
31987         positions.push({
31988             x : maxX - this.unitWidth * 2 - this.gutter,
31989             y : minY
31990         });
31991         
31992         positions.push({
31993             x : maxX - this.unitWidth,
31994             y : minY + (this.unitWidth + this.gutter) * 2
31995         });
31996         
31997         positions.push({
31998             x : maxX - this.unitWidth * 3 - this.gutter * 2,
31999             y : minY
32000         });
32001         
32002         Roo.each(eItems, function(b,k){
32003             
32004             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
32005
32006         }, this);
32007         
32008     },
32009     
32010     getVerticalOneBoxColPositions : function(x, y, box)
32011     {
32012         var pos = [];
32013         
32014         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
32015         
32016         if(box[0].size == 'md-left'){
32017             rand = 0;
32018         }
32019         
32020         if(box[0].size == 'md-right'){
32021             rand = 1;
32022         }
32023         
32024         pos.push({
32025             x : x + (this.unitWidth + this.gutter) * rand,
32026             y : y
32027         });
32028         
32029         return pos;
32030     },
32031     
32032     getVerticalTwoBoxColPositions : function(x, y, box)
32033     {
32034         var pos = [];
32035         
32036         if(box[0].size == 'xs'){
32037             
32038             pos.push({
32039                 x : x,
32040                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
32041             });
32042
32043             pos.push({
32044                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
32045                 y : y
32046             });
32047             
32048             return pos;
32049             
32050         }
32051         
32052         pos.push({
32053             x : x,
32054             y : y
32055         });
32056
32057         pos.push({
32058             x : x + (this.unitWidth + this.gutter) * 2,
32059             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
32060         });
32061         
32062         return pos;
32063         
32064     },
32065     
32066     getVerticalThreeBoxColPositions : function(x, y, box)
32067     {
32068         var pos = [];
32069         
32070         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32071             
32072             pos.push({
32073                 x : x,
32074                 y : y
32075             });
32076
32077             pos.push({
32078                 x : x + (this.unitWidth + this.gutter) * 1,
32079                 y : y
32080             });
32081             
32082             pos.push({
32083                 x : x + (this.unitWidth + this.gutter) * 2,
32084                 y : y
32085             });
32086             
32087             return pos;
32088             
32089         }
32090         
32091         if(box[0].size == 'xs' && box[1].size == 'xs'){
32092             
32093             pos.push({
32094                 x : x,
32095                 y : y
32096             });
32097
32098             pos.push({
32099                 x : x,
32100                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
32101             });
32102             
32103             pos.push({
32104                 x : x + (this.unitWidth + this.gutter) * 1,
32105                 y : y
32106             });
32107             
32108             return pos;
32109             
32110         }
32111         
32112         pos.push({
32113             x : x,
32114             y : y
32115         });
32116
32117         pos.push({
32118             x : x + (this.unitWidth + this.gutter) * 2,
32119             y : y
32120         });
32121
32122         pos.push({
32123             x : x + (this.unitWidth + this.gutter) * 2,
32124             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
32125         });
32126             
32127         return pos;
32128         
32129     },
32130     
32131     getVerticalFourBoxColPositions : function(x, y, box)
32132     {
32133         var pos = [];
32134         
32135         if(box[0].size == 'xs'){
32136             
32137             pos.push({
32138                 x : x,
32139                 y : y
32140             });
32141
32142             pos.push({
32143                 x : x,
32144                 y : y + (this.unitHeight + this.gutter) * 1
32145             });
32146             
32147             pos.push({
32148                 x : x,
32149                 y : y + (this.unitHeight + this.gutter) * 2
32150             });
32151             
32152             pos.push({
32153                 x : x + (this.unitWidth + this.gutter) * 1,
32154                 y : y
32155             });
32156             
32157             return pos;
32158             
32159         }
32160         
32161         pos.push({
32162             x : x,
32163             y : y
32164         });
32165
32166         pos.push({
32167             x : x + (this.unitWidth + this.gutter) * 2,
32168             y : y
32169         });
32170
32171         pos.push({
32172             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
32173             y : y + (this.unitHeight + this.gutter) * 1
32174         });
32175
32176         pos.push({
32177             x : x + (this.unitWidth + this.gutter) * 2,
32178             y : y + (this.unitWidth + this.gutter) * 2
32179         });
32180
32181         return pos;
32182         
32183     },
32184     
32185     getHorizontalOneBoxColPositions : function(maxX, minY, box)
32186     {
32187         var pos = [];
32188         
32189         if(box[0].size == 'md-left'){
32190             pos.push({
32191                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32192                 y : minY
32193             });
32194             
32195             return pos;
32196         }
32197         
32198         if(box[0].size == 'md-right'){
32199             pos.push({
32200                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32201                 y : minY + (this.unitWidth + this.gutter) * 1
32202             });
32203             
32204             return pos;
32205         }
32206         
32207         var rand = Math.floor(Math.random() * (4 - box[0].y));
32208         
32209         pos.push({
32210             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32211             y : minY + (this.unitWidth + this.gutter) * rand
32212         });
32213         
32214         return pos;
32215         
32216     },
32217     
32218     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
32219     {
32220         var pos = [];
32221         
32222         if(box[0].size == 'xs'){
32223             
32224             pos.push({
32225                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32226                 y : minY
32227             });
32228
32229             pos.push({
32230                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32231                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
32232             });
32233             
32234             return pos;
32235             
32236         }
32237         
32238         pos.push({
32239             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32240             y : minY
32241         });
32242
32243         pos.push({
32244             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32245             y : minY + (this.unitWidth + this.gutter) * 2
32246         });
32247         
32248         return pos;
32249         
32250     },
32251     
32252     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
32253     {
32254         var pos = [];
32255         
32256         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32257             
32258             pos.push({
32259                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32260                 y : minY
32261             });
32262
32263             pos.push({
32264                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32265                 y : minY + (this.unitWidth + this.gutter) * 1
32266             });
32267             
32268             pos.push({
32269                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32270                 y : minY + (this.unitWidth + this.gutter) * 2
32271             });
32272             
32273             return pos;
32274             
32275         }
32276         
32277         if(box[0].size == 'xs' && box[1].size == 'xs'){
32278             
32279             pos.push({
32280                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32281                 y : minY
32282             });
32283
32284             pos.push({
32285                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32286                 y : minY
32287             });
32288             
32289             pos.push({
32290                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32291                 y : minY + (this.unitWidth + this.gutter) * 1
32292             });
32293             
32294             return pos;
32295             
32296         }
32297         
32298         pos.push({
32299             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32300             y : minY
32301         });
32302
32303         pos.push({
32304             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32305             y : minY + (this.unitWidth + this.gutter) * 2
32306         });
32307
32308         pos.push({
32309             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32310             y : minY + (this.unitWidth + this.gutter) * 2
32311         });
32312             
32313         return pos;
32314         
32315     },
32316     
32317     getHorizontalFourBoxColPositions : function(maxX, minY, box)
32318     {
32319         var pos = [];
32320         
32321         if(box[0].size == 'xs'){
32322             
32323             pos.push({
32324                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32325                 y : minY
32326             });
32327
32328             pos.push({
32329                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32330                 y : minY
32331             });
32332             
32333             pos.push({
32334                 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),
32335                 y : minY
32336             });
32337             
32338             pos.push({
32339                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
32340                 y : minY + (this.unitWidth + this.gutter) * 1
32341             });
32342             
32343             return pos;
32344             
32345         }
32346         
32347         pos.push({
32348             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32349             y : minY
32350         });
32351         
32352         pos.push({
32353             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32354             y : minY + (this.unitWidth + this.gutter) * 2
32355         });
32356         
32357         pos.push({
32358             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32359             y : minY + (this.unitWidth + this.gutter) * 2
32360         });
32361         
32362         pos.push({
32363             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),
32364             y : minY + (this.unitWidth + this.gutter) * 2
32365         });
32366
32367         return pos;
32368         
32369     },
32370     
32371     /**
32372     * remove a Masonry Brick
32373     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
32374     */
32375     removeBrick : function(brick_id)
32376     {
32377         if (!brick_id) {
32378             return;
32379         }
32380         
32381         for (var i = 0; i<this.bricks.length; i++) {
32382             if (this.bricks[i].id == brick_id) {
32383                 this.bricks.splice(i,1);
32384                 this.el.dom.removeChild(Roo.get(brick_id).dom);
32385                 this.initial();
32386             }
32387         }
32388     },
32389     
32390     /**
32391     * adds a Masonry Brick
32392     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32393     */
32394     addBrick : function(cfg)
32395     {
32396         var cn = new Roo.bootstrap.MasonryBrick(cfg);
32397         //this.register(cn);
32398         cn.parentId = this.id;
32399         cn.render(this.el);
32400         return cn;
32401     },
32402     
32403     /**
32404     * register a Masonry Brick
32405     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32406     */
32407     
32408     register : function(brick)
32409     {
32410         this.bricks.push(brick);
32411         brick.masonryId = this.id;
32412     },
32413     
32414     /**
32415     * clear all the Masonry Brick
32416     */
32417     clearAll : function()
32418     {
32419         this.bricks = [];
32420         //this.getChildContainer().dom.innerHTML = "";
32421         this.el.dom.innerHTML = '';
32422     },
32423     
32424     getSelected : function()
32425     {
32426         if (!this.selectedBrick) {
32427             return false;
32428         }
32429         
32430         return this.selectedBrick;
32431     }
32432 });
32433
32434 Roo.apply(Roo.bootstrap.LayoutMasonry, {
32435     
32436     groups: {},
32437      /**
32438     * register a Masonry Layout
32439     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
32440     */
32441     
32442     register : function(layout)
32443     {
32444         this.groups[layout.id] = layout;
32445     },
32446     /**
32447     * fetch a  Masonry Layout based on the masonry layout ID
32448     * @param {string} the masonry layout to add
32449     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
32450     */
32451     
32452     get: function(layout_id) {
32453         if (typeof(this.groups[layout_id]) == 'undefined') {
32454             return false;
32455         }
32456         return this.groups[layout_id] ;
32457     }
32458     
32459     
32460     
32461 });
32462
32463  
32464
32465  /**
32466  *
32467  * This is based on 
32468  * http://masonry.desandro.com
32469  *
32470  * The idea is to render all the bricks based on vertical width...
32471  *
32472  * The original code extends 'outlayer' - we might need to use that....
32473  * 
32474  */
32475
32476
32477 /**
32478  * @class Roo.bootstrap.LayoutMasonryAuto
32479  * @extends Roo.bootstrap.Component
32480  * Bootstrap Layout Masonry class
32481  * 
32482  * @constructor
32483  * Create a new Element
32484  * @param {Object} config The config object
32485  */
32486
32487 Roo.bootstrap.LayoutMasonryAuto = function(config){
32488     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
32489 };
32490
32491 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
32492     
32493       /**
32494      * @cfg {Boolean} isFitWidth  - resize the width..
32495      */   
32496     isFitWidth : false,  // options..
32497     /**
32498      * @cfg {Boolean} isOriginLeft = left align?
32499      */   
32500     isOriginLeft : true,
32501     /**
32502      * @cfg {Boolean} isOriginTop = top align?
32503      */   
32504     isOriginTop : false,
32505     /**
32506      * @cfg {Boolean} isLayoutInstant = no animation?
32507      */   
32508     isLayoutInstant : false, // needed?
32509     /**
32510      * @cfg {Boolean} isResizingContainer = not sure if this is used..
32511      */   
32512     isResizingContainer : true,
32513     /**
32514      * @cfg {Number} columnWidth  width of the columns 
32515      */   
32516     
32517     columnWidth : 0,
32518     
32519     /**
32520      * @cfg {Number} maxCols maximum number of columns
32521      */   
32522     
32523     maxCols: 0,
32524     /**
32525      * @cfg {Number} padHeight padding below box..
32526      */   
32527     
32528     padHeight : 10, 
32529     
32530     /**
32531      * @cfg {Boolean} isAutoInitial defalut true
32532      */   
32533     
32534     isAutoInitial : true, 
32535     
32536     // private?
32537     gutter : 0,
32538     
32539     containerWidth: 0,
32540     initialColumnWidth : 0,
32541     currentSize : null,
32542     
32543     colYs : null, // array.
32544     maxY : 0,
32545     padWidth: 10,
32546     
32547     
32548     tag: 'div',
32549     cls: '',
32550     bricks: null, //CompositeElement
32551     cols : 0, // array?
32552     // element : null, // wrapped now this.el
32553     _isLayoutInited : null, 
32554     
32555     
32556     getAutoCreate : function(){
32557         
32558         var cfg = {
32559             tag: this.tag,
32560             cls: 'blog-masonary-wrapper ' + this.cls,
32561             cn : {
32562                 cls : 'mas-boxes masonary'
32563             }
32564         };
32565         
32566         return cfg;
32567     },
32568     
32569     getChildContainer: function( )
32570     {
32571         if (this.boxesEl) {
32572             return this.boxesEl;
32573         }
32574         
32575         this.boxesEl = this.el.select('.mas-boxes').first();
32576         
32577         return this.boxesEl;
32578     },
32579     
32580     
32581     initEvents : function()
32582     {
32583         var _this = this;
32584         
32585         if(this.isAutoInitial){
32586             Roo.log('hook children rendered');
32587             this.on('childrenrendered', function() {
32588                 Roo.log('children rendered');
32589                 _this.initial();
32590             } ,this);
32591         }
32592         
32593     },
32594     
32595     initial : function()
32596     {
32597         this.reloadItems();
32598
32599         this.currentSize = this.el.getBox(true);
32600
32601         /// was window resize... - let's see if this works..
32602         Roo.EventManager.onWindowResize(this.resize, this); 
32603
32604         if(!this.isAutoInitial){
32605             this.layout();
32606             return;
32607         }
32608         
32609         this.layout.defer(500,this);
32610     },
32611     
32612     reloadItems: function()
32613     {
32614         this.bricks = this.el.select('.masonry-brick', true);
32615         
32616         this.bricks.each(function(b) {
32617             //Roo.log(b.getSize());
32618             if (!b.attr('originalwidth')) {
32619                 b.attr('originalwidth',  b.getSize().width);
32620             }
32621             
32622         });
32623         
32624         Roo.log(this.bricks.elements.length);
32625     },
32626     
32627     resize : function()
32628     {
32629         Roo.log('resize');
32630         var cs = this.el.getBox(true);
32631         
32632         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
32633             Roo.log("no change in with or X");
32634             return;
32635         }
32636         this.currentSize = cs;
32637         this.layout();
32638     },
32639     
32640     layout : function()
32641     {
32642          Roo.log('layout');
32643         this._resetLayout();
32644         //this._manageStamps();
32645       
32646         // don't animate first layout
32647         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
32648         this.layoutItems( isInstant );
32649       
32650         // flag for initalized
32651         this._isLayoutInited = true;
32652     },
32653     
32654     layoutItems : function( isInstant )
32655     {
32656         //var items = this._getItemsForLayout( this.items );
32657         // original code supports filtering layout items.. we just ignore it..
32658         
32659         this._layoutItems( this.bricks , isInstant );
32660       
32661         this._postLayout();
32662     },
32663     _layoutItems : function ( items , isInstant)
32664     {
32665        //this.fireEvent( 'layout', this, items );
32666     
32667
32668         if ( !items || !items.elements.length ) {
32669           // no items, emit event with empty array
32670             return;
32671         }
32672
32673         var queue = [];
32674         items.each(function(item) {
32675             Roo.log("layout item");
32676             Roo.log(item);
32677             // get x/y object from method
32678             var position = this._getItemLayoutPosition( item );
32679             // enqueue
32680             position.item = item;
32681             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
32682             queue.push( position );
32683         }, this);
32684       
32685         this._processLayoutQueue( queue );
32686     },
32687     /** Sets position of item in DOM
32688     * @param {Element} item
32689     * @param {Number} x - horizontal position
32690     * @param {Number} y - vertical position
32691     * @param {Boolean} isInstant - disables transitions
32692     */
32693     _processLayoutQueue : function( queue )
32694     {
32695         for ( var i=0, len = queue.length; i < len; i++ ) {
32696             var obj = queue[i];
32697             obj.item.position('absolute');
32698             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
32699         }
32700     },
32701       
32702     
32703     /**
32704     * Any logic you want to do after each layout,
32705     * i.e. size the container
32706     */
32707     _postLayout : function()
32708     {
32709         this.resizeContainer();
32710     },
32711     
32712     resizeContainer : function()
32713     {
32714         if ( !this.isResizingContainer ) {
32715             return;
32716         }
32717         var size = this._getContainerSize();
32718         if ( size ) {
32719             this.el.setSize(size.width,size.height);
32720             this.boxesEl.setSize(size.width,size.height);
32721         }
32722     },
32723     
32724     
32725     
32726     _resetLayout : function()
32727     {
32728         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
32729         this.colWidth = this.el.getWidth();
32730         //this.gutter = this.el.getWidth(); 
32731         
32732         this.measureColumns();
32733
32734         // reset column Y
32735         var i = this.cols;
32736         this.colYs = [];
32737         while (i--) {
32738             this.colYs.push( 0 );
32739         }
32740     
32741         this.maxY = 0;
32742     },
32743
32744     measureColumns : function()
32745     {
32746         this.getContainerWidth();
32747       // if columnWidth is 0, default to outerWidth of first item
32748         if ( !this.columnWidth ) {
32749             var firstItem = this.bricks.first();
32750             Roo.log(firstItem);
32751             this.columnWidth  = this.containerWidth;
32752             if (firstItem && firstItem.attr('originalwidth') ) {
32753                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
32754             }
32755             // columnWidth fall back to item of first element
32756             Roo.log("set column width?");
32757                         this.initialColumnWidth = this.columnWidth  ;
32758
32759             // if first elem has no width, default to size of container
32760             
32761         }
32762         
32763         
32764         if (this.initialColumnWidth) {
32765             this.columnWidth = this.initialColumnWidth;
32766         }
32767         
32768         
32769             
32770         // column width is fixed at the top - however if container width get's smaller we should
32771         // reduce it...
32772         
32773         // this bit calcs how man columns..
32774             
32775         var columnWidth = this.columnWidth += this.gutter;
32776       
32777         // calculate columns
32778         var containerWidth = this.containerWidth + this.gutter;
32779         
32780         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
32781         // fix rounding errors, typically with gutters
32782         var excess = columnWidth - containerWidth % columnWidth;
32783         
32784         
32785         // if overshoot is less than a pixel, round up, otherwise floor it
32786         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
32787         cols = Math[ mathMethod ]( cols );
32788         this.cols = Math.max( cols, 1 );
32789         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
32790         
32791          // padding positioning..
32792         var totalColWidth = this.cols * this.columnWidth;
32793         var padavail = this.containerWidth - totalColWidth;
32794         // so for 2 columns - we need 3 'pads'
32795         
32796         var padNeeded = (1+this.cols) * this.padWidth;
32797         
32798         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
32799         
32800         this.columnWidth += padExtra
32801         //this.padWidth = Math.floor(padavail /  ( this.cols));
32802         
32803         // adjust colum width so that padding is fixed??
32804         
32805         // we have 3 columns ... total = width * 3
32806         // we have X left over... that should be used by 
32807         
32808         //if (this.expandC) {
32809             
32810         //}
32811         
32812         
32813         
32814     },
32815     
32816     getContainerWidth : function()
32817     {
32818        /* // container is parent if fit width
32819         var container = this.isFitWidth ? this.element.parentNode : this.element;
32820         // check that this.size and size are there
32821         // IE8 triggers resize on body size change, so they might not be
32822         
32823         var size = getSize( container );  //FIXME
32824         this.containerWidth = size && size.innerWidth; //FIXME
32825         */
32826          
32827         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
32828         
32829     },
32830     
32831     _getItemLayoutPosition : function( item )  // what is item?
32832     {
32833         // we resize the item to our columnWidth..
32834       
32835         item.setWidth(this.columnWidth);
32836         item.autoBoxAdjust  = false;
32837         
32838         var sz = item.getSize();
32839  
32840         // how many columns does this brick span
32841         var remainder = this.containerWidth % this.columnWidth;
32842         
32843         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
32844         // round if off by 1 pixel, otherwise use ceil
32845         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
32846         colSpan = Math.min( colSpan, this.cols );
32847         
32848         // normally this should be '1' as we dont' currently allow multi width columns..
32849         
32850         var colGroup = this._getColGroup( colSpan );
32851         // get the minimum Y value from the columns
32852         var minimumY = Math.min.apply( Math, colGroup );
32853         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32854         
32855         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
32856          
32857         // position the brick
32858         var position = {
32859             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
32860             y: this.currentSize.y + minimumY + this.padHeight
32861         };
32862         
32863         Roo.log(position);
32864         // apply setHeight to necessary columns
32865         var setHeight = minimumY + sz.height + this.padHeight;
32866         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32867         
32868         var setSpan = this.cols + 1 - colGroup.length;
32869         for ( var i = 0; i < setSpan; i++ ) {
32870           this.colYs[ shortColIndex + i ] = setHeight ;
32871         }
32872       
32873         return position;
32874     },
32875     
32876     /**
32877      * @param {Number} colSpan - number of columns the element spans
32878      * @returns {Array} colGroup
32879      */
32880     _getColGroup : function( colSpan )
32881     {
32882         if ( colSpan < 2 ) {
32883           // if brick spans only one column, use all the column Ys
32884           return this.colYs;
32885         }
32886       
32887         var colGroup = [];
32888         // how many different places could this brick fit horizontally
32889         var groupCount = this.cols + 1 - colSpan;
32890         // for each group potential horizontal position
32891         for ( var i = 0; i < groupCount; i++ ) {
32892           // make an array of colY values for that one group
32893           var groupColYs = this.colYs.slice( i, i + colSpan );
32894           // and get the max value of the array
32895           colGroup[i] = Math.max.apply( Math, groupColYs );
32896         }
32897         return colGroup;
32898     },
32899     /*
32900     _manageStamp : function( stamp )
32901     {
32902         var stampSize =  stamp.getSize();
32903         var offset = stamp.getBox();
32904         // get the columns that this stamp affects
32905         var firstX = this.isOriginLeft ? offset.x : offset.right;
32906         var lastX = firstX + stampSize.width;
32907         var firstCol = Math.floor( firstX / this.columnWidth );
32908         firstCol = Math.max( 0, firstCol );
32909         
32910         var lastCol = Math.floor( lastX / this.columnWidth );
32911         // lastCol should not go over if multiple of columnWidth #425
32912         lastCol -= lastX % this.columnWidth ? 0 : 1;
32913         lastCol = Math.min( this.cols - 1, lastCol );
32914         
32915         // set colYs to bottom of the stamp
32916         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
32917             stampSize.height;
32918             
32919         for ( var i = firstCol; i <= lastCol; i++ ) {
32920           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
32921         }
32922     },
32923     */
32924     
32925     _getContainerSize : function()
32926     {
32927         this.maxY = Math.max.apply( Math, this.colYs );
32928         var size = {
32929             height: this.maxY
32930         };
32931       
32932         if ( this.isFitWidth ) {
32933             size.width = this._getContainerFitWidth();
32934         }
32935       
32936         return size;
32937     },
32938     
32939     _getContainerFitWidth : function()
32940     {
32941         var unusedCols = 0;
32942         // count unused columns
32943         var i = this.cols;
32944         while ( --i ) {
32945           if ( this.colYs[i] !== 0 ) {
32946             break;
32947           }
32948           unusedCols++;
32949         }
32950         // fit container to columns that have been used
32951         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
32952     },
32953     
32954     needsResizeLayout : function()
32955     {
32956         var previousWidth = this.containerWidth;
32957         this.getContainerWidth();
32958         return previousWidth !== this.containerWidth;
32959     }
32960  
32961 });
32962
32963  
32964
32965  /*
32966  * - LGPL
32967  *
32968  * element
32969  * 
32970  */
32971
32972 /**
32973  * @class Roo.bootstrap.MasonryBrick
32974  * @extends Roo.bootstrap.Component
32975  * Bootstrap MasonryBrick class
32976  * 
32977  * @constructor
32978  * Create a new MasonryBrick
32979  * @param {Object} config The config object
32980  */
32981
32982 Roo.bootstrap.MasonryBrick = function(config){
32983     
32984     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
32985     
32986     Roo.bootstrap.MasonryBrick.register(this);
32987     
32988     this.addEvents({
32989         // raw events
32990         /**
32991          * @event click
32992          * When a MasonryBrick is clcik
32993          * @param {Roo.bootstrap.MasonryBrick} this
32994          * @param {Roo.EventObject} e
32995          */
32996         "click" : true
32997     });
32998 };
32999
33000 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
33001     
33002     /**
33003      * @cfg {String} title
33004      */   
33005     title : '',
33006     /**
33007      * @cfg {String} html
33008      */   
33009     html : '',
33010     /**
33011      * @cfg {String} bgimage
33012      */   
33013     bgimage : '',
33014     /**
33015      * @cfg {String} videourl
33016      */   
33017     videourl : '',
33018     /**
33019      * @cfg {String} cls
33020      */   
33021     cls : '',
33022     /**
33023      * @cfg {String} href
33024      */   
33025     href : '',
33026     /**
33027      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
33028      */   
33029     size : 'xs',
33030     
33031     /**
33032      * @cfg {String} placetitle (center|bottom)
33033      */   
33034     placetitle : '',
33035     
33036     /**
33037      * @cfg {Boolean} isFitContainer defalut true
33038      */   
33039     isFitContainer : true, 
33040     
33041     /**
33042      * @cfg {Boolean} preventDefault defalut false
33043      */   
33044     preventDefault : false, 
33045     
33046     /**
33047      * @cfg {Boolean} inverse defalut false
33048      */   
33049     maskInverse : false, 
33050     
33051     getAutoCreate : function()
33052     {
33053         if(!this.isFitContainer){
33054             return this.getSplitAutoCreate();
33055         }
33056         
33057         var cls = 'masonry-brick masonry-brick-full';
33058         
33059         if(this.href.length){
33060             cls += ' masonry-brick-link';
33061         }
33062         
33063         if(this.bgimage.length){
33064             cls += ' masonry-brick-image';
33065         }
33066         
33067         if(this.maskInverse){
33068             cls += ' mask-inverse';
33069         }
33070         
33071         if(!this.html.length && !this.maskInverse && !this.videourl.length){
33072             cls += ' enable-mask';
33073         }
33074         
33075         if(this.size){
33076             cls += ' masonry-' + this.size + '-brick';
33077         }
33078         
33079         if(this.placetitle.length){
33080             
33081             switch (this.placetitle) {
33082                 case 'center' :
33083                     cls += ' masonry-center-title';
33084                     break;
33085                 case 'bottom' :
33086                     cls += ' masonry-bottom-title';
33087                     break;
33088                 default:
33089                     break;
33090             }
33091             
33092         } else {
33093             if(!this.html.length && !this.bgimage.length){
33094                 cls += ' masonry-center-title';
33095             }
33096
33097             if(!this.html.length && this.bgimage.length){
33098                 cls += ' masonry-bottom-title';
33099             }
33100         }
33101         
33102         if(this.cls){
33103             cls += ' ' + this.cls;
33104         }
33105         
33106         var cfg = {
33107             tag: (this.href.length) ? 'a' : 'div',
33108             cls: cls,
33109             cn: [
33110                 {
33111                     tag: 'div',
33112                     cls: 'masonry-brick-mask'
33113                 },
33114                 {
33115                     tag: 'div',
33116                     cls: 'masonry-brick-paragraph',
33117                     cn: []
33118                 }
33119             ]
33120         };
33121         
33122         if(this.href.length){
33123             cfg.href = this.href;
33124         }
33125         
33126         var cn = cfg.cn[1].cn;
33127         
33128         if(this.title.length){
33129             cn.push({
33130                 tag: 'h4',
33131                 cls: 'masonry-brick-title',
33132                 html: this.title
33133             });
33134         }
33135         
33136         if(this.html.length){
33137             cn.push({
33138                 tag: 'p',
33139                 cls: 'masonry-brick-text',
33140                 html: this.html
33141             });
33142         }
33143         
33144         if (!this.title.length && !this.html.length) {
33145             cfg.cn[1].cls += ' hide';
33146         }
33147         
33148         if(this.bgimage.length){
33149             cfg.cn.push({
33150                 tag: 'img',
33151                 cls: 'masonry-brick-image-view',
33152                 src: this.bgimage
33153             });
33154         }
33155         
33156         if(this.videourl.length){
33157             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33158             // youtube support only?
33159             cfg.cn.push({
33160                 tag: 'iframe',
33161                 cls: 'masonry-brick-image-view',
33162                 src: vurl,
33163                 frameborder : 0,
33164                 allowfullscreen : true
33165             });
33166         }
33167         
33168         return cfg;
33169         
33170     },
33171     
33172     getSplitAutoCreate : function()
33173     {
33174         var cls = 'masonry-brick masonry-brick-split';
33175         
33176         if(this.href.length){
33177             cls += ' masonry-brick-link';
33178         }
33179         
33180         if(this.bgimage.length){
33181             cls += ' masonry-brick-image';
33182         }
33183         
33184         if(this.size){
33185             cls += ' masonry-' + this.size + '-brick';
33186         }
33187         
33188         switch (this.placetitle) {
33189             case 'center' :
33190                 cls += ' masonry-center-title';
33191                 break;
33192             case 'bottom' :
33193                 cls += ' masonry-bottom-title';
33194                 break;
33195             default:
33196                 if(!this.bgimage.length){
33197                     cls += ' masonry-center-title';
33198                 }
33199
33200                 if(this.bgimage.length){
33201                     cls += ' masonry-bottom-title';
33202                 }
33203                 break;
33204         }
33205         
33206         if(this.cls){
33207             cls += ' ' + this.cls;
33208         }
33209         
33210         var cfg = {
33211             tag: (this.href.length) ? 'a' : 'div',
33212             cls: cls,
33213             cn: [
33214                 {
33215                     tag: 'div',
33216                     cls: 'masonry-brick-split-head',
33217                     cn: [
33218                         {
33219                             tag: 'div',
33220                             cls: 'masonry-brick-paragraph',
33221                             cn: []
33222                         }
33223                     ]
33224                 },
33225                 {
33226                     tag: 'div',
33227                     cls: 'masonry-brick-split-body',
33228                     cn: []
33229                 }
33230             ]
33231         };
33232         
33233         if(this.href.length){
33234             cfg.href = this.href;
33235         }
33236         
33237         if(this.title.length){
33238             cfg.cn[0].cn[0].cn.push({
33239                 tag: 'h4',
33240                 cls: 'masonry-brick-title',
33241                 html: this.title
33242             });
33243         }
33244         
33245         if(this.html.length){
33246             cfg.cn[1].cn.push({
33247                 tag: 'p',
33248                 cls: 'masonry-brick-text',
33249                 html: this.html
33250             });
33251         }
33252
33253         if(this.bgimage.length){
33254             cfg.cn[0].cn.push({
33255                 tag: 'img',
33256                 cls: 'masonry-brick-image-view',
33257                 src: this.bgimage
33258             });
33259         }
33260         
33261         if(this.videourl.length){
33262             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33263             // youtube support only?
33264             cfg.cn[0].cn.cn.push({
33265                 tag: 'iframe',
33266                 cls: 'masonry-brick-image-view',
33267                 src: vurl,
33268                 frameborder : 0,
33269                 allowfullscreen : true
33270             });
33271         }
33272         
33273         return cfg;
33274     },
33275     
33276     initEvents: function() 
33277     {
33278         switch (this.size) {
33279             case 'xs' :
33280                 this.x = 1;
33281                 this.y = 1;
33282                 break;
33283             case 'sm' :
33284                 this.x = 2;
33285                 this.y = 2;
33286                 break;
33287             case 'md' :
33288             case 'md-left' :
33289             case 'md-right' :
33290                 this.x = 3;
33291                 this.y = 3;
33292                 break;
33293             case 'tall' :
33294                 this.x = 2;
33295                 this.y = 3;
33296                 break;
33297             case 'wide' :
33298                 this.x = 3;
33299                 this.y = 2;
33300                 break;
33301             case 'wide-thin' :
33302                 this.x = 3;
33303                 this.y = 1;
33304                 break;
33305                         
33306             default :
33307                 break;
33308         }
33309         
33310         if(Roo.isTouch){
33311             this.el.on('touchstart', this.onTouchStart, this);
33312             this.el.on('touchmove', this.onTouchMove, this);
33313             this.el.on('touchend', this.onTouchEnd, this);
33314             this.el.on('contextmenu', this.onContextMenu, this);
33315         } else {
33316             this.el.on('mouseenter'  ,this.enter, this);
33317             this.el.on('mouseleave', this.leave, this);
33318             this.el.on('click', this.onClick, this);
33319         }
33320         
33321         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
33322             this.parent().bricks.push(this);   
33323         }
33324         
33325     },
33326     
33327     onClick: function(e, el)
33328     {
33329         var time = this.endTimer - this.startTimer;
33330         // Roo.log(e.preventDefault());
33331         if(Roo.isTouch){
33332             if(time > 1000){
33333                 e.preventDefault();
33334                 return;
33335             }
33336         }
33337         
33338         if(!this.preventDefault){
33339             return;
33340         }
33341         
33342         e.preventDefault();
33343         
33344         if (this.activeClass != '') {
33345             this.selectBrick();
33346         }
33347         
33348         this.fireEvent('click', this, e);
33349     },
33350     
33351     enter: function(e, el)
33352     {
33353         e.preventDefault();
33354         
33355         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
33356             return;
33357         }
33358         
33359         if(this.bgimage.length && this.html.length){
33360             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33361         }
33362     },
33363     
33364     leave: function(e, el)
33365     {
33366         e.preventDefault();
33367         
33368         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
33369             return;
33370         }
33371         
33372         if(this.bgimage.length && this.html.length){
33373             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33374         }
33375     },
33376     
33377     onTouchStart: function(e, el)
33378     {
33379 //        e.preventDefault();
33380         
33381         this.touchmoved = false;
33382         
33383         if(!this.isFitContainer){
33384             return;
33385         }
33386         
33387         if(!this.bgimage.length || !this.html.length){
33388             return;
33389         }
33390         
33391         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33392         
33393         this.timer = new Date().getTime();
33394         
33395     },
33396     
33397     onTouchMove: function(e, el)
33398     {
33399         this.touchmoved = true;
33400     },
33401     
33402     onContextMenu : function(e,el)
33403     {
33404         e.preventDefault();
33405         e.stopPropagation();
33406         return false;
33407     },
33408     
33409     onTouchEnd: function(e, el)
33410     {
33411 //        e.preventDefault();
33412         
33413         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
33414         
33415             this.leave(e,el);
33416             
33417             return;
33418         }
33419         
33420         if(!this.bgimage.length || !this.html.length){
33421             
33422             if(this.href.length){
33423                 window.location.href = this.href;
33424             }
33425             
33426             return;
33427         }
33428         
33429         if(!this.isFitContainer){
33430             return;
33431         }
33432         
33433         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33434         
33435         window.location.href = this.href;
33436     },
33437     
33438     //selection on single brick only
33439     selectBrick : function() {
33440         
33441         if (!this.parentId) {
33442             return;
33443         }
33444         
33445         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
33446         var index = m.selectedBrick.indexOf(this.id);
33447         
33448         if ( index > -1) {
33449             m.selectedBrick.splice(index,1);
33450             this.el.removeClass(this.activeClass);
33451             return;
33452         }
33453         
33454         for(var i = 0; i < m.selectedBrick.length; i++) {
33455             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
33456             b.el.removeClass(b.activeClass);
33457         }
33458         
33459         m.selectedBrick = [];
33460         
33461         m.selectedBrick.push(this.id);
33462         this.el.addClass(this.activeClass);
33463         return;
33464     },
33465     
33466     isSelected : function(){
33467         return this.el.hasClass(this.activeClass);
33468         
33469     }
33470 });
33471
33472 Roo.apply(Roo.bootstrap.MasonryBrick, {
33473     
33474     //groups: {},
33475     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
33476      /**
33477     * register a Masonry Brick
33478     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
33479     */
33480     
33481     register : function(brick)
33482     {
33483         //this.groups[brick.id] = brick;
33484         this.groups.add(brick.id, brick);
33485     },
33486     /**
33487     * fetch a  masonry brick based on the masonry brick ID
33488     * @param {string} the masonry brick to add
33489     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
33490     */
33491     
33492     get: function(brick_id) 
33493     {
33494         // if (typeof(this.groups[brick_id]) == 'undefined') {
33495         //     return false;
33496         // }
33497         // return this.groups[brick_id] ;
33498         
33499         if(this.groups.key(brick_id)) {
33500             return this.groups.key(brick_id);
33501         }
33502         
33503         return false;
33504     }
33505     
33506     
33507     
33508 });
33509
33510  /*
33511  * - LGPL
33512  *
33513  * element
33514  * 
33515  */
33516
33517 /**
33518  * @class Roo.bootstrap.Brick
33519  * @extends Roo.bootstrap.Component
33520  * Bootstrap Brick class
33521  * 
33522  * @constructor
33523  * Create a new Brick
33524  * @param {Object} config The config object
33525  */
33526
33527 Roo.bootstrap.Brick = function(config){
33528     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
33529     
33530     this.addEvents({
33531         // raw events
33532         /**
33533          * @event click
33534          * When a Brick is click
33535          * @param {Roo.bootstrap.Brick} this
33536          * @param {Roo.EventObject} e
33537          */
33538         "click" : true
33539     });
33540 };
33541
33542 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
33543     
33544     /**
33545      * @cfg {String} title
33546      */   
33547     title : '',
33548     /**
33549      * @cfg {String} html
33550      */   
33551     html : '',
33552     /**
33553      * @cfg {String} bgimage
33554      */   
33555     bgimage : '',
33556     /**
33557      * @cfg {String} cls
33558      */   
33559     cls : '',
33560     /**
33561      * @cfg {String} href
33562      */   
33563     href : '',
33564     /**
33565      * @cfg {String} video
33566      */   
33567     video : '',
33568     /**
33569      * @cfg {Boolean} square
33570      */   
33571     square : true,
33572     
33573     getAutoCreate : function()
33574     {
33575         var cls = 'roo-brick';
33576         
33577         if(this.href.length){
33578             cls += ' roo-brick-link';
33579         }
33580         
33581         if(this.bgimage.length){
33582             cls += ' roo-brick-image';
33583         }
33584         
33585         if(!this.html.length && !this.bgimage.length){
33586             cls += ' roo-brick-center-title';
33587         }
33588         
33589         if(!this.html.length && this.bgimage.length){
33590             cls += ' roo-brick-bottom-title';
33591         }
33592         
33593         if(this.cls){
33594             cls += ' ' + this.cls;
33595         }
33596         
33597         var cfg = {
33598             tag: (this.href.length) ? 'a' : 'div',
33599             cls: cls,
33600             cn: [
33601                 {
33602                     tag: 'div',
33603                     cls: 'roo-brick-paragraph',
33604                     cn: []
33605                 }
33606             ]
33607         };
33608         
33609         if(this.href.length){
33610             cfg.href = this.href;
33611         }
33612         
33613         var cn = cfg.cn[0].cn;
33614         
33615         if(this.title.length){
33616             cn.push({
33617                 tag: 'h4',
33618                 cls: 'roo-brick-title',
33619                 html: this.title
33620             });
33621         }
33622         
33623         if(this.html.length){
33624             cn.push({
33625                 tag: 'p',
33626                 cls: 'roo-brick-text',
33627                 html: this.html
33628             });
33629         } else {
33630             cn.cls += ' hide';
33631         }
33632         
33633         if(this.bgimage.length){
33634             cfg.cn.push({
33635                 tag: 'img',
33636                 cls: 'roo-brick-image-view',
33637                 src: this.bgimage
33638             });
33639         }
33640         
33641         return cfg;
33642     },
33643     
33644     initEvents: function() 
33645     {
33646         if(this.title.length || this.html.length){
33647             this.el.on('mouseenter'  ,this.enter, this);
33648             this.el.on('mouseleave', this.leave, this);
33649         }
33650         
33651         Roo.EventManager.onWindowResize(this.resize, this); 
33652         
33653         if(this.bgimage.length){
33654             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
33655             this.imageEl.on('load', this.onImageLoad, this);
33656             return;
33657         }
33658         
33659         this.resize();
33660     },
33661     
33662     onImageLoad : function()
33663     {
33664         this.resize();
33665     },
33666     
33667     resize : function()
33668     {
33669         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
33670         
33671         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
33672         
33673         if(this.bgimage.length){
33674             var image = this.el.select('.roo-brick-image-view', true).first();
33675             
33676             image.setWidth(paragraph.getWidth());
33677             
33678             if(this.square){
33679                 image.setHeight(paragraph.getWidth());
33680             }
33681             
33682             this.el.setHeight(image.getHeight());
33683             paragraph.setHeight(image.getHeight());
33684             
33685         }
33686         
33687     },
33688     
33689     enter: function(e, el)
33690     {
33691         e.preventDefault();
33692         
33693         if(this.bgimage.length){
33694             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
33695             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
33696         }
33697     },
33698     
33699     leave: function(e, el)
33700     {
33701         e.preventDefault();
33702         
33703         if(this.bgimage.length){
33704             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
33705             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
33706         }
33707     }
33708     
33709 });
33710
33711  
33712
33713  /*
33714  * - LGPL
33715  *
33716  * Number field 
33717  */
33718
33719 /**
33720  * @class Roo.bootstrap.NumberField
33721  * @extends Roo.bootstrap.Input
33722  * Bootstrap NumberField class
33723  * 
33724  * 
33725  * 
33726  * 
33727  * @constructor
33728  * Create a new NumberField
33729  * @param {Object} config The config object
33730  */
33731
33732 Roo.bootstrap.NumberField = function(config){
33733     Roo.bootstrap.NumberField.superclass.constructor.call(this, config);
33734 };
33735
33736 Roo.extend(Roo.bootstrap.NumberField, Roo.bootstrap.Input, {
33737     
33738     /**
33739      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
33740      */
33741     allowDecimals : true,
33742     /**
33743      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
33744      */
33745     decimalSeparator : ".",
33746     /**
33747      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
33748      */
33749     decimalPrecision : 2,
33750     /**
33751      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
33752      */
33753     allowNegative : true,
33754     
33755     /**
33756      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
33757      */
33758     allowZero: true,
33759     /**
33760      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
33761      */
33762     minValue : Number.NEGATIVE_INFINITY,
33763     /**
33764      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
33765      */
33766     maxValue : Number.MAX_VALUE,
33767     /**
33768      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
33769      */
33770     minText : "The minimum value for this field is {0}",
33771     /**
33772      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
33773      */
33774     maxText : "The maximum value for this field is {0}",
33775     /**
33776      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
33777      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
33778      */
33779     nanText : "{0} is not a valid number",
33780     /**
33781      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
33782      */
33783     thousandsDelimiter : false,
33784     /**
33785      * @cfg {String} valueAlign alignment of value
33786      */
33787     valueAlign : "left",
33788
33789     getAutoCreate : function()
33790     {
33791         var hiddenInput = {
33792             tag: 'input',
33793             type: 'hidden',
33794             id: Roo.id(),
33795             cls: 'hidden-number-input'
33796         };
33797         
33798         if (this.name) {
33799             hiddenInput.name = this.name;
33800         }
33801         
33802         this.name = '';
33803         
33804         var cfg = Roo.bootstrap.NumberField.superclass.getAutoCreate.call(this);
33805         
33806         this.name = hiddenInput.name;
33807         
33808         if(cfg.cn.length > 0) {
33809             cfg.cn.push(hiddenInput);
33810         }
33811         
33812         return cfg;
33813     },
33814
33815     // private
33816     initEvents : function()
33817     {   
33818         Roo.bootstrap.NumberField.superclass.initEvents.call(this);
33819         
33820         var allowed = "0123456789";
33821         
33822         if(this.allowDecimals){
33823             allowed += this.decimalSeparator;
33824         }
33825         
33826         if(this.allowNegative){
33827             allowed += "-";
33828         }
33829         
33830         if(this.thousandsDelimiter) {
33831             allowed += ",";
33832         }
33833         
33834         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
33835         
33836         var keyPress = function(e){
33837             
33838             var k = e.getKey();
33839             
33840             var c = e.getCharCode();
33841             
33842             if(
33843                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
33844                     allowed.indexOf(String.fromCharCode(c)) === -1
33845             ){
33846                 e.stopEvent();
33847                 return;
33848             }
33849             
33850             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
33851                 return;
33852             }
33853             
33854             if(allowed.indexOf(String.fromCharCode(c)) === -1){
33855                 e.stopEvent();
33856             }
33857         };
33858         
33859         this.el.on("keypress", keyPress, this);
33860     },
33861     
33862     validateValue : function(value)
33863     {
33864         
33865         if(!Roo.bootstrap.NumberField.superclass.validateValue.call(this, value)){
33866             return false;
33867         }
33868         
33869         var num = this.parseValue(value);
33870         
33871         if(isNaN(num)){
33872             this.markInvalid(String.format(this.nanText, value));
33873             return false;
33874         }
33875         
33876         if(num < this.minValue){
33877             this.markInvalid(String.format(this.minText, this.minValue));
33878             return false;
33879         }
33880         
33881         if(num > this.maxValue){
33882             this.markInvalid(String.format(this.maxText, this.maxValue));
33883             return false;
33884         }
33885         
33886         return true;
33887     },
33888
33889     getValue : function()
33890     {
33891         var v = this.hiddenEl().getValue();
33892         
33893         return this.fixPrecision(this.parseValue(v));
33894     },
33895
33896     parseValue : function(value)
33897     {
33898         if(this.thousandsDelimiter) {
33899             value += "";
33900             r = new RegExp(",", "g");
33901             value = value.replace(r, "");
33902         }
33903         
33904         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
33905         return isNaN(value) ? '' : value;
33906     },
33907
33908     fixPrecision : function(value)
33909     {
33910         if(this.thousandsDelimiter) {
33911             value += "";
33912             r = new RegExp(",", "g");
33913             value = value.replace(r, "");
33914         }
33915         
33916         var nan = isNaN(value);
33917         
33918         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
33919             return nan ? '' : value;
33920         }
33921         return parseFloat(value).toFixed(this.decimalPrecision);
33922     },
33923
33924     setValue : function(v)
33925     {
33926         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
33927         
33928         this.value = v;
33929         
33930         if(this.rendered){
33931             
33932             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
33933             
33934             this.inputEl().dom.value = (v == '') ? '' :
33935                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
33936             
33937             if(!this.allowZero && v === '0') {
33938                 this.hiddenEl().dom.value = '';
33939                 this.inputEl().dom.value = '';
33940             }
33941             
33942             this.validate();
33943         }
33944     },
33945
33946     decimalPrecisionFcn : function(v)
33947     {
33948         return Math.floor(v);
33949     },
33950
33951     beforeBlur : function()
33952     {
33953         var v = this.parseValue(this.getRawValue());
33954         
33955         if(v || v === 0 || v === ''){
33956             this.setValue(v);
33957         }
33958     },
33959     
33960     hiddenEl : function()
33961     {
33962         return this.el.select('input.hidden-number-input',true).first();
33963     }
33964     
33965 });
33966
33967  
33968
33969 /*
33970 * Licence: LGPL
33971 */
33972
33973 /**
33974  * @class Roo.bootstrap.DocumentSlider
33975  * @extends Roo.bootstrap.Component
33976  * Bootstrap DocumentSlider class
33977  * 
33978  * @constructor
33979  * Create a new DocumentViewer
33980  * @param {Object} config The config object
33981  */
33982
33983 Roo.bootstrap.DocumentSlider = function(config){
33984     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
33985     
33986     this.files = [];
33987     
33988     this.addEvents({
33989         /**
33990          * @event initial
33991          * Fire after initEvent
33992          * @param {Roo.bootstrap.DocumentSlider} this
33993          */
33994         "initial" : true,
33995         /**
33996          * @event update
33997          * Fire after update
33998          * @param {Roo.bootstrap.DocumentSlider} this
33999          */
34000         "update" : true,
34001         /**
34002          * @event click
34003          * Fire after click
34004          * @param {Roo.bootstrap.DocumentSlider} this
34005          */
34006         "click" : true
34007     });
34008 };
34009
34010 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
34011     
34012     files : false,
34013     
34014     indicator : 0,
34015     
34016     getAutoCreate : function()
34017     {
34018         var cfg = {
34019             tag : 'div',
34020             cls : 'roo-document-slider',
34021             cn : [
34022                 {
34023                     tag : 'div',
34024                     cls : 'roo-document-slider-header',
34025                     cn : [
34026                         {
34027                             tag : 'div',
34028                             cls : 'roo-document-slider-header-title'
34029                         }
34030                     ]
34031                 },
34032                 {
34033                     tag : 'div',
34034                     cls : 'roo-document-slider-body',
34035                     cn : [
34036                         {
34037                             tag : 'div',
34038                             cls : 'roo-document-slider-prev',
34039                             cn : [
34040                                 {
34041                                     tag : 'i',
34042                                     cls : 'fa fa-chevron-left'
34043                                 }
34044                             ]
34045                         },
34046                         {
34047                             tag : 'div',
34048                             cls : 'roo-document-slider-thumb',
34049                             cn : [
34050                                 {
34051                                     tag : 'img',
34052                                     cls : 'roo-document-slider-image'
34053                                 }
34054                             ]
34055                         },
34056                         {
34057                             tag : 'div',
34058                             cls : 'roo-document-slider-next',
34059                             cn : [
34060                                 {
34061                                     tag : 'i',
34062                                     cls : 'fa fa-chevron-right'
34063                                 }
34064                             ]
34065                         }
34066                     ]
34067                 }
34068             ]
34069         };
34070         
34071         return cfg;
34072     },
34073     
34074     initEvents : function()
34075     {
34076         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
34077         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
34078         
34079         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
34080         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
34081         
34082         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
34083         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
34084         
34085         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
34086         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
34087         
34088         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
34089         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
34090         
34091         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
34092         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34093         
34094         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
34095         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34096         
34097         this.thumbEl.on('click', this.onClick, this);
34098         
34099         this.prevIndicator.on('click', this.prev, this);
34100         
34101         this.nextIndicator.on('click', this.next, this);
34102         
34103     },
34104     
34105     initial : function()
34106     {
34107         if(this.files.length){
34108             this.indicator = 1;
34109             this.update()
34110         }
34111         
34112         this.fireEvent('initial', this);
34113     },
34114     
34115     update : function()
34116     {
34117         this.imageEl.attr('src', this.files[this.indicator - 1]);
34118         
34119         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
34120         
34121         this.prevIndicator.show();
34122         
34123         if(this.indicator == 1){
34124             this.prevIndicator.hide();
34125         }
34126         
34127         this.nextIndicator.show();
34128         
34129         if(this.indicator == this.files.length){
34130             this.nextIndicator.hide();
34131         }
34132         
34133         this.thumbEl.scrollTo('top');
34134         
34135         this.fireEvent('update', this);
34136     },
34137     
34138     onClick : function(e)
34139     {
34140         e.preventDefault();
34141         
34142         this.fireEvent('click', this);
34143     },
34144     
34145     prev : function(e)
34146     {
34147         e.preventDefault();
34148         
34149         this.indicator = Math.max(1, this.indicator - 1);
34150         
34151         this.update();
34152     },
34153     
34154     next : function(e)
34155     {
34156         e.preventDefault();
34157         
34158         this.indicator = Math.min(this.files.length, this.indicator + 1);
34159         
34160         this.update();
34161     }
34162 });
34163 /*
34164  * - LGPL
34165  *
34166  * RadioSet
34167  *
34168  *
34169  */
34170
34171 /**
34172  * @class Roo.bootstrap.RadioSet
34173  * @extends Roo.bootstrap.Input
34174  * Bootstrap RadioSet class
34175  * @cfg {String} indicatorpos (left|right) default left
34176  * @cfg {Boolean} inline (true|false) inline the element (default true)
34177  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
34178  * @constructor
34179  * Create a new RadioSet
34180  * @param {Object} config The config object
34181  */
34182
34183 Roo.bootstrap.RadioSet = function(config){
34184     
34185     Roo.bootstrap.RadioSet.superclass.constructor.call(this, config);
34186     
34187     this.radioes = [];
34188     
34189     Roo.bootstrap.RadioSet.register(this);
34190     
34191     this.addEvents({
34192         /**
34193         * @event check
34194         * Fires when the element is checked or unchecked.
34195         * @param {Roo.bootstrap.RadioSet} this This radio
34196         * @param {Roo.bootstrap.Radio} item The checked item
34197         */
34198        check : true,
34199        /**
34200         * @event click
34201         * Fires when the element is click.
34202         * @param {Roo.bootstrap.RadioSet} this This radio set
34203         * @param {Roo.bootstrap.Radio} item The checked item
34204         * @param {Roo.EventObject} e The event object
34205         */
34206        click : true
34207     });
34208     
34209 };
34210
34211 Roo.extend(Roo.bootstrap.RadioSet, Roo.bootstrap.Input,  {
34212
34213     radioes : false,
34214     
34215     inline : true,
34216     
34217     weight : '',
34218     
34219     indicatorpos : 'left',
34220     
34221     getAutoCreate : function()
34222     {
34223         var label = {
34224             tag : 'label',
34225             cls : 'roo-radio-set-label',
34226             cn : [
34227                 {
34228                     tag : 'span',
34229                     html : this.fieldLabel
34230                 }
34231             ]
34232         };
34233         if (Roo.bootstrap.version == 3) {
34234             
34235             
34236             if(this.indicatorpos == 'left'){
34237                 label.cn.unshift({
34238                     tag : 'i',
34239                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
34240                     tooltip : 'This field is required'
34241                 });
34242             } else {
34243                 label.cn.push({
34244                     tag : 'i',
34245                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
34246                     tooltip : 'This field is required'
34247                 });
34248             }
34249         }
34250         var items = {
34251             tag : 'div',
34252             cls : 'roo-radio-set-items'
34253         };
34254         
34255         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
34256         
34257         if (align === 'left' && this.fieldLabel.length) {
34258             
34259             items = {
34260                 cls : "roo-radio-set-right", 
34261                 cn: [
34262                     items
34263                 ]
34264             };
34265             
34266             if(this.labelWidth > 12){
34267                 label.style = "width: " + this.labelWidth + 'px';
34268             }
34269             
34270             if(this.labelWidth < 13 && this.labelmd == 0){
34271                 this.labelmd = this.labelWidth;
34272             }
34273             
34274             if(this.labellg > 0){
34275                 label.cls += ' col-lg-' + this.labellg;
34276                 items.cls += ' col-lg-' + (12 - this.labellg);
34277             }
34278             
34279             if(this.labelmd > 0){
34280                 label.cls += ' col-md-' + this.labelmd;
34281                 items.cls += ' col-md-' + (12 - this.labelmd);
34282             }
34283             
34284             if(this.labelsm > 0){
34285                 label.cls += ' col-sm-' + this.labelsm;
34286                 items.cls += ' col-sm-' + (12 - this.labelsm);
34287             }
34288             
34289             if(this.labelxs > 0){
34290                 label.cls += ' col-xs-' + this.labelxs;
34291                 items.cls += ' col-xs-' + (12 - this.labelxs);
34292             }
34293         }
34294         
34295         var cfg = {
34296             tag : 'div',
34297             cls : 'roo-radio-set',
34298             cn : [
34299                 {
34300                     tag : 'input',
34301                     cls : 'roo-radio-set-input',
34302                     type : 'hidden',
34303                     name : this.name,
34304                     value : this.value ? this.value :  ''
34305                 },
34306                 label,
34307                 items
34308             ]
34309         };
34310         
34311         if(this.weight.length){
34312             cfg.cls += ' roo-radio-' + this.weight;
34313         }
34314         
34315         if(this.inline) {
34316             cfg.cls += ' roo-radio-set-inline';
34317         }
34318         
34319         var settings=this;
34320         ['xs','sm','md','lg'].map(function(size){
34321             if (settings[size]) {
34322                 cfg.cls += ' col-' + size + '-' + settings[size];
34323             }
34324         });
34325         
34326         return cfg;
34327         
34328     },
34329
34330     initEvents : function()
34331     {
34332         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
34333         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
34334         
34335         if(!this.fieldLabel.length){
34336             this.labelEl.hide();
34337         }
34338         
34339         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
34340         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
34341         
34342         this.indicator = this.indicatorEl();
34343         
34344         if(this.indicator){
34345             this.indicator.addClass('invisible');
34346         }
34347         
34348         this.originalValue = this.getValue();
34349         
34350     },
34351     
34352     inputEl: function ()
34353     {
34354         return this.el.select('.roo-radio-set-input', true).first();
34355     },
34356     
34357     getChildContainer : function()
34358     {
34359         return this.itemsEl;
34360     },
34361     
34362     register : function(item)
34363     {
34364         this.radioes.push(item);
34365         
34366     },
34367     
34368     validate : function()
34369     {   
34370         if(this.getVisibilityEl().hasClass('hidden')){
34371             return true;
34372         }
34373         
34374         var valid = false;
34375         
34376         Roo.each(this.radioes, function(i){
34377             if(!i.checked){
34378                 return;
34379             }
34380             
34381             valid = true;
34382             return false;
34383         });
34384         
34385         if(this.allowBlank) {
34386             return true;
34387         }
34388         
34389         if(this.disabled || valid){
34390             this.markValid();
34391             return true;
34392         }
34393         
34394         this.markInvalid();
34395         return false;
34396         
34397     },
34398     
34399     markValid : function()
34400     {
34401         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34402             this.indicatorEl().removeClass('visible');
34403             this.indicatorEl().addClass('invisible');
34404         }
34405         
34406         
34407         if (Roo.bootstrap.version == 3) {
34408             this.el.removeClass([this.invalidClass, this.validClass]);
34409             this.el.addClass(this.validClass);
34410         } else {
34411             this.el.removeClass(['is-invalid','is-valid']);
34412             this.el.addClass(['is-valid']);
34413         }
34414         this.fireEvent('valid', this);
34415     },
34416     
34417     markInvalid : function(msg)
34418     {
34419         if(this.allowBlank || this.disabled){
34420             return;
34421         }
34422         
34423         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34424             this.indicatorEl().removeClass('invisible');
34425             this.indicatorEl().addClass('visible');
34426         }
34427         if (Roo.bootstrap.version == 3) {
34428             this.el.removeClass([this.invalidClass, this.validClass]);
34429             this.el.addClass(this.invalidClass);
34430         } else {
34431             this.el.removeClass(['is-invalid','is-valid']);
34432             this.el.addClass(['is-invalid']);
34433         }
34434         
34435         this.fireEvent('invalid', this, msg);
34436         
34437     },
34438     
34439     setValue : function(v, suppressEvent)
34440     {   
34441         if(this.value === v){
34442             return;
34443         }
34444         
34445         this.value = v;
34446         
34447         if(this.rendered){
34448             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
34449         }
34450         
34451         Roo.each(this.radioes, function(i){
34452             i.checked = false;
34453             i.el.removeClass('checked');
34454         });
34455         
34456         Roo.each(this.radioes, function(i){
34457             
34458             if(i.value === v || i.value.toString() === v.toString()){
34459                 i.checked = true;
34460                 i.el.addClass('checked');
34461                 
34462                 if(suppressEvent !== true){
34463                     this.fireEvent('check', this, i);
34464                 }
34465                 
34466                 return false;
34467             }
34468             
34469         }, this);
34470         
34471         this.validate();
34472     },
34473     
34474     clearInvalid : function(){
34475         
34476         if(!this.el || this.preventMark){
34477             return;
34478         }
34479         
34480         this.el.removeClass([this.invalidClass]);
34481         
34482         this.fireEvent('valid', this);
34483     }
34484     
34485 });
34486
34487 Roo.apply(Roo.bootstrap.RadioSet, {
34488     
34489     groups: {},
34490     
34491     register : function(set)
34492     {
34493         this.groups[set.name] = set;
34494     },
34495     
34496     get: function(name) 
34497     {
34498         if (typeof(this.groups[name]) == 'undefined') {
34499             return false;
34500         }
34501         
34502         return this.groups[name] ;
34503     }
34504     
34505 });
34506 /*
34507  * Based on:
34508  * Ext JS Library 1.1.1
34509  * Copyright(c) 2006-2007, Ext JS, LLC.
34510  *
34511  * Originally Released Under LGPL - original licence link has changed is not relivant.
34512  *
34513  * Fork - LGPL
34514  * <script type="text/javascript">
34515  */
34516
34517
34518 /**
34519  * @class Roo.bootstrap.SplitBar
34520  * @extends Roo.util.Observable
34521  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
34522  * <br><br>
34523  * Usage:
34524  * <pre><code>
34525 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
34526                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
34527 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
34528 split.minSize = 100;
34529 split.maxSize = 600;
34530 split.animate = true;
34531 split.on('moved', splitterMoved);
34532 </code></pre>
34533  * @constructor
34534  * Create a new SplitBar
34535  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
34536  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
34537  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34538  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
34539                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
34540                         position of the SplitBar).
34541  */
34542 Roo.bootstrap.SplitBar = function(cfg){
34543     
34544     /** @private */
34545     
34546     //{
34547     //  dragElement : elm
34548     //  resizingElement: el,
34549         // optional..
34550     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
34551     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
34552         // existingProxy ???
34553     //}
34554     
34555     this.el = Roo.get(cfg.dragElement, true);
34556     this.el.dom.unselectable = "on";
34557     /** @private */
34558     this.resizingEl = Roo.get(cfg.resizingElement, true);
34559
34560     /**
34561      * @private
34562      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34563      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
34564      * @type Number
34565      */
34566     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
34567     
34568     /**
34569      * The minimum size of the resizing element. (Defaults to 0)
34570      * @type Number
34571      */
34572     this.minSize = 0;
34573     
34574     /**
34575      * The maximum size of the resizing element. (Defaults to 2000)
34576      * @type Number
34577      */
34578     this.maxSize = 2000;
34579     
34580     /**
34581      * Whether to animate the transition to the new size
34582      * @type Boolean
34583      */
34584     this.animate = false;
34585     
34586     /**
34587      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
34588      * @type Boolean
34589      */
34590     this.useShim = false;
34591     
34592     /** @private */
34593     this.shim = null;
34594     
34595     if(!cfg.existingProxy){
34596         /** @private */
34597         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
34598     }else{
34599         this.proxy = Roo.get(cfg.existingProxy).dom;
34600     }
34601     /** @private */
34602     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
34603     
34604     /** @private */
34605     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
34606     
34607     /** @private */
34608     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
34609     
34610     /** @private */
34611     this.dragSpecs = {};
34612     
34613     /**
34614      * @private The adapter to use to positon and resize elements
34615      */
34616     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34617     this.adapter.init(this);
34618     
34619     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34620         /** @private */
34621         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
34622         this.el.addClass("roo-splitbar-h");
34623     }else{
34624         /** @private */
34625         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
34626         this.el.addClass("roo-splitbar-v");
34627     }
34628     
34629     this.addEvents({
34630         /**
34631          * @event resize
34632          * Fires when the splitter is moved (alias for {@link #event-moved})
34633          * @param {Roo.bootstrap.SplitBar} this
34634          * @param {Number} newSize the new width or height
34635          */
34636         "resize" : true,
34637         /**
34638          * @event moved
34639          * Fires when the splitter is moved
34640          * @param {Roo.bootstrap.SplitBar} this
34641          * @param {Number} newSize the new width or height
34642          */
34643         "moved" : true,
34644         /**
34645          * @event beforeresize
34646          * Fires before the splitter is dragged
34647          * @param {Roo.bootstrap.SplitBar} this
34648          */
34649         "beforeresize" : true,
34650
34651         "beforeapply" : true
34652     });
34653
34654     Roo.util.Observable.call(this);
34655 };
34656
34657 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
34658     onStartProxyDrag : function(x, y){
34659         this.fireEvent("beforeresize", this);
34660         if(!this.overlay){
34661             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
34662             o.unselectable();
34663             o.enableDisplayMode("block");
34664             // all splitbars share the same overlay
34665             Roo.bootstrap.SplitBar.prototype.overlay = o;
34666         }
34667         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34668         this.overlay.show();
34669         Roo.get(this.proxy).setDisplayed("block");
34670         var size = this.adapter.getElementSize(this);
34671         this.activeMinSize = this.getMinimumSize();;
34672         this.activeMaxSize = this.getMaximumSize();;
34673         var c1 = size - this.activeMinSize;
34674         var c2 = Math.max(this.activeMaxSize - size, 0);
34675         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34676             this.dd.resetConstraints();
34677             this.dd.setXConstraint(
34678                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
34679                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
34680             );
34681             this.dd.setYConstraint(0, 0);
34682         }else{
34683             this.dd.resetConstraints();
34684             this.dd.setXConstraint(0, 0);
34685             this.dd.setYConstraint(
34686                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
34687                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
34688             );
34689          }
34690         this.dragSpecs.startSize = size;
34691         this.dragSpecs.startPoint = [x, y];
34692         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
34693     },
34694     
34695     /** 
34696      * @private Called after the drag operation by the DDProxy
34697      */
34698     onEndProxyDrag : function(e){
34699         Roo.get(this.proxy).setDisplayed(false);
34700         var endPoint = Roo.lib.Event.getXY(e);
34701         if(this.overlay){
34702             this.overlay.hide();
34703         }
34704         var newSize;
34705         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34706             newSize = this.dragSpecs.startSize + 
34707                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
34708                     endPoint[0] - this.dragSpecs.startPoint[0] :
34709                     this.dragSpecs.startPoint[0] - endPoint[0]
34710                 );
34711         }else{
34712             newSize = this.dragSpecs.startSize + 
34713                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
34714                     endPoint[1] - this.dragSpecs.startPoint[1] :
34715                     this.dragSpecs.startPoint[1] - endPoint[1]
34716                 );
34717         }
34718         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
34719         if(newSize != this.dragSpecs.startSize){
34720             if(this.fireEvent('beforeapply', this, newSize) !== false){
34721                 this.adapter.setElementSize(this, newSize);
34722                 this.fireEvent("moved", this, newSize);
34723                 this.fireEvent("resize", this, newSize);
34724             }
34725         }
34726     },
34727     
34728     /**
34729      * Get the adapter this SplitBar uses
34730      * @return The adapter object
34731      */
34732     getAdapter : function(){
34733         return this.adapter;
34734     },
34735     
34736     /**
34737      * Set the adapter this SplitBar uses
34738      * @param {Object} adapter A SplitBar adapter object
34739      */
34740     setAdapter : function(adapter){
34741         this.adapter = adapter;
34742         this.adapter.init(this);
34743     },
34744     
34745     /**
34746      * Gets the minimum size for the resizing element
34747      * @return {Number} The minimum size
34748      */
34749     getMinimumSize : function(){
34750         return this.minSize;
34751     },
34752     
34753     /**
34754      * Sets the minimum size for the resizing element
34755      * @param {Number} minSize The minimum size
34756      */
34757     setMinimumSize : function(minSize){
34758         this.minSize = minSize;
34759     },
34760     
34761     /**
34762      * Gets the maximum size for the resizing element
34763      * @return {Number} The maximum size
34764      */
34765     getMaximumSize : function(){
34766         return this.maxSize;
34767     },
34768     
34769     /**
34770      * Sets the maximum size for the resizing element
34771      * @param {Number} maxSize The maximum size
34772      */
34773     setMaximumSize : function(maxSize){
34774         this.maxSize = maxSize;
34775     },
34776     
34777     /**
34778      * Sets the initialize size for the resizing element
34779      * @param {Number} size The initial size
34780      */
34781     setCurrentSize : function(size){
34782         var oldAnimate = this.animate;
34783         this.animate = false;
34784         this.adapter.setElementSize(this, size);
34785         this.animate = oldAnimate;
34786     },
34787     
34788     /**
34789      * Destroy this splitbar. 
34790      * @param {Boolean} removeEl True to remove the element
34791      */
34792     destroy : function(removeEl){
34793         if(this.shim){
34794             this.shim.remove();
34795         }
34796         this.dd.unreg();
34797         this.proxy.parentNode.removeChild(this.proxy);
34798         if(removeEl){
34799             this.el.remove();
34800         }
34801     }
34802 });
34803
34804 /**
34805  * @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.
34806  */
34807 Roo.bootstrap.SplitBar.createProxy = function(dir){
34808     var proxy = new Roo.Element(document.createElement("div"));
34809     proxy.unselectable();
34810     var cls = 'roo-splitbar-proxy';
34811     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
34812     document.body.appendChild(proxy.dom);
34813     return proxy.dom;
34814 };
34815
34816 /** 
34817  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
34818  * Default Adapter. It assumes the splitter and resizing element are not positioned
34819  * elements and only gets/sets the width of the element. Generally used for table based layouts.
34820  */
34821 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
34822 };
34823
34824 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
34825     // do nothing for now
34826     init : function(s){
34827     
34828     },
34829     /**
34830      * Called before drag operations to get the current size of the resizing element. 
34831      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34832      */
34833      getElementSize : function(s){
34834         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34835             return s.resizingEl.getWidth();
34836         }else{
34837             return s.resizingEl.getHeight();
34838         }
34839     },
34840     
34841     /**
34842      * Called after drag operations to set the size of the resizing element.
34843      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34844      * @param {Number} newSize The new size to set
34845      * @param {Function} onComplete A function to be invoked when resizing is complete
34846      */
34847     setElementSize : function(s, newSize, onComplete){
34848         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34849             if(!s.animate){
34850                 s.resizingEl.setWidth(newSize);
34851                 if(onComplete){
34852                     onComplete(s, newSize);
34853                 }
34854             }else{
34855                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
34856             }
34857         }else{
34858             
34859             if(!s.animate){
34860                 s.resizingEl.setHeight(newSize);
34861                 if(onComplete){
34862                     onComplete(s, newSize);
34863                 }
34864             }else{
34865                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
34866             }
34867         }
34868     }
34869 };
34870
34871 /** 
34872  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
34873  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
34874  * Adapter that  moves the splitter element to align with the resized sizing element. 
34875  * Used with an absolute positioned SplitBar.
34876  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
34877  * document.body, make sure you assign an id to the body element.
34878  */
34879 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
34880     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34881     this.container = Roo.get(container);
34882 };
34883
34884 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
34885     init : function(s){
34886         this.basic.init(s);
34887     },
34888     
34889     getElementSize : function(s){
34890         return this.basic.getElementSize(s);
34891     },
34892     
34893     setElementSize : function(s, newSize, onComplete){
34894         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
34895     },
34896     
34897     moveSplitter : function(s){
34898         var yes = Roo.bootstrap.SplitBar;
34899         switch(s.placement){
34900             case yes.LEFT:
34901                 s.el.setX(s.resizingEl.getRight());
34902                 break;
34903             case yes.RIGHT:
34904                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
34905                 break;
34906             case yes.TOP:
34907                 s.el.setY(s.resizingEl.getBottom());
34908                 break;
34909             case yes.BOTTOM:
34910                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
34911                 break;
34912         }
34913     }
34914 };
34915
34916 /**
34917  * Orientation constant - Create a vertical SplitBar
34918  * @static
34919  * @type Number
34920  */
34921 Roo.bootstrap.SplitBar.VERTICAL = 1;
34922
34923 /**
34924  * Orientation constant - Create a horizontal SplitBar
34925  * @static
34926  * @type Number
34927  */
34928 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
34929
34930 /**
34931  * Placement constant - The resizing element is to the left of the splitter element
34932  * @static
34933  * @type Number
34934  */
34935 Roo.bootstrap.SplitBar.LEFT = 1;
34936
34937 /**
34938  * Placement constant - The resizing element is to the right of the splitter element
34939  * @static
34940  * @type Number
34941  */
34942 Roo.bootstrap.SplitBar.RIGHT = 2;
34943
34944 /**
34945  * Placement constant - The resizing element is positioned above the splitter element
34946  * @static
34947  * @type Number
34948  */
34949 Roo.bootstrap.SplitBar.TOP = 3;
34950
34951 /**
34952  * Placement constant - The resizing element is positioned under splitter element
34953  * @static
34954  * @type Number
34955  */
34956 Roo.bootstrap.SplitBar.BOTTOM = 4;
34957 Roo.namespace("Roo.bootstrap.layout");/*
34958  * Based on:
34959  * Ext JS Library 1.1.1
34960  * Copyright(c) 2006-2007, Ext JS, LLC.
34961  *
34962  * Originally Released Under LGPL - original licence link has changed is not relivant.
34963  *
34964  * Fork - LGPL
34965  * <script type="text/javascript">
34966  */
34967
34968 /**
34969  * @class Roo.bootstrap.layout.Manager
34970  * @extends Roo.bootstrap.Component
34971  * Base class for layout managers.
34972  */
34973 Roo.bootstrap.layout.Manager = function(config)
34974 {
34975     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
34976
34977
34978
34979
34980
34981     /** false to disable window resize monitoring @type Boolean */
34982     this.monitorWindowResize = true;
34983     this.regions = {};
34984     this.addEvents({
34985         /**
34986          * @event layout
34987          * Fires when a layout is performed.
34988          * @param {Roo.LayoutManager} this
34989          */
34990         "layout" : true,
34991         /**
34992          * @event regionresized
34993          * Fires when the user resizes a region.
34994          * @param {Roo.LayoutRegion} region The resized region
34995          * @param {Number} newSize The new size (width for east/west, height for north/south)
34996          */
34997         "regionresized" : true,
34998         /**
34999          * @event regioncollapsed
35000          * Fires when a region is collapsed.
35001          * @param {Roo.LayoutRegion} region The collapsed region
35002          */
35003         "regioncollapsed" : true,
35004         /**
35005          * @event regionexpanded
35006          * Fires when a region is expanded.
35007          * @param {Roo.LayoutRegion} region The expanded region
35008          */
35009         "regionexpanded" : true
35010     });
35011     this.updating = false;
35012
35013     if (config.el) {
35014         this.el = Roo.get(config.el);
35015         this.initEvents();
35016     }
35017
35018 };
35019
35020 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
35021
35022
35023     regions : null,
35024
35025     monitorWindowResize : true,
35026
35027
35028     updating : false,
35029
35030
35031     onRender : function(ct, position)
35032     {
35033         if(!this.el){
35034             this.el = Roo.get(ct);
35035             this.initEvents();
35036         }
35037         //this.fireEvent('render',this);
35038     },
35039
35040
35041     initEvents: function()
35042     {
35043
35044
35045         // ie scrollbar fix
35046         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
35047             document.body.scroll = "no";
35048         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
35049             this.el.position('relative');
35050         }
35051         this.id = this.el.id;
35052         this.el.addClass("roo-layout-container");
35053         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35054         if(this.el.dom != document.body ) {
35055             this.el.on('resize', this.layout,this);
35056             this.el.on('show', this.layout,this);
35057         }
35058
35059     },
35060
35061     /**
35062      * Returns true if this layout is currently being updated
35063      * @return {Boolean}
35064      */
35065     isUpdating : function(){
35066         return this.updating;
35067     },
35068
35069     /**
35070      * Suspend the LayoutManager from doing auto-layouts while
35071      * making multiple add or remove calls
35072      */
35073     beginUpdate : function(){
35074         this.updating = true;
35075     },
35076
35077     /**
35078      * Restore auto-layouts and optionally disable the manager from performing a layout
35079      * @param {Boolean} noLayout true to disable a layout update
35080      */
35081     endUpdate : function(noLayout){
35082         this.updating = false;
35083         if(!noLayout){
35084             this.layout();
35085         }
35086     },
35087
35088     layout: function(){
35089         // abstract...
35090     },
35091
35092     onRegionResized : function(region, newSize){
35093         this.fireEvent("regionresized", region, newSize);
35094         this.layout();
35095     },
35096
35097     onRegionCollapsed : function(region){
35098         this.fireEvent("regioncollapsed", region);
35099     },
35100
35101     onRegionExpanded : function(region){
35102         this.fireEvent("regionexpanded", region);
35103     },
35104
35105     /**
35106      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
35107      * performs box-model adjustments.
35108      * @return {Object} The size as an object {width: (the width), height: (the height)}
35109      */
35110     getViewSize : function()
35111     {
35112         var size;
35113         if(this.el.dom != document.body){
35114             size = this.el.getSize();
35115         }else{
35116             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
35117         }
35118         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
35119         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
35120         return size;
35121     },
35122
35123     /**
35124      * Returns the Element this layout is bound to.
35125      * @return {Roo.Element}
35126      */
35127     getEl : function(){
35128         return this.el;
35129     },
35130
35131     /**
35132      * Returns the specified region.
35133      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
35134      * @return {Roo.LayoutRegion}
35135      */
35136     getRegion : function(target){
35137         return this.regions[target.toLowerCase()];
35138     },
35139
35140     onWindowResize : function(){
35141         if(this.monitorWindowResize){
35142             this.layout();
35143         }
35144     }
35145 });
35146 /*
35147  * Based on:
35148  * Ext JS Library 1.1.1
35149  * Copyright(c) 2006-2007, Ext JS, LLC.
35150  *
35151  * Originally Released Under LGPL - original licence link has changed is not relivant.
35152  *
35153  * Fork - LGPL
35154  * <script type="text/javascript">
35155  */
35156 /**
35157  * @class Roo.bootstrap.layout.Border
35158  * @extends Roo.bootstrap.layout.Manager
35159  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
35160  * please see: examples/bootstrap/nested.html<br><br>
35161  
35162 <b>The container the layout is rendered into can be either the body element or any other element.
35163 If it is not the body element, the container needs to either be an absolute positioned element,
35164 or you will need to add "position:relative" to the css of the container.  You will also need to specify
35165 the container size if it is not the body element.</b>
35166
35167 * @constructor
35168 * Create a new Border
35169 * @param {Object} config Configuration options
35170  */
35171 Roo.bootstrap.layout.Border = function(config){
35172     config = config || {};
35173     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
35174     
35175     
35176     
35177     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35178         if(config[region]){
35179             config[region].region = region;
35180             this.addRegion(config[region]);
35181         }
35182     },this);
35183     
35184 };
35185
35186 Roo.bootstrap.layout.Border.regions =  ["north","south","east","west","center"];
35187
35188 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
35189     
35190     parent : false, // this might point to a 'nest' or a ???
35191     
35192     /**
35193      * Creates and adds a new region if it doesn't already exist.
35194      * @param {String} target The target region key (north, south, east, west or center).
35195      * @param {Object} config The regions config object
35196      * @return {BorderLayoutRegion} The new region
35197      */
35198     addRegion : function(config)
35199     {
35200         if(!this.regions[config.region]){
35201             var r = this.factory(config);
35202             this.bindRegion(r);
35203         }
35204         return this.regions[config.region];
35205     },
35206
35207     // private (kinda)
35208     bindRegion : function(r){
35209         this.regions[r.config.region] = r;
35210         
35211         r.on("visibilitychange",    this.layout, this);
35212         r.on("paneladded",          this.layout, this);
35213         r.on("panelremoved",        this.layout, this);
35214         r.on("invalidated",         this.layout, this);
35215         r.on("resized",             this.onRegionResized, this);
35216         r.on("collapsed",           this.onRegionCollapsed, this);
35217         r.on("expanded",            this.onRegionExpanded, this);
35218     },
35219
35220     /**
35221      * Performs a layout update.
35222      */
35223     layout : function()
35224     {
35225         if(this.updating) {
35226             return;
35227         }
35228         
35229         // render all the rebions if they have not been done alreayd?
35230         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35231             if(this.regions[region] && !this.regions[region].bodyEl){
35232                 this.regions[region].onRender(this.el)
35233             }
35234         },this);
35235         
35236         var size = this.getViewSize();
35237         var w = size.width;
35238         var h = size.height;
35239         var centerW = w;
35240         var centerH = h;
35241         var centerY = 0;
35242         var centerX = 0;
35243         //var x = 0, y = 0;
35244
35245         var rs = this.regions;
35246         var north = rs["north"];
35247         var south = rs["south"]; 
35248         var west = rs["west"];
35249         var east = rs["east"];
35250         var center = rs["center"];
35251         //if(this.hideOnLayout){ // not supported anymore
35252             //c.el.setStyle("display", "none");
35253         //}
35254         if(north && north.isVisible()){
35255             var b = north.getBox();
35256             var m = north.getMargins();
35257             b.width = w - (m.left+m.right);
35258             b.x = m.left;
35259             b.y = m.top;
35260             centerY = b.height + b.y + m.bottom;
35261             centerH -= centerY;
35262             north.updateBox(this.safeBox(b));
35263         }
35264         if(south && south.isVisible()){
35265             var b = south.getBox();
35266             var m = south.getMargins();
35267             b.width = w - (m.left+m.right);
35268             b.x = m.left;
35269             var totalHeight = (b.height + m.top + m.bottom);
35270             b.y = h - totalHeight + m.top;
35271             centerH -= totalHeight;
35272             south.updateBox(this.safeBox(b));
35273         }
35274         if(west && west.isVisible()){
35275             var b = west.getBox();
35276             var m = west.getMargins();
35277             b.height = centerH - (m.top+m.bottom);
35278             b.x = m.left;
35279             b.y = centerY + m.top;
35280             var totalWidth = (b.width + m.left + m.right);
35281             centerX += totalWidth;
35282             centerW -= totalWidth;
35283             west.updateBox(this.safeBox(b));
35284         }
35285         if(east && east.isVisible()){
35286             var b = east.getBox();
35287             var m = east.getMargins();
35288             b.height = centerH - (m.top+m.bottom);
35289             var totalWidth = (b.width + m.left + m.right);
35290             b.x = w - totalWidth + m.left;
35291             b.y = centerY + m.top;
35292             centerW -= totalWidth;
35293             east.updateBox(this.safeBox(b));
35294         }
35295         if(center){
35296             var m = center.getMargins();
35297             var centerBox = {
35298                 x: centerX + m.left,
35299                 y: centerY + m.top,
35300                 width: centerW - (m.left+m.right),
35301                 height: centerH - (m.top+m.bottom)
35302             };
35303             //if(this.hideOnLayout){
35304                 //center.el.setStyle("display", "block");
35305             //}
35306             center.updateBox(this.safeBox(centerBox));
35307         }
35308         this.el.repaint();
35309         this.fireEvent("layout", this);
35310     },
35311
35312     // private
35313     safeBox : function(box){
35314         box.width = Math.max(0, box.width);
35315         box.height = Math.max(0, box.height);
35316         return box;
35317     },
35318
35319     /**
35320      * Adds a ContentPanel (or subclass) to this layout.
35321      * @param {String} target The target region key (north, south, east, west or center).
35322      * @param {Roo.ContentPanel} panel The panel to add
35323      * @return {Roo.ContentPanel} The added panel
35324      */
35325     add : function(target, panel){
35326          
35327         target = target.toLowerCase();
35328         return this.regions[target].add(panel);
35329     },
35330
35331     /**
35332      * Remove a ContentPanel (or subclass) to this layout.
35333      * @param {String} target The target region key (north, south, east, west or center).
35334      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
35335      * @return {Roo.ContentPanel} The removed panel
35336      */
35337     remove : function(target, panel){
35338         target = target.toLowerCase();
35339         return this.regions[target].remove(panel);
35340     },
35341
35342     /**
35343      * Searches all regions for a panel with the specified id
35344      * @param {String} panelId
35345      * @return {Roo.ContentPanel} The panel or null if it wasn't found
35346      */
35347     findPanel : function(panelId){
35348         var rs = this.regions;
35349         for(var target in rs){
35350             if(typeof rs[target] != "function"){
35351                 var p = rs[target].getPanel(panelId);
35352                 if(p){
35353                     return p;
35354                 }
35355             }
35356         }
35357         return null;
35358     },
35359
35360     /**
35361      * Searches all regions for a panel with the specified id and activates (shows) it.
35362      * @param {String/ContentPanel} panelId The panels id or the panel itself
35363      * @return {Roo.ContentPanel} The shown panel or null
35364      */
35365     showPanel : function(panelId) {
35366       var rs = this.regions;
35367       for(var target in rs){
35368          var r = rs[target];
35369          if(typeof r != "function"){
35370             if(r.hasPanel(panelId)){
35371                return r.showPanel(panelId);
35372             }
35373          }
35374       }
35375       return null;
35376    },
35377
35378    /**
35379      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
35380      * @param {Roo.state.Provider} provider (optional) An alternate state provider
35381      */
35382    /*
35383     restoreState : function(provider){
35384         if(!provider){
35385             provider = Roo.state.Manager;
35386         }
35387         var sm = new Roo.LayoutStateManager();
35388         sm.init(this, provider);
35389     },
35390 */
35391  
35392  
35393     /**
35394      * Adds a xtype elements to the layout.
35395      * <pre><code>
35396
35397 layout.addxtype({
35398        xtype : 'ContentPanel',
35399        region: 'west',
35400        items: [ .... ]
35401    }
35402 );
35403
35404 layout.addxtype({
35405         xtype : 'NestedLayoutPanel',
35406         region: 'west',
35407         layout: {
35408            center: { },
35409            west: { }   
35410         },
35411         items : [ ... list of content panels or nested layout panels.. ]
35412    }
35413 );
35414 </code></pre>
35415      * @param {Object} cfg Xtype definition of item to add.
35416      */
35417     addxtype : function(cfg)
35418     {
35419         // basically accepts a pannel...
35420         // can accept a layout region..!?!?
35421         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
35422         
35423         
35424         // theory?  children can only be panels??
35425         
35426         //if (!cfg.xtype.match(/Panel$/)) {
35427         //    return false;
35428         //}
35429         var ret = false;
35430         
35431         if (typeof(cfg.region) == 'undefined') {
35432             Roo.log("Failed to add Panel, region was not set");
35433             Roo.log(cfg);
35434             return false;
35435         }
35436         var region = cfg.region;
35437         delete cfg.region;
35438         
35439           
35440         var xitems = [];
35441         if (cfg.items) {
35442             xitems = cfg.items;
35443             delete cfg.items;
35444         }
35445         var nb = false;
35446         
35447         if ( region == 'center') {
35448             Roo.log("Center: " + cfg.title);
35449         }
35450         
35451         
35452         switch(cfg.xtype) 
35453         {
35454             case 'Content':  // ContentPanel (el, cfg)
35455             case 'Scroll':  // ContentPanel (el, cfg)
35456             case 'View': 
35457                 cfg.autoCreate = cfg.autoCreate || true;
35458                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35459                 //} else {
35460                 //    var el = this.el.createChild();
35461                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
35462                 //}
35463                 
35464                 this.add(region, ret);
35465                 break;
35466             
35467             /*
35468             case 'TreePanel': // our new panel!
35469                 cfg.el = this.el.createChild();
35470                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35471                 this.add(region, ret);
35472                 break;
35473             */
35474             
35475             case 'Nest': 
35476                 // create a new Layout (which is  a Border Layout...
35477                 
35478                 var clayout = cfg.layout;
35479                 clayout.el  = this.el.createChild();
35480                 clayout.items   = clayout.items  || [];
35481                 
35482                 delete cfg.layout;
35483                 
35484                 // replace this exitems with the clayout ones..
35485                 xitems = clayout.items;
35486                  
35487                 // force background off if it's in center...
35488                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
35489                     cfg.background = false;
35490                 }
35491                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
35492                 
35493                 
35494                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35495                 //console.log('adding nested layout panel '  + cfg.toSource());
35496                 this.add(region, ret);
35497                 nb = {}; /// find first...
35498                 break;
35499             
35500             case 'Grid':
35501                 
35502                 // needs grid and region
35503                 
35504                 //var el = this.getRegion(region).el.createChild();
35505                 /*
35506                  *var el = this.el.createChild();
35507                 // create the grid first...
35508                 cfg.grid.container = el;
35509                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
35510                 */
35511                 
35512                 if (region == 'center' && this.active ) {
35513                     cfg.background = false;
35514                 }
35515                 
35516                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35517                 
35518                 this.add(region, ret);
35519                 /*
35520                 if (cfg.background) {
35521                     // render grid on panel activation (if panel background)
35522                     ret.on('activate', function(gp) {
35523                         if (!gp.grid.rendered) {
35524                     //        gp.grid.render(el);
35525                         }
35526                     });
35527                 } else {
35528                   //  cfg.grid.render(el);
35529                 }
35530                 */
35531                 break;
35532            
35533            
35534             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
35535                 // it was the old xcomponent building that caused this before.
35536                 // espeically if border is the top element in the tree.
35537                 ret = this;
35538                 break; 
35539                 
35540                     
35541                 
35542                 
35543                 
35544             default:
35545                 /*
35546                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
35547                     
35548                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35549                     this.add(region, ret);
35550                 } else {
35551                 */
35552                     Roo.log(cfg);
35553                     throw "Can not add '" + cfg.xtype + "' to Border";
35554                     return null;
35555              
35556                                 
35557              
35558         }
35559         this.beginUpdate();
35560         // add children..
35561         var region = '';
35562         var abn = {};
35563         Roo.each(xitems, function(i)  {
35564             region = nb && i.region ? i.region : false;
35565             
35566             var add = ret.addxtype(i);
35567            
35568             if (region) {
35569                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
35570                 if (!i.background) {
35571                     abn[region] = nb[region] ;
35572                 }
35573             }
35574             
35575         });
35576         this.endUpdate();
35577
35578         // make the last non-background panel active..
35579         //if (nb) { Roo.log(abn); }
35580         if (nb) {
35581             
35582             for(var r in abn) {
35583                 region = this.getRegion(r);
35584                 if (region) {
35585                     // tried using nb[r], but it does not work..
35586                      
35587                     region.showPanel(abn[r]);
35588                    
35589                 }
35590             }
35591         }
35592         return ret;
35593         
35594     },
35595     
35596     
35597 // private
35598     factory : function(cfg)
35599     {
35600         
35601         var validRegions = Roo.bootstrap.layout.Border.regions;
35602
35603         var target = cfg.region;
35604         cfg.mgr = this;
35605         
35606         var r = Roo.bootstrap.layout;
35607         Roo.log(target);
35608         switch(target){
35609             case "north":
35610                 return new r.North(cfg);
35611             case "south":
35612                 return new r.South(cfg);
35613             case "east":
35614                 return new r.East(cfg);
35615             case "west":
35616                 return new r.West(cfg);
35617             case "center":
35618                 return new r.Center(cfg);
35619         }
35620         throw 'Layout region "'+target+'" not supported.';
35621     }
35622     
35623     
35624 });
35625  /*
35626  * Based on:
35627  * Ext JS Library 1.1.1
35628  * Copyright(c) 2006-2007, Ext JS, LLC.
35629  *
35630  * Originally Released Under LGPL - original licence link has changed is not relivant.
35631  *
35632  * Fork - LGPL
35633  * <script type="text/javascript">
35634  */
35635  
35636 /**
35637  * @class Roo.bootstrap.layout.Basic
35638  * @extends Roo.util.Observable
35639  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
35640  * and does not have a titlebar, tabs or any other features. All it does is size and position 
35641  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
35642  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35643  * @cfg {string}   region  the region that it inhabits..
35644  * @cfg {bool}   skipConfig skip config?
35645  * 
35646
35647  */
35648 Roo.bootstrap.layout.Basic = function(config){
35649     
35650     this.mgr = config.mgr;
35651     
35652     this.position = config.region;
35653     
35654     var skipConfig = config.skipConfig;
35655     
35656     this.events = {
35657         /**
35658          * @scope Roo.BasicLayoutRegion
35659          */
35660         
35661         /**
35662          * @event beforeremove
35663          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
35664          * @param {Roo.LayoutRegion} this
35665          * @param {Roo.ContentPanel} panel The panel
35666          * @param {Object} e The cancel event object
35667          */
35668         "beforeremove" : true,
35669         /**
35670          * @event invalidated
35671          * Fires when the layout for this region is changed.
35672          * @param {Roo.LayoutRegion} this
35673          */
35674         "invalidated" : true,
35675         /**
35676          * @event visibilitychange
35677          * Fires when this region is shown or hidden 
35678          * @param {Roo.LayoutRegion} this
35679          * @param {Boolean} visibility true or false
35680          */
35681         "visibilitychange" : true,
35682         /**
35683          * @event paneladded
35684          * Fires when a panel is added. 
35685          * @param {Roo.LayoutRegion} this
35686          * @param {Roo.ContentPanel} panel The panel
35687          */
35688         "paneladded" : true,
35689         /**
35690          * @event panelremoved
35691          * Fires when a panel is removed. 
35692          * @param {Roo.LayoutRegion} this
35693          * @param {Roo.ContentPanel} panel The panel
35694          */
35695         "panelremoved" : true,
35696         /**
35697          * @event beforecollapse
35698          * Fires when this region before collapse.
35699          * @param {Roo.LayoutRegion} this
35700          */
35701         "beforecollapse" : true,
35702         /**
35703          * @event collapsed
35704          * Fires when this region is collapsed.
35705          * @param {Roo.LayoutRegion} this
35706          */
35707         "collapsed" : true,
35708         /**
35709          * @event expanded
35710          * Fires when this region is expanded.
35711          * @param {Roo.LayoutRegion} this
35712          */
35713         "expanded" : true,
35714         /**
35715          * @event slideshow
35716          * Fires when this region is slid into view.
35717          * @param {Roo.LayoutRegion} this
35718          */
35719         "slideshow" : true,
35720         /**
35721          * @event slidehide
35722          * Fires when this region slides out of view. 
35723          * @param {Roo.LayoutRegion} this
35724          */
35725         "slidehide" : true,
35726         /**
35727          * @event panelactivated
35728          * Fires when a panel is activated. 
35729          * @param {Roo.LayoutRegion} this
35730          * @param {Roo.ContentPanel} panel The activated panel
35731          */
35732         "panelactivated" : true,
35733         /**
35734          * @event resized
35735          * Fires when the user resizes this region. 
35736          * @param {Roo.LayoutRegion} this
35737          * @param {Number} newSize The new size (width for east/west, height for north/south)
35738          */
35739         "resized" : true
35740     };
35741     /** A collection of panels in this region. @type Roo.util.MixedCollection */
35742     this.panels = new Roo.util.MixedCollection();
35743     this.panels.getKey = this.getPanelId.createDelegate(this);
35744     this.box = null;
35745     this.activePanel = null;
35746     // ensure listeners are added...
35747     
35748     if (config.listeners || config.events) {
35749         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
35750             listeners : config.listeners || {},
35751             events : config.events || {}
35752         });
35753     }
35754     
35755     if(skipConfig !== true){
35756         this.applyConfig(config);
35757     }
35758 };
35759
35760 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
35761 {
35762     getPanelId : function(p){
35763         return p.getId();
35764     },
35765     
35766     applyConfig : function(config){
35767         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
35768         this.config = config;
35769         
35770     },
35771     
35772     /**
35773      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
35774      * the width, for horizontal (north, south) the height.
35775      * @param {Number} newSize The new width or height
35776      */
35777     resizeTo : function(newSize){
35778         var el = this.el ? this.el :
35779                  (this.activePanel ? this.activePanel.getEl() : null);
35780         if(el){
35781             switch(this.position){
35782                 case "east":
35783                 case "west":
35784                     el.setWidth(newSize);
35785                     this.fireEvent("resized", this, newSize);
35786                 break;
35787                 case "north":
35788                 case "south":
35789                     el.setHeight(newSize);
35790                     this.fireEvent("resized", this, newSize);
35791                 break;                
35792             }
35793         }
35794     },
35795     
35796     getBox : function(){
35797         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
35798     },
35799     
35800     getMargins : function(){
35801         return this.margins;
35802     },
35803     
35804     updateBox : function(box){
35805         this.box = box;
35806         var el = this.activePanel.getEl();
35807         el.dom.style.left = box.x + "px";
35808         el.dom.style.top = box.y + "px";
35809         this.activePanel.setSize(box.width, box.height);
35810     },
35811     
35812     /**
35813      * Returns the container element for this region.
35814      * @return {Roo.Element}
35815      */
35816     getEl : function(){
35817         return this.activePanel;
35818     },
35819     
35820     /**
35821      * Returns true if this region is currently visible.
35822      * @return {Boolean}
35823      */
35824     isVisible : function(){
35825         return this.activePanel ? true : false;
35826     },
35827     
35828     setActivePanel : function(panel){
35829         panel = this.getPanel(panel);
35830         if(this.activePanel && this.activePanel != panel){
35831             this.activePanel.setActiveState(false);
35832             this.activePanel.getEl().setLeftTop(-10000,-10000);
35833         }
35834         this.activePanel = panel;
35835         panel.setActiveState(true);
35836         if(this.box){
35837             panel.setSize(this.box.width, this.box.height);
35838         }
35839         this.fireEvent("panelactivated", this, panel);
35840         this.fireEvent("invalidated");
35841     },
35842     
35843     /**
35844      * Show the specified panel.
35845      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
35846      * @return {Roo.ContentPanel} The shown panel or null
35847      */
35848     showPanel : function(panel){
35849         panel = this.getPanel(panel);
35850         if(panel){
35851             this.setActivePanel(panel);
35852         }
35853         return panel;
35854     },
35855     
35856     /**
35857      * Get the active panel for this region.
35858      * @return {Roo.ContentPanel} The active panel or null
35859      */
35860     getActivePanel : function(){
35861         return this.activePanel;
35862     },
35863     
35864     /**
35865      * Add the passed ContentPanel(s)
35866      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
35867      * @return {Roo.ContentPanel} The panel added (if only one was added)
35868      */
35869     add : function(panel){
35870         if(arguments.length > 1){
35871             for(var i = 0, len = arguments.length; i < len; i++) {
35872                 this.add(arguments[i]);
35873             }
35874             return null;
35875         }
35876         if(this.hasPanel(panel)){
35877             this.showPanel(panel);
35878             return panel;
35879         }
35880         var el = panel.getEl();
35881         if(el.dom.parentNode != this.mgr.el.dom){
35882             this.mgr.el.dom.appendChild(el.dom);
35883         }
35884         if(panel.setRegion){
35885             panel.setRegion(this);
35886         }
35887         this.panels.add(panel);
35888         el.setStyle("position", "absolute");
35889         if(!panel.background){
35890             this.setActivePanel(panel);
35891             if(this.config.initialSize && this.panels.getCount()==1){
35892                 this.resizeTo(this.config.initialSize);
35893             }
35894         }
35895         this.fireEvent("paneladded", this, panel);
35896         return panel;
35897     },
35898     
35899     /**
35900      * Returns true if the panel is in this region.
35901      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35902      * @return {Boolean}
35903      */
35904     hasPanel : function(panel){
35905         if(typeof panel == "object"){ // must be panel obj
35906             panel = panel.getId();
35907         }
35908         return this.getPanel(panel) ? true : false;
35909     },
35910     
35911     /**
35912      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
35913      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35914      * @param {Boolean} preservePanel Overrides the config preservePanel option
35915      * @return {Roo.ContentPanel} The panel that was removed
35916      */
35917     remove : function(panel, preservePanel){
35918         panel = this.getPanel(panel);
35919         if(!panel){
35920             return null;
35921         }
35922         var e = {};
35923         this.fireEvent("beforeremove", this, panel, e);
35924         if(e.cancel === true){
35925             return null;
35926         }
35927         var panelId = panel.getId();
35928         this.panels.removeKey(panelId);
35929         return panel;
35930     },
35931     
35932     /**
35933      * Returns the panel specified or null if it's not in this region.
35934      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35935      * @return {Roo.ContentPanel}
35936      */
35937     getPanel : function(id){
35938         if(typeof id == "object"){ // must be panel obj
35939             return id;
35940         }
35941         return this.panels.get(id);
35942     },
35943     
35944     /**
35945      * Returns this regions position (north/south/east/west/center).
35946      * @return {String} 
35947      */
35948     getPosition: function(){
35949         return this.position;    
35950     }
35951 });/*
35952  * Based on:
35953  * Ext JS Library 1.1.1
35954  * Copyright(c) 2006-2007, Ext JS, LLC.
35955  *
35956  * Originally Released Under LGPL - original licence link has changed is not relivant.
35957  *
35958  * Fork - LGPL
35959  * <script type="text/javascript">
35960  */
35961  
35962 /**
35963  * @class Roo.bootstrap.layout.Region
35964  * @extends Roo.bootstrap.layout.Basic
35965  * This class represents a region in a layout manager.
35966  
35967  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
35968  * @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})
35969  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
35970  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
35971  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
35972  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
35973  * @cfg {String}    title           The title for the region (overrides panel titles)
35974  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
35975  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
35976  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
35977  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
35978  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
35979  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
35980  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
35981  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
35982  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
35983  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
35984
35985  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
35986  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
35987  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
35988  * @cfg {Number}    width           For East/West panels
35989  * @cfg {Number}    height          For North/South panels
35990  * @cfg {Boolean}   split           To show the splitter
35991  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
35992  * 
35993  * @cfg {string}   cls             Extra CSS classes to add to region
35994  * 
35995  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35996  * @cfg {string}   region  the region that it inhabits..
35997  *
35998
35999  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
36000  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
36001
36002  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
36003  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
36004  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
36005  */
36006 Roo.bootstrap.layout.Region = function(config)
36007 {
36008     this.applyConfig(config);
36009
36010     var mgr = config.mgr;
36011     var pos = config.region;
36012     config.skipConfig = true;
36013     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
36014     
36015     if (mgr.el) {
36016         this.onRender(mgr.el);   
36017     }
36018      
36019     this.visible = true;
36020     this.collapsed = false;
36021     this.unrendered_panels = [];
36022 };
36023
36024 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
36025
36026     position: '', // set by wrapper (eg. north/south etc..)
36027     unrendered_panels : null,  // unrendered panels.
36028     
36029     tabPosition : false,
36030     
36031     mgr: false, // points to 'Border'
36032     
36033     
36034     createBody : function(){
36035         /** This region's body element 
36036         * @type Roo.Element */
36037         this.bodyEl = this.el.createChild({
36038                 tag: "div",
36039                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
36040         });
36041     },
36042
36043     onRender: function(ctr, pos)
36044     {
36045         var dh = Roo.DomHelper;
36046         /** This region's container element 
36047         * @type Roo.Element */
36048         this.el = dh.append(ctr.dom, {
36049                 tag: "div",
36050                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
36051             }, true);
36052         /** This region's title element 
36053         * @type Roo.Element */
36054     
36055         this.titleEl = dh.append(this.el.dom,  {
36056                 tag: "div",
36057                 unselectable: "on",
36058                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
36059                 children:[
36060                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
36061                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
36062                 ]
36063             }, true);
36064         
36065         this.titleEl.enableDisplayMode();
36066         /** This region's title text element 
36067         * @type HTMLElement */
36068         this.titleTextEl = this.titleEl.dom.firstChild;
36069         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
36070         /*
36071         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
36072         this.closeBtn.enableDisplayMode();
36073         this.closeBtn.on("click", this.closeClicked, this);
36074         this.closeBtn.hide();
36075     */
36076         this.createBody(this.config);
36077         if(this.config.hideWhenEmpty){
36078             this.hide();
36079             this.on("paneladded", this.validateVisibility, this);
36080             this.on("panelremoved", this.validateVisibility, this);
36081         }
36082         if(this.autoScroll){
36083             this.bodyEl.setStyle("overflow", "auto");
36084         }else{
36085             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
36086         }
36087         //if(c.titlebar !== false){
36088             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
36089                 this.titleEl.hide();
36090             }else{
36091                 this.titleEl.show();
36092                 if(this.config.title){
36093                     this.titleTextEl.innerHTML = this.config.title;
36094                 }
36095             }
36096         //}
36097         if(this.config.collapsed){
36098             this.collapse(true);
36099         }
36100         if(this.config.hidden){
36101             this.hide();
36102         }
36103         
36104         if (this.unrendered_panels && this.unrendered_panels.length) {
36105             for (var i =0;i< this.unrendered_panels.length; i++) {
36106                 this.add(this.unrendered_panels[i]);
36107             }
36108             this.unrendered_panels = null;
36109             
36110         }
36111         
36112     },
36113     
36114     applyConfig : function(c)
36115     {
36116         /*
36117          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
36118             var dh = Roo.DomHelper;
36119             if(c.titlebar !== false){
36120                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
36121                 this.collapseBtn.on("click", this.collapse, this);
36122                 this.collapseBtn.enableDisplayMode();
36123                 /*
36124                 if(c.showPin === true || this.showPin){
36125                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
36126                     this.stickBtn.enableDisplayMode();
36127                     this.stickBtn.on("click", this.expand, this);
36128                     this.stickBtn.hide();
36129                 }
36130                 
36131             }
36132             */
36133             /** This region's collapsed element
36134             * @type Roo.Element */
36135             /*
36136              *
36137             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
36138                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
36139             ]}, true);
36140             
36141             if(c.floatable !== false){
36142                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
36143                this.collapsedEl.on("click", this.collapseClick, this);
36144             }
36145
36146             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
36147                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
36148                    id: "message", unselectable: "on", style:{"float":"left"}});
36149                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
36150              }
36151             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
36152             this.expandBtn.on("click", this.expand, this);
36153             
36154         }
36155         
36156         if(this.collapseBtn){
36157             this.collapseBtn.setVisible(c.collapsible == true);
36158         }
36159         
36160         this.cmargins = c.cmargins || this.cmargins ||
36161                          (this.position == "west" || this.position == "east" ?
36162                              {top: 0, left: 2, right:2, bottom: 0} :
36163                              {top: 2, left: 0, right:0, bottom: 2});
36164         */
36165         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
36166         
36167         
36168         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
36169         
36170         this.autoScroll = c.autoScroll || false;
36171         
36172         
36173        
36174         
36175         this.duration = c.duration || .30;
36176         this.slideDuration = c.slideDuration || .45;
36177         this.config = c;
36178        
36179     },
36180     /**
36181      * Returns true if this region is currently visible.
36182      * @return {Boolean}
36183      */
36184     isVisible : function(){
36185         return this.visible;
36186     },
36187
36188     /**
36189      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
36190      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
36191      */
36192     //setCollapsedTitle : function(title){
36193     //    title = title || "&#160;";
36194      //   if(this.collapsedTitleTextEl){
36195       //      this.collapsedTitleTextEl.innerHTML = title;
36196        // }
36197     //},
36198
36199     getBox : function(){
36200         var b;
36201       //  if(!this.collapsed){
36202             b = this.el.getBox(false, true);
36203        // }else{
36204           //  b = this.collapsedEl.getBox(false, true);
36205         //}
36206         return b;
36207     },
36208
36209     getMargins : function(){
36210         return this.margins;
36211         //return this.collapsed ? this.cmargins : this.margins;
36212     },
36213 /*
36214     highlight : function(){
36215         this.el.addClass("x-layout-panel-dragover");
36216     },
36217
36218     unhighlight : function(){
36219         this.el.removeClass("x-layout-panel-dragover");
36220     },
36221 */
36222     updateBox : function(box)
36223     {
36224         if (!this.bodyEl) {
36225             return; // not rendered yet..
36226         }
36227         
36228         this.box = box;
36229         if(!this.collapsed){
36230             this.el.dom.style.left = box.x + "px";
36231             this.el.dom.style.top = box.y + "px";
36232             this.updateBody(box.width, box.height);
36233         }else{
36234             this.collapsedEl.dom.style.left = box.x + "px";
36235             this.collapsedEl.dom.style.top = box.y + "px";
36236             this.collapsedEl.setSize(box.width, box.height);
36237         }
36238         if(this.tabs){
36239             this.tabs.autoSizeTabs();
36240         }
36241     },
36242
36243     updateBody : function(w, h)
36244     {
36245         if(w !== null){
36246             this.el.setWidth(w);
36247             w -= this.el.getBorderWidth("rl");
36248             if(this.config.adjustments){
36249                 w += this.config.adjustments[0];
36250             }
36251         }
36252         if(h !== null && h > 0){
36253             this.el.setHeight(h);
36254             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
36255             h -= this.el.getBorderWidth("tb");
36256             if(this.config.adjustments){
36257                 h += this.config.adjustments[1];
36258             }
36259             this.bodyEl.setHeight(h);
36260             if(this.tabs){
36261                 h = this.tabs.syncHeight(h);
36262             }
36263         }
36264         if(this.panelSize){
36265             w = w !== null ? w : this.panelSize.width;
36266             h = h !== null ? h : this.panelSize.height;
36267         }
36268         if(this.activePanel){
36269             var el = this.activePanel.getEl();
36270             w = w !== null ? w : el.getWidth();
36271             h = h !== null ? h : el.getHeight();
36272             this.panelSize = {width: w, height: h};
36273             this.activePanel.setSize(w, h);
36274         }
36275         if(Roo.isIE && this.tabs){
36276             this.tabs.el.repaint();
36277         }
36278     },
36279
36280     /**
36281      * Returns the container element for this region.
36282      * @return {Roo.Element}
36283      */
36284     getEl : function(){
36285         return this.el;
36286     },
36287
36288     /**
36289      * Hides this region.
36290      */
36291     hide : function(){
36292         //if(!this.collapsed){
36293             this.el.dom.style.left = "-2000px";
36294             this.el.hide();
36295         //}else{
36296          //   this.collapsedEl.dom.style.left = "-2000px";
36297          //   this.collapsedEl.hide();
36298        // }
36299         this.visible = false;
36300         this.fireEvent("visibilitychange", this, false);
36301     },
36302
36303     /**
36304      * Shows this region if it was previously hidden.
36305      */
36306     show : function(){
36307         //if(!this.collapsed){
36308             this.el.show();
36309         //}else{
36310         //    this.collapsedEl.show();
36311        // }
36312         this.visible = true;
36313         this.fireEvent("visibilitychange", this, true);
36314     },
36315 /*
36316     closeClicked : function(){
36317         if(this.activePanel){
36318             this.remove(this.activePanel);
36319         }
36320     },
36321
36322     collapseClick : function(e){
36323         if(this.isSlid){
36324            e.stopPropagation();
36325            this.slideIn();
36326         }else{
36327            e.stopPropagation();
36328            this.slideOut();
36329         }
36330     },
36331 */
36332     /**
36333      * Collapses this region.
36334      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
36335      */
36336     /*
36337     collapse : function(skipAnim, skipCheck = false){
36338         if(this.collapsed) {
36339             return;
36340         }
36341         
36342         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
36343             
36344             this.collapsed = true;
36345             if(this.split){
36346                 this.split.el.hide();
36347             }
36348             if(this.config.animate && skipAnim !== true){
36349                 this.fireEvent("invalidated", this);
36350                 this.animateCollapse();
36351             }else{
36352                 this.el.setLocation(-20000,-20000);
36353                 this.el.hide();
36354                 this.collapsedEl.show();
36355                 this.fireEvent("collapsed", this);
36356                 this.fireEvent("invalidated", this);
36357             }
36358         }
36359         
36360     },
36361 */
36362     animateCollapse : function(){
36363         // overridden
36364     },
36365
36366     /**
36367      * Expands this region if it was previously collapsed.
36368      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
36369      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
36370      */
36371     /*
36372     expand : function(e, skipAnim){
36373         if(e) {
36374             e.stopPropagation();
36375         }
36376         if(!this.collapsed || this.el.hasActiveFx()) {
36377             return;
36378         }
36379         if(this.isSlid){
36380             this.afterSlideIn();
36381             skipAnim = true;
36382         }
36383         this.collapsed = false;
36384         if(this.config.animate && skipAnim !== true){
36385             this.animateExpand();
36386         }else{
36387             this.el.show();
36388             if(this.split){
36389                 this.split.el.show();
36390             }
36391             this.collapsedEl.setLocation(-2000,-2000);
36392             this.collapsedEl.hide();
36393             this.fireEvent("invalidated", this);
36394             this.fireEvent("expanded", this);
36395         }
36396     },
36397 */
36398     animateExpand : function(){
36399         // overridden
36400     },
36401
36402     initTabs : function()
36403     {
36404         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
36405         
36406         var ts = new Roo.bootstrap.panel.Tabs({
36407             el: this.bodyEl.dom,
36408             region : this,
36409             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
36410             disableTooltips: this.config.disableTabTips,
36411             toolbar : this.config.toolbar
36412         });
36413         
36414         if(this.config.hideTabs){
36415             ts.stripWrap.setDisplayed(false);
36416         }
36417         this.tabs = ts;
36418         ts.resizeTabs = this.config.resizeTabs === true;
36419         ts.minTabWidth = this.config.minTabWidth || 40;
36420         ts.maxTabWidth = this.config.maxTabWidth || 250;
36421         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
36422         ts.monitorResize = false;
36423         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
36424         ts.bodyEl.addClass('roo-layout-tabs-body');
36425         this.panels.each(this.initPanelAsTab, this);
36426     },
36427
36428     initPanelAsTab : function(panel){
36429         var ti = this.tabs.addTab(
36430             panel.getEl().id,
36431             panel.getTitle(),
36432             null,
36433             this.config.closeOnTab && panel.isClosable(),
36434             panel.tpl
36435         );
36436         if(panel.tabTip !== undefined){
36437             ti.setTooltip(panel.tabTip);
36438         }
36439         ti.on("activate", function(){
36440               this.setActivePanel(panel);
36441         }, this);
36442         
36443         if(this.config.closeOnTab){
36444             ti.on("beforeclose", function(t, e){
36445                 e.cancel = true;
36446                 this.remove(panel);
36447             }, this);
36448         }
36449         
36450         panel.tabItem = ti;
36451         
36452         return ti;
36453     },
36454
36455     updatePanelTitle : function(panel, title)
36456     {
36457         if(this.activePanel == panel){
36458             this.updateTitle(title);
36459         }
36460         if(this.tabs){
36461             var ti = this.tabs.getTab(panel.getEl().id);
36462             ti.setText(title);
36463             if(panel.tabTip !== undefined){
36464                 ti.setTooltip(panel.tabTip);
36465             }
36466         }
36467     },
36468
36469     updateTitle : function(title){
36470         if(this.titleTextEl && !this.config.title){
36471             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
36472         }
36473     },
36474
36475     setActivePanel : function(panel)
36476     {
36477         panel = this.getPanel(panel);
36478         if(this.activePanel && this.activePanel != panel){
36479             if(this.activePanel.setActiveState(false) === false){
36480                 return;
36481             }
36482         }
36483         this.activePanel = panel;
36484         panel.setActiveState(true);
36485         if(this.panelSize){
36486             panel.setSize(this.panelSize.width, this.panelSize.height);
36487         }
36488         if(this.closeBtn){
36489             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
36490         }
36491         this.updateTitle(panel.getTitle());
36492         if(this.tabs){
36493             this.fireEvent("invalidated", this);
36494         }
36495         this.fireEvent("panelactivated", this, panel);
36496     },
36497
36498     /**
36499      * Shows the specified panel.
36500      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
36501      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
36502      */
36503     showPanel : function(panel)
36504     {
36505         panel = this.getPanel(panel);
36506         if(panel){
36507             if(this.tabs){
36508                 var tab = this.tabs.getTab(panel.getEl().id);
36509                 if(tab.isHidden()){
36510                     this.tabs.unhideTab(tab.id);
36511                 }
36512                 tab.activate();
36513             }else{
36514                 this.setActivePanel(panel);
36515             }
36516         }
36517         return panel;
36518     },
36519
36520     /**
36521      * Get the active panel for this region.
36522      * @return {Roo.ContentPanel} The active panel or null
36523      */
36524     getActivePanel : function(){
36525         return this.activePanel;
36526     },
36527
36528     validateVisibility : function(){
36529         if(this.panels.getCount() < 1){
36530             this.updateTitle("&#160;");
36531             this.closeBtn.hide();
36532             this.hide();
36533         }else{
36534             if(!this.isVisible()){
36535                 this.show();
36536             }
36537         }
36538     },
36539
36540     /**
36541      * Adds the passed ContentPanel(s) to this region.
36542      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
36543      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
36544      */
36545     add : function(panel)
36546     {
36547         if(arguments.length > 1){
36548             for(var i = 0, len = arguments.length; i < len; i++) {
36549                 this.add(arguments[i]);
36550             }
36551             return null;
36552         }
36553         
36554         // if we have not been rendered yet, then we can not really do much of this..
36555         if (!this.bodyEl) {
36556             this.unrendered_panels.push(panel);
36557             return panel;
36558         }
36559         
36560         
36561         
36562         
36563         if(this.hasPanel(panel)){
36564             this.showPanel(panel);
36565             return panel;
36566         }
36567         panel.setRegion(this);
36568         this.panels.add(panel);
36569        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
36570             // sinle panel - no tab...?? would it not be better to render it with the tabs,
36571             // and hide them... ???
36572             this.bodyEl.dom.appendChild(panel.getEl().dom);
36573             if(panel.background !== true){
36574                 this.setActivePanel(panel);
36575             }
36576             this.fireEvent("paneladded", this, panel);
36577             return panel;
36578         }
36579         */
36580         if(!this.tabs){
36581             this.initTabs();
36582         }else{
36583             this.initPanelAsTab(panel);
36584         }
36585         
36586         
36587         if(panel.background !== true){
36588             this.tabs.activate(panel.getEl().id);
36589         }
36590         this.fireEvent("paneladded", this, panel);
36591         return panel;
36592     },
36593
36594     /**
36595      * Hides the tab for the specified panel.
36596      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36597      */
36598     hidePanel : function(panel){
36599         if(this.tabs && (panel = this.getPanel(panel))){
36600             this.tabs.hideTab(panel.getEl().id);
36601         }
36602     },
36603
36604     /**
36605      * Unhides the tab for a previously hidden panel.
36606      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36607      */
36608     unhidePanel : function(panel){
36609         if(this.tabs && (panel = this.getPanel(panel))){
36610             this.tabs.unhideTab(panel.getEl().id);
36611         }
36612     },
36613
36614     clearPanels : function(){
36615         while(this.panels.getCount() > 0){
36616              this.remove(this.panels.first());
36617         }
36618     },
36619
36620     /**
36621      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36622      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36623      * @param {Boolean} preservePanel Overrides the config preservePanel option
36624      * @return {Roo.ContentPanel} The panel that was removed
36625      */
36626     remove : function(panel, preservePanel)
36627     {
36628         panel = this.getPanel(panel);
36629         if(!panel){
36630             return null;
36631         }
36632         var e = {};
36633         this.fireEvent("beforeremove", this, panel, e);
36634         if(e.cancel === true){
36635             return null;
36636         }
36637         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
36638         var panelId = panel.getId();
36639         this.panels.removeKey(panelId);
36640         if(preservePanel){
36641             document.body.appendChild(panel.getEl().dom);
36642         }
36643         if(this.tabs){
36644             this.tabs.removeTab(panel.getEl().id);
36645         }else if (!preservePanel){
36646             this.bodyEl.dom.removeChild(panel.getEl().dom);
36647         }
36648         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
36649             var p = this.panels.first();
36650             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
36651             tempEl.appendChild(p.getEl().dom);
36652             this.bodyEl.update("");
36653             this.bodyEl.dom.appendChild(p.getEl().dom);
36654             tempEl = null;
36655             this.updateTitle(p.getTitle());
36656             this.tabs = null;
36657             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
36658             this.setActivePanel(p);
36659         }
36660         panel.setRegion(null);
36661         if(this.activePanel == panel){
36662             this.activePanel = null;
36663         }
36664         if(this.config.autoDestroy !== false && preservePanel !== true){
36665             try{panel.destroy();}catch(e){}
36666         }
36667         this.fireEvent("panelremoved", this, panel);
36668         return panel;
36669     },
36670
36671     /**
36672      * Returns the TabPanel component used by this region
36673      * @return {Roo.TabPanel}
36674      */
36675     getTabs : function(){
36676         return this.tabs;
36677     },
36678
36679     createTool : function(parentEl, className){
36680         var btn = Roo.DomHelper.append(parentEl, {
36681             tag: "div",
36682             cls: "x-layout-tools-button",
36683             children: [ {
36684                 tag: "div",
36685                 cls: "roo-layout-tools-button-inner " + className,
36686                 html: "&#160;"
36687             }]
36688         }, true);
36689         btn.addClassOnOver("roo-layout-tools-button-over");
36690         return btn;
36691     }
36692 });/*
36693  * Based on:
36694  * Ext JS Library 1.1.1
36695  * Copyright(c) 2006-2007, Ext JS, LLC.
36696  *
36697  * Originally Released Under LGPL - original licence link has changed is not relivant.
36698  *
36699  * Fork - LGPL
36700  * <script type="text/javascript">
36701  */
36702  
36703
36704
36705 /**
36706  * @class Roo.SplitLayoutRegion
36707  * @extends Roo.LayoutRegion
36708  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
36709  */
36710 Roo.bootstrap.layout.Split = function(config){
36711     this.cursor = config.cursor;
36712     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
36713 };
36714
36715 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
36716 {
36717     splitTip : "Drag to resize.",
36718     collapsibleSplitTip : "Drag to resize. Double click to hide.",
36719     useSplitTips : false,
36720
36721     applyConfig : function(config){
36722         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
36723     },
36724     
36725     onRender : function(ctr,pos) {
36726         
36727         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
36728         if(!this.config.split){
36729             return;
36730         }
36731         if(!this.split){
36732             
36733             var splitEl = Roo.DomHelper.append(ctr.dom,  {
36734                             tag: "div",
36735                             id: this.el.id + "-split",
36736                             cls: "roo-layout-split roo-layout-split-"+this.position,
36737                             html: "&#160;"
36738             });
36739             /** The SplitBar for this region 
36740             * @type Roo.SplitBar */
36741             // does not exist yet...
36742             Roo.log([this.position, this.orientation]);
36743             
36744             this.split = new Roo.bootstrap.SplitBar({
36745                 dragElement : splitEl,
36746                 resizingElement: this.el,
36747                 orientation : this.orientation
36748             });
36749             
36750             this.split.on("moved", this.onSplitMove, this);
36751             this.split.useShim = this.config.useShim === true;
36752             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
36753             if(this.useSplitTips){
36754                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
36755             }
36756             //if(config.collapsible){
36757             //    this.split.el.on("dblclick", this.collapse,  this);
36758             //}
36759         }
36760         if(typeof this.config.minSize != "undefined"){
36761             this.split.minSize = this.config.minSize;
36762         }
36763         if(typeof this.config.maxSize != "undefined"){
36764             this.split.maxSize = this.config.maxSize;
36765         }
36766         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
36767             this.hideSplitter();
36768         }
36769         
36770     },
36771
36772     getHMaxSize : function(){
36773          var cmax = this.config.maxSize || 10000;
36774          var center = this.mgr.getRegion("center");
36775          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
36776     },
36777
36778     getVMaxSize : function(){
36779          var cmax = this.config.maxSize || 10000;
36780          var center = this.mgr.getRegion("center");
36781          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
36782     },
36783
36784     onSplitMove : function(split, newSize){
36785         this.fireEvent("resized", this, newSize);
36786     },
36787     
36788     /** 
36789      * Returns the {@link Roo.SplitBar} for this region.
36790      * @return {Roo.SplitBar}
36791      */
36792     getSplitBar : function(){
36793         return this.split;
36794     },
36795     
36796     hide : function(){
36797         this.hideSplitter();
36798         Roo.bootstrap.layout.Split.superclass.hide.call(this);
36799     },
36800
36801     hideSplitter : function(){
36802         if(this.split){
36803             this.split.el.setLocation(-2000,-2000);
36804             this.split.el.hide();
36805         }
36806     },
36807
36808     show : function(){
36809         if(this.split){
36810             this.split.el.show();
36811         }
36812         Roo.bootstrap.layout.Split.superclass.show.call(this);
36813     },
36814     
36815     beforeSlide: function(){
36816         if(Roo.isGecko){// firefox overflow auto bug workaround
36817             this.bodyEl.clip();
36818             if(this.tabs) {
36819                 this.tabs.bodyEl.clip();
36820             }
36821             if(this.activePanel){
36822                 this.activePanel.getEl().clip();
36823                 
36824                 if(this.activePanel.beforeSlide){
36825                     this.activePanel.beforeSlide();
36826                 }
36827             }
36828         }
36829     },
36830     
36831     afterSlide : function(){
36832         if(Roo.isGecko){// firefox overflow auto bug workaround
36833             this.bodyEl.unclip();
36834             if(this.tabs) {
36835                 this.tabs.bodyEl.unclip();
36836             }
36837             if(this.activePanel){
36838                 this.activePanel.getEl().unclip();
36839                 if(this.activePanel.afterSlide){
36840                     this.activePanel.afterSlide();
36841                 }
36842             }
36843         }
36844     },
36845
36846     initAutoHide : function(){
36847         if(this.autoHide !== false){
36848             if(!this.autoHideHd){
36849                 var st = new Roo.util.DelayedTask(this.slideIn, this);
36850                 this.autoHideHd = {
36851                     "mouseout": function(e){
36852                         if(!e.within(this.el, true)){
36853                             st.delay(500);
36854                         }
36855                     },
36856                     "mouseover" : function(e){
36857                         st.cancel();
36858                     },
36859                     scope : this
36860                 };
36861             }
36862             this.el.on(this.autoHideHd);
36863         }
36864     },
36865
36866     clearAutoHide : function(){
36867         if(this.autoHide !== false){
36868             this.el.un("mouseout", this.autoHideHd.mouseout);
36869             this.el.un("mouseover", this.autoHideHd.mouseover);
36870         }
36871     },
36872
36873     clearMonitor : function(){
36874         Roo.get(document).un("click", this.slideInIf, this);
36875     },
36876
36877     // these names are backwards but not changed for compat
36878     slideOut : function(){
36879         if(this.isSlid || this.el.hasActiveFx()){
36880             return;
36881         }
36882         this.isSlid = true;
36883         if(this.collapseBtn){
36884             this.collapseBtn.hide();
36885         }
36886         this.closeBtnState = this.closeBtn.getStyle('display');
36887         this.closeBtn.hide();
36888         if(this.stickBtn){
36889             this.stickBtn.show();
36890         }
36891         this.el.show();
36892         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
36893         this.beforeSlide();
36894         this.el.setStyle("z-index", 10001);
36895         this.el.slideIn(this.getSlideAnchor(), {
36896             callback: function(){
36897                 this.afterSlide();
36898                 this.initAutoHide();
36899                 Roo.get(document).on("click", this.slideInIf, this);
36900                 this.fireEvent("slideshow", this);
36901             },
36902             scope: this,
36903             block: true
36904         });
36905     },
36906
36907     afterSlideIn : function(){
36908         this.clearAutoHide();
36909         this.isSlid = false;
36910         this.clearMonitor();
36911         this.el.setStyle("z-index", "");
36912         if(this.collapseBtn){
36913             this.collapseBtn.show();
36914         }
36915         this.closeBtn.setStyle('display', this.closeBtnState);
36916         if(this.stickBtn){
36917             this.stickBtn.hide();
36918         }
36919         this.fireEvent("slidehide", this);
36920     },
36921
36922     slideIn : function(cb){
36923         if(!this.isSlid || this.el.hasActiveFx()){
36924             Roo.callback(cb);
36925             return;
36926         }
36927         this.isSlid = false;
36928         this.beforeSlide();
36929         this.el.slideOut(this.getSlideAnchor(), {
36930             callback: function(){
36931                 this.el.setLeftTop(-10000, -10000);
36932                 this.afterSlide();
36933                 this.afterSlideIn();
36934                 Roo.callback(cb);
36935             },
36936             scope: this,
36937             block: true
36938         });
36939     },
36940     
36941     slideInIf : function(e){
36942         if(!e.within(this.el)){
36943             this.slideIn();
36944         }
36945     },
36946
36947     animateCollapse : function(){
36948         this.beforeSlide();
36949         this.el.setStyle("z-index", 20000);
36950         var anchor = this.getSlideAnchor();
36951         this.el.slideOut(anchor, {
36952             callback : function(){
36953                 this.el.setStyle("z-index", "");
36954                 this.collapsedEl.slideIn(anchor, {duration:.3});
36955                 this.afterSlide();
36956                 this.el.setLocation(-10000,-10000);
36957                 this.el.hide();
36958                 this.fireEvent("collapsed", this);
36959             },
36960             scope: this,
36961             block: true
36962         });
36963     },
36964
36965     animateExpand : function(){
36966         this.beforeSlide();
36967         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
36968         this.el.setStyle("z-index", 20000);
36969         this.collapsedEl.hide({
36970             duration:.1
36971         });
36972         this.el.slideIn(this.getSlideAnchor(), {
36973             callback : function(){
36974                 this.el.setStyle("z-index", "");
36975                 this.afterSlide();
36976                 if(this.split){
36977                     this.split.el.show();
36978                 }
36979                 this.fireEvent("invalidated", this);
36980                 this.fireEvent("expanded", this);
36981             },
36982             scope: this,
36983             block: true
36984         });
36985     },
36986
36987     anchors : {
36988         "west" : "left",
36989         "east" : "right",
36990         "north" : "top",
36991         "south" : "bottom"
36992     },
36993
36994     sanchors : {
36995         "west" : "l",
36996         "east" : "r",
36997         "north" : "t",
36998         "south" : "b"
36999     },
37000
37001     canchors : {
37002         "west" : "tl-tr",
37003         "east" : "tr-tl",
37004         "north" : "tl-bl",
37005         "south" : "bl-tl"
37006     },
37007
37008     getAnchor : function(){
37009         return this.anchors[this.position];
37010     },
37011
37012     getCollapseAnchor : function(){
37013         return this.canchors[this.position];
37014     },
37015
37016     getSlideAnchor : function(){
37017         return this.sanchors[this.position];
37018     },
37019
37020     getAlignAdj : function(){
37021         var cm = this.cmargins;
37022         switch(this.position){
37023             case "west":
37024                 return [0, 0];
37025             break;
37026             case "east":
37027                 return [0, 0];
37028             break;
37029             case "north":
37030                 return [0, 0];
37031             break;
37032             case "south":
37033                 return [0, 0];
37034             break;
37035         }
37036     },
37037
37038     getExpandAdj : function(){
37039         var c = this.collapsedEl, cm = this.cmargins;
37040         switch(this.position){
37041             case "west":
37042                 return [-(cm.right+c.getWidth()+cm.left), 0];
37043             break;
37044             case "east":
37045                 return [cm.right+c.getWidth()+cm.left, 0];
37046             break;
37047             case "north":
37048                 return [0, -(cm.top+cm.bottom+c.getHeight())];
37049             break;
37050             case "south":
37051                 return [0, cm.top+cm.bottom+c.getHeight()];
37052             break;
37053         }
37054     }
37055 });/*
37056  * Based on:
37057  * Ext JS Library 1.1.1
37058  * Copyright(c) 2006-2007, Ext JS, LLC.
37059  *
37060  * Originally Released Under LGPL - original licence link has changed is not relivant.
37061  *
37062  * Fork - LGPL
37063  * <script type="text/javascript">
37064  */
37065 /*
37066  * These classes are private internal classes
37067  */
37068 Roo.bootstrap.layout.Center = function(config){
37069     config.region = "center";
37070     Roo.bootstrap.layout.Region.call(this, config);
37071     this.visible = true;
37072     this.minWidth = config.minWidth || 20;
37073     this.minHeight = config.minHeight || 20;
37074 };
37075
37076 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
37077     hide : function(){
37078         // center panel can't be hidden
37079     },
37080     
37081     show : function(){
37082         // center panel can't be hidden
37083     },
37084     
37085     getMinWidth: function(){
37086         return this.minWidth;
37087     },
37088     
37089     getMinHeight: function(){
37090         return this.minHeight;
37091     }
37092 });
37093
37094
37095
37096
37097  
37098
37099
37100
37101
37102
37103
37104 Roo.bootstrap.layout.North = function(config)
37105 {
37106     config.region = 'north';
37107     config.cursor = 'n-resize';
37108     
37109     Roo.bootstrap.layout.Split.call(this, config);
37110     
37111     
37112     if(this.split){
37113         this.split.placement = Roo.bootstrap.SplitBar.TOP;
37114         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37115         this.split.el.addClass("roo-layout-split-v");
37116     }
37117     var size = config.initialSize || config.height;
37118     if(typeof size != "undefined"){
37119         this.el.setHeight(size);
37120     }
37121 };
37122 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
37123 {
37124     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37125     
37126     
37127     
37128     getBox : function(){
37129         if(this.collapsed){
37130             return this.collapsedEl.getBox();
37131         }
37132         var box = this.el.getBox();
37133         if(this.split){
37134             box.height += this.split.el.getHeight();
37135         }
37136         return box;
37137     },
37138     
37139     updateBox : function(box){
37140         if(this.split && !this.collapsed){
37141             box.height -= this.split.el.getHeight();
37142             this.split.el.setLeft(box.x);
37143             this.split.el.setTop(box.y+box.height);
37144             this.split.el.setWidth(box.width);
37145         }
37146         if(this.collapsed){
37147             this.updateBody(box.width, null);
37148         }
37149         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37150     }
37151 });
37152
37153
37154
37155
37156
37157 Roo.bootstrap.layout.South = function(config){
37158     config.region = 'south';
37159     config.cursor = 's-resize';
37160     Roo.bootstrap.layout.Split.call(this, config);
37161     if(this.split){
37162         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
37163         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37164         this.split.el.addClass("roo-layout-split-v");
37165     }
37166     var size = config.initialSize || config.height;
37167     if(typeof size != "undefined"){
37168         this.el.setHeight(size);
37169     }
37170 };
37171
37172 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
37173     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37174     getBox : function(){
37175         if(this.collapsed){
37176             return this.collapsedEl.getBox();
37177         }
37178         var box = this.el.getBox();
37179         if(this.split){
37180             var sh = this.split.el.getHeight();
37181             box.height += sh;
37182             box.y -= sh;
37183         }
37184         return box;
37185     },
37186     
37187     updateBox : function(box){
37188         if(this.split && !this.collapsed){
37189             var sh = this.split.el.getHeight();
37190             box.height -= sh;
37191             box.y += sh;
37192             this.split.el.setLeft(box.x);
37193             this.split.el.setTop(box.y-sh);
37194             this.split.el.setWidth(box.width);
37195         }
37196         if(this.collapsed){
37197             this.updateBody(box.width, null);
37198         }
37199         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37200     }
37201 });
37202
37203 Roo.bootstrap.layout.East = function(config){
37204     config.region = "east";
37205     config.cursor = "e-resize";
37206     Roo.bootstrap.layout.Split.call(this, config);
37207     if(this.split){
37208         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
37209         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37210         this.split.el.addClass("roo-layout-split-h");
37211     }
37212     var size = config.initialSize || config.width;
37213     if(typeof size != "undefined"){
37214         this.el.setWidth(size);
37215     }
37216 };
37217 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
37218     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37219     getBox : function(){
37220         if(this.collapsed){
37221             return this.collapsedEl.getBox();
37222         }
37223         var box = this.el.getBox();
37224         if(this.split){
37225             var sw = this.split.el.getWidth();
37226             box.width += sw;
37227             box.x -= sw;
37228         }
37229         return box;
37230     },
37231
37232     updateBox : function(box){
37233         if(this.split && !this.collapsed){
37234             var sw = this.split.el.getWidth();
37235             box.width -= sw;
37236             this.split.el.setLeft(box.x);
37237             this.split.el.setTop(box.y);
37238             this.split.el.setHeight(box.height);
37239             box.x += sw;
37240         }
37241         if(this.collapsed){
37242             this.updateBody(null, box.height);
37243         }
37244         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37245     }
37246 });
37247
37248 Roo.bootstrap.layout.West = function(config){
37249     config.region = "west";
37250     config.cursor = "w-resize";
37251     
37252     Roo.bootstrap.layout.Split.call(this, config);
37253     if(this.split){
37254         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
37255         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37256         this.split.el.addClass("roo-layout-split-h");
37257     }
37258     
37259 };
37260 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
37261     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37262     
37263     onRender: function(ctr, pos)
37264     {
37265         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
37266         var size = this.config.initialSize || this.config.width;
37267         if(typeof size != "undefined"){
37268             this.el.setWidth(size);
37269         }
37270     },
37271     
37272     getBox : function(){
37273         if(this.collapsed){
37274             return this.collapsedEl.getBox();
37275         }
37276         var box = this.el.getBox();
37277         if(this.split){
37278             box.width += this.split.el.getWidth();
37279         }
37280         return box;
37281     },
37282     
37283     updateBox : function(box){
37284         if(this.split && !this.collapsed){
37285             var sw = this.split.el.getWidth();
37286             box.width -= sw;
37287             this.split.el.setLeft(box.x+box.width);
37288             this.split.el.setTop(box.y);
37289             this.split.el.setHeight(box.height);
37290         }
37291         if(this.collapsed){
37292             this.updateBody(null, box.height);
37293         }
37294         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37295     }
37296 });Roo.namespace("Roo.bootstrap.panel");/*
37297  * Based on:
37298  * Ext JS Library 1.1.1
37299  * Copyright(c) 2006-2007, Ext JS, LLC.
37300  *
37301  * Originally Released Under LGPL - original licence link has changed is not relivant.
37302  *
37303  * Fork - LGPL
37304  * <script type="text/javascript">
37305  */
37306 /**
37307  * @class Roo.ContentPanel
37308  * @extends Roo.util.Observable
37309  * A basic ContentPanel element.
37310  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
37311  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
37312  * @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
37313  * @cfg {Boolean}   closable      True if the panel can be closed/removed
37314  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
37315  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
37316  * @cfg {Toolbar}   toolbar       A toolbar for this panel
37317  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
37318  * @cfg {String} title          The title for this panel
37319  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
37320  * @cfg {String} url            Calls {@link #setUrl} with this value
37321  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
37322  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
37323  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
37324  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
37325  * @cfg {Boolean} badges render the badges
37326
37327  * @constructor
37328  * Create a new ContentPanel.
37329  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
37330  * @param {String/Object} config A string to set only the title or a config object
37331  * @param {String} content (optional) Set the HTML content for this panel
37332  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37333  */
37334 Roo.bootstrap.panel.Content = function( config){
37335     
37336     this.tpl = config.tpl || false;
37337     
37338     var el = config.el;
37339     var content = config.content;
37340
37341     if(config.autoCreate){ // xtype is available if this is called from factory
37342         el = Roo.id();
37343     }
37344     this.el = Roo.get(el);
37345     if(!this.el && config && config.autoCreate){
37346         if(typeof config.autoCreate == "object"){
37347             if(!config.autoCreate.id){
37348                 config.autoCreate.id = config.id||el;
37349             }
37350             this.el = Roo.DomHelper.append(document.body,
37351                         config.autoCreate, true);
37352         }else{
37353             var elcfg =  {   tag: "div",
37354                             cls: "roo-layout-inactive-content",
37355                             id: config.id||el
37356                             };
37357             if (config.html) {
37358                 elcfg.html = config.html;
37359                 
37360             }
37361                         
37362             this.el = Roo.DomHelper.append(document.body, elcfg , true);
37363         }
37364     } 
37365     this.closable = false;
37366     this.loaded = false;
37367     this.active = false;
37368    
37369       
37370     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
37371         
37372         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
37373         
37374         this.wrapEl = this.el; //this.el.wrap();
37375         var ti = [];
37376         if (config.toolbar.items) {
37377             ti = config.toolbar.items ;
37378             delete config.toolbar.items ;
37379         }
37380         
37381         var nitems = [];
37382         this.toolbar.render(this.wrapEl, 'before');
37383         for(var i =0;i < ti.length;i++) {
37384           //  Roo.log(['add child', items[i]]);
37385             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37386         }
37387         this.toolbar.items = nitems;
37388         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
37389         delete config.toolbar;
37390         
37391     }
37392     /*
37393     // xtype created footer. - not sure if will work as we normally have to render first..
37394     if (this.footer && !this.footer.el && this.footer.xtype) {
37395         if (!this.wrapEl) {
37396             this.wrapEl = this.el.wrap();
37397         }
37398     
37399         this.footer.container = this.wrapEl.createChild();
37400          
37401         this.footer = Roo.factory(this.footer, Roo);
37402         
37403     }
37404     */
37405     
37406      if(typeof config == "string"){
37407         this.title = config;
37408     }else{
37409         Roo.apply(this, config);
37410     }
37411     
37412     if(this.resizeEl){
37413         this.resizeEl = Roo.get(this.resizeEl, true);
37414     }else{
37415         this.resizeEl = this.el;
37416     }
37417     // handle view.xtype
37418     
37419  
37420     
37421     
37422     this.addEvents({
37423         /**
37424          * @event activate
37425          * Fires when this panel is activated. 
37426          * @param {Roo.ContentPanel} this
37427          */
37428         "activate" : true,
37429         /**
37430          * @event deactivate
37431          * Fires when this panel is activated. 
37432          * @param {Roo.ContentPanel} this
37433          */
37434         "deactivate" : true,
37435
37436         /**
37437          * @event resize
37438          * Fires when this panel is resized if fitToFrame is true.
37439          * @param {Roo.ContentPanel} this
37440          * @param {Number} width The width after any component adjustments
37441          * @param {Number} height The height after any component adjustments
37442          */
37443         "resize" : true,
37444         
37445          /**
37446          * @event render
37447          * Fires when this tab is created
37448          * @param {Roo.ContentPanel} this
37449          */
37450         "render" : true
37451         
37452         
37453         
37454     });
37455     
37456
37457     
37458     
37459     if(this.autoScroll){
37460         this.resizeEl.setStyle("overflow", "auto");
37461     } else {
37462         // fix randome scrolling
37463         //this.el.on('scroll', function() {
37464         //    Roo.log('fix random scolling');
37465         //    this.scrollTo('top',0); 
37466         //});
37467     }
37468     content = content || this.content;
37469     if(content){
37470         this.setContent(content);
37471     }
37472     if(config && config.url){
37473         this.setUrl(this.url, this.params, this.loadOnce);
37474     }
37475     
37476     
37477     
37478     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
37479     
37480     if (this.view && typeof(this.view.xtype) != 'undefined') {
37481         this.view.el = this.el.appendChild(document.createElement("div"));
37482         this.view = Roo.factory(this.view); 
37483         this.view.render  &&  this.view.render(false, '');  
37484     }
37485     
37486     
37487     this.fireEvent('render', this);
37488 };
37489
37490 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
37491     
37492     tabTip : '',
37493     
37494     setRegion : function(region){
37495         this.region = region;
37496         this.setActiveClass(region && !this.background);
37497     },
37498     
37499     
37500     setActiveClass: function(state)
37501     {
37502         if(state){
37503            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
37504            this.el.setStyle('position','relative');
37505         }else{
37506            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
37507            this.el.setStyle('position', 'absolute');
37508         } 
37509     },
37510     
37511     /**
37512      * Returns the toolbar for this Panel if one was configured. 
37513      * @return {Roo.Toolbar} 
37514      */
37515     getToolbar : function(){
37516         return this.toolbar;
37517     },
37518     
37519     setActiveState : function(active)
37520     {
37521         this.active = active;
37522         this.setActiveClass(active);
37523         if(!active){
37524             if(this.fireEvent("deactivate", this) === false){
37525                 return false;
37526             }
37527             return true;
37528         }
37529         this.fireEvent("activate", this);
37530         return true;
37531     },
37532     /**
37533      * Updates this panel's element
37534      * @param {String} content The new content
37535      * @param {Boolean} loadScripts (optional) true to look for and process scripts
37536     */
37537     setContent : function(content, loadScripts){
37538         this.el.update(content, loadScripts);
37539     },
37540
37541     ignoreResize : function(w, h){
37542         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
37543             return true;
37544         }else{
37545             this.lastSize = {width: w, height: h};
37546             return false;
37547         }
37548     },
37549     /**
37550      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
37551      * @return {Roo.UpdateManager} The UpdateManager
37552      */
37553     getUpdateManager : function(){
37554         return this.el.getUpdateManager();
37555     },
37556      /**
37557      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
37558      * @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:
37559 <pre><code>
37560 panel.load({
37561     url: "your-url.php",
37562     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
37563     callback: yourFunction,
37564     scope: yourObject, //(optional scope)
37565     discardUrl: false,
37566     nocache: false,
37567     text: "Loading...",
37568     timeout: 30,
37569     scripts: false
37570 });
37571 </code></pre>
37572      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
37573      * 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.
37574      * @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}
37575      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
37576      * @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.
37577      * @return {Roo.ContentPanel} this
37578      */
37579     load : function(){
37580         var um = this.el.getUpdateManager();
37581         um.update.apply(um, arguments);
37582         return this;
37583     },
37584
37585
37586     /**
37587      * 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.
37588      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
37589      * @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)
37590      * @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)
37591      * @return {Roo.UpdateManager} The UpdateManager
37592      */
37593     setUrl : function(url, params, loadOnce){
37594         if(this.refreshDelegate){
37595             this.removeListener("activate", this.refreshDelegate);
37596         }
37597         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
37598         this.on("activate", this.refreshDelegate);
37599         return this.el.getUpdateManager();
37600     },
37601     
37602     _handleRefresh : function(url, params, loadOnce){
37603         if(!loadOnce || !this.loaded){
37604             var updater = this.el.getUpdateManager();
37605             updater.update(url, params, this._setLoaded.createDelegate(this));
37606         }
37607     },
37608     
37609     _setLoaded : function(){
37610         this.loaded = true;
37611     }, 
37612     
37613     /**
37614      * Returns this panel's id
37615      * @return {String} 
37616      */
37617     getId : function(){
37618         return this.el.id;
37619     },
37620     
37621     /** 
37622      * Returns this panel's element - used by regiosn to add.
37623      * @return {Roo.Element} 
37624      */
37625     getEl : function(){
37626         return this.wrapEl || this.el;
37627     },
37628     
37629    
37630     
37631     adjustForComponents : function(width, height)
37632     {
37633         //Roo.log('adjustForComponents ');
37634         if(this.resizeEl != this.el){
37635             width -= this.el.getFrameWidth('lr');
37636             height -= this.el.getFrameWidth('tb');
37637         }
37638         if(this.toolbar){
37639             var te = this.toolbar.getEl();
37640             te.setWidth(width);
37641             height -= te.getHeight();
37642         }
37643         if(this.footer){
37644             var te = this.footer.getEl();
37645             te.setWidth(width);
37646             height -= te.getHeight();
37647         }
37648         
37649         
37650         if(this.adjustments){
37651             width += this.adjustments[0];
37652             height += this.adjustments[1];
37653         }
37654         return {"width": width, "height": height};
37655     },
37656     
37657     setSize : function(width, height){
37658         if(this.fitToFrame && !this.ignoreResize(width, height)){
37659             if(this.fitContainer && this.resizeEl != this.el){
37660                 this.el.setSize(width, height);
37661             }
37662             var size = this.adjustForComponents(width, height);
37663             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
37664             this.fireEvent('resize', this, size.width, size.height);
37665         }
37666     },
37667     
37668     /**
37669      * Returns this panel's title
37670      * @return {String} 
37671      */
37672     getTitle : function(){
37673         
37674         if (typeof(this.title) != 'object') {
37675             return this.title;
37676         }
37677         
37678         var t = '';
37679         for (var k in this.title) {
37680             if (!this.title.hasOwnProperty(k)) {
37681                 continue;
37682             }
37683             
37684             if (k.indexOf('-') >= 0) {
37685                 var s = k.split('-');
37686                 for (var i = 0; i<s.length; i++) {
37687                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
37688                 }
37689             } else {
37690                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
37691             }
37692         }
37693         return t;
37694     },
37695     
37696     /**
37697      * Set this panel's title
37698      * @param {String} title
37699      */
37700     setTitle : function(title){
37701         this.title = title;
37702         if(this.region){
37703             this.region.updatePanelTitle(this, title);
37704         }
37705     },
37706     
37707     /**
37708      * Returns true is this panel was configured to be closable
37709      * @return {Boolean} 
37710      */
37711     isClosable : function(){
37712         return this.closable;
37713     },
37714     
37715     beforeSlide : function(){
37716         this.el.clip();
37717         this.resizeEl.clip();
37718     },
37719     
37720     afterSlide : function(){
37721         this.el.unclip();
37722         this.resizeEl.unclip();
37723     },
37724     
37725     /**
37726      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
37727      *   Will fail silently if the {@link #setUrl} method has not been called.
37728      *   This does not activate the panel, just updates its content.
37729      */
37730     refresh : function(){
37731         if(this.refreshDelegate){
37732            this.loaded = false;
37733            this.refreshDelegate();
37734         }
37735     },
37736     
37737     /**
37738      * Destroys this panel
37739      */
37740     destroy : function(){
37741         this.el.removeAllListeners();
37742         var tempEl = document.createElement("span");
37743         tempEl.appendChild(this.el.dom);
37744         tempEl.innerHTML = "";
37745         this.el.remove();
37746         this.el = null;
37747     },
37748     
37749     /**
37750      * form - if the content panel contains a form - this is a reference to it.
37751      * @type {Roo.form.Form}
37752      */
37753     form : false,
37754     /**
37755      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
37756      *    This contains a reference to it.
37757      * @type {Roo.View}
37758      */
37759     view : false,
37760     
37761       /**
37762      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
37763      * <pre><code>
37764
37765 layout.addxtype({
37766        xtype : 'Form',
37767        items: [ .... ]
37768    }
37769 );
37770
37771 </code></pre>
37772      * @param {Object} cfg Xtype definition of item to add.
37773      */
37774     
37775     
37776     getChildContainer: function () {
37777         return this.getEl();
37778     }
37779     
37780     
37781     /*
37782         var  ret = new Roo.factory(cfg);
37783         return ret;
37784         
37785         
37786         // add form..
37787         if (cfg.xtype.match(/^Form$/)) {
37788             
37789             var el;
37790             //if (this.footer) {
37791             //    el = this.footer.container.insertSibling(false, 'before');
37792             //} else {
37793                 el = this.el.createChild();
37794             //}
37795
37796             this.form = new  Roo.form.Form(cfg);
37797             
37798             
37799             if ( this.form.allItems.length) {
37800                 this.form.render(el.dom);
37801             }
37802             return this.form;
37803         }
37804         // should only have one of theses..
37805         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
37806             // views.. should not be just added - used named prop 'view''
37807             
37808             cfg.el = this.el.appendChild(document.createElement("div"));
37809             // factory?
37810             
37811             var ret = new Roo.factory(cfg);
37812              
37813              ret.render && ret.render(false, ''); // render blank..
37814             this.view = ret;
37815             return ret;
37816         }
37817         return false;
37818     }
37819     \*/
37820 });
37821  
37822 /**
37823  * @class Roo.bootstrap.panel.Grid
37824  * @extends Roo.bootstrap.panel.Content
37825  * @constructor
37826  * Create a new GridPanel.
37827  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
37828  * @param {Object} config A the config object
37829   
37830  */
37831
37832
37833
37834 Roo.bootstrap.panel.Grid = function(config)
37835 {
37836     
37837       
37838     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
37839         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
37840
37841     config.el = this.wrapper;
37842     //this.el = this.wrapper;
37843     
37844       if (config.container) {
37845         // ctor'ed from a Border/panel.grid
37846         
37847         
37848         this.wrapper.setStyle("overflow", "hidden");
37849         this.wrapper.addClass('roo-grid-container');
37850
37851     }
37852     
37853     
37854     if(config.toolbar){
37855         var tool_el = this.wrapper.createChild();    
37856         this.toolbar = Roo.factory(config.toolbar);
37857         var ti = [];
37858         if (config.toolbar.items) {
37859             ti = config.toolbar.items ;
37860             delete config.toolbar.items ;
37861         }
37862         
37863         var nitems = [];
37864         this.toolbar.render(tool_el);
37865         for(var i =0;i < ti.length;i++) {
37866           //  Roo.log(['add child', items[i]]);
37867             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37868         }
37869         this.toolbar.items = nitems;
37870         
37871         delete config.toolbar;
37872     }
37873     
37874     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
37875     config.grid.scrollBody = true;;
37876     config.grid.monitorWindowResize = false; // turn off autosizing
37877     config.grid.autoHeight = false;
37878     config.grid.autoWidth = false;
37879     
37880     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
37881     
37882     if (config.background) {
37883         // render grid on panel activation (if panel background)
37884         this.on('activate', function(gp) {
37885             if (!gp.grid.rendered) {
37886                 gp.grid.render(this.wrapper);
37887                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
37888             }
37889         });
37890             
37891     } else {
37892         this.grid.render(this.wrapper);
37893         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
37894
37895     }
37896     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
37897     // ??? needed ??? config.el = this.wrapper;
37898     
37899     
37900     
37901   
37902     // xtype created footer. - not sure if will work as we normally have to render first..
37903     if (this.footer && !this.footer.el && this.footer.xtype) {
37904         
37905         var ctr = this.grid.getView().getFooterPanel(true);
37906         this.footer.dataSource = this.grid.dataSource;
37907         this.footer = Roo.factory(this.footer, Roo);
37908         this.footer.render(ctr);
37909         
37910     }
37911     
37912     
37913     
37914     
37915      
37916 };
37917
37918 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content, {
37919     getId : function(){
37920         return this.grid.id;
37921     },
37922     
37923     /**
37924      * Returns the grid for this panel
37925      * @return {Roo.bootstrap.Table} 
37926      */
37927     getGrid : function(){
37928         return this.grid;    
37929     },
37930     
37931     setSize : function(width, height){
37932         if(!this.ignoreResize(width, height)){
37933             var grid = this.grid;
37934             var size = this.adjustForComponents(width, height);
37935             var gridel = grid.getGridEl();
37936             gridel.setSize(size.width, size.height);
37937             /*
37938             var thd = grid.getGridEl().select('thead',true).first();
37939             var tbd = grid.getGridEl().select('tbody', true).first();
37940             if (tbd) {
37941                 tbd.setSize(width, height - thd.getHeight());
37942             }
37943             */
37944             grid.autoSize();
37945         }
37946     },
37947      
37948     
37949     
37950     beforeSlide : function(){
37951         this.grid.getView().scroller.clip();
37952     },
37953     
37954     afterSlide : function(){
37955         this.grid.getView().scroller.unclip();
37956     },
37957     
37958     destroy : function(){
37959         this.grid.destroy();
37960         delete this.grid;
37961         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
37962     }
37963 });
37964
37965 /**
37966  * @class Roo.bootstrap.panel.Nest
37967  * @extends Roo.bootstrap.panel.Content
37968  * @constructor
37969  * Create a new Panel, that can contain a layout.Border.
37970  * 
37971  * 
37972  * @param {Roo.BorderLayout} layout The layout for this panel
37973  * @param {String/Object} config A string to set only the title or a config object
37974  */
37975 Roo.bootstrap.panel.Nest = function(config)
37976 {
37977     // construct with only one argument..
37978     /* FIXME - implement nicer consturctors
37979     if (layout.layout) {
37980         config = layout;
37981         layout = config.layout;
37982         delete config.layout;
37983     }
37984     if (layout.xtype && !layout.getEl) {
37985         // then layout needs constructing..
37986         layout = Roo.factory(layout, Roo);
37987     }
37988     */
37989     
37990     config.el =  config.layout.getEl();
37991     
37992     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
37993     
37994     config.layout.monitorWindowResize = false; // turn off autosizing
37995     this.layout = config.layout;
37996     this.layout.getEl().addClass("roo-layout-nested-layout");
37997     this.layout.parent = this;
37998     
37999     
38000     
38001     
38002 };
38003
38004 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
38005
38006     setSize : function(width, height){
38007         if(!this.ignoreResize(width, height)){
38008             var size = this.adjustForComponents(width, height);
38009             var el = this.layout.getEl();
38010             if (size.height < 1) {
38011                 el.setWidth(size.width);   
38012             } else {
38013                 el.setSize(size.width, size.height);
38014             }
38015             var touch = el.dom.offsetWidth;
38016             this.layout.layout();
38017             // ie requires a double layout on the first pass
38018             if(Roo.isIE && !this.initialized){
38019                 this.initialized = true;
38020                 this.layout.layout();
38021             }
38022         }
38023     },
38024     
38025     // activate all subpanels if not currently active..
38026     
38027     setActiveState : function(active){
38028         this.active = active;
38029         this.setActiveClass(active);
38030         
38031         if(!active){
38032             this.fireEvent("deactivate", this);
38033             return;
38034         }
38035         
38036         this.fireEvent("activate", this);
38037         // not sure if this should happen before or after..
38038         if (!this.layout) {
38039             return; // should not happen..
38040         }
38041         var reg = false;
38042         for (var r in this.layout.regions) {
38043             reg = this.layout.getRegion(r);
38044             if (reg.getActivePanel()) {
38045                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
38046                 reg.setActivePanel(reg.getActivePanel());
38047                 continue;
38048             }
38049             if (!reg.panels.length) {
38050                 continue;
38051             }
38052             reg.showPanel(reg.getPanel(0));
38053         }
38054         
38055         
38056         
38057         
38058     },
38059     
38060     /**
38061      * Returns the nested BorderLayout for this panel
38062      * @return {Roo.BorderLayout} 
38063      */
38064     getLayout : function(){
38065         return this.layout;
38066     },
38067     
38068      /**
38069      * Adds a xtype elements to the layout of the nested panel
38070      * <pre><code>
38071
38072 panel.addxtype({
38073        xtype : 'ContentPanel',
38074        region: 'west',
38075        items: [ .... ]
38076    }
38077 );
38078
38079 panel.addxtype({
38080         xtype : 'NestedLayoutPanel',
38081         region: 'west',
38082         layout: {
38083            center: { },
38084            west: { }   
38085         },
38086         items : [ ... list of content panels or nested layout panels.. ]
38087    }
38088 );
38089 </code></pre>
38090      * @param {Object} cfg Xtype definition of item to add.
38091      */
38092     addxtype : function(cfg) {
38093         return this.layout.addxtype(cfg);
38094     
38095     }
38096 });/*
38097  * Based on:
38098  * Ext JS Library 1.1.1
38099  * Copyright(c) 2006-2007, Ext JS, LLC.
38100  *
38101  * Originally Released Under LGPL - original licence link has changed is not relivant.
38102  *
38103  * Fork - LGPL
38104  * <script type="text/javascript">
38105  */
38106 /**
38107  * @class Roo.TabPanel
38108  * @extends Roo.util.Observable
38109  * A lightweight tab container.
38110  * <br><br>
38111  * Usage:
38112  * <pre><code>
38113 // basic tabs 1, built from existing content
38114 var tabs = new Roo.TabPanel("tabs1");
38115 tabs.addTab("script", "View Script");
38116 tabs.addTab("markup", "View Markup");
38117 tabs.activate("script");
38118
38119 // more advanced tabs, built from javascript
38120 var jtabs = new Roo.TabPanel("jtabs");
38121 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
38122
38123 // set up the UpdateManager
38124 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
38125 var updater = tab2.getUpdateManager();
38126 updater.setDefaultUrl("ajax1.htm");
38127 tab2.on('activate', updater.refresh, updater, true);
38128
38129 // Use setUrl for Ajax loading
38130 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
38131 tab3.setUrl("ajax2.htm", null, true);
38132
38133 // Disabled tab
38134 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
38135 tab4.disable();
38136
38137 jtabs.activate("jtabs-1");
38138  * </code></pre>
38139  * @constructor
38140  * Create a new TabPanel.
38141  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
38142  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
38143  */
38144 Roo.bootstrap.panel.Tabs = function(config){
38145     /**
38146     * The container element for this TabPanel.
38147     * @type Roo.Element
38148     */
38149     this.el = Roo.get(config.el);
38150     delete config.el;
38151     if(config){
38152         if(typeof config == "boolean"){
38153             this.tabPosition = config ? "bottom" : "top";
38154         }else{
38155             Roo.apply(this, config);
38156         }
38157     }
38158     
38159     if(this.tabPosition == "bottom"){
38160         // if tabs are at the bottom = create the body first.
38161         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38162         this.el.addClass("roo-tabs-bottom");
38163     }
38164     // next create the tabs holders
38165     
38166     if (this.tabPosition == "west"){
38167         
38168         var reg = this.region; // fake it..
38169         while (reg) {
38170             if (!reg.mgr.parent) {
38171                 break;
38172             }
38173             reg = reg.mgr.parent.region;
38174         }
38175         Roo.log("got nest?");
38176         Roo.log(reg);
38177         if (reg.mgr.getRegion('west')) {
38178             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
38179             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
38180             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38181             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38182             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38183         
38184             
38185         }
38186         
38187         
38188     } else {
38189      
38190         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
38191         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38192         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38193         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38194     }
38195     
38196     
38197     if(Roo.isIE){
38198         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
38199     }
38200     
38201     // finally - if tabs are at the top, then create the body last..
38202     if(this.tabPosition != "bottom"){
38203         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
38204          * @type Roo.Element
38205          */
38206         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38207         this.el.addClass("roo-tabs-top");
38208     }
38209     this.items = [];
38210
38211     this.bodyEl.setStyle("position", "relative");
38212
38213     this.active = null;
38214     this.activateDelegate = this.activate.createDelegate(this);
38215
38216     this.addEvents({
38217         /**
38218          * @event tabchange
38219          * Fires when the active tab changes
38220          * @param {Roo.TabPanel} this
38221          * @param {Roo.TabPanelItem} activePanel The new active tab
38222          */
38223         "tabchange": true,
38224         /**
38225          * @event beforetabchange
38226          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
38227          * @param {Roo.TabPanel} this
38228          * @param {Object} e Set cancel to true on this object to cancel the tab change
38229          * @param {Roo.TabPanelItem} tab The tab being changed to
38230          */
38231         "beforetabchange" : true
38232     });
38233
38234     Roo.EventManager.onWindowResize(this.onResize, this);
38235     this.cpad = this.el.getPadding("lr");
38236     this.hiddenCount = 0;
38237
38238
38239     // toolbar on the tabbar support...
38240     if (this.toolbar) {
38241         alert("no toolbar support yet");
38242         this.toolbar  = false;
38243         /*
38244         var tcfg = this.toolbar;
38245         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
38246         this.toolbar = new Roo.Toolbar(tcfg);
38247         if (Roo.isSafari) {
38248             var tbl = tcfg.container.child('table', true);
38249             tbl.setAttribute('width', '100%');
38250         }
38251         */
38252         
38253     }
38254    
38255
38256
38257     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
38258 };
38259
38260 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
38261     /*
38262      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
38263      */
38264     tabPosition : "top",
38265     /*
38266      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
38267      */
38268     currentTabWidth : 0,
38269     /*
38270      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
38271      */
38272     minTabWidth : 40,
38273     /*
38274      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
38275      */
38276     maxTabWidth : 250,
38277     /*
38278      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
38279      */
38280     preferredTabWidth : 175,
38281     /*
38282      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
38283      */
38284     resizeTabs : false,
38285     /*
38286      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
38287      */
38288     monitorResize : true,
38289     /*
38290      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
38291      */
38292     toolbar : false,  // set by caller..
38293     
38294     region : false, /// set by caller
38295     
38296     disableTooltips : true, // not used yet...
38297
38298     /**
38299      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
38300      * @param {String} id The id of the div to use <b>or create</b>
38301      * @param {String} text The text for the tab
38302      * @param {String} content (optional) Content to put in the TabPanelItem body
38303      * @param {Boolean} closable (optional) True to create a close icon on the tab
38304      * @return {Roo.TabPanelItem} The created TabPanelItem
38305      */
38306     addTab : function(id, text, content, closable, tpl)
38307     {
38308         var item = new Roo.bootstrap.panel.TabItem({
38309             panel: this,
38310             id : id,
38311             text : text,
38312             closable : closable,
38313             tpl : tpl
38314         });
38315         this.addTabItem(item);
38316         if(content){
38317             item.setContent(content);
38318         }
38319         return item;
38320     },
38321
38322     /**
38323      * Returns the {@link Roo.TabPanelItem} with the specified id/index
38324      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
38325      * @return {Roo.TabPanelItem}
38326      */
38327     getTab : function(id){
38328         return this.items[id];
38329     },
38330
38331     /**
38332      * Hides the {@link Roo.TabPanelItem} with the specified id/index
38333      * @param {String/Number} id The id or index of the TabPanelItem to hide.
38334      */
38335     hideTab : function(id){
38336         var t = this.items[id];
38337         if(!t.isHidden()){
38338            t.setHidden(true);
38339            this.hiddenCount++;
38340            this.autoSizeTabs();
38341         }
38342     },
38343
38344     /**
38345      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
38346      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
38347      */
38348     unhideTab : function(id){
38349         var t = this.items[id];
38350         if(t.isHidden()){
38351            t.setHidden(false);
38352            this.hiddenCount--;
38353            this.autoSizeTabs();
38354         }
38355     },
38356
38357     /**
38358      * Adds an existing {@link Roo.TabPanelItem}.
38359      * @param {Roo.TabPanelItem} item The TabPanelItem to add
38360      */
38361     addTabItem : function(item)
38362     {
38363         this.items[item.id] = item;
38364         this.items.push(item);
38365         this.autoSizeTabs();
38366       //  if(this.resizeTabs){
38367     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
38368   //         this.autoSizeTabs();
38369 //        }else{
38370 //            item.autoSize();
38371        // }
38372     },
38373
38374     /**
38375      * Removes a {@link Roo.TabPanelItem}.
38376      * @param {String/Number} id The id or index of the TabPanelItem to remove.
38377      */
38378     removeTab : function(id){
38379         var items = this.items;
38380         var tab = items[id];
38381         if(!tab) { return; }
38382         var index = items.indexOf(tab);
38383         if(this.active == tab && items.length > 1){
38384             var newTab = this.getNextAvailable(index);
38385             if(newTab) {
38386                 newTab.activate();
38387             }
38388         }
38389         this.stripEl.dom.removeChild(tab.pnode.dom);
38390         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
38391             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
38392         }
38393         items.splice(index, 1);
38394         delete this.items[tab.id];
38395         tab.fireEvent("close", tab);
38396         tab.purgeListeners();
38397         this.autoSizeTabs();
38398     },
38399
38400     getNextAvailable : function(start){
38401         var items = this.items;
38402         var index = start;
38403         // look for a next tab that will slide over to
38404         // replace the one being removed
38405         while(index < items.length){
38406             var item = items[++index];
38407             if(item && !item.isHidden()){
38408                 return item;
38409             }
38410         }
38411         // if one isn't found select the previous tab (on the left)
38412         index = start;
38413         while(index >= 0){
38414             var item = items[--index];
38415             if(item && !item.isHidden()){
38416                 return item;
38417             }
38418         }
38419         return null;
38420     },
38421
38422     /**
38423      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
38424      * @param {String/Number} id The id or index of the TabPanelItem to disable.
38425      */
38426     disableTab : function(id){
38427         var tab = this.items[id];
38428         if(tab && this.active != tab){
38429             tab.disable();
38430         }
38431     },
38432
38433     /**
38434      * Enables a {@link Roo.TabPanelItem} that is disabled.
38435      * @param {String/Number} id The id or index of the TabPanelItem to enable.
38436      */
38437     enableTab : function(id){
38438         var tab = this.items[id];
38439         tab.enable();
38440     },
38441
38442     /**
38443      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
38444      * @param {String/Number} id The id or index of the TabPanelItem to activate.
38445      * @return {Roo.TabPanelItem} The TabPanelItem.
38446      */
38447     activate : function(id)
38448     {
38449         //Roo.log('activite:'  + id);
38450         
38451         var tab = this.items[id];
38452         if(!tab){
38453             return null;
38454         }
38455         if(tab == this.active || tab.disabled){
38456             return tab;
38457         }
38458         var e = {};
38459         this.fireEvent("beforetabchange", this, e, tab);
38460         if(e.cancel !== true && !tab.disabled){
38461             if(this.active){
38462                 this.active.hide();
38463             }
38464             this.active = this.items[id];
38465             this.active.show();
38466             this.fireEvent("tabchange", this, this.active);
38467         }
38468         return tab;
38469     },
38470
38471     /**
38472      * Gets the active {@link Roo.TabPanelItem}.
38473      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
38474      */
38475     getActiveTab : function(){
38476         return this.active;
38477     },
38478
38479     /**
38480      * Updates the tab body element to fit the height of the container element
38481      * for overflow scrolling
38482      * @param {Number} targetHeight (optional) Override the starting height from the elements height
38483      */
38484     syncHeight : function(targetHeight){
38485         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
38486         var bm = this.bodyEl.getMargins();
38487         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
38488         this.bodyEl.setHeight(newHeight);
38489         return newHeight;
38490     },
38491
38492     onResize : function(){
38493         if(this.monitorResize){
38494             this.autoSizeTabs();
38495         }
38496     },
38497
38498     /**
38499      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
38500      */
38501     beginUpdate : function(){
38502         this.updating = true;
38503     },
38504
38505     /**
38506      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
38507      */
38508     endUpdate : function(){
38509         this.updating = false;
38510         this.autoSizeTabs();
38511     },
38512
38513     /**
38514      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
38515      */
38516     autoSizeTabs : function()
38517     {
38518         var count = this.items.length;
38519         var vcount = count - this.hiddenCount;
38520         
38521         if (vcount < 2) {
38522             this.stripEl.hide();
38523         } else {
38524             this.stripEl.show();
38525         }
38526         
38527         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
38528             return;
38529         }
38530         
38531         
38532         var w = Math.max(this.el.getWidth() - this.cpad, 10);
38533         var availWidth = Math.floor(w / vcount);
38534         var b = this.stripBody;
38535         if(b.getWidth() > w){
38536             var tabs = this.items;
38537             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
38538             if(availWidth < this.minTabWidth){
38539                 /*if(!this.sleft){    // incomplete scrolling code
38540                     this.createScrollButtons();
38541                 }
38542                 this.showScroll();
38543                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
38544             }
38545         }else{
38546             if(this.currentTabWidth < this.preferredTabWidth){
38547                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
38548             }
38549         }
38550     },
38551
38552     /**
38553      * Returns the number of tabs in this TabPanel.
38554      * @return {Number}
38555      */
38556      getCount : function(){
38557          return this.items.length;
38558      },
38559
38560     /**
38561      * Resizes all the tabs to the passed width
38562      * @param {Number} The new width
38563      */
38564     setTabWidth : function(width){
38565         this.currentTabWidth = width;
38566         for(var i = 0, len = this.items.length; i < len; i++) {
38567                 if(!this.items[i].isHidden()) {
38568                 this.items[i].setWidth(width);
38569             }
38570         }
38571     },
38572
38573     /**
38574      * Destroys this TabPanel
38575      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
38576      */
38577     destroy : function(removeEl){
38578         Roo.EventManager.removeResizeListener(this.onResize, this);
38579         for(var i = 0, len = this.items.length; i < len; i++){
38580             this.items[i].purgeListeners();
38581         }
38582         if(removeEl === true){
38583             this.el.update("");
38584             this.el.remove();
38585         }
38586     },
38587     
38588     createStrip : function(container)
38589     {
38590         var strip = document.createElement("nav");
38591         strip.className = Roo.bootstrap.version == 4 ?
38592             "navbar-light bg-light" : 
38593             "navbar navbar-default"; //"x-tabs-wrap";
38594         container.appendChild(strip);
38595         return strip;
38596     },
38597     
38598     createStripList : function(strip)
38599     {
38600         // div wrapper for retard IE
38601         // returns the "tr" element.
38602         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
38603         //'<div class="x-tabs-strip-wrap">'+
38604           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
38605           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
38606         return strip.firstChild; //.firstChild.firstChild.firstChild;
38607     },
38608     createBody : function(container)
38609     {
38610         var body = document.createElement("div");
38611         Roo.id(body, "tab-body");
38612         //Roo.fly(body).addClass("x-tabs-body");
38613         Roo.fly(body).addClass("tab-content");
38614         container.appendChild(body);
38615         return body;
38616     },
38617     createItemBody :function(bodyEl, id){
38618         var body = Roo.getDom(id);
38619         if(!body){
38620             body = document.createElement("div");
38621             body.id = id;
38622         }
38623         //Roo.fly(body).addClass("x-tabs-item-body");
38624         Roo.fly(body).addClass("tab-pane");
38625          bodyEl.insertBefore(body, bodyEl.firstChild);
38626         return body;
38627     },
38628     /** @private */
38629     createStripElements :  function(stripEl, text, closable, tpl)
38630     {
38631         var td = document.createElement("li"); // was td..
38632         td.className = 'nav-item';
38633         
38634         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
38635         
38636         
38637         stripEl.appendChild(td);
38638         /*if(closable){
38639             td.className = "x-tabs-closable";
38640             if(!this.closeTpl){
38641                 this.closeTpl = new Roo.Template(
38642                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38643                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
38644                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
38645                 );
38646             }
38647             var el = this.closeTpl.overwrite(td, {"text": text});
38648             var close = el.getElementsByTagName("div")[0];
38649             var inner = el.getElementsByTagName("em")[0];
38650             return {"el": el, "close": close, "inner": inner};
38651         } else {
38652         */
38653         // not sure what this is..
38654 //            if(!this.tabTpl){
38655                 //this.tabTpl = new Roo.Template(
38656                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38657                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
38658                 //);
38659 //                this.tabTpl = new Roo.Template(
38660 //                   '<a href="#">' +
38661 //                   '<span unselectable="on"' +
38662 //                            (this.disableTooltips ? '' : ' title="{text}"') +
38663 //                            ' >{text}</span></a>'
38664 //                );
38665 //                
38666 //            }
38667
38668
38669             var template = tpl || this.tabTpl || false;
38670             
38671             if(!template){
38672                 template =  new Roo.Template(
38673                         Roo.bootstrap.version == 4 ? 
38674                             (
38675                                 '<a class="nav-link" href="#" unselectable="on"' +
38676                                      (this.disableTooltips ? '' : ' title="{text}"') +
38677                                      ' >{text}</a>'
38678                             ) : (
38679                                 '<a class="nav-link" href="#">' +
38680                                 '<span unselectable="on"' +
38681                                          (this.disableTooltips ? '' : ' title="{text}"') +
38682                                     ' >{text}</span></a>'
38683                             )
38684                 );
38685             }
38686             
38687             switch (typeof(template)) {
38688                 case 'object' :
38689                     break;
38690                 case 'string' :
38691                     template = new Roo.Template(template);
38692                     break;
38693                 default :
38694                     break;
38695             }
38696             
38697             var el = template.overwrite(td, {"text": text});
38698             
38699             var inner = el.getElementsByTagName("span")[0];
38700             
38701             return {"el": el, "inner": inner};
38702             
38703     }
38704         
38705     
38706 });
38707
38708 /**
38709  * @class Roo.TabPanelItem
38710  * @extends Roo.util.Observable
38711  * Represents an individual item (tab plus body) in a TabPanel.
38712  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
38713  * @param {String} id The id of this TabPanelItem
38714  * @param {String} text The text for the tab of this TabPanelItem
38715  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
38716  */
38717 Roo.bootstrap.panel.TabItem = function(config){
38718     /**
38719      * The {@link Roo.TabPanel} this TabPanelItem belongs to
38720      * @type Roo.TabPanel
38721      */
38722     this.tabPanel = config.panel;
38723     /**
38724      * The id for this TabPanelItem
38725      * @type String
38726      */
38727     this.id = config.id;
38728     /** @private */
38729     this.disabled = false;
38730     /** @private */
38731     this.text = config.text;
38732     /** @private */
38733     this.loaded = false;
38734     this.closable = config.closable;
38735
38736     /**
38737      * The body element for this TabPanelItem.
38738      * @type Roo.Element
38739      */
38740     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
38741     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
38742     this.bodyEl.setStyle("display", "block");
38743     this.bodyEl.setStyle("zoom", "1");
38744     //this.hideAction();
38745
38746     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
38747     /** @private */
38748     this.el = Roo.get(els.el);
38749     this.inner = Roo.get(els.inner, true);
38750      this.textEl = Roo.bootstrap.version == 4 ?
38751         this.el : Roo.get(this.el.dom.firstChild, true);
38752
38753     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
38754     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
38755
38756     
38757 //    this.el.on("mousedown", this.onTabMouseDown, this);
38758     this.el.on("click", this.onTabClick, this);
38759     /** @private */
38760     if(config.closable){
38761         var c = Roo.get(els.close, true);
38762         c.dom.title = this.closeText;
38763         c.addClassOnOver("close-over");
38764         c.on("click", this.closeClick, this);
38765      }
38766
38767     this.addEvents({
38768          /**
38769          * @event activate
38770          * Fires when this tab becomes the active tab.
38771          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38772          * @param {Roo.TabPanelItem} this
38773          */
38774         "activate": true,
38775         /**
38776          * @event beforeclose
38777          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
38778          * @param {Roo.TabPanelItem} this
38779          * @param {Object} e Set cancel to true on this object to cancel the close.
38780          */
38781         "beforeclose": true,
38782         /**
38783          * @event close
38784          * Fires when this tab is closed.
38785          * @param {Roo.TabPanelItem} this
38786          */
38787          "close": true,
38788         /**
38789          * @event deactivate
38790          * Fires when this tab is no longer the active tab.
38791          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38792          * @param {Roo.TabPanelItem} this
38793          */
38794          "deactivate" : true
38795     });
38796     this.hidden = false;
38797
38798     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
38799 };
38800
38801 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
38802            {
38803     purgeListeners : function(){
38804        Roo.util.Observable.prototype.purgeListeners.call(this);
38805        this.el.removeAllListeners();
38806     },
38807     /**
38808      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
38809      */
38810     show : function(){
38811         this.status_node.addClass("active");
38812         this.showAction();
38813         if(Roo.isOpera){
38814             this.tabPanel.stripWrap.repaint();
38815         }
38816         this.fireEvent("activate", this.tabPanel, this);
38817     },
38818
38819     /**
38820      * Returns true if this tab is the active tab.
38821      * @return {Boolean}
38822      */
38823     isActive : function(){
38824         return this.tabPanel.getActiveTab() == this;
38825     },
38826
38827     /**
38828      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
38829      */
38830     hide : function(){
38831         this.status_node.removeClass("active");
38832         this.hideAction();
38833         this.fireEvent("deactivate", this.tabPanel, this);
38834     },
38835
38836     hideAction : function(){
38837         this.bodyEl.hide();
38838         this.bodyEl.setStyle("position", "absolute");
38839         this.bodyEl.setLeft("-20000px");
38840         this.bodyEl.setTop("-20000px");
38841     },
38842
38843     showAction : function(){
38844         this.bodyEl.setStyle("position", "relative");
38845         this.bodyEl.setTop("");
38846         this.bodyEl.setLeft("");
38847         this.bodyEl.show();
38848     },
38849
38850     /**
38851      * Set the tooltip for the tab.
38852      * @param {String} tooltip The tab's tooltip
38853      */
38854     setTooltip : function(text){
38855         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
38856             this.textEl.dom.qtip = text;
38857             this.textEl.dom.removeAttribute('title');
38858         }else{
38859             this.textEl.dom.title = text;
38860         }
38861     },
38862
38863     onTabClick : function(e){
38864         e.preventDefault();
38865         this.tabPanel.activate(this.id);
38866     },
38867
38868     onTabMouseDown : function(e){
38869         e.preventDefault();
38870         this.tabPanel.activate(this.id);
38871     },
38872 /*
38873     getWidth : function(){
38874         return this.inner.getWidth();
38875     },
38876
38877     setWidth : function(width){
38878         var iwidth = width - this.linode.getPadding("lr");
38879         this.inner.setWidth(iwidth);
38880         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
38881         this.linode.setWidth(width);
38882     },
38883 */
38884     /**
38885      * Show or hide the tab
38886      * @param {Boolean} hidden True to hide or false to show.
38887      */
38888     setHidden : function(hidden){
38889         this.hidden = hidden;
38890         this.linode.setStyle("display", hidden ? "none" : "");
38891     },
38892
38893     /**
38894      * Returns true if this tab is "hidden"
38895      * @return {Boolean}
38896      */
38897     isHidden : function(){
38898         return this.hidden;
38899     },
38900
38901     /**
38902      * Returns the text for this tab
38903      * @return {String}
38904      */
38905     getText : function(){
38906         return this.text;
38907     },
38908     /*
38909     autoSize : function(){
38910         //this.el.beginMeasure();
38911         this.textEl.setWidth(1);
38912         /*
38913          *  #2804 [new] Tabs in Roojs
38914          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
38915          */
38916         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
38917         //this.el.endMeasure();
38918     //},
38919
38920     /**
38921      * Sets the text for the tab (Note: this also sets the tooltip text)
38922      * @param {String} text The tab's text and tooltip
38923      */
38924     setText : function(text){
38925         this.text = text;
38926         this.textEl.update(text);
38927         this.setTooltip(text);
38928         //if(!this.tabPanel.resizeTabs){
38929         //    this.autoSize();
38930         //}
38931     },
38932     /**
38933      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
38934      */
38935     activate : function(){
38936         this.tabPanel.activate(this.id);
38937     },
38938
38939     /**
38940      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
38941      */
38942     disable : function(){
38943         if(this.tabPanel.active != this){
38944             this.disabled = true;
38945             this.status_node.addClass("disabled");
38946         }
38947     },
38948
38949     /**
38950      * Enables this TabPanelItem if it was previously disabled.
38951      */
38952     enable : function(){
38953         this.disabled = false;
38954         this.status_node.removeClass("disabled");
38955     },
38956
38957     /**
38958      * Sets the content for this TabPanelItem.
38959      * @param {String} content The content
38960      * @param {Boolean} loadScripts true to look for and load scripts
38961      */
38962     setContent : function(content, loadScripts){
38963         this.bodyEl.update(content, loadScripts);
38964     },
38965
38966     /**
38967      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
38968      * @return {Roo.UpdateManager} The UpdateManager
38969      */
38970     getUpdateManager : function(){
38971         return this.bodyEl.getUpdateManager();
38972     },
38973
38974     /**
38975      * Set a URL to be used to load the content for this TabPanelItem.
38976      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
38977      * @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)
38978      * @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)
38979      * @return {Roo.UpdateManager} The UpdateManager
38980      */
38981     setUrl : function(url, params, loadOnce){
38982         if(this.refreshDelegate){
38983             this.un('activate', this.refreshDelegate);
38984         }
38985         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
38986         this.on("activate", this.refreshDelegate);
38987         return this.bodyEl.getUpdateManager();
38988     },
38989
38990     /** @private */
38991     _handleRefresh : function(url, params, loadOnce){
38992         if(!loadOnce || !this.loaded){
38993             var updater = this.bodyEl.getUpdateManager();
38994             updater.update(url, params, this._setLoaded.createDelegate(this));
38995         }
38996     },
38997
38998     /**
38999      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
39000      *   Will fail silently if the setUrl method has not been called.
39001      *   This does not activate the panel, just updates its content.
39002      */
39003     refresh : function(){
39004         if(this.refreshDelegate){
39005            this.loaded = false;
39006            this.refreshDelegate();
39007         }
39008     },
39009
39010     /** @private */
39011     _setLoaded : function(){
39012         this.loaded = true;
39013     },
39014
39015     /** @private */
39016     closeClick : function(e){
39017         var o = {};
39018         e.stopEvent();
39019         this.fireEvent("beforeclose", this, o);
39020         if(o.cancel !== true){
39021             this.tabPanel.removeTab(this.id);
39022         }
39023     },
39024     /**
39025      * The text displayed in the tooltip for the close icon.
39026      * @type String
39027      */
39028     closeText : "Close this tab"
39029 });
39030 /**
39031 *    This script refer to:
39032 *    Title: International Telephone Input
39033 *    Author: Jack O'Connor
39034 *    Code version:  v12.1.12
39035 *    Availability: https://github.com/jackocnr/intl-tel-input.git
39036 **/
39037
39038 Roo.bootstrap.PhoneInputData = function() {
39039     var d = [
39040       [
39041         "Afghanistan (‫افغانستان‬‎)",
39042         "af",
39043         "93"
39044       ],
39045       [
39046         "Albania (Shqipëri)",
39047         "al",
39048         "355"
39049       ],
39050       [
39051         "Algeria (‫الجزائر‬‎)",
39052         "dz",
39053         "213"
39054       ],
39055       [
39056         "American Samoa",
39057         "as",
39058         "1684"
39059       ],
39060       [
39061         "Andorra",
39062         "ad",
39063         "376"
39064       ],
39065       [
39066         "Angola",
39067         "ao",
39068         "244"
39069       ],
39070       [
39071         "Anguilla",
39072         "ai",
39073         "1264"
39074       ],
39075       [
39076         "Antigua and Barbuda",
39077         "ag",
39078         "1268"
39079       ],
39080       [
39081         "Argentina",
39082         "ar",
39083         "54"
39084       ],
39085       [
39086         "Armenia (Հայաստան)",
39087         "am",
39088         "374"
39089       ],
39090       [
39091         "Aruba",
39092         "aw",
39093         "297"
39094       ],
39095       [
39096         "Australia",
39097         "au",
39098         "61",
39099         0
39100       ],
39101       [
39102         "Austria (Österreich)",
39103         "at",
39104         "43"
39105       ],
39106       [
39107         "Azerbaijan (Azərbaycan)",
39108         "az",
39109         "994"
39110       ],
39111       [
39112         "Bahamas",
39113         "bs",
39114         "1242"
39115       ],
39116       [
39117         "Bahrain (‫البحرين‬‎)",
39118         "bh",
39119         "973"
39120       ],
39121       [
39122         "Bangladesh (বাংলাদেশ)",
39123         "bd",
39124         "880"
39125       ],
39126       [
39127         "Barbados",
39128         "bb",
39129         "1246"
39130       ],
39131       [
39132         "Belarus (Беларусь)",
39133         "by",
39134         "375"
39135       ],
39136       [
39137         "Belgium (België)",
39138         "be",
39139         "32"
39140       ],
39141       [
39142         "Belize",
39143         "bz",
39144         "501"
39145       ],
39146       [
39147         "Benin (Bénin)",
39148         "bj",
39149         "229"
39150       ],
39151       [
39152         "Bermuda",
39153         "bm",
39154         "1441"
39155       ],
39156       [
39157         "Bhutan (འབྲུག)",
39158         "bt",
39159         "975"
39160       ],
39161       [
39162         "Bolivia",
39163         "bo",
39164         "591"
39165       ],
39166       [
39167         "Bosnia and Herzegovina (Босна и Херцеговина)",
39168         "ba",
39169         "387"
39170       ],
39171       [
39172         "Botswana",
39173         "bw",
39174         "267"
39175       ],
39176       [
39177         "Brazil (Brasil)",
39178         "br",
39179         "55"
39180       ],
39181       [
39182         "British Indian Ocean Territory",
39183         "io",
39184         "246"
39185       ],
39186       [
39187         "British Virgin Islands",
39188         "vg",
39189         "1284"
39190       ],
39191       [
39192         "Brunei",
39193         "bn",
39194         "673"
39195       ],
39196       [
39197         "Bulgaria (България)",
39198         "bg",
39199         "359"
39200       ],
39201       [
39202         "Burkina Faso",
39203         "bf",
39204         "226"
39205       ],
39206       [
39207         "Burundi (Uburundi)",
39208         "bi",
39209         "257"
39210       ],
39211       [
39212         "Cambodia (កម្ពុជា)",
39213         "kh",
39214         "855"
39215       ],
39216       [
39217         "Cameroon (Cameroun)",
39218         "cm",
39219         "237"
39220       ],
39221       [
39222         "Canada",
39223         "ca",
39224         "1",
39225         1,
39226         ["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"]
39227       ],
39228       [
39229         "Cape Verde (Kabu Verdi)",
39230         "cv",
39231         "238"
39232       ],
39233       [
39234         "Caribbean Netherlands",
39235         "bq",
39236         "599",
39237         1
39238       ],
39239       [
39240         "Cayman Islands",
39241         "ky",
39242         "1345"
39243       ],
39244       [
39245         "Central African Republic (République centrafricaine)",
39246         "cf",
39247         "236"
39248       ],
39249       [
39250         "Chad (Tchad)",
39251         "td",
39252         "235"
39253       ],
39254       [
39255         "Chile",
39256         "cl",
39257         "56"
39258       ],
39259       [
39260         "China (中国)",
39261         "cn",
39262         "86"
39263       ],
39264       [
39265         "Christmas Island",
39266         "cx",
39267         "61",
39268         2
39269       ],
39270       [
39271         "Cocos (Keeling) Islands",
39272         "cc",
39273         "61",
39274         1
39275       ],
39276       [
39277         "Colombia",
39278         "co",
39279         "57"
39280       ],
39281       [
39282         "Comoros (‫جزر القمر‬‎)",
39283         "km",
39284         "269"
39285       ],
39286       [
39287         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
39288         "cd",
39289         "243"
39290       ],
39291       [
39292         "Congo (Republic) (Congo-Brazzaville)",
39293         "cg",
39294         "242"
39295       ],
39296       [
39297         "Cook Islands",
39298         "ck",
39299         "682"
39300       ],
39301       [
39302         "Costa Rica",
39303         "cr",
39304         "506"
39305       ],
39306       [
39307         "Côte d’Ivoire",
39308         "ci",
39309         "225"
39310       ],
39311       [
39312         "Croatia (Hrvatska)",
39313         "hr",
39314         "385"
39315       ],
39316       [
39317         "Cuba",
39318         "cu",
39319         "53"
39320       ],
39321       [
39322         "Curaçao",
39323         "cw",
39324         "599",
39325         0
39326       ],
39327       [
39328         "Cyprus (Κύπρος)",
39329         "cy",
39330         "357"
39331       ],
39332       [
39333         "Czech Republic (Česká republika)",
39334         "cz",
39335         "420"
39336       ],
39337       [
39338         "Denmark (Danmark)",
39339         "dk",
39340         "45"
39341       ],
39342       [
39343         "Djibouti",
39344         "dj",
39345         "253"
39346       ],
39347       [
39348         "Dominica",
39349         "dm",
39350         "1767"
39351       ],
39352       [
39353         "Dominican Republic (República Dominicana)",
39354         "do",
39355         "1",
39356         2,
39357         ["809", "829", "849"]
39358       ],
39359       [
39360         "Ecuador",
39361         "ec",
39362         "593"
39363       ],
39364       [
39365         "Egypt (‫مصر‬‎)",
39366         "eg",
39367         "20"
39368       ],
39369       [
39370         "El Salvador",
39371         "sv",
39372         "503"
39373       ],
39374       [
39375         "Equatorial Guinea (Guinea Ecuatorial)",
39376         "gq",
39377         "240"
39378       ],
39379       [
39380         "Eritrea",
39381         "er",
39382         "291"
39383       ],
39384       [
39385         "Estonia (Eesti)",
39386         "ee",
39387         "372"
39388       ],
39389       [
39390         "Ethiopia",
39391         "et",
39392         "251"
39393       ],
39394       [
39395         "Falkland Islands (Islas Malvinas)",
39396         "fk",
39397         "500"
39398       ],
39399       [
39400         "Faroe Islands (Føroyar)",
39401         "fo",
39402         "298"
39403       ],
39404       [
39405         "Fiji",
39406         "fj",
39407         "679"
39408       ],
39409       [
39410         "Finland (Suomi)",
39411         "fi",
39412         "358",
39413         0
39414       ],
39415       [
39416         "France",
39417         "fr",
39418         "33"
39419       ],
39420       [
39421         "French Guiana (Guyane française)",
39422         "gf",
39423         "594"
39424       ],
39425       [
39426         "French Polynesia (Polynésie française)",
39427         "pf",
39428         "689"
39429       ],
39430       [
39431         "Gabon",
39432         "ga",
39433         "241"
39434       ],
39435       [
39436         "Gambia",
39437         "gm",
39438         "220"
39439       ],
39440       [
39441         "Georgia (საქართველო)",
39442         "ge",
39443         "995"
39444       ],
39445       [
39446         "Germany (Deutschland)",
39447         "de",
39448         "49"
39449       ],
39450       [
39451         "Ghana (Gaana)",
39452         "gh",
39453         "233"
39454       ],
39455       [
39456         "Gibraltar",
39457         "gi",
39458         "350"
39459       ],
39460       [
39461         "Greece (Ελλάδα)",
39462         "gr",
39463         "30"
39464       ],
39465       [
39466         "Greenland (Kalaallit Nunaat)",
39467         "gl",
39468         "299"
39469       ],
39470       [
39471         "Grenada",
39472         "gd",
39473         "1473"
39474       ],
39475       [
39476         "Guadeloupe",
39477         "gp",
39478         "590",
39479         0
39480       ],
39481       [
39482         "Guam",
39483         "gu",
39484         "1671"
39485       ],
39486       [
39487         "Guatemala",
39488         "gt",
39489         "502"
39490       ],
39491       [
39492         "Guernsey",
39493         "gg",
39494         "44",
39495         1
39496       ],
39497       [
39498         "Guinea (Guinée)",
39499         "gn",
39500         "224"
39501       ],
39502       [
39503         "Guinea-Bissau (Guiné Bissau)",
39504         "gw",
39505         "245"
39506       ],
39507       [
39508         "Guyana",
39509         "gy",
39510         "592"
39511       ],
39512       [
39513         "Haiti",
39514         "ht",
39515         "509"
39516       ],
39517       [
39518         "Honduras",
39519         "hn",
39520         "504"
39521       ],
39522       [
39523         "Hong Kong (香港)",
39524         "hk",
39525         "852"
39526       ],
39527       [
39528         "Hungary (Magyarország)",
39529         "hu",
39530         "36"
39531       ],
39532       [
39533         "Iceland (Ísland)",
39534         "is",
39535         "354"
39536       ],
39537       [
39538         "India (भारत)",
39539         "in",
39540         "91"
39541       ],
39542       [
39543         "Indonesia",
39544         "id",
39545         "62"
39546       ],
39547       [
39548         "Iran (‫ایران‬‎)",
39549         "ir",
39550         "98"
39551       ],
39552       [
39553         "Iraq (‫العراق‬‎)",
39554         "iq",
39555         "964"
39556       ],
39557       [
39558         "Ireland",
39559         "ie",
39560         "353"
39561       ],
39562       [
39563         "Isle of Man",
39564         "im",
39565         "44",
39566         2
39567       ],
39568       [
39569         "Israel (‫ישראל‬‎)",
39570         "il",
39571         "972"
39572       ],
39573       [
39574         "Italy (Italia)",
39575         "it",
39576         "39",
39577         0
39578       ],
39579       [
39580         "Jamaica",
39581         "jm",
39582         "1876"
39583       ],
39584       [
39585         "Japan (日本)",
39586         "jp",
39587         "81"
39588       ],
39589       [
39590         "Jersey",
39591         "je",
39592         "44",
39593         3
39594       ],
39595       [
39596         "Jordan (‫الأردن‬‎)",
39597         "jo",
39598         "962"
39599       ],
39600       [
39601         "Kazakhstan (Казахстан)",
39602         "kz",
39603         "7",
39604         1
39605       ],
39606       [
39607         "Kenya",
39608         "ke",
39609         "254"
39610       ],
39611       [
39612         "Kiribati",
39613         "ki",
39614         "686"
39615       ],
39616       [
39617         "Kosovo",
39618         "xk",
39619         "383"
39620       ],
39621       [
39622         "Kuwait (‫الكويت‬‎)",
39623         "kw",
39624         "965"
39625       ],
39626       [
39627         "Kyrgyzstan (Кыргызстан)",
39628         "kg",
39629         "996"
39630       ],
39631       [
39632         "Laos (ລາວ)",
39633         "la",
39634         "856"
39635       ],
39636       [
39637         "Latvia (Latvija)",
39638         "lv",
39639         "371"
39640       ],
39641       [
39642         "Lebanon (‫لبنان‬‎)",
39643         "lb",
39644         "961"
39645       ],
39646       [
39647         "Lesotho",
39648         "ls",
39649         "266"
39650       ],
39651       [
39652         "Liberia",
39653         "lr",
39654         "231"
39655       ],
39656       [
39657         "Libya (‫ليبيا‬‎)",
39658         "ly",
39659         "218"
39660       ],
39661       [
39662         "Liechtenstein",
39663         "li",
39664         "423"
39665       ],
39666       [
39667         "Lithuania (Lietuva)",
39668         "lt",
39669         "370"
39670       ],
39671       [
39672         "Luxembourg",
39673         "lu",
39674         "352"
39675       ],
39676       [
39677         "Macau (澳門)",
39678         "mo",
39679         "853"
39680       ],
39681       [
39682         "Macedonia (FYROM) (Македонија)",
39683         "mk",
39684         "389"
39685       ],
39686       [
39687         "Madagascar (Madagasikara)",
39688         "mg",
39689         "261"
39690       ],
39691       [
39692         "Malawi",
39693         "mw",
39694         "265"
39695       ],
39696       [
39697         "Malaysia",
39698         "my",
39699         "60"
39700       ],
39701       [
39702         "Maldives",
39703         "mv",
39704         "960"
39705       ],
39706       [
39707         "Mali",
39708         "ml",
39709         "223"
39710       ],
39711       [
39712         "Malta",
39713         "mt",
39714         "356"
39715       ],
39716       [
39717         "Marshall Islands",
39718         "mh",
39719         "692"
39720       ],
39721       [
39722         "Martinique",
39723         "mq",
39724         "596"
39725       ],
39726       [
39727         "Mauritania (‫موريتانيا‬‎)",
39728         "mr",
39729         "222"
39730       ],
39731       [
39732         "Mauritius (Moris)",
39733         "mu",
39734         "230"
39735       ],
39736       [
39737         "Mayotte",
39738         "yt",
39739         "262",
39740         1
39741       ],
39742       [
39743         "Mexico (México)",
39744         "mx",
39745         "52"
39746       ],
39747       [
39748         "Micronesia",
39749         "fm",
39750         "691"
39751       ],
39752       [
39753         "Moldova (Republica Moldova)",
39754         "md",
39755         "373"
39756       ],
39757       [
39758         "Monaco",
39759         "mc",
39760         "377"
39761       ],
39762       [
39763         "Mongolia (Монгол)",
39764         "mn",
39765         "976"
39766       ],
39767       [
39768         "Montenegro (Crna Gora)",
39769         "me",
39770         "382"
39771       ],
39772       [
39773         "Montserrat",
39774         "ms",
39775         "1664"
39776       ],
39777       [
39778         "Morocco (‫المغرب‬‎)",
39779         "ma",
39780         "212",
39781         0
39782       ],
39783       [
39784         "Mozambique (Moçambique)",
39785         "mz",
39786         "258"
39787       ],
39788       [
39789         "Myanmar (Burma) (မြန်မာ)",
39790         "mm",
39791         "95"
39792       ],
39793       [
39794         "Namibia (Namibië)",
39795         "na",
39796         "264"
39797       ],
39798       [
39799         "Nauru",
39800         "nr",
39801         "674"
39802       ],
39803       [
39804         "Nepal (नेपाल)",
39805         "np",
39806         "977"
39807       ],
39808       [
39809         "Netherlands (Nederland)",
39810         "nl",
39811         "31"
39812       ],
39813       [
39814         "New Caledonia (Nouvelle-Calédonie)",
39815         "nc",
39816         "687"
39817       ],
39818       [
39819         "New Zealand",
39820         "nz",
39821         "64"
39822       ],
39823       [
39824         "Nicaragua",
39825         "ni",
39826         "505"
39827       ],
39828       [
39829         "Niger (Nijar)",
39830         "ne",
39831         "227"
39832       ],
39833       [
39834         "Nigeria",
39835         "ng",
39836         "234"
39837       ],
39838       [
39839         "Niue",
39840         "nu",
39841         "683"
39842       ],
39843       [
39844         "Norfolk Island",
39845         "nf",
39846         "672"
39847       ],
39848       [
39849         "North Korea (조선 민주주의 인민 공화국)",
39850         "kp",
39851         "850"
39852       ],
39853       [
39854         "Northern Mariana Islands",
39855         "mp",
39856         "1670"
39857       ],
39858       [
39859         "Norway (Norge)",
39860         "no",
39861         "47",
39862         0
39863       ],
39864       [
39865         "Oman (‫عُمان‬‎)",
39866         "om",
39867         "968"
39868       ],
39869       [
39870         "Pakistan (‫پاکستان‬‎)",
39871         "pk",
39872         "92"
39873       ],
39874       [
39875         "Palau",
39876         "pw",
39877         "680"
39878       ],
39879       [
39880         "Palestine (‫فلسطين‬‎)",
39881         "ps",
39882         "970"
39883       ],
39884       [
39885         "Panama (Panamá)",
39886         "pa",
39887         "507"
39888       ],
39889       [
39890         "Papua New Guinea",
39891         "pg",
39892         "675"
39893       ],
39894       [
39895         "Paraguay",
39896         "py",
39897         "595"
39898       ],
39899       [
39900         "Peru (Perú)",
39901         "pe",
39902         "51"
39903       ],
39904       [
39905         "Philippines",
39906         "ph",
39907         "63"
39908       ],
39909       [
39910         "Poland (Polska)",
39911         "pl",
39912         "48"
39913       ],
39914       [
39915         "Portugal",
39916         "pt",
39917         "351"
39918       ],
39919       [
39920         "Puerto Rico",
39921         "pr",
39922         "1",
39923         3,
39924         ["787", "939"]
39925       ],
39926       [
39927         "Qatar (‫قطر‬‎)",
39928         "qa",
39929         "974"
39930       ],
39931       [
39932         "Réunion (La Réunion)",
39933         "re",
39934         "262",
39935         0
39936       ],
39937       [
39938         "Romania (România)",
39939         "ro",
39940         "40"
39941       ],
39942       [
39943         "Russia (Россия)",
39944         "ru",
39945         "7",
39946         0
39947       ],
39948       [
39949         "Rwanda",
39950         "rw",
39951         "250"
39952       ],
39953       [
39954         "Saint Barthélemy",
39955         "bl",
39956         "590",
39957         1
39958       ],
39959       [
39960         "Saint Helena",
39961         "sh",
39962         "290"
39963       ],
39964       [
39965         "Saint Kitts and Nevis",
39966         "kn",
39967         "1869"
39968       ],
39969       [
39970         "Saint Lucia",
39971         "lc",
39972         "1758"
39973       ],
39974       [
39975         "Saint Martin (Saint-Martin (partie française))",
39976         "mf",
39977         "590",
39978         2
39979       ],
39980       [
39981         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
39982         "pm",
39983         "508"
39984       ],
39985       [
39986         "Saint Vincent and the Grenadines",
39987         "vc",
39988         "1784"
39989       ],
39990       [
39991         "Samoa",
39992         "ws",
39993         "685"
39994       ],
39995       [
39996         "San Marino",
39997         "sm",
39998         "378"
39999       ],
40000       [
40001         "São Tomé and Príncipe (São Tomé e Príncipe)",
40002         "st",
40003         "239"
40004       ],
40005       [
40006         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
40007         "sa",
40008         "966"
40009       ],
40010       [
40011         "Senegal (Sénégal)",
40012         "sn",
40013         "221"
40014       ],
40015       [
40016         "Serbia (Србија)",
40017         "rs",
40018         "381"
40019       ],
40020       [
40021         "Seychelles",
40022         "sc",
40023         "248"
40024       ],
40025       [
40026         "Sierra Leone",
40027         "sl",
40028         "232"
40029       ],
40030       [
40031         "Singapore",
40032         "sg",
40033         "65"
40034       ],
40035       [
40036         "Sint Maarten",
40037         "sx",
40038         "1721"
40039       ],
40040       [
40041         "Slovakia (Slovensko)",
40042         "sk",
40043         "421"
40044       ],
40045       [
40046         "Slovenia (Slovenija)",
40047         "si",
40048         "386"
40049       ],
40050       [
40051         "Solomon Islands",
40052         "sb",
40053         "677"
40054       ],
40055       [
40056         "Somalia (Soomaaliya)",
40057         "so",
40058         "252"
40059       ],
40060       [
40061         "South Africa",
40062         "za",
40063         "27"
40064       ],
40065       [
40066         "South Korea (대한민국)",
40067         "kr",
40068         "82"
40069       ],
40070       [
40071         "South Sudan (‫جنوب السودان‬‎)",
40072         "ss",
40073         "211"
40074       ],
40075       [
40076         "Spain (España)",
40077         "es",
40078         "34"
40079       ],
40080       [
40081         "Sri Lanka (ශ්‍රී ලංකාව)",
40082         "lk",
40083         "94"
40084       ],
40085       [
40086         "Sudan (‫السودان‬‎)",
40087         "sd",
40088         "249"
40089       ],
40090       [
40091         "Suriname",
40092         "sr",
40093         "597"
40094       ],
40095       [
40096         "Svalbard and Jan Mayen",
40097         "sj",
40098         "47",
40099         1
40100       ],
40101       [
40102         "Swaziland",
40103         "sz",
40104         "268"
40105       ],
40106       [
40107         "Sweden (Sverige)",
40108         "se",
40109         "46"
40110       ],
40111       [
40112         "Switzerland (Schweiz)",
40113         "ch",
40114         "41"
40115       ],
40116       [
40117         "Syria (‫سوريا‬‎)",
40118         "sy",
40119         "963"
40120       ],
40121       [
40122         "Taiwan (台灣)",
40123         "tw",
40124         "886"
40125       ],
40126       [
40127         "Tajikistan",
40128         "tj",
40129         "992"
40130       ],
40131       [
40132         "Tanzania",
40133         "tz",
40134         "255"
40135       ],
40136       [
40137         "Thailand (ไทย)",
40138         "th",
40139         "66"
40140       ],
40141       [
40142         "Timor-Leste",
40143         "tl",
40144         "670"
40145       ],
40146       [
40147         "Togo",
40148         "tg",
40149         "228"
40150       ],
40151       [
40152         "Tokelau",
40153         "tk",
40154         "690"
40155       ],
40156       [
40157         "Tonga",
40158         "to",
40159         "676"
40160       ],
40161       [
40162         "Trinidad and Tobago",
40163         "tt",
40164         "1868"
40165       ],
40166       [
40167         "Tunisia (‫تونس‬‎)",
40168         "tn",
40169         "216"
40170       ],
40171       [
40172         "Turkey (Türkiye)",
40173         "tr",
40174         "90"
40175       ],
40176       [
40177         "Turkmenistan",
40178         "tm",
40179         "993"
40180       ],
40181       [
40182         "Turks and Caicos Islands",
40183         "tc",
40184         "1649"
40185       ],
40186       [
40187         "Tuvalu",
40188         "tv",
40189         "688"
40190       ],
40191       [
40192         "U.S. Virgin Islands",
40193         "vi",
40194         "1340"
40195       ],
40196       [
40197         "Uganda",
40198         "ug",
40199         "256"
40200       ],
40201       [
40202         "Ukraine (Україна)",
40203         "ua",
40204         "380"
40205       ],
40206       [
40207         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
40208         "ae",
40209         "971"
40210       ],
40211       [
40212         "United Kingdom",
40213         "gb",
40214         "44",
40215         0
40216       ],
40217       [
40218         "United States",
40219         "us",
40220         "1",
40221         0
40222       ],
40223       [
40224         "Uruguay",
40225         "uy",
40226         "598"
40227       ],
40228       [
40229         "Uzbekistan (Oʻzbekiston)",
40230         "uz",
40231         "998"
40232       ],
40233       [
40234         "Vanuatu",
40235         "vu",
40236         "678"
40237       ],
40238       [
40239         "Vatican City (Città del Vaticano)",
40240         "va",
40241         "39",
40242         1
40243       ],
40244       [
40245         "Venezuela",
40246         "ve",
40247         "58"
40248       ],
40249       [
40250         "Vietnam (Việt Nam)",
40251         "vn",
40252         "84"
40253       ],
40254       [
40255         "Wallis and Futuna (Wallis-et-Futuna)",
40256         "wf",
40257         "681"
40258       ],
40259       [
40260         "Western Sahara (‫الصحراء الغربية‬‎)",
40261         "eh",
40262         "212",
40263         1
40264       ],
40265       [
40266         "Yemen (‫اليمن‬‎)",
40267         "ye",
40268         "967"
40269       ],
40270       [
40271         "Zambia",
40272         "zm",
40273         "260"
40274       ],
40275       [
40276         "Zimbabwe",
40277         "zw",
40278         "263"
40279       ],
40280       [
40281         "Åland Islands",
40282         "ax",
40283         "358",
40284         1
40285       ]
40286   ];
40287   
40288   return d;
40289 }/**
40290 *    This script refer to:
40291 *    Title: International Telephone Input
40292 *    Author: Jack O'Connor
40293 *    Code version:  v12.1.12
40294 *    Availability: https://github.com/jackocnr/intl-tel-input.git
40295 **/
40296
40297 /**
40298  * @class Roo.bootstrap.PhoneInput
40299  * @extends Roo.bootstrap.TriggerField
40300  * An input with International dial-code selection
40301  
40302  * @cfg {String} defaultDialCode default '+852'
40303  * @cfg {Array} preferedCountries default []
40304   
40305  * @constructor
40306  * Create a new PhoneInput.
40307  * @param {Object} config Configuration options
40308  */
40309
40310 Roo.bootstrap.PhoneInput = function(config) {
40311     Roo.bootstrap.PhoneInput.superclass.constructor.call(this, config);
40312 };
40313
40314 Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
40315         
40316         listWidth: undefined,
40317         
40318         selectedClass: 'active',
40319         
40320         invalidClass : "has-warning",
40321         
40322         validClass: 'has-success',
40323         
40324         allowed: '0123456789',
40325         
40326         max_length: 15,
40327         
40328         /**
40329          * @cfg {String} defaultDialCode The default dial code when initializing the input
40330          */
40331         defaultDialCode: '+852',
40332         
40333         /**
40334          * @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
40335          */
40336         preferedCountries: false,
40337         
40338         getAutoCreate : function()
40339         {
40340             var data = Roo.bootstrap.PhoneInputData();
40341             var align = this.labelAlign || this.parentLabelAlign();
40342             var id = Roo.id();
40343             
40344             this.allCountries = [];
40345             this.dialCodeMapping = [];
40346             
40347             for (var i = 0; i < data.length; i++) {
40348               var c = data[i];
40349               this.allCountries[i] = {
40350                 name: c[0],
40351                 iso2: c[1],
40352                 dialCode: c[2],
40353                 priority: c[3] || 0,
40354                 areaCodes: c[4] || null
40355               };
40356               this.dialCodeMapping[c[2]] = {
40357                   name: c[0],
40358                   iso2: c[1],
40359                   priority: c[3] || 0,
40360                   areaCodes: c[4] || null
40361               };
40362             }
40363             
40364             var cfg = {
40365                 cls: 'form-group',
40366                 cn: []
40367             };
40368             
40369             var input =  {
40370                 tag: 'input',
40371                 id : id,
40372                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
40373                 maxlength: this.max_length,
40374                 cls : 'form-control tel-input',
40375                 autocomplete: 'new-password'
40376             };
40377             
40378             var hiddenInput = {
40379                 tag: 'input',
40380                 type: 'hidden',
40381                 cls: 'hidden-tel-input'
40382             };
40383             
40384             if (this.name) {
40385                 hiddenInput.name = this.name;
40386             }
40387             
40388             if (this.disabled) {
40389                 input.disabled = true;
40390             }
40391             
40392             var flag_container = {
40393                 tag: 'div',
40394                 cls: 'flag-box',
40395                 cn: [
40396                     {
40397                         tag: 'div',
40398                         cls: 'flag'
40399                     },
40400                     {
40401                         tag: 'div',
40402                         cls: 'caret'
40403                     }
40404                 ]
40405             };
40406             
40407             var box = {
40408                 tag: 'div',
40409                 cls: this.hasFeedback ? 'has-feedback' : '',
40410                 cn: [
40411                     hiddenInput,
40412                     input,
40413                     {
40414                         tag: 'input',
40415                         cls: 'dial-code-holder',
40416                         disabled: true
40417                     }
40418                 ]
40419             };
40420             
40421             var container = {
40422                 cls: 'roo-select2-container input-group',
40423                 cn: [
40424                     flag_container,
40425                     box
40426                 ]
40427             };
40428             
40429             if (this.fieldLabel.length) {
40430                 var indicator = {
40431                     tag: 'i',
40432                     tooltip: 'This field is required'
40433                 };
40434                 
40435                 var label = {
40436                     tag: 'label',
40437                     'for':  id,
40438                     cls: 'control-label',
40439                     cn: []
40440                 };
40441                 
40442                 var label_text = {
40443                     tag: 'span',
40444                     html: this.fieldLabel
40445                 };
40446                 
40447                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
40448                 label.cn = [
40449                     indicator,
40450                     label_text
40451                 ];
40452                 
40453                 if(this.indicatorpos == 'right') {
40454                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
40455                     label.cn = [
40456                         label_text,
40457                         indicator
40458                     ];
40459                 }
40460                 
40461                 if(align == 'left') {
40462                     container = {
40463                         tag: 'div',
40464                         cn: [
40465                             container
40466                         ]
40467                     };
40468                     
40469                     if(this.labelWidth > 12){
40470                         label.style = "width: " + this.labelWidth + 'px';
40471                     }
40472                     if(this.labelWidth < 13 && this.labelmd == 0){
40473                         this.labelmd = this.labelWidth;
40474                     }
40475                     if(this.labellg > 0){
40476                         label.cls += ' col-lg-' + this.labellg;
40477                         input.cls += ' col-lg-' + (12 - this.labellg);
40478                     }
40479                     if(this.labelmd > 0){
40480                         label.cls += ' col-md-' + this.labelmd;
40481                         container.cls += ' col-md-' + (12 - this.labelmd);
40482                     }
40483                     if(this.labelsm > 0){
40484                         label.cls += ' col-sm-' + this.labelsm;
40485                         container.cls += ' col-sm-' + (12 - this.labelsm);
40486                     }
40487                     if(this.labelxs > 0){
40488                         label.cls += ' col-xs-' + this.labelxs;
40489                         container.cls += ' col-xs-' + (12 - this.labelxs);
40490                     }
40491                 }
40492             }
40493             
40494             cfg.cn = [
40495                 label,
40496                 container
40497             ];
40498             
40499             var settings = this;
40500             
40501             ['xs','sm','md','lg'].map(function(size){
40502                 if (settings[size]) {
40503                     cfg.cls += ' col-' + size + '-' + settings[size];
40504                 }
40505             });
40506             
40507             this.store = new Roo.data.Store({
40508                 proxy : new Roo.data.MemoryProxy({}),
40509                 reader : new Roo.data.JsonReader({
40510                     fields : [
40511                         {
40512                             'name' : 'name',
40513                             'type' : 'string'
40514                         },
40515                         {
40516                             'name' : 'iso2',
40517                             'type' : 'string'
40518                         },
40519                         {
40520                             'name' : 'dialCode',
40521                             'type' : 'string'
40522                         },
40523                         {
40524                             'name' : 'priority',
40525                             'type' : 'string'
40526                         },
40527                         {
40528                             'name' : 'areaCodes',
40529                             'type' : 'string'
40530                         }
40531                     ]
40532                 })
40533             });
40534             
40535             if(!this.preferedCountries) {
40536                 this.preferedCountries = [
40537                     'hk',
40538                     'gb',
40539                     'us'
40540                 ];
40541             }
40542             
40543             var p = this.preferedCountries.reverse();
40544             
40545             if(p) {
40546                 for (var i = 0; i < p.length; i++) {
40547                     for (var j = 0; j < this.allCountries.length; j++) {
40548                         if(this.allCountries[j].iso2 == p[i]) {
40549                             var t = this.allCountries[j];
40550                             this.allCountries.splice(j,1);
40551                             this.allCountries.unshift(t);
40552                         }
40553                     } 
40554                 }
40555             }
40556             
40557             this.store.proxy.data = {
40558                 success: true,
40559                 data: this.allCountries
40560             };
40561             
40562             return cfg;
40563         },
40564         
40565         initEvents : function()
40566         {
40567             this.createList();
40568             Roo.bootstrap.PhoneInput.superclass.initEvents.call(this);
40569             
40570             this.indicator = this.indicatorEl();
40571             this.flag = this.flagEl();
40572             this.dialCodeHolder = this.dialCodeHolderEl();
40573             
40574             this.trigger = this.el.select('div.flag-box',true).first();
40575             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40576             
40577             var _this = this;
40578             
40579             (function(){
40580                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
40581                 _this.list.setWidth(lw);
40582             }).defer(100);
40583             
40584             this.list.on('mouseover', this.onViewOver, this);
40585             this.list.on('mousemove', this.onViewMove, this);
40586             this.inputEl().on("keyup", this.onKeyUp, this);
40587             this.inputEl().on("keypress", this.onKeyPress, this);
40588             
40589             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
40590
40591             this.view = new Roo.View(this.list, this.tpl, {
40592                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
40593             });
40594             
40595             this.view.on('click', this.onViewClick, this);
40596             this.setValue(this.defaultDialCode);
40597         },
40598         
40599         onTriggerClick : function(e)
40600         {
40601             Roo.log('trigger click');
40602             if(this.disabled){
40603                 return;
40604             }
40605             
40606             if(this.isExpanded()){
40607                 this.collapse();
40608                 this.hasFocus = false;
40609             }else {
40610                 this.store.load({});
40611                 this.hasFocus = true;
40612                 this.expand();
40613             }
40614         },
40615         
40616         isExpanded : function()
40617         {
40618             return this.list.isVisible();
40619         },
40620         
40621         collapse : function()
40622         {
40623             if(!this.isExpanded()){
40624                 return;
40625             }
40626             this.list.hide();
40627             Roo.get(document).un('mousedown', this.collapseIf, this);
40628             Roo.get(document).un('mousewheel', this.collapseIf, this);
40629             this.fireEvent('collapse', this);
40630             this.validate();
40631         },
40632         
40633         expand : function()
40634         {
40635             Roo.log('expand');
40636
40637             if(this.isExpanded() || !this.hasFocus){
40638                 return;
40639             }
40640             
40641             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
40642             this.list.setWidth(lw);
40643             
40644             this.list.show();
40645             this.restrictHeight();
40646             
40647             Roo.get(document).on('mousedown', this.collapseIf, this);
40648             Roo.get(document).on('mousewheel', this.collapseIf, this);
40649             
40650             this.fireEvent('expand', this);
40651         },
40652         
40653         restrictHeight : function()
40654         {
40655             this.list.alignTo(this.inputEl(), this.listAlign);
40656             this.list.alignTo(this.inputEl(), this.listAlign);
40657         },
40658         
40659         onViewOver : function(e, t)
40660         {
40661             if(this.inKeyMode){
40662                 return;
40663             }
40664             var item = this.view.findItemFromChild(t);
40665             
40666             if(item){
40667                 var index = this.view.indexOf(item);
40668                 this.select(index, false);
40669             }
40670         },
40671
40672         // private
40673         onViewClick : function(view, doFocus, el, e)
40674         {
40675             var index = this.view.getSelectedIndexes()[0];
40676             
40677             var r = this.store.getAt(index);
40678             
40679             if(r){
40680                 this.onSelect(r, index);
40681             }
40682             if(doFocus !== false && !this.blockFocus){
40683                 this.inputEl().focus();
40684             }
40685         },
40686         
40687         onViewMove : function(e, t)
40688         {
40689             this.inKeyMode = false;
40690         },
40691         
40692         select : function(index, scrollIntoView)
40693         {
40694             this.selectedIndex = index;
40695             this.view.select(index);
40696             if(scrollIntoView !== false){
40697                 var el = this.view.getNode(index);
40698                 if(el){
40699                     this.list.scrollChildIntoView(el, false);
40700                 }
40701             }
40702         },
40703         
40704         createList : function()
40705         {
40706             this.list = Roo.get(document.body).createChild({
40707                 tag: 'ul',
40708                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
40709                 style: 'display:none'
40710             });
40711             
40712             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
40713         },
40714         
40715         collapseIf : function(e)
40716         {
40717             var in_combo  = e.within(this.el);
40718             var in_list =  e.within(this.list);
40719             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
40720             
40721             if (in_combo || in_list || is_list) {
40722                 return;
40723             }
40724             this.collapse();
40725         },
40726         
40727         onSelect : function(record, index)
40728         {
40729             if(this.fireEvent('beforeselect', this, record, index) !== false){
40730                 
40731                 this.setFlagClass(record.data.iso2);
40732                 this.setDialCode(record.data.dialCode);
40733                 this.hasFocus = false;
40734                 this.collapse();
40735                 this.fireEvent('select', this, record, index);
40736             }
40737         },
40738         
40739         flagEl : function()
40740         {
40741             var flag = this.el.select('div.flag',true).first();
40742             if(!flag){
40743                 return false;
40744             }
40745             return flag;
40746         },
40747         
40748         dialCodeHolderEl : function()
40749         {
40750             var d = this.el.select('input.dial-code-holder',true).first();
40751             if(!d){
40752                 return false;
40753             }
40754             return d;
40755         },
40756         
40757         setDialCode : function(v)
40758         {
40759             this.dialCodeHolder.dom.value = '+'+v;
40760         },
40761         
40762         setFlagClass : function(n)
40763         {
40764             this.flag.dom.className = 'flag '+n;
40765         },
40766         
40767         getValue : function()
40768         {
40769             var v = this.inputEl().getValue();
40770             if(this.dialCodeHolder) {
40771                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
40772             }
40773             return v;
40774         },
40775         
40776         setValue : function(v)
40777         {
40778             var d = this.getDialCode(v);
40779             
40780             //invalid dial code
40781             if(v.length == 0 || !d || d.length == 0) {
40782                 if(this.rendered){
40783                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
40784                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
40785                 }
40786                 return;
40787             }
40788             
40789             //valid dial code
40790             this.setFlagClass(this.dialCodeMapping[d].iso2);
40791             this.setDialCode(d);
40792             this.inputEl().dom.value = v.replace('+'+d,'');
40793             this.hiddenEl().dom.value = this.getValue();
40794             
40795             this.validate();
40796         },
40797         
40798         getDialCode : function(v)
40799         {
40800             v = v ||  '';
40801             
40802             if (v.length == 0) {
40803                 return this.dialCodeHolder.dom.value;
40804             }
40805             
40806             var dialCode = "";
40807             if (v.charAt(0) != "+") {
40808                 return false;
40809             }
40810             var numericChars = "";
40811             for (var i = 1; i < v.length; i++) {
40812               var c = v.charAt(i);
40813               if (!isNaN(c)) {
40814                 numericChars += c;
40815                 if (this.dialCodeMapping[numericChars]) {
40816                   dialCode = v.substr(1, i);
40817                 }
40818                 if (numericChars.length == 4) {
40819                   break;
40820                 }
40821               }
40822             }
40823             return dialCode;
40824         },
40825         
40826         reset : function()
40827         {
40828             this.setValue(this.defaultDialCode);
40829             this.validate();
40830         },
40831         
40832         hiddenEl : function()
40833         {
40834             return this.el.select('input.hidden-tel-input',true).first();
40835         },
40836         
40837         // after setting val
40838         onKeyUp : function(e){
40839             this.setValue(this.getValue());
40840         },
40841         
40842         onKeyPress : function(e){
40843             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
40844                 e.stopEvent();
40845             }
40846         }
40847         
40848 });
40849 /**
40850  * @class Roo.bootstrap.MoneyField
40851  * @extends Roo.bootstrap.ComboBox
40852  * Bootstrap MoneyField class
40853  * 
40854  * @constructor
40855  * Create a new MoneyField.
40856  * @param {Object} config Configuration options
40857  */
40858
40859 Roo.bootstrap.MoneyField = function(config) {
40860     
40861     Roo.bootstrap.MoneyField.superclass.constructor.call(this, config);
40862     
40863 };
40864
40865 Roo.extend(Roo.bootstrap.MoneyField, Roo.bootstrap.ComboBox, {
40866     
40867     /**
40868      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40869      */
40870     allowDecimals : true,
40871     /**
40872      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40873      */
40874     decimalSeparator : ".",
40875     /**
40876      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40877      */
40878     decimalPrecision : 0,
40879     /**
40880      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40881      */
40882     allowNegative : true,
40883     /**
40884      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
40885      */
40886     allowZero: true,
40887     /**
40888      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40889      */
40890     minValue : Number.NEGATIVE_INFINITY,
40891     /**
40892      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40893      */
40894     maxValue : Number.MAX_VALUE,
40895     /**
40896      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40897      */
40898     minText : "The minimum value for this field is {0}",
40899     /**
40900      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40901      */
40902     maxText : "The maximum value for this field is {0}",
40903     /**
40904      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40905      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40906      */
40907     nanText : "{0} is not a valid number",
40908     /**
40909      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
40910      */
40911     castInt : true,
40912     /**
40913      * @cfg {String} defaults currency of the MoneyField
40914      * value should be in lkey
40915      */
40916     defaultCurrency : false,
40917     /**
40918      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
40919      */
40920     thousandsDelimiter : false,
40921     /**
40922      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
40923      */
40924     max_length: false,
40925     
40926     inputlg : 9,
40927     inputmd : 9,
40928     inputsm : 9,
40929     inputxs : 6,
40930     
40931     store : false,
40932     
40933     getAutoCreate : function()
40934     {
40935         var align = this.labelAlign || this.parentLabelAlign();
40936         
40937         var id = Roo.id();
40938
40939         var cfg = {
40940             cls: 'form-group',
40941             cn: []
40942         };
40943
40944         var input =  {
40945             tag: 'input',
40946             id : id,
40947             cls : 'form-control roo-money-amount-input',
40948             autocomplete: 'new-password'
40949         };
40950         
40951         var hiddenInput = {
40952             tag: 'input',
40953             type: 'hidden',
40954             id: Roo.id(),
40955             cls: 'hidden-number-input'
40956         };
40957         
40958         if(this.max_length) {
40959             input.maxlength = this.max_length; 
40960         }
40961         
40962         if (this.name) {
40963             hiddenInput.name = this.name;
40964         }
40965
40966         if (this.disabled) {
40967             input.disabled = true;
40968         }
40969
40970         var clg = 12 - this.inputlg;
40971         var cmd = 12 - this.inputmd;
40972         var csm = 12 - this.inputsm;
40973         var cxs = 12 - this.inputxs;
40974         
40975         var container = {
40976             tag : 'div',
40977             cls : 'row roo-money-field',
40978             cn : [
40979                 {
40980                     tag : 'div',
40981                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
40982                     cn : [
40983                         {
40984                             tag : 'div',
40985                             cls: 'roo-select2-container input-group',
40986                             cn: [
40987                                 {
40988                                     tag : 'input',
40989                                     cls : 'form-control roo-money-currency-input',
40990                                     autocomplete: 'new-password',
40991                                     readOnly : 1,
40992                                     name : this.currencyName
40993                                 },
40994                                 {
40995                                     tag :'span',
40996                                     cls : 'input-group-addon',
40997                                     cn : [
40998                                         {
40999                                             tag: 'span',
41000                                             cls: 'caret'
41001                                         }
41002                                     ]
41003                                 }
41004                             ]
41005                         }
41006                     ]
41007                 },
41008                 {
41009                     tag : 'div',
41010                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
41011                     cn : [
41012                         {
41013                             tag: 'div',
41014                             cls: this.hasFeedback ? 'has-feedback' : '',
41015                             cn: [
41016                                 input
41017                             ]
41018                         }
41019                     ]
41020                 }
41021             ]
41022             
41023         };
41024         
41025         if (this.fieldLabel.length) {
41026             var indicator = {
41027                 tag: 'i',
41028                 tooltip: 'This field is required'
41029             };
41030
41031             var label = {
41032                 tag: 'label',
41033                 'for':  id,
41034                 cls: 'control-label',
41035                 cn: []
41036             };
41037
41038             var label_text = {
41039                 tag: 'span',
41040                 html: this.fieldLabel
41041             };
41042
41043             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
41044             label.cn = [
41045                 indicator,
41046                 label_text
41047             ];
41048
41049             if(this.indicatorpos == 'right') {
41050                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
41051                 label.cn = [
41052                     label_text,
41053                     indicator
41054                 ];
41055             }
41056
41057             if(align == 'left') {
41058                 container = {
41059                     tag: 'div',
41060                     cn: [
41061                         container
41062                     ]
41063                 };
41064
41065                 if(this.labelWidth > 12){
41066                     label.style = "width: " + this.labelWidth + 'px';
41067                 }
41068                 if(this.labelWidth < 13 && this.labelmd == 0){
41069                     this.labelmd = this.labelWidth;
41070                 }
41071                 if(this.labellg > 0){
41072                     label.cls += ' col-lg-' + this.labellg;
41073                     input.cls += ' col-lg-' + (12 - this.labellg);
41074                 }
41075                 if(this.labelmd > 0){
41076                     label.cls += ' col-md-' + this.labelmd;
41077                     container.cls += ' col-md-' + (12 - this.labelmd);
41078                 }
41079                 if(this.labelsm > 0){
41080                     label.cls += ' col-sm-' + this.labelsm;
41081                     container.cls += ' col-sm-' + (12 - this.labelsm);
41082                 }
41083                 if(this.labelxs > 0){
41084                     label.cls += ' col-xs-' + this.labelxs;
41085                     container.cls += ' col-xs-' + (12 - this.labelxs);
41086                 }
41087             }
41088         }
41089
41090         cfg.cn = [
41091             label,
41092             container,
41093             hiddenInput
41094         ];
41095         
41096         var settings = this;
41097
41098         ['xs','sm','md','lg'].map(function(size){
41099             if (settings[size]) {
41100                 cfg.cls += ' col-' + size + '-' + settings[size];
41101             }
41102         });
41103         
41104         return cfg;
41105     },
41106     
41107     initEvents : function()
41108     {
41109         this.indicator = this.indicatorEl();
41110         
41111         this.initCurrencyEvent();
41112         
41113         this.initNumberEvent();
41114     },
41115     
41116     initCurrencyEvent : function()
41117     {
41118         if (!this.store) {
41119             throw "can not find store for combo";
41120         }
41121         
41122         this.store = Roo.factory(this.store, Roo.data);
41123         this.store.parent = this;
41124         
41125         this.createList();
41126         
41127         this.triggerEl = this.el.select('.input-group-addon', true).first();
41128         
41129         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
41130         
41131         var _this = this;
41132         
41133         (function(){
41134             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
41135             _this.list.setWidth(lw);
41136         }).defer(100);
41137         
41138         this.list.on('mouseover', this.onViewOver, this);
41139         this.list.on('mousemove', this.onViewMove, this);
41140         this.list.on('scroll', this.onViewScroll, this);
41141         
41142         if(!this.tpl){
41143             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
41144         }
41145         
41146         this.view = new Roo.View(this.list, this.tpl, {
41147             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41148         });
41149         
41150         this.view.on('click', this.onViewClick, this);
41151         
41152         this.store.on('beforeload', this.onBeforeLoad, this);
41153         this.store.on('load', this.onLoad, this);
41154         this.store.on('loadexception', this.onLoadException, this);
41155         
41156         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
41157             "up" : function(e){
41158                 this.inKeyMode = true;
41159                 this.selectPrev();
41160             },
41161
41162             "down" : function(e){
41163                 if(!this.isExpanded()){
41164                     this.onTriggerClick();
41165                 }else{
41166                     this.inKeyMode = true;
41167                     this.selectNext();
41168                 }
41169             },
41170
41171             "enter" : function(e){
41172                 this.collapse();
41173                 
41174                 if(this.fireEvent("specialkey", this, e)){
41175                     this.onViewClick(false);
41176                 }
41177                 
41178                 return true;
41179             },
41180
41181             "esc" : function(e){
41182                 this.collapse();
41183             },
41184
41185             "tab" : function(e){
41186                 this.collapse();
41187                 
41188                 if(this.fireEvent("specialkey", this, e)){
41189                     this.onViewClick(false);
41190                 }
41191                 
41192                 return true;
41193             },
41194
41195             scope : this,
41196
41197             doRelay : function(foo, bar, hname){
41198                 if(hname == 'down' || this.scope.isExpanded()){
41199                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41200                 }
41201                 return true;
41202             },
41203
41204             forceKeyDown: true
41205         });
41206         
41207         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
41208         
41209     },
41210     
41211     initNumberEvent : function(e)
41212     {
41213         this.inputEl().on("keydown" , this.fireKey,  this);
41214         this.inputEl().on("focus", this.onFocus,  this);
41215         this.inputEl().on("blur", this.onBlur,  this);
41216         
41217         this.inputEl().relayEvent('keyup', this);
41218         
41219         if(this.indicator){
41220             this.indicator.addClass('invisible');
41221         }
41222  
41223         this.originalValue = this.getValue();
41224         
41225         if(this.validationEvent == 'keyup'){
41226             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41227             this.inputEl().on('keyup', this.filterValidation, this);
41228         }
41229         else if(this.validationEvent !== false){
41230             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41231         }
41232         
41233         if(this.selectOnFocus){
41234             this.on("focus", this.preFocus, this);
41235             
41236         }
41237         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41238             this.inputEl().on("keypress", this.filterKeys, this);
41239         } else {
41240             this.inputEl().relayEvent('keypress', this);
41241         }
41242         
41243         var allowed = "0123456789";
41244         
41245         if(this.allowDecimals){
41246             allowed += this.decimalSeparator;
41247         }
41248         
41249         if(this.allowNegative){
41250             allowed += "-";
41251         }
41252         
41253         if(this.thousandsDelimiter) {
41254             allowed += ",";
41255         }
41256         
41257         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41258         
41259         var keyPress = function(e){
41260             
41261             var k = e.getKey();
41262             
41263             var c = e.getCharCode();
41264             
41265             if(
41266                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
41267                     allowed.indexOf(String.fromCharCode(c)) === -1
41268             ){
41269                 e.stopEvent();
41270                 return;
41271             }
41272             
41273             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41274                 return;
41275             }
41276             
41277             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41278                 e.stopEvent();
41279             }
41280         };
41281         
41282         this.inputEl().on("keypress", keyPress, this);
41283         
41284     },
41285     
41286     onTriggerClick : function(e)
41287     {   
41288         if(this.disabled){
41289             return;
41290         }
41291         
41292         this.page = 0;
41293         this.loadNext = false;
41294         
41295         if(this.isExpanded()){
41296             this.collapse();
41297             return;
41298         }
41299         
41300         this.hasFocus = true;
41301         
41302         if(this.triggerAction == 'all') {
41303             this.doQuery(this.allQuery, true);
41304             return;
41305         }
41306         
41307         this.doQuery(this.getRawValue());
41308     },
41309     
41310     getCurrency : function()
41311     {   
41312         var v = this.currencyEl().getValue();
41313         
41314         return v;
41315     },
41316     
41317     restrictHeight : function()
41318     {
41319         this.list.alignTo(this.currencyEl(), this.listAlign);
41320         this.list.alignTo(this.currencyEl(), this.listAlign);
41321     },
41322     
41323     onViewClick : function(view, doFocus, el, e)
41324     {
41325         var index = this.view.getSelectedIndexes()[0];
41326         
41327         var r = this.store.getAt(index);
41328         
41329         if(r){
41330             this.onSelect(r, index);
41331         }
41332     },
41333     
41334     onSelect : function(record, index){
41335         
41336         if(this.fireEvent('beforeselect', this, record, index) !== false){
41337         
41338             this.setFromCurrencyData(index > -1 ? record.data : false);
41339             
41340             this.collapse();
41341             
41342             this.fireEvent('select', this, record, index);
41343         }
41344     },
41345     
41346     setFromCurrencyData : function(o)
41347     {
41348         var currency = '';
41349         
41350         this.lastCurrency = o;
41351         
41352         if (this.currencyField) {
41353             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
41354         } else {
41355             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
41356         }
41357         
41358         this.lastSelectionText = currency;
41359         
41360         //setting default currency
41361         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
41362             this.setCurrency(this.defaultCurrency);
41363             return;
41364         }
41365         
41366         this.setCurrency(currency);
41367     },
41368     
41369     setFromData : function(o)
41370     {
41371         var c = {};
41372         
41373         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
41374         
41375         this.setFromCurrencyData(c);
41376         
41377         var value = '';
41378         
41379         if (this.name) {
41380             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
41381         } else {
41382             Roo.log('no value set for '+ (this.name ? this.name : this.id));
41383         }
41384         
41385         this.setValue(value);
41386         
41387     },
41388     
41389     setCurrency : function(v)
41390     {   
41391         this.currencyValue = v;
41392         
41393         if(this.rendered){
41394             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
41395             this.validate();
41396         }
41397     },
41398     
41399     setValue : function(v)
41400     {
41401         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
41402         
41403         this.value = v;
41404         
41405         if(this.rendered){
41406             
41407             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
41408             
41409             this.inputEl().dom.value = (v == '') ? '' :
41410                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
41411             
41412             if(!this.allowZero && v === '0') {
41413                 this.hiddenEl().dom.value = '';
41414                 this.inputEl().dom.value = '';
41415             }
41416             
41417             this.validate();
41418         }
41419     },
41420     
41421     getRawValue : function()
41422     {
41423         var v = this.inputEl().getValue();
41424         
41425         return v;
41426     },
41427     
41428     getValue : function()
41429     {
41430         return this.fixPrecision(this.parseValue(this.getRawValue()));
41431     },
41432     
41433     parseValue : function(value)
41434     {
41435         if(this.thousandsDelimiter) {
41436             value += "";
41437             r = new RegExp(",", "g");
41438             value = value.replace(r, "");
41439         }
41440         
41441         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41442         return isNaN(value) ? '' : value;
41443         
41444     },
41445     
41446     fixPrecision : function(value)
41447     {
41448         if(this.thousandsDelimiter) {
41449             value += "";
41450             r = new RegExp(",", "g");
41451             value = value.replace(r, "");
41452         }
41453         
41454         var nan = isNaN(value);
41455         
41456         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41457             return nan ? '' : value;
41458         }
41459         return parseFloat(value).toFixed(this.decimalPrecision);
41460     },
41461     
41462     decimalPrecisionFcn : function(v)
41463     {
41464         return Math.floor(v);
41465     },
41466     
41467     validateValue : function(value)
41468     {
41469         if(!Roo.bootstrap.MoneyField.superclass.validateValue.call(this, value)){
41470             return false;
41471         }
41472         
41473         var num = this.parseValue(value);
41474         
41475         if(isNaN(num)){
41476             this.markInvalid(String.format(this.nanText, value));
41477             return false;
41478         }
41479         
41480         if(num < this.minValue){
41481             this.markInvalid(String.format(this.minText, this.minValue));
41482             return false;
41483         }
41484         
41485         if(num > this.maxValue){
41486             this.markInvalid(String.format(this.maxText, this.maxValue));
41487             return false;
41488         }
41489         
41490         return true;
41491     },
41492     
41493     validate : function()
41494     {
41495         if(this.disabled || this.allowBlank){
41496             this.markValid();
41497             return true;
41498         }
41499         
41500         var currency = this.getCurrency();
41501         
41502         if(this.validateValue(this.getRawValue()) && currency.length){
41503             this.markValid();
41504             return true;
41505         }
41506         
41507         this.markInvalid();
41508         return false;
41509     },
41510     
41511     getName: function()
41512     {
41513         return this.name;
41514     },
41515     
41516     beforeBlur : function()
41517     {
41518         if(!this.castInt){
41519             return;
41520         }
41521         
41522         var v = this.parseValue(this.getRawValue());
41523         
41524         if(v || v == 0){
41525             this.setValue(v);
41526         }
41527     },
41528     
41529     onBlur : function()
41530     {
41531         this.beforeBlur();
41532         
41533         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
41534             //this.el.removeClass(this.focusClass);
41535         }
41536         
41537         this.hasFocus = false;
41538         
41539         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
41540             this.validate();
41541         }
41542         
41543         var v = this.getValue();
41544         
41545         if(String(v) !== String(this.startValue)){
41546             this.fireEvent('change', this, v, this.startValue);
41547         }
41548         
41549         this.fireEvent("blur", this);
41550     },
41551     
41552     inputEl : function()
41553     {
41554         return this.el.select('.roo-money-amount-input', true).first();
41555     },
41556     
41557     currencyEl : function()
41558     {
41559         return this.el.select('.roo-money-currency-input', true).first();
41560     },
41561     
41562     hiddenEl : function()
41563     {
41564         return this.el.select('input.hidden-number-input',true).first();
41565     }
41566     
41567 });/**
41568  * @class Roo.bootstrap.BezierSignature
41569  * @extends Roo.bootstrap.Component
41570  * Bootstrap BezierSignature class
41571  * This script refer to:
41572  *    Title: Signature Pad
41573  *    Author: szimek
41574  *    Availability: https://github.com/szimek/signature_pad
41575  *
41576  * @constructor
41577  * Create a new BezierSignature
41578  * @param {Object} config The config object
41579  */
41580
41581 Roo.bootstrap.BezierSignature = function(config){
41582     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
41583     this.addEvents({
41584         "resize" : true
41585     });
41586 };
41587
41588 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
41589 {
41590      
41591     curve_data: [],
41592     
41593     is_empty: true,
41594     
41595     mouse_btn_down: true,
41596     
41597     /**
41598      * @cfg {int} canvas height
41599      */
41600     canvas_height: '200px',
41601     
41602     /**
41603      * @cfg {float|function} Radius of a single dot.
41604      */ 
41605     dot_size: false,
41606     
41607     /**
41608      * @cfg {float} Minimum width of a line. Defaults to 0.5.
41609      */
41610     min_width: 0.5,
41611     
41612     /**
41613      * @cfg {float} Maximum width of a line. Defaults to 2.5.
41614      */
41615     max_width: 2.5,
41616     
41617     /**
41618      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
41619      */
41620     throttle: 16,
41621     
41622     /**
41623      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
41624      */
41625     min_distance: 5,
41626     
41627     /**
41628      * @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.
41629      */
41630     bg_color: 'rgba(0, 0, 0, 0)',
41631     
41632     /**
41633      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
41634      */
41635     dot_color: 'black',
41636     
41637     /**
41638      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
41639      */ 
41640     velocity_filter_weight: 0.7,
41641     
41642     /**
41643      * @cfg {function} Callback when stroke begin. 
41644      */
41645     onBegin: false,
41646     
41647     /**
41648      * @cfg {function} Callback when stroke end.
41649      */
41650     onEnd: false,
41651     
41652     getAutoCreate : function()
41653     {
41654         var cls = 'roo-signature column';
41655         
41656         if(this.cls){
41657             cls += ' ' + this.cls;
41658         }
41659         
41660         var col_sizes = [
41661             'lg',
41662             'md',
41663             'sm',
41664             'xs'
41665         ];
41666         
41667         for(var i = 0; i < col_sizes.length; i++) {
41668             if(this[col_sizes[i]]) {
41669                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
41670             }
41671         }
41672         
41673         var cfg = {
41674             tag: 'div',
41675             cls: cls,
41676             cn: [
41677                 {
41678                     tag: 'div',
41679                     cls: 'roo-signature-body',
41680                     cn: [
41681                         {
41682                             tag: 'canvas',
41683                             cls: 'roo-signature-body-canvas',
41684                             height: this.canvas_height,
41685                             width: this.canvas_width
41686                         }
41687                     ]
41688                 },
41689                 {
41690                     tag: 'input',
41691                     type: 'file',
41692                     style: 'display: none'
41693                 }
41694             ]
41695         };
41696         
41697         return cfg;
41698     },
41699     
41700     initEvents: function() 
41701     {
41702         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
41703         
41704         var canvas = this.canvasEl();
41705         
41706         // mouse && touch event swapping...
41707         canvas.dom.style.touchAction = 'none';
41708         canvas.dom.style.msTouchAction = 'none';
41709         
41710         this.mouse_btn_down = false;
41711         canvas.on('mousedown', this._handleMouseDown, this);
41712         canvas.on('mousemove', this._handleMouseMove, this);
41713         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
41714         
41715         if (window.PointerEvent) {
41716             canvas.on('pointerdown', this._handleMouseDown, this);
41717             canvas.on('pointermove', this._handleMouseMove, this);
41718             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
41719         }
41720         
41721         if ('ontouchstart' in window) {
41722             canvas.on('touchstart', this._handleTouchStart, this);
41723             canvas.on('touchmove', this._handleTouchMove, this);
41724             canvas.on('touchend', this._handleTouchEnd, this);
41725         }
41726         
41727         Roo.EventManager.onWindowResize(this.resize, this, true);
41728         
41729         // file input event
41730         this.fileEl().on('change', this.uploadImage, this);
41731         
41732         this.clear();
41733         
41734         this.resize();
41735     },
41736     
41737     resize: function(){
41738         
41739         var canvas = this.canvasEl().dom;
41740         var ctx = this.canvasElCtx();
41741         var img_data = false;
41742         
41743         if(canvas.width > 0) {
41744             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
41745         }
41746         // setting canvas width will clean img data
41747         canvas.width = 0;
41748         
41749         var style = window.getComputedStyle ? 
41750             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
41751             
41752         var padding_left = parseInt(style.paddingLeft) || 0;
41753         var padding_right = parseInt(style.paddingRight) || 0;
41754         
41755         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
41756         
41757         if(img_data) {
41758             ctx.putImageData(img_data, 0, 0);
41759         }
41760     },
41761     
41762     _handleMouseDown: function(e)
41763     {
41764         if (e.browserEvent.which === 1) {
41765             this.mouse_btn_down = true;
41766             this.strokeBegin(e);
41767         }
41768     },
41769     
41770     _handleMouseMove: function (e)
41771     {
41772         if (this.mouse_btn_down) {
41773             this.strokeMoveUpdate(e);
41774         }
41775     },
41776     
41777     _handleMouseUp: function (e)
41778     {
41779         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
41780             this.mouse_btn_down = false;
41781             this.strokeEnd(e);
41782         }
41783     },
41784     
41785     _handleTouchStart: function (e) {
41786         
41787         e.preventDefault();
41788         if (e.browserEvent.targetTouches.length === 1) {
41789             // var touch = e.browserEvent.changedTouches[0];
41790             // this.strokeBegin(touch);
41791             
41792              this.strokeBegin(e); // assume e catching the correct xy...
41793         }
41794     },
41795     
41796     _handleTouchMove: function (e) {
41797         e.preventDefault();
41798         // var touch = event.targetTouches[0];
41799         // _this._strokeMoveUpdate(touch);
41800         this.strokeMoveUpdate(e);
41801     },
41802     
41803     _handleTouchEnd: function (e) {
41804         var wasCanvasTouched = e.target === this.canvasEl().dom;
41805         if (wasCanvasTouched) {
41806             e.preventDefault();
41807             // var touch = event.changedTouches[0];
41808             // _this._strokeEnd(touch);
41809             this.strokeEnd(e);
41810         }
41811     },
41812     
41813     reset: function () {
41814         this._lastPoints = [];
41815         this._lastVelocity = 0;
41816         this._lastWidth = (this.min_width + this.max_width) / 2;
41817         this.canvasElCtx().fillStyle = this.dot_color;
41818     },
41819     
41820     strokeMoveUpdate: function(e)
41821     {
41822         this.strokeUpdate(e);
41823         
41824         if (this.throttle) {
41825             this.throttleStroke(this.strokeUpdate, this.throttle);
41826         }
41827         else {
41828             this.strokeUpdate(e);
41829         }
41830     },
41831     
41832     strokeBegin: function(e)
41833     {
41834         var newPointGroup = {
41835             color: this.dot_color,
41836             points: []
41837         };
41838         
41839         if (typeof this.onBegin === 'function') {
41840             this.onBegin(e);
41841         }
41842         
41843         this.curve_data.push(newPointGroup);
41844         this.reset();
41845         this.strokeUpdate(e);
41846     },
41847     
41848     strokeUpdate: function(e)
41849     {
41850         var rect = this.canvasEl().dom.getBoundingClientRect();
41851         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
41852         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
41853         var lastPoints = lastPointGroup.points;
41854         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
41855         var isLastPointTooClose = lastPoint
41856             ? point.distanceTo(lastPoint) <= this.min_distance
41857             : false;
41858         var color = lastPointGroup.color;
41859         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
41860             var curve = this.addPoint(point);
41861             if (!lastPoint) {
41862                 this.drawDot({color: color, point: point});
41863             }
41864             else if (curve) {
41865                 this.drawCurve({color: color, curve: curve});
41866             }
41867             lastPoints.push({
41868                 time: point.time,
41869                 x: point.x,
41870                 y: point.y
41871             });
41872         }
41873     },
41874     
41875     strokeEnd: function(e)
41876     {
41877         this.strokeUpdate(e);
41878         if (typeof this.onEnd === 'function') {
41879             this.onEnd(e);
41880         }
41881     },
41882     
41883     addPoint:  function (point) {
41884         var _lastPoints = this._lastPoints;
41885         _lastPoints.push(point);
41886         if (_lastPoints.length > 2) {
41887             if (_lastPoints.length === 3) {
41888                 _lastPoints.unshift(_lastPoints[0]);
41889             }
41890             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
41891             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
41892             _lastPoints.shift();
41893             return curve;
41894         }
41895         return null;
41896     },
41897     
41898     calculateCurveWidths: function (startPoint, endPoint) {
41899         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
41900             (1 - this.velocity_filter_weight) * this._lastVelocity;
41901
41902         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
41903         var widths = {
41904             end: newWidth,
41905             start: this._lastWidth
41906         };
41907         
41908         this._lastVelocity = velocity;
41909         this._lastWidth = newWidth;
41910         return widths;
41911     },
41912     
41913     drawDot: function (_a) {
41914         var color = _a.color, point = _a.point;
41915         var ctx = this.canvasElCtx();
41916         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
41917         ctx.beginPath();
41918         this.drawCurveSegment(point.x, point.y, width);
41919         ctx.closePath();
41920         ctx.fillStyle = color;
41921         ctx.fill();
41922     },
41923     
41924     drawCurve: function (_a) {
41925         var color = _a.color, curve = _a.curve;
41926         var ctx = this.canvasElCtx();
41927         var widthDelta = curve.endWidth - curve.startWidth;
41928         var drawSteps = Math.floor(curve.length()) * 2;
41929         ctx.beginPath();
41930         ctx.fillStyle = color;
41931         for (var i = 0; i < drawSteps; i += 1) {
41932         var t = i / drawSteps;
41933         var tt = t * t;
41934         var ttt = tt * t;
41935         var u = 1 - t;
41936         var uu = u * u;
41937         var uuu = uu * u;
41938         var x = uuu * curve.startPoint.x;
41939         x += 3 * uu * t * curve.control1.x;
41940         x += 3 * u * tt * curve.control2.x;
41941         x += ttt * curve.endPoint.x;
41942         var y = uuu * curve.startPoint.y;
41943         y += 3 * uu * t * curve.control1.y;
41944         y += 3 * u * tt * curve.control2.y;
41945         y += ttt * curve.endPoint.y;
41946         var width = curve.startWidth + ttt * widthDelta;
41947         this.drawCurveSegment(x, y, width);
41948         }
41949         ctx.closePath();
41950         ctx.fill();
41951     },
41952     
41953     drawCurveSegment: function (x, y, width) {
41954         var ctx = this.canvasElCtx();
41955         ctx.moveTo(x, y);
41956         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
41957         this.is_empty = false;
41958     },
41959     
41960     clear: function()
41961     {
41962         var ctx = this.canvasElCtx();
41963         var canvas = this.canvasEl().dom;
41964         ctx.fillStyle = this.bg_color;
41965         ctx.clearRect(0, 0, canvas.width, canvas.height);
41966         ctx.fillRect(0, 0, canvas.width, canvas.height);
41967         this.curve_data = [];
41968         this.reset();
41969         this.is_empty = true;
41970     },
41971     
41972     fileEl: function()
41973     {
41974         return  this.el.select('input',true).first();
41975     },
41976     
41977     canvasEl: function()
41978     {
41979         return this.el.select('canvas',true).first();
41980     },
41981     
41982     canvasElCtx: function()
41983     {
41984         return this.el.select('canvas',true).first().dom.getContext('2d');
41985     },
41986     
41987     getImage: function(type)
41988     {
41989         if(this.is_empty) {
41990             return false;
41991         }
41992         
41993         // encryption ?
41994         return this.canvasEl().dom.toDataURL('image/'+type, 1);
41995     },
41996     
41997     drawFromImage: function(img_src)
41998     {
41999         var img = new Image();
42000         
42001         img.onload = function(){
42002             this.canvasElCtx().drawImage(img, 0, 0);
42003         }.bind(this);
42004         
42005         img.src = img_src;
42006         
42007         this.is_empty = false;
42008     },
42009     
42010     selectImage: function()
42011     {
42012         this.fileEl().dom.click();
42013     },
42014     
42015     uploadImage: function(e)
42016     {
42017         var reader = new FileReader();
42018         
42019         reader.onload = function(e){
42020             var img = new Image();
42021             img.onload = function(){
42022                 this.reset();
42023                 this.canvasElCtx().drawImage(img, 0, 0);
42024             }.bind(this);
42025             img.src = e.target.result;
42026         }.bind(this);
42027         
42028         reader.readAsDataURL(e.target.files[0]);
42029     },
42030     
42031     // Bezier Point Constructor
42032     Point: (function () {
42033         function Point(x, y, time) {
42034             this.x = x;
42035             this.y = y;
42036             this.time = time || Date.now();
42037         }
42038         Point.prototype.distanceTo = function (start) {
42039             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
42040         };
42041         Point.prototype.equals = function (other) {
42042             return this.x === other.x && this.y === other.y && this.time === other.time;
42043         };
42044         Point.prototype.velocityFrom = function (start) {
42045             return this.time !== start.time
42046             ? this.distanceTo(start) / (this.time - start.time)
42047             : 0;
42048         };
42049         return Point;
42050     }()),
42051     
42052     
42053     // Bezier Constructor
42054     Bezier: (function () {
42055         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
42056             this.startPoint = startPoint;
42057             this.control2 = control2;
42058             this.control1 = control1;
42059             this.endPoint = endPoint;
42060             this.startWidth = startWidth;
42061             this.endWidth = endWidth;
42062         }
42063         Bezier.fromPoints = function (points, widths, scope) {
42064             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
42065             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
42066             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
42067         };
42068         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
42069             var dx1 = s1.x - s2.x;
42070             var dy1 = s1.y - s2.y;
42071             var dx2 = s2.x - s3.x;
42072             var dy2 = s2.y - s3.y;
42073             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
42074             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
42075             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
42076             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
42077             var dxm = m1.x - m2.x;
42078             var dym = m1.y - m2.y;
42079             var k = l2 / (l1 + l2);
42080             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
42081             var tx = s2.x - cm.x;
42082             var ty = s2.y - cm.y;
42083             return {
42084                 c1: new scope.Point(m1.x + tx, m1.y + ty),
42085                 c2: new scope.Point(m2.x + tx, m2.y + ty)
42086             };
42087         };
42088         Bezier.prototype.length = function () {
42089             var steps = 10;
42090             var length = 0;
42091             var px;
42092             var py;
42093             for (var i = 0; i <= steps; i += 1) {
42094                 var t = i / steps;
42095                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
42096                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
42097                 if (i > 0) {
42098                     var xdiff = cx - px;
42099                     var ydiff = cy - py;
42100                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
42101                 }
42102                 px = cx;
42103                 py = cy;
42104             }
42105             return length;
42106         };
42107         Bezier.prototype.point = function (t, start, c1, c2, end) {
42108             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
42109             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
42110             + (3.0 * c2 * (1.0 - t) * t * t)
42111             + (end * t * t * t);
42112         };
42113         return Bezier;
42114     }()),
42115     
42116     throttleStroke: function(fn, wait) {
42117       if (wait === void 0) { wait = 250; }
42118       var previous = 0;
42119       var timeout = null;
42120       var result;
42121       var storedContext;
42122       var storedArgs;
42123       var later = function () {
42124           previous = Date.now();
42125           timeout = null;
42126           result = fn.apply(storedContext, storedArgs);
42127           if (!timeout) {
42128               storedContext = null;
42129               storedArgs = [];
42130           }
42131       };
42132       return function wrapper() {
42133           var args = [];
42134           for (var _i = 0; _i < arguments.length; _i++) {
42135               args[_i] = arguments[_i];
42136           }
42137           var now = Date.now();
42138           var remaining = wait - (now - previous);
42139           storedContext = this;
42140           storedArgs = args;
42141           if (remaining <= 0 || remaining > wait) {
42142               if (timeout) {
42143                   clearTimeout(timeout);
42144                   timeout = null;
42145               }
42146               previous = now;
42147               result = fn.apply(storedContext, storedArgs);
42148               if (!timeout) {
42149                   storedContext = null;
42150                   storedArgs = [];
42151               }
42152           }
42153           else if (!timeout) {
42154               timeout = window.setTimeout(later, remaining);
42155           }
42156           return result;
42157       };
42158   }
42159   
42160 });
42161
42162  
42163
42164