roojs-ui.js
[roojs1] / roojs-bootstrap-debug.js
1 /**
2  * set the version of bootstrap based on the stylesheet...
3  *
4  */
5
6 Roo.bootstrap.version = (
7         function() {
8                 var ret=3;
9                 Roo.each(document.styleSheets, function(s) {
10                     if ( s.href  && s.href.match(/css-bootstrap4/)) {
11                         ret=4;
12                     }
13                 });
14         return ret;
15 })(); /*
16  * - LGPL
17  *
18  * base class for bootstrap elements.
19  * 
20  */
21
22 Roo.bootstrap = Roo.bootstrap || {};
23 /**
24  * @class Roo.bootstrap.Component
25  * @extends Roo.Component
26  * Bootstrap Component base class
27  * @cfg {String} cls css class
28  * @cfg {String} style any extra css
29  * @cfg {Object} xattr extra attributes to add to 'element' (used by builder to store stuff.)
30  * @cfg {Boolean} can_build_overlaid  True if element can be rebuild from a HTML page
31  * @cfg {string} dataId cutomer id
32  * @cfg {string} name Specifies name attribute
33  * @cfg {string} tooltip  Text for the tooltip
34  * @cfg {string} container_method method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)
35  * @cfg {string|object} visibilityEl (el|parent) What element to use for visibility (@see getVisibilityEl())
36  
37  * @constructor
38  * Do not use directly - it does not do anything..
39  * @param {Object} config The config object
40  */
41
42
43
44 Roo.bootstrap.Component = function(config){
45     Roo.bootstrap.Component.superclass.constructor.call(this, config);
46        
47     this.addEvents({
48         /**
49          * @event childrenrendered
50          * Fires when the children have been rendered..
51          * @param {Roo.bootstrap.Component} this
52          */
53         "childrenrendered" : true
54         
55         
56         
57     });
58     
59     
60 };
61
62 Roo.extend(Roo.bootstrap.Component, Roo.BoxComponent,  {
63     
64     
65     allowDomMove : false, // to stop relocations in parent onRender...
66     
67     cls : false,
68     
69     style : false,
70     
71     autoCreate : false,
72     
73     tooltip : null,
74     /**
75      * Initialize Events for the element
76      */
77     initEvents : function() { },
78     
79     xattr : false,
80     
81     parentId : false,
82     
83     can_build_overlaid : true,
84     
85     container_method : false,
86     
87     dataId : false,
88     
89     name : false,
90     
91     parent: function() {
92         // returns the parent component..
93         return Roo.ComponentMgr.get(this.parentId)
94         
95         
96     },
97     
98     // private
99     onRender : function(ct, position)
100     {
101        // Roo.log("Call onRender: " + this.xtype);
102         
103         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
104         
105         if(this.el){
106             if (this.el.attr('xtype')) {
107                 this.el.attr('xtypex', this.el.attr('xtype'));
108                 this.el.dom.removeAttribute('xtype');
109                 
110                 this.initEvents();
111             }
112             
113             return;
114         }
115         
116          
117         
118         var cfg = Roo.apply({},  this.getAutoCreate());
119         
120         cfg.id = this.id || Roo.id();
121         
122         // fill in the extra attributes 
123         if (this.xattr && typeof(this.xattr) =='object') {
124             for (var i in this.xattr) {
125                 cfg[i] = this.xattr[i];
126             }
127         }
128         
129         if(this.dataId){
130             cfg.dataId = this.dataId;
131         }
132         
133         if (this.cls) {
134             cfg.cls = (typeof(cfg.cls) == 'undefined') ? this.cls : cfg.cls + ' ' + this.cls;
135         }
136         
137         if (this.style) { // fixme needs to support more complex style data.
138             cfg.style = this.style;
139         }
140         
141         if(this.name){
142             cfg.name = this.name;
143         }
144         
145         this.el = ct.createChild(cfg, position);
146         
147         if (this.tooltip) {
148             this.tooltipEl().attr('tooltip', this.tooltip);
149         }
150         
151         if(this.tabIndex !== undefined){
152             this.el.dom.setAttribute('tabIndex', this.tabIndex);
153         }
154         
155         this.initEvents();
156         
157     },
158     /**
159      * Fetch the element to add children to
160      * @return {Roo.Element} defaults to this.el
161      */
162     getChildContainer : function()
163     {
164         return this.el;
165     },
166     /**
167      * Fetch the element to display the tooltip on.
168      * @return {Roo.Element} defaults to this.el
169      */
170     tooltipEl : function()
171     {
172         return this.el;
173     },
174         
175     addxtype  : function(tree,cntr)
176     {
177         var cn = this;
178         
179         cn = Roo.factory(tree);
180         //Roo.log(['addxtype', cn]);
181            
182         cn.parentType = this.xtype; //??
183         cn.parentId = this.id;
184         
185         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
186         if (typeof(cn.container_method) == 'string') {
187             cntr = cn.container_method;
188         }
189         
190         
191         var has_flexy_each =  (typeof(tree['flexy:foreach']) != 'undefined');
192         
193         var has_flexy_if =  (typeof(tree['flexy:if']) != 'undefined');
194         
195         var build_from_html =  Roo.XComponent.build_from_html;
196           
197         var is_body  = (tree.xtype == 'Body') ;
198           
199         var page_has_body = (Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body');
200           
201         var self_cntr_el = Roo.get(this[cntr](false));
202         
203         // do not try and build conditional elements 
204         if ((has_flexy_each || has_flexy_if || this.can_build_overlaid == false ) && build_from_html) {
205             return false;
206         }
207         
208         if (!has_flexy_each || !build_from_html || is_body || !page_has_body) {
209             if(!has_flexy_if || typeof(tree.name) == 'undefined' || !build_from_html || is_body || !page_has_body){
210                 return this.addxtypeChild(tree,cntr, is_body);
211             }
212             
213             var echild =self_cntr_el ? self_cntr_el.child('>*[name=' + tree.name + ']') : false;
214                 
215             if(echild){
216                 return this.addxtypeChild(Roo.apply({}, tree),cntr);
217             }
218             
219             Roo.log('skipping render');
220             return cn;
221             
222         }
223         
224         var ret = false;
225         if (!build_from_html) {
226             return false;
227         }
228         
229         // this i think handles overlaying multiple children of the same type
230         // with the sam eelement.. - which might be buggy..
231         while (true) {
232             var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
233             
234             if (!echild) {
235                 break;
236             }
237             
238             if (echild && echild.attr('xtype').split('.').pop() != cn.xtype) {
239                 break;
240             }
241             
242             ret = this.addxtypeChild(Roo.apply({}, tree),cntr);
243         }
244        
245         return ret;
246     },
247     
248     
249     addxtypeChild : function (tree, cntr, is_body)
250     {
251         Roo.debug && Roo.log('addxtypeChild:' + cntr);
252         var cn = this;
253         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
254         
255         
256         var has_flexy = (typeof(tree['flexy:if']) != 'undefined') ||
257                     (typeof(tree['flexy:foreach']) != 'undefined');
258           
259     
260         
261         skip_children = false;
262         // render the element if it's not BODY.
263         if (!is_body) {
264             
265             // if parent was disabled, then do not try and create the children..
266             if(!this[cntr](true)){
267                 tree.items = [];
268                 return tree;
269             }
270            
271             cn = Roo.factory(tree);
272            
273             cn.parentType = this.xtype; //??
274             cn.parentId = this.id;
275             
276             var build_from_html =  Roo.XComponent.build_from_html;
277             
278             
279             // does the container contain child eleemnts with 'xtype' attributes.
280             // that match this xtype..
281             // note - when we render we create these as well..
282             // so we should check to see if body has xtype set.
283             if (build_from_html && Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body') {
284                
285                 var self_cntr_el = Roo.get(this[cntr](false));
286                 var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
287                 if (echild) { 
288                     //Roo.log(Roo.XComponent.build_from_html);
289                     //Roo.log("got echild:");
290                     //Roo.log(echild);
291                 }
292                 // there is a scenario where some of the child elements are flexy:if (and all of the same type)
293                 // and are not displayed -this causes this to use up the wrong element when matching.
294                 // at present the only work around for this is to nest flexy:if elements in another element that is always rendered.
295                 
296                 
297                 if (echild && echild.attr('xtype').split('.').pop() == cn.xtype) {
298                   //  Roo.log("found child for " + this.xtype +": " + echild.attr('xtype') );
299                   
300                   
301                   
302                     cn.el = echild;
303                   //  Roo.log("GOT");
304                     //echild.dom.removeAttribute('xtype');
305                 } else {
306                     Roo.debug && Roo.log("MISSING " + cn.xtype + " on child of " + (this.el ? this.el.attr('xbuilderid') : 'no parent'));
307                     Roo.debug && Roo.log(self_cntr_el);
308                     Roo.debug && Roo.log(echild);
309                     Roo.debug && Roo.log(cn);
310                 }
311             }
312            
313             
314            
315             // if object has flexy:if - then it may or may not be rendered.
316             if (build_from_html && has_flexy && !cn.el &&  cn.can_build_overlaid) {
317                 // skip a flexy if element.
318                 Roo.debug && Roo.log('skipping render');
319                 Roo.debug && Roo.log(tree);
320                 if (!cn.el) {
321                     Roo.debug && Roo.log('skipping all children');
322                     skip_children = true;
323                 }
324                 
325              } else {
326                  
327                 // actually if flexy:foreach is found, we really want to create 
328                 // multiple copies here...
329                 //Roo.log('render');
330                 //Roo.log(this[cntr]());
331                 // some elements do not have render methods.. like the layouts...
332                 /*
333                 if(this[cntr](true) === false){
334                     cn.items = [];
335                     return cn;
336                 }
337                 */
338                 cn.render && cn.render(this[cntr](true));
339                 
340              }
341             // then add the element..
342         }
343          
344         // handle the kids..
345         
346         var nitems = [];
347         /*
348         if (typeof (tree.menu) != 'undefined') {
349             tree.menu.parentType = cn.xtype;
350             tree.menu.triggerEl = cn.el;
351             nitems.push(cn.addxtype(Roo.apply({}, tree.menu)));
352             
353         }
354         */
355         if (!tree.items || !tree.items.length) {
356             cn.items = nitems;
357             //Roo.log(["no children", this]);
358             
359             return cn;
360         }
361          
362         var items = tree.items;
363         delete tree.items;
364         
365         //Roo.log(items.length);
366             // add the items..
367         if (!skip_children) {    
368             for(var i =0;i < items.length;i++) {
369               //  Roo.log(['add child', items[i]]);
370                 nitems.push(cn.addxtype(Roo.apply({}, items[i])));
371             }
372         }
373         
374         cn.items = nitems;
375         
376         //Roo.log("fire childrenrendered");
377         
378         cn.fireEvent('childrenrendered', this);
379         
380         return cn;
381     },
382     
383     /**
384      * Set the element that will be used to show or hide
385      */
386     setVisibilityEl : function(el)
387     {
388         this.visibilityEl = el;
389     },
390     
391      /**
392      * Get the element that will be used to show or hide
393      */
394     getVisibilityEl : function()
395     {
396         if (typeof(this.visibilityEl) == 'object') {
397             return this.visibilityEl;
398         }
399         
400         if (typeof(this.visibilityEl) == 'string') {
401             return this.visibilityEl == 'parent' ? this.parent().getEl() : this.getEl();
402         }
403         
404         return this.getEl();
405     },
406     
407     /**
408      * Show a component - removes 'hidden' class
409      */
410     show : function()
411     {
412         if(!this.getVisibilityEl()){
413             return;
414         }
415          
416         this.getVisibilityEl().removeClass(['hidden','d-none']);
417         
418         this.fireEvent('show', this);
419         
420         
421     },
422     /**
423      * Hide a component - adds 'hidden' class
424      */
425     hide: function()
426     {
427         if(!this.getVisibilityEl()){
428             return;
429         }
430         
431         this.getVisibilityEl().addClass(['hidden','d-none']);
432         
433         this.fireEvent('hide', this);
434         
435     }
436 });
437
438  /*
439  * - LGPL
440  *
441  * Body
442  *
443  */
444
445 /**
446  * @class Roo.bootstrap.Body
447  * @extends Roo.bootstrap.Component
448  * Bootstrap Body class
449  *
450  * @constructor
451  * Create a new body
452  * @param {Object} config The config object
453  */
454
455 Roo.bootstrap.Body = function(config){
456
457     config = config || {};
458
459     Roo.bootstrap.Body.superclass.constructor.call(this, config);
460     this.el = Roo.get(config.el ? config.el : document.body );
461     if (this.cls && this.cls.length) {
462         Roo.get(document.body).addClass(this.cls);
463     }
464 };
465
466 Roo.extend(Roo.bootstrap.Body, Roo.bootstrap.Component,  {
467
468     is_body : true,// just to make sure it's constructed?
469
470         autoCreate : {
471         cls: 'container'
472     },
473     onRender : function(ct, position)
474     {
475        /* Roo.log("Roo.bootstrap.Body - onRender");
476         if (this.cls && this.cls.length) {
477             Roo.get(document.body).addClass(this.cls);
478         }
479         // style??? xttr???
480         */
481     }
482
483
484
485
486 });
487 /*
488  * - LGPL
489  *
490  * button group
491  * 
492  */
493
494
495 /**
496  * @class Roo.bootstrap.ButtonGroup
497  * @extends Roo.bootstrap.Component
498  * Bootstrap ButtonGroup class
499  * @cfg {String} size lg | sm | xs (default empty normal)
500  * @cfg {String} align vertical | justified  (default none)
501  * @cfg {String} direction up | down (default down)
502  * @cfg {Boolean} toolbar false | true
503  * @cfg {Boolean} btn true | false
504  * 
505  * 
506  * @constructor
507  * Create a new Input
508  * @param {Object} config The config object
509  */
510
511 Roo.bootstrap.ButtonGroup = function(config){
512     Roo.bootstrap.ButtonGroup.superclass.constructor.call(this, config);
513 };
514
515 Roo.extend(Roo.bootstrap.ButtonGroup, Roo.bootstrap.Component,  {
516     
517     size: '',
518     align: '',
519     direction: '',
520     toolbar: false,
521     btn: true,
522
523     getAutoCreate : function(){
524         var cfg = {
525             cls: 'btn-group',
526             html : null
527         };
528         
529         cfg.html = this.html || cfg.html;
530         
531         if (this.toolbar) {
532             cfg = {
533                 cls: 'btn-toolbar',
534                 html: null
535             };
536             
537             return cfg;
538         }
539         
540         if (['vertical','justified'].indexOf(this.align)!==-1) {
541             cfg.cls = 'btn-group-' + this.align;
542             
543             if (this.align == 'justified') {
544                 console.log(this.items);
545             }
546         }
547         
548         if (['lg','sm','xs'].indexOf(this.size)!==-1) {
549             cfg.cls += ' btn-group-' + this.size;
550         }
551         
552         if (this.direction == 'up') {
553             cfg.cls += ' dropup' ;
554         }
555         
556         return cfg;
557     },
558     /**
559      * Add a button to the group (similar to NavItem API.)
560      */
561     addItem : function(cfg)
562     {
563         var cn = new Roo.bootstrap.Button(cfg);
564         //this.register(cn);
565         cn.parentId = this.id;
566         cn.onRender(this.el, null);
567         return cn;
568     }
569    
570 });
571
572  /*
573  * - LGPL
574  *
575  * button
576  * 
577  */
578
579 /**
580  * @class Roo.bootstrap.Button
581  * @extends Roo.bootstrap.Component
582  * Bootstrap Button class
583  * @cfg {String} html The button content
584  * @cfg {String} weight (default | primary | secondary | success | info | warning | danger | link ) default
585  * @cfg {String} badge_weight (default | primary | secondary | success | info | warning | danger | link ) default (same as button)
586  * @cfg {Boolean} outline default false (except for weight=default which emulates old behaveiour with an outline)
587  * @cfg {String} size ( lg | sm | xs)
588  * @cfg {String} tag ( a | input | submit)
589  * @cfg {String} href empty or href
590  * @cfg {Boolean} disabled default false;
591  * @cfg {Boolean} isClose default false;
592  * @cfg {String} glyphicon depricated - use fa
593  * @cfg {String} fa fontawesome icon - eg. 'comment' - without the fa/fas etc..
594  * @cfg {String} badge text for badge
595  * @cfg {String} theme (default|glow)  
596  * @cfg {Boolean} inverse dark themed version
597  * @cfg {Boolean} toggle is it a slidy toggle button
598  * @cfg {Boolean} pressed (true|false) default null - if the button ahs active state
599  * @cfg {String} ontext text for on slidy toggle state
600  * @cfg {String} offtext text for off slidy toggle state
601  * @cfg {Boolean} preventDefault  default true (stop click event triggering the URL if it's a link.)
602  * @cfg {Boolean} removeClass remove the standard class..
603  * @cfg {String} target  target for a href. (_self|_blank|_parent|_top| other)
604  * 
605  * @constructor
606  * Create a new button
607  * @param {Object} config The config object
608  */
609
610
611 Roo.bootstrap.Button = function(config){
612     Roo.bootstrap.Button.superclass.constructor.call(this, config);
613     this.weightClass = ["btn-default btn-outline-secondary", 
614                        "btn-primary", 
615                        "btn-success", 
616                        "btn-info", 
617                        "btn-warning",
618                        "btn-danger",
619                        "btn-link"
620                       ],  
621     this.addEvents({
622         // raw events
623         /**
624          * @event click
625          * When a butotn is pressed
626          * @param {Roo.bootstrap.Button} btn
627          * @param {Roo.EventObject} e
628          */
629         "click" : true,
630          /**
631          * @event toggle
632          * After the button has been toggles
633          * @param {Roo.bootstrap.Button} btn
634          * @param {Roo.EventObject} e
635          * @param {boolean} pressed (also available as button.pressed)
636          */
637         "toggle" : true
638     });
639 };
640
641 Roo.extend(Roo.bootstrap.Button, Roo.bootstrap.Component,  {
642     html: false,
643     active: false,
644     weight: '',
645     badge_weight: '',
646     outline : false,
647     size: '',
648     tag: 'button',
649     href: '',
650     disabled: false,
651     isClose: false,
652     glyphicon: '',
653     fa: '',
654     badge: '',
655     theme: 'default',
656     inverse: false,
657     
658     toggle: false,
659     ontext: 'ON',
660     offtext: 'OFF',
661     defaulton: true,
662     preventDefault: true,
663     removeClass: false,
664     name: false,
665     target: false,
666      
667     pressed : null,
668      
669     
670     getAutoCreate : function(){
671         
672         var cfg = {
673             tag : 'button',
674             cls : 'roo-button',
675             html: ''
676         };
677         
678         if (['a', 'button', 'input', 'submit'].indexOf(this.tag) < 0) {
679             throw "Invalid value for tag: " + this.tag + ". must be a, button, input or submit.";
680             this.tag = 'button';
681         } else {
682             cfg.tag = this.tag;
683         }
684         cfg.html = '<span class="roo-button-text">' + (this.html || cfg.html) + '</span>';
685         
686         if (this.toggle == true) {
687             cfg={
688                 tag: 'div',
689                 cls: 'slider-frame roo-button',
690                 cn: [
691                     {
692                         tag: 'span',
693                         'data-on-text':'ON',
694                         'data-off-text':'OFF',
695                         cls: 'slider-button',
696                         html: this.offtext
697                     }
698                 ]
699             };
700             
701             if (['default', 'secondary' , 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
702                 cfg.cls += ' '+this.weight;
703             }
704             
705             return cfg;
706         }
707         
708         if (this.isClose) {
709             cfg.cls += ' close';
710             
711             cfg["aria-hidden"] = true;
712             
713             cfg.html = "&times;";
714             
715             return cfg;
716         }
717         
718          
719         if (this.theme==='default') {
720             cfg.cls = 'btn roo-button';
721             
722             //if (this.parentType != 'Navbar') {
723             this.weight = this.weight.length ?  this.weight : 'default';
724             //}
725             if (['default', 'primary', 'secondary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
726                 
727                 var outline = this.outline || this.weight == 'default' ? 'outline-' : '';
728                 var weight = this.weight == 'default' ? 'secondary' : this.weight;
729                 cfg.cls += ' btn-' + outline + weight;
730                 if (this.weight == 'default') {
731                     // BC
732                     cfg.cls += ' btn-' + this.weight;
733                 }
734             }
735         } else if (this.theme==='glow') {
736             
737             cfg.tag = 'a';
738             cfg.cls = 'btn-glow roo-button';
739             
740             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
741                 
742                 cfg.cls += ' ' + this.weight;
743             }
744         }
745    
746         
747         if (this.inverse) {
748             this.cls += ' inverse';
749         }
750         
751         
752         if (this.active || this.pressed === true) {
753             cfg.cls += ' active';
754         }
755         
756         if (this.disabled) {
757             cfg.disabled = 'disabled';
758         }
759         
760         if (this.items) {
761             Roo.log('changing to ul' );
762             cfg.tag = 'ul';
763             this.glyphicon = 'caret';
764             if (Roo.bootstrap.version == 4) {
765                 this.fa = 'caret-down';
766             }
767             
768         }
769         
770         cfg.cls += this.size.length ? (' btn-' + this.size) : '';
771          
772         //gsRoo.log(this.parentType);
773         if (this.parentType === 'Navbar' && !this.parent().bar) {
774             Roo.log('changing to li?');
775             
776             cfg.tag = 'li';
777             
778             cfg.cls = '';
779             cfg.cn =  [{
780                 tag : 'a',
781                 cls : 'roo-button',
782                 html : this.html,
783                 href : this.href || '#'
784             }];
785             if (this.menu) {
786                 cfg.cn[0].html = this.html  + ' <span class="caret"></span>';
787                 cfg.cls += ' dropdown';
788             }   
789             
790             delete cfg.html;
791             
792         }
793         
794        cfg.cls += this.parentType === 'Navbar' ?  ' navbar-btn' : '';
795         
796         if (this.glyphicon) {
797             cfg.html = ' ' + cfg.html;
798             
799             cfg.cn = [
800                 {
801                     tag: 'span',
802                     cls: 'glyphicon glyphicon-' + this.glyphicon
803                 }
804             ];
805         }
806         if (this.fa) {
807             cfg.html = ' ' + cfg.html;
808             
809             cfg.cn = [
810                 {
811                     tag: 'i',
812                     cls: 'fa fas fa-' + this.fa
813                 }
814             ];
815         }
816         
817         if (this.badge) {
818             cfg.html += ' ';
819             
820             cfg.tag = 'a';
821             
822 //            cfg.cls='btn roo-button';
823             
824             cfg.href=this.href;
825             
826             var value = cfg.html;
827             
828             if(this.glyphicon){
829                 value = {
830                     tag: 'span',
831                     cls: 'glyphicon glyphicon-' + this.glyphicon,
832                     html: this.html
833                 };
834             }
835             if(this.fa){
836                 value = {
837                     tag: 'i',
838                     cls: 'fa fas fa-' + this.fa,
839                     html: this.html
840                 };
841             }
842             
843             var bw = this.badge_weight.length ? this.badge_weight :
844                 (this.weight.length ? this.weight : 'secondary');
845             bw = bw == 'default' ? 'secondary' : bw;
846             
847             cfg.cn = [
848                 value,
849                 {
850                     tag: 'span',
851                     cls: 'badge badge-' + bw,
852                     html: this.badge
853                 }
854             ];
855             
856             cfg.html='';
857         }
858         
859         if (this.menu) {
860             cfg.cls += ' dropdown';
861             cfg.html = typeof(cfg.html) != 'undefined' ?
862                     cfg.html + ' <span class="caret"></span>' : '<span class="caret"></span>';
863         }
864         
865         if (cfg.tag !== 'a' && this.href !== '') {
866             throw "Tag must be a to set href.";
867         } else if (this.href.length > 0) {
868             cfg.href = this.href;
869         }
870         
871         if(this.removeClass){
872             cfg.cls = '';
873         }
874         
875         if(this.target){
876             cfg.target = this.target;
877         }
878         
879         return cfg;
880     },
881     initEvents: function() {
882        // Roo.log('init events?');
883 //        Roo.log(this.el.dom);
884         // add the menu...
885         
886         if (typeof (this.menu) != 'undefined') {
887             this.menu.parentType = this.xtype;
888             this.menu.triggerEl = this.el;
889             this.addxtype(Roo.apply({}, this.menu));
890         }
891
892
893        if (this.el.hasClass('roo-button')) {
894             this.el.on('click', this.onClick, this);
895        } else {
896             this.el.select('.roo-button').on('click', this.onClick, this);
897        }
898        
899        if(this.removeClass){
900            this.el.on('click', this.onClick, this);
901        }
902        
903        this.el.enableDisplayMode();
904         
905     },
906     onClick : function(e)
907     {
908         if (this.disabled) {
909             return;
910         }
911         
912         Roo.log('button on click ');
913         if(this.preventDefault){
914             e.preventDefault();
915         }
916         
917         if (this.pressed === true || this.pressed === false) {
918             this.toggleActive(e);
919         }
920         
921         
922         this.fireEvent('click', this, e);
923     },
924     
925     /**
926      * Enables this button
927      */
928     enable : function()
929     {
930         this.disabled = false;
931         this.el.removeClass('disabled');
932     },
933     
934     /**
935      * Disable this button
936      */
937     disable : function()
938     {
939         this.disabled = true;
940         this.el.addClass('disabled');
941     },
942      /**
943      * sets the active state on/off, 
944      * @param {Boolean} state (optional) Force a particular state
945      */
946     setActive : function(v) {
947         
948         this.el[v ? 'addClass' : 'removeClass']('active');
949         this.pressed = v;
950     },
951      /**
952      * toggles the current active state 
953      */
954     toggleActive : function(e)
955     {
956         this.setActive(!this.pressed);
957         this.fireEvent('toggle', this, e, !this.pressed);
958     },
959      /**
960      * get the current active state
961      * @return {boolean} true if it's active
962      */
963     isActive : function()
964     {
965         return this.el.hasClass('active');
966     },
967     /**
968      * set the text of the first selected button
969      */
970     setText : function(str)
971     {
972         this.el.select('.roo-button-text',true).first().dom.innerHTML = str;
973     },
974     /**
975      * get the text of the first selected button
976      */
977     getText : function()
978     {
979         return this.el.select('.roo-button-text',true).first().dom.innerHTML;
980     },
981     
982     setWeight : function(str)
983     {
984         this.el.removeClass(this.weightClass);
985         this.weight = str;
986         var outline = this.outline ? 'outline-' : '';
987         if (str == 'default') {
988             this.el.addClass('btn-default btn-outline-secondary');        
989             return;
990         }
991         this.el.addClass('btn-' + outline + str);        
992     }
993     
994     
995 });
996
997  /*
998  * - LGPL
999  *
1000  * column
1001  * 
1002  */
1003
1004 /**
1005  * @class Roo.bootstrap.Column
1006  * @extends Roo.bootstrap.Component
1007  * Bootstrap Column class
1008  * @cfg {Number} xs colspan out of 12 for mobile-sized screens or 0 for hidden
1009  * @cfg {Number} sm colspan out of 12 for tablet-sized screens or 0 for hidden
1010  * @cfg {Number} md colspan out of 12 for computer-sized screens or 0 for hidden
1011  * @cfg {Number} lg colspan out of 12 for large computer-sized screens or 0 for hidden
1012  * @cfg {Number} xsoff colspan offset out of 12 for mobile-sized screens or 0 for hidden
1013  * @cfg {Number} smoff colspan offset out of 12 for tablet-sized screens or 0 for hidden
1014  * @cfg {Number} mdoff colspan offset out of 12 for computer-sized screens or 0 for hidden
1015  * @cfg {Number} lgoff colspan offset out of 12 for large computer-sized screens or 0 for hidden
1016  *
1017  * 
1018  * @cfg {Boolean} hidden (true|false) hide the element
1019  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1020  * @cfg {String} fa (ban|check|...) font awesome icon
1021  * @cfg {Number} fasize (1|2|....) font awsome size
1022
1023  * @cfg {String} icon (info-sign|check|...) glyphicon name
1024
1025  * @cfg {String} html content of column.
1026  * 
1027  * @constructor
1028  * Create a new Column
1029  * @param {Object} config The config object
1030  */
1031
1032 Roo.bootstrap.Column = function(config){
1033     Roo.bootstrap.Column.superclass.constructor.call(this, config);
1034 };
1035
1036 Roo.extend(Roo.bootstrap.Column, Roo.bootstrap.Component,  {
1037     
1038     xs: false,
1039     sm: false,
1040     md: false,
1041     lg: false,
1042     xsoff: false,
1043     smoff: false,
1044     mdoff: false,
1045     lgoff: false,
1046     html: '',
1047     offset: 0,
1048     alert: false,
1049     fa: false,
1050     icon : false,
1051     hidden : false,
1052     fasize : 1,
1053     
1054     getAutoCreate : function(){
1055         var cfg = Roo.apply({}, Roo.bootstrap.Column.superclass.getAutoCreate.call(this));
1056         
1057         cfg = {
1058             tag: 'div',
1059             cls: 'column'
1060         };
1061         
1062         var settings=this;
1063         ['xs','sm','md','lg'].map(function(size){
1064             //Roo.log( size + ':' + settings[size]);
1065             
1066             if (settings[size+'off'] !== false) {
1067                 cfg.cls += ' col-' + size + '-offset-' + settings[size+'off'] ;
1068             }
1069             
1070             if (settings[size] === false) {
1071                 return;
1072             }
1073             
1074             if (!settings[size]) { // 0 = hidden
1075                 cfg.cls += ' hidden-' + size + ' hidden' + size + '-down';;
1076                 return;
1077             }
1078             cfg.cls += ' col-' + size + '-' + settings[size] + (
1079                 size == 'xs' ? (' col-' + settings[size] ) : '' // bs4 col-{num} replaces col-xs
1080             );
1081             
1082         });
1083         
1084         if (this.hidden) {
1085             cfg.cls += ' hidden';
1086         }
1087         
1088         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1089             cfg.cls +=' alert alert-' + this.alert;
1090         }
1091         
1092         
1093         if (this.html.length) {
1094             cfg.html = this.html;
1095         }
1096         if (this.fa) {
1097             var fasize = '';
1098             if (this.fasize > 1) {
1099                 fasize = ' fa-' + this.fasize + 'x';
1100             }
1101             cfg.html = '<i class="fa fa-'+this.fa + fasize + '"></i>' + (cfg.html || '');
1102             
1103             
1104         }
1105         if (this.icon) {
1106             cfg.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' +  (cfg.html || '');
1107         }
1108         
1109         return cfg;
1110     }
1111    
1112 });
1113
1114  
1115
1116  /*
1117  * - LGPL
1118  *
1119  * page container.
1120  * 
1121  */
1122
1123
1124 /**
1125  * @class Roo.bootstrap.Container
1126  * @extends Roo.bootstrap.Component
1127  * Bootstrap Container class
1128  * @cfg {Boolean} jumbotron is it a jumbotron element
1129  * @cfg {String} html content of element
1130  * @cfg {String} well (lg|sm|md) a well, large, small or medium.
1131  * @cfg {String} panel (default|primary|success|info|warning|danger) render as panel  - type - primary/success.....
1132  * @cfg {String} header content of header (for panel)
1133  * @cfg {String} footer content of footer (for panel)
1134  * @cfg {String} sticky (footer|wrap|push) block to use as footer or body- needs css-bootstrap/sticky-footer.css
1135  * @cfg {String} tag (header|aside|section) type of HTML tag.
1136  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1137  * @cfg {String} fa font awesome icon
1138  * @cfg {String} icon (info-sign|check|...) glyphicon name
1139  * @cfg {Boolean} hidden (true|false) hide the element
1140  * @cfg {Boolean} expandable (true|false) default false
1141  * @cfg {Boolean} expanded (true|false) default true
1142  * @cfg {String} rheader contet on the right of header
1143  * @cfg {Boolean} clickable (true|false) default false
1144
1145  *     
1146  * @constructor
1147  * Create a new Container
1148  * @param {Object} config The config object
1149  */
1150
1151 Roo.bootstrap.Container = function(config){
1152     Roo.bootstrap.Container.superclass.constructor.call(this, config);
1153     
1154     this.addEvents({
1155         // raw events
1156          /**
1157          * @event expand
1158          * After the panel has been expand
1159          * 
1160          * @param {Roo.bootstrap.Container} this
1161          */
1162         "expand" : true,
1163         /**
1164          * @event collapse
1165          * After the panel has been collapsed
1166          * 
1167          * @param {Roo.bootstrap.Container} this
1168          */
1169         "collapse" : true,
1170         /**
1171          * @event click
1172          * When a element is chick
1173          * @param {Roo.bootstrap.Container} this
1174          * @param {Roo.EventObject} e
1175          */
1176         "click" : true
1177     });
1178 };
1179
1180 Roo.extend(Roo.bootstrap.Container, Roo.bootstrap.Component,  {
1181     
1182     jumbotron : false,
1183     well: '',
1184     panel : '',
1185     header: '',
1186     footer : '',
1187     sticky: '',
1188     tag : false,
1189     alert : false,
1190     fa: false,
1191     icon : false,
1192     expandable : false,
1193     rheader : '',
1194     expanded : true,
1195     clickable: false,
1196   
1197      
1198     getChildContainer : function() {
1199         
1200         if(!this.el){
1201             return false;
1202         }
1203         
1204         if (this.panel.length) {
1205             return this.el.select('.panel-body',true).first();
1206         }
1207         
1208         return this.el;
1209     },
1210     
1211     
1212     getAutoCreate : function(){
1213         
1214         var cfg = {
1215             tag : this.tag || 'div',
1216             html : '',
1217             cls : ''
1218         };
1219         if (this.jumbotron) {
1220             cfg.cls = 'jumbotron';
1221         }
1222         
1223         
1224         
1225         // - this is applied by the parent..
1226         //if (this.cls) {
1227         //    cfg.cls = this.cls + '';
1228         //}
1229         
1230         if (this.sticky.length) {
1231             
1232             var bd = Roo.get(document.body);
1233             if (!bd.hasClass('bootstrap-sticky')) {
1234                 bd.addClass('bootstrap-sticky');
1235                 Roo.select('html',true).setStyle('height', '100%');
1236             }
1237              
1238             cfg.cls += 'bootstrap-sticky-' + this.sticky;
1239         }
1240         
1241         
1242         if (this.well.length) {
1243             switch (this.well) {
1244                 case 'lg':
1245                 case 'sm':
1246                     cfg.cls +=' well well-' +this.well;
1247                     break;
1248                 default:
1249                     cfg.cls +=' well';
1250                     break;
1251             }
1252         }
1253         
1254         if (this.hidden) {
1255             cfg.cls += ' hidden';
1256         }
1257         
1258         
1259         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1260             cfg.cls +=' alert alert-' + this.alert;
1261         }
1262         
1263         var body = cfg;
1264         
1265         if (this.panel.length) {
1266             cfg.cls += ' panel panel-' + this.panel;
1267             cfg.cn = [];
1268             if (this.header.length) {
1269                 
1270                 var h = [];
1271                 
1272                 if(this.expandable){
1273                     
1274                     cfg.cls = cfg.cls + ' expandable';
1275                     
1276                     h.push({
1277                         tag: 'i',
1278                         cls: (this.expanded ? 'fa fa-minus' : 'fa fa-plus') 
1279                     });
1280                     
1281                 }
1282                 
1283                 h.push(
1284                     {
1285                         tag: 'span',
1286                         cls : 'panel-title',
1287                         html : (this.expandable ? '&nbsp;' : '') + this.header
1288                     },
1289                     {
1290                         tag: 'span',
1291                         cls: 'panel-header-right',
1292                         html: this.rheader
1293                     }
1294                 );
1295                 
1296                 cfg.cn.push({
1297                     cls : 'panel-heading',
1298                     style : this.expandable ? 'cursor: pointer' : '',
1299                     cn : h
1300                 });
1301                 
1302             }
1303             
1304             body = false;
1305             cfg.cn.push({
1306                 cls : 'panel-body' + (this.expanded ? '' : ' hide'),
1307                 html : this.html
1308             });
1309             
1310             
1311             if (this.footer.length) {
1312                 cfg.cn.push({
1313                     cls : 'panel-footer',
1314                     html : this.footer
1315                     
1316                 });
1317             }
1318             
1319         }
1320         
1321         if (body) {
1322             body.html = this.html || cfg.html;
1323             // prefix with the icons..
1324             if (this.fa) {
1325                 body.html = '<i class="fa fa-'+this.fa + '"></i>' + body.html ;
1326             }
1327             if (this.icon) {
1328                 body.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' + body.html ;
1329             }
1330             
1331             
1332         }
1333         if ((!this.cls || !this.cls.length) && (!cfg.cls || !cfg.cls.length)) {
1334             cfg.cls =  'container';
1335         }
1336         
1337         return cfg;
1338     },
1339     
1340     initEvents: function() 
1341     {
1342         if(this.expandable){
1343             var headerEl = this.headerEl();
1344         
1345             if(headerEl){
1346                 headerEl.on('click', this.onToggleClick, this);
1347             }
1348         }
1349         
1350         if(this.clickable){
1351             this.el.on('click', this.onClick, this);
1352         }
1353         
1354     },
1355     
1356     onToggleClick : function()
1357     {
1358         var headerEl = this.headerEl();
1359         
1360         if(!headerEl){
1361             return;
1362         }
1363         
1364         if(this.expanded){
1365             this.collapse();
1366             return;
1367         }
1368         
1369         this.expand();
1370     },
1371     
1372     expand : function()
1373     {
1374         if(this.fireEvent('expand', this)) {
1375             
1376             this.expanded = true;
1377             
1378             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).show();
1379             
1380             this.el.select('.panel-body',true).first().removeClass('hide');
1381             
1382             var toggleEl = this.toggleEl();
1383
1384             if(!toggleEl){
1385                 return;
1386             }
1387
1388             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-minus']);
1389         }
1390         
1391     },
1392     
1393     collapse : function()
1394     {
1395         if(this.fireEvent('collapse', this)) {
1396             
1397             this.expanded = false;
1398             
1399             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).hide();
1400             this.el.select('.panel-body',true).first().addClass('hide');
1401         
1402             var toggleEl = this.toggleEl();
1403
1404             if(!toggleEl){
1405                 return;
1406             }
1407
1408             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-plus']);
1409         }
1410     },
1411     
1412     toggleEl : function()
1413     {
1414         if(!this.el || !this.panel.length || !this.header.length || !this.expandable){
1415             return;
1416         }
1417         
1418         return this.el.select('.panel-heading .fa',true).first();
1419     },
1420     
1421     headerEl : function()
1422     {
1423         if(!this.el || !this.panel.length || !this.header.length){
1424             return;
1425         }
1426         
1427         return this.el.select('.panel-heading',true).first()
1428     },
1429     
1430     bodyEl : function()
1431     {
1432         if(!this.el || !this.panel.length){
1433             return;
1434         }
1435         
1436         return this.el.select('.panel-body',true).first()
1437     },
1438     
1439     titleEl : function()
1440     {
1441         if(!this.el || !this.panel.length || !this.header.length){
1442             return;
1443         }
1444         
1445         return this.el.select('.panel-title',true).first();
1446     },
1447     
1448     setTitle : function(v)
1449     {
1450         var titleEl = this.titleEl();
1451         
1452         if(!titleEl){
1453             return;
1454         }
1455         
1456         titleEl.dom.innerHTML = v;
1457     },
1458     
1459     getTitle : function()
1460     {
1461         
1462         var titleEl = this.titleEl();
1463         
1464         if(!titleEl){
1465             return '';
1466         }
1467         
1468         return titleEl.dom.innerHTML;
1469     },
1470     
1471     setRightTitle : function(v)
1472     {
1473         var t = this.el.select('.panel-header-right',true).first();
1474         
1475         if(!t){
1476             return;
1477         }
1478         
1479         t.dom.innerHTML = v;
1480     },
1481     
1482     onClick : function(e)
1483     {
1484         e.preventDefault();
1485         
1486         this.fireEvent('click', this, e);
1487     }
1488 });
1489
1490  /*
1491  * - LGPL
1492  *
1493  * image
1494  * 
1495  */
1496
1497
1498 /**
1499  * @class Roo.bootstrap.Img
1500  * @extends Roo.bootstrap.Component
1501  * Bootstrap Img class
1502  * @cfg {Boolean} imgResponsive false | true
1503  * @cfg {String} border rounded | circle | thumbnail
1504  * @cfg {String} src image source
1505  * @cfg {String} alt image alternative text
1506  * @cfg {String} href a tag href
1507  * @cfg {String} target (_self|_blank|_parent|_top)target for a href.
1508  * @cfg {String} xsUrl xs image source
1509  * @cfg {String} smUrl sm image source
1510  * @cfg {String} mdUrl md image source
1511  * @cfg {String} lgUrl lg image source
1512  * 
1513  * @constructor
1514  * Create a new Input
1515  * @param {Object} config The config object
1516  */
1517
1518 Roo.bootstrap.Img = function(config){
1519     Roo.bootstrap.Img.superclass.constructor.call(this, config);
1520     
1521     this.addEvents({
1522         // img events
1523         /**
1524          * @event click
1525          * The img click event for the img.
1526          * @param {Roo.EventObject} e
1527          */
1528         "click" : true
1529     });
1530 };
1531
1532 Roo.extend(Roo.bootstrap.Img, Roo.bootstrap.Component,  {
1533     
1534     imgResponsive: true,
1535     border: '',
1536     src: 'about:blank',
1537     href: false,
1538     target: false,
1539     xsUrl: '',
1540     smUrl: '',
1541     mdUrl: '',
1542     lgUrl: '',
1543
1544     getAutoCreate : function()
1545     {   
1546         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
1547             return this.createSingleImg();
1548         }
1549         
1550         var cfg = {
1551             tag: 'div',
1552             cls: 'roo-image-responsive-group',
1553             cn: []
1554         };
1555         var _this = this;
1556         
1557         Roo.each(['xs', 'sm', 'md', 'lg'], function(size){
1558             
1559             if(!_this[size + 'Url']){
1560                 return;
1561             }
1562             
1563             var img = {
1564                 tag: 'img',
1565                 cls: (_this.imgResponsive) ? 'img-responsive' : '',
1566                 html: _this.html || cfg.html,
1567                 src: _this[size + 'Url']
1568             };
1569             
1570             img.cls += ' roo-image-responsive-' + size;
1571             
1572             var s = ['xs', 'sm', 'md', 'lg'];
1573             
1574             s.splice(s.indexOf(size), 1);
1575             
1576             Roo.each(s, function(ss){
1577                 img.cls += ' hidden-' + ss;
1578             });
1579             
1580             if (['rounded','circle','thumbnail'].indexOf(_this.border)>-1) {
1581                 cfg.cls += ' img-' + _this.border;
1582             }
1583             
1584             if(_this.alt){
1585                 cfg.alt = _this.alt;
1586             }
1587             
1588             if(_this.href){
1589                 var a = {
1590                     tag: 'a',
1591                     href: _this.href,
1592                     cn: [
1593                         img
1594                     ]
1595                 };
1596
1597                 if(this.target){
1598                     a.target = _this.target;
1599                 }
1600             }
1601             
1602             cfg.cn.push((_this.href) ? a : img);
1603             
1604         });
1605         
1606         return cfg;
1607     },
1608     
1609     createSingleImg : function()
1610     {
1611         var cfg = {
1612             tag: 'img',
1613             cls: (this.imgResponsive) ? 'img-responsive' : '',
1614             html : null,
1615             src : 'about:blank'  // just incase src get's set to undefined?!?
1616         };
1617         
1618         cfg.html = this.html || cfg.html;
1619         
1620         cfg.src = this.src || cfg.src;
1621         
1622         if (['rounded','circle','thumbnail'].indexOf(this.border)>-1) {
1623             cfg.cls += ' img-' + this.border;
1624         }
1625         
1626         if(this.alt){
1627             cfg.alt = this.alt;
1628         }
1629         
1630         if(this.href){
1631             var a = {
1632                 tag: 'a',
1633                 href: this.href,
1634                 cn: [
1635                     cfg
1636                 ]
1637             };
1638             
1639             if(this.target){
1640                 a.target = this.target;
1641             }
1642             
1643         }
1644         
1645         return (this.href) ? a : cfg;
1646     },
1647     
1648     initEvents: function() 
1649     {
1650         if(!this.href){
1651             this.el.on('click', this.onClick, this);
1652         }
1653         
1654     },
1655     
1656     onClick : function(e)
1657     {
1658         Roo.log('img onclick');
1659         this.fireEvent('click', this, e);
1660     },
1661     /**
1662      * Sets the url of the image - used to update it
1663      * @param {String} url the url of the image
1664      */
1665     
1666     setSrc : function(url)
1667     {
1668         this.src =  url;
1669         
1670         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
1671             this.el.dom.src =  url;
1672             return;
1673         }
1674         
1675         this.el.select('img', true).first().dom.src =  url;
1676     }
1677     
1678     
1679    
1680 });
1681
1682  /*
1683  * - LGPL
1684  *
1685  * image
1686  * 
1687  */
1688
1689
1690 /**
1691  * @class Roo.bootstrap.Link
1692  * @extends Roo.bootstrap.Component
1693  * Bootstrap Link Class
1694  * @cfg {String} alt image alternative text
1695  * @cfg {String} href a tag href
1696  * @cfg {String} target (_self|_blank|_parent|_top) target for a href.
1697  * @cfg {String} html the content of the link.
1698  * @cfg {String} anchor name for the anchor link
1699  * @cfg {String} fa - favicon
1700
1701  * @cfg {Boolean} preventDefault (true | false) default false
1702
1703  * 
1704  * @constructor
1705  * Create a new Input
1706  * @param {Object} config The config object
1707  */
1708
1709 Roo.bootstrap.Link = function(config){
1710     Roo.bootstrap.Link.superclass.constructor.call(this, config);
1711     
1712     this.addEvents({
1713         // img events
1714         /**
1715          * @event click
1716          * The img click event for the img.
1717          * @param {Roo.EventObject} e
1718          */
1719         "click" : true
1720     });
1721 };
1722
1723 Roo.extend(Roo.bootstrap.Link, Roo.bootstrap.Component,  {
1724     
1725     href: false,
1726     target: false,
1727     preventDefault: false,
1728     anchor : false,
1729     alt : false,
1730     fa: false,
1731
1732
1733     getAutoCreate : function()
1734     {
1735         var html = this.html || '';
1736         
1737         if (this.fa !== false) {
1738             html = '<i class="fa fa-' + this.fa + '"></i>';
1739         }
1740         var cfg = {
1741             tag: 'a'
1742         };
1743         // anchor's do not require html/href...
1744         if (this.anchor === false) {
1745             cfg.html = html;
1746             cfg.href = this.href || '#';
1747         } else {
1748             cfg.name = this.anchor;
1749             if (this.html !== false || this.fa !== false) {
1750                 cfg.html = html;
1751             }
1752             if (this.href !== false) {
1753                 cfg.href = this.href;
1754             }
1755         }
1756         
1757         if(this.alt !== false){
1758             cfg.alt = this.alt;
1759         }
1760         
1761         
1762         if(this.target !== false) {
1763             cfg.target = this.target;
1764         }
1765         
1766         return cfg;
1767     },
1768     
1769     initEvents: function() {
1770         
1771         if(!this.href || this.preventDefault){
1772             this.el.on('click', this.onClick, this);
1773         }
1774     },
1775     
1776     onClick : function(e)
1777     {
1778         if(this.preventDefault){
1779             e.preventDefault();
1780         }
1781         //Roo.log('img onclick');
1782         this.fireEvent('click', this, e);
1783     }
1784    
1785 });
1786
1787  /*
1788  * - LGPL
1789  *
1790  * header
1791  * 
1792  */
1793
1794 /**
1795  * @class Roo.bootstrap.Header
1796  * @extends Roo.bootstrap.Component
1797  * Bootstrap Header class
1798  * @cfg {String} html content of header
1799  * @cfg {Number} level (1|2|3|4|5|6) default 1
1800  * 
1801  * @constructor
1802  * Create a new Header
1803  * @param {Object} config The config object
1804  */
1805
1806
1807 Roo.bootstrap.Header  = function(config){
1808     Roo.bootstrap.Header.superclass.constructor.call(this, config);
1809 };
1810
1811 Roo.extend(Roo.bootstrap.Header, Roo.bootstrap.Component,  {
1812     
1813     //href : false,
1814     html : false,
1815     level : 1,
1816     
1817     
1818     
1819     getAutoCreate : function(){
1820         
1821         
1822         
1823         var cfg = {
1824             tag: 'h' + (1 *this.level),
1825             html: this.html || ''
1826         } ;
1827         
1828         return cfg;
1829     }
1830    
1831 });
1832
1833  
1834
1835  /*
1836  * Based on:
1837  * Ext JS Library 1.1.1
1838  * Copyright(c) 2006-2007, Ext JS, LLC.
1839  *
1840  * Originally Released Under LGPL - original licence link has changed is not relivant.
1841  *
1842  * Fork - LGPL
1843  * <script type="text/javascript">
1844  */
1845  
1846 /**
1847  * @class Roo.bootstrap.MenuMgr
1848  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
1849  * @singleton
1850  */
1851 Roo.bootstrap.MenuMgr = function(){
1852    var menus, active, groups = {}, attached = false, lastShow = new Date();
1853
1854    // private - called when first menu is created
1855    function init(){
1856        menus = {};
1857        active = new Roo.util.MixedCollection();
1858        Roo.get(document).addKeyListener(27, function(){
1859            if(active.length > 0){
1860                hideAll();
1861            }
1862        });
1863    }
1864
1865    // private
1866    function hideAll(){
1867        if(active && active.length > 0){
1868            var c = active.clone();
1869            c.each(function(m){
1870                m.hide();
1871            });
1872        }
1873    }
1874
1875    // private
1876    function onHide(m){
1877        active.remove(m);
1878        if(active.length < 1){
1879            Roo.get(document).un("mouseup", onMouseDown);
1880             
1881            attached = false;
1882        }
1883    }
1884
1885    // private
1886    function onShow(m){
1887        var last = active.last();
1888        lastShow = new Date();
1889        active.add(m);
1890        if(!attached){
1891           Roo.get(document).on("mouseup", onMouseDown);
1892            
1893            attached = true;
1894        }
1895        if(m.parentMenu){
1896           //m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
1897           m.parentMenu.activeChild = m;
1898        }else if(last && last.isVisible()){
1899           //m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
1900        }
1901    }
1902
1903    // private
1904    function onBeforeHide(m){
1905        if(m.activeChild){
1906            m.activeChild.hide();
1907        }
1908        if(m.autoHideTimer){
1909            clearTimeout(m.autoHideTimer);
1910            delete m.autoHideTimer;
1911        }
1912    }
1913
1914    // private
1915    function onBeforeShow(m){
1916        var pm = m.parentMenu;
1917        if(!pm && !m.allowOtherMenus){
1918            hideAll();
1919        }else if(pm && pm.activeChild && active != m){
1920            pm.activeChild.hide();
1921        }
1922    }
1923
1924    // private this should really trigger on mouseup..
1925    function onMouseDown(e){
1926         Roo.log("on Mouse Up");
1927         
1928         if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".dropdown-menu") && !e.getTarget('.user-menu')){
1929             Roo.log("MenuManager hideAll");
1930             hideAll();
1931             e.stopEvent();
1932         }
1933         
1934         
1935    }
1936
1937    // private
1938    function onBeforeCheck(mi, state){
1939        if(state){
1940            var g = groups[mi.group];
1941            for(var i = 0, l = g.length; i < l; i++){
1942                if(g[i] != mi){
1943                    g[i].setChecked(false);
1944                }
1945            }
1946        }
1947    }
1948
1949    return {
1950
1951        /**
1952         * Hides all menus that are currently visible
1953         */
1954        hideAll : function(){
1955             hideAll();  
1956        },
1957
1958        // private
1959        register : function(menu){
1960            if(!menus){
1961                init();
1962            }
1963            menus[menu.id] = menu;
1964            menu.on("beforehide", onBeforeHide);
1965            menu.on("hide", onHide);
1966            menu.on("beforeshow", onBeforeShow);
1967            menu.on("show", onShow);
1968            var g = menu.group;
1969            if(g && menu.events["checkchange"]){
1970                if(!groups[g]){
1971                    groups[g] = [];
1972                }
1973                groups[g].push(menu);
1974                menu.on("checkchange", onCheck);
1975            }
1976        },
1977
1978         /**
1979          * Returns a {@link Roo.menu.Menu} object
1980          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
1981          * be used to generate and return a new Menu instance.
1982          */
1983        get : function(menu){
1984            if(typeof menu == "string"){ // menu id
1985                return menus[menu];
1986            }else if(menu.events){  // menu instance
1987                return menu;
1988            }
1989            /*else if(typeof menu.length == 'number'){ // array of menu items?
1990                return new Roo.bootstrap.Menu({items:menu});
1991            }else{ // otherwise, must be a config
1992                return new Roo.bootstrap.Menu(menu);
1993            }
1994            */
1995            return false;
1996        },
1997
1998        // private
1999        unregister : function(menu){
2000            delete menus[menu.id];
2001            menu.un("beforehide", onBeforeHide);
2002            menu.un("hide", onHide);
2003            menu.un("beforeshow", onBeforeShow);
2004            menu.un("show", onShow);
2005            var g = menu.group;
2006            if(g && menu.events["checkchange"]){
2007                groups[g].remove(menu);
2008                menu.un("checkchange", onCheck);
2009            }
2010        },
2011
2012        // private
2013        registerCheckable : function(menuItem){
2014            var g = menuItem.group;
2015            if(g){
2016                if(!groups[g]){
2017                    groups[g] = [];
2018                }
2019                groups[g].push(menuItem);
2020                menuItem.on("beforecheckchange", onBeforeCheck);
2021            }
2022        },
2023
2024        // private
2025        unregisterCheckable : function(menuItem){
2026            var g = menuItem.group;
2027            if(g){
2028                groups[g].remove(menuItem);
2029                menuItem.un("beforecheckchange", onBeforeCheck);
2030            }
2031        }
2032    };
2033 }();/*
2034  * - LGPL
2035  *
2036  * menu
2037  * 
2038  */
2039
2040 /**
2041  * @class Roo.bootstrap.Menu
2042  * @extends Roo.bootstrap.Component
2043  * Bootstrap Menu class - container for MenuItems
2044  * @cfg {String} type (dropdown|treeview|submenu) type of menu
2045  * @cfg {bool} hidden  if the menu should be hidden when rendered.
2046  * @cfg {bool} stopEvent (true|false)  Stop event after trigger press (default true)
2047  * @cfg {bool} isLink (true|false)  the menu has link disable auto expand and collaspe (default false)
2048  * 
2049  * @constructor
2050  * Create a new Menu
2051  * @param {Object} config The config object
2052  */
2053
2054
2055 Roo.bootstrap.Menu = function(config){
2056     Roo.bootstrap.Menu.superclass.constructor.call(this, config);
2057     if (this.registerMenu && this.type != 'treeview')  {
2058         Roo.bootstrap.MenuMgr.register(this);
2059     }
2060     
2061     
2062     this.addEvents({
2063         /**
2064          * @event beforeshow
2065          * Fires before this menu is displayed (return false to block)
2066          * @param {Roo.menu.Menu} this
2067          */
2068         beforeshow : true,
2069         /**
2070          * @event beforehide
2071          * Fires before this menu is hidden (return false to block)
2072          * @param {Roo.menu.Menu} this
2073          */
2074         beforehide : true,
2075         /**
2076          * @event show
2077          * Fires after this menu is displayed
2078          * @param {Roo.menu.Menu} this
2079          */
2080         show : true,
2081         /**
2082          * @event hide
2083          * Fires after this menu is hidden
2084          * @param {Roo.menu.Menu} this
2085          */
2086         hide : true,
2087         /**
2088          * @event click
2089          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
2090          * @param {Roo.menu.Menu} this
2091          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2092          * @param {Roo.EventObject} e
2093          */
2094         click : true,
2095         /**
2096          * @event mouseover
2097          * Fires when the mouse is hovering over this menu
2098          * @param {Roo.menu.Menu} this
2099          * @param {Roo.EventObject} e
2100          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2101          */
2102         mouseover : true,
2103         /**
2104          * @event mouseout
2105          * Fires when the mouse exits this menu
2106          * @param {Roo.menu.Menu} this
2107          * @param {Roo.EventObject} e
2108          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2109          */
2110         mouseout : true,
2111         /**
2112          * @event itemclick
2113          * Fires when a menu item contained in this menu is clicked
2114          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
2115          * @param {Roo.EventObject} e
2116          */
2117         itemclick: true
2118     });
2119     this.menuitems = new Roo.util.MixedCollection(false, function(o) { return o.el.id; });
2120 };
2121
2122 Roo.extend(Roo.bootstrap.Menu, Roo.bootstrap.Component,  {
2123     
2124    /// html : false,
2125     //align : '',
2126     triggerEl : false,  // is this set by component builder? -- it should really be fetched from parent()???
2127     type: false,
2128     /**
2129      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
2130      */
2131     registerMenu : true,
2132     
2133     menuItems :false, // stores the menu items..
2134     
2135     hidden:true,
2136         
2137     parentMenu : false,
2138     
2139     stopEvent : true,
2140     
2141     isLink : false,
2142     
2143     getChildContainer : function() {
2144         return this.el;  
2145     },
2146     
2147     getAutoCreate : function(){
2148          
2149         //if (['right'].indexOf(this.align)!==-1) {
2150         //    cfg.cn[1].cls += ' pull-right'
2151         //}
2152         
2153         
2154         var cfg = {
2155             tag : 'ul',
2156             cls : 'dropdown-menu' ,
2157             style : 'z-index:1000'
2158             
2159         };
2160         
2161         if (this.type === 'submenu') {
2162             cfg.cls = 'submenu active';
2163         }
2164         if (this.type === 'treeview') {
2165             cfg.cls = 'treeview-menu';
2166         }
2167         
2168         return cfg;
2169     },
2170     initEvents : function() {
2171         
2172        // Roo.log("ADD event");
2173        // Roo.log(this.triggerEl.dom);
2174         
2175         this.triggerEl.on('click', this.onTriggerClick, this);
2176         
2177         this.triggerEl.on(Roo.isTouch ? 'touchstart' : 'mouseup', this.onTriggerPress, this);
2178         
2179         
2180         if (this.triggerEl.hasClass('nav-item')) {
2181             // dropdown toggle on the 'a' in BS4?
2182             this.triggerEl.select('.nav-link',true).first().addClass('dropdown-toggle');
2183         } else {
2184             this.triggerEl.addClass('dropdown-toggle');
2185         }
2186         if (Roo.isTouch) {
2187             this.el.on('touchstart'  , this.onTouch, this);
2188         }
2189         this.el.on('click' , this.onClick, this);
2190
2191         this.el.on("mouseover", this.onMouseOver, this);
2192         this.el.on("mouseout", this.onMouseOut, this);
2193         
2194     },
2195     
2196     findTargetItem : function(e)
2197     {
2198         var t = e.getTarget(".dropdown-menu-item", this.el,  true);
2199         if(!t){
2200             return false;
2201         }
2202         //Roo.log(t);         Roo.log(t.id);
2203         if(t && t.id){
2204             //Roo.log(this.menuitems);
2205             return this.menuitems.get(t.id);
2206             
2207             //return this.items.get(t.menuItemId);
2208         }
2209         
2210         return false;
2211     },
2212     
2213     onTouch : function(e) 
2214     {
2215         Roo.log("menu.onTouch");
2216         //e.stopEvent(); this make the user popdown broken
2217         this.onClick(e);
2218     },
2219     
2220     onClick : function(e)
2221     {
2222         Roo.log("menu.onClick");
2223         
2224         var t = this.findTargetItem(e);
2225         if(!t || t.isContainer){
2226             return;
2227         }
2228         Roo.log(e);
2229         /*
2230         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
2231             if(t == this.activeItem && t.shouldDeactivate(e)){
2232                 this.activeItem.deactivate();
2233                 delete this.activeItem;
2234                 return;
2235             }
2236             if(t.canActivate){
2237                 this.setActiveItem(t, true);
2238             }
2239             return;
2240             
2241             
2242         }
2243         */
2244        
2245         Roo.log('pass click event');
2246         
2247         t.onClick(e);
2248         
2249         this.fireEvent("click", this, t, e);
2250         
2251         var _this = this;
2252         
2253         if(!t.href.length || t.href == '#'){
2254             (function() { _this.hide(); }).defer(100);
2255         }
2256         
2257     },
2258     
2259     onMouseOver : function(e){
2260         var t  = this.findTargetItem(e);
2261         //Roo.log(t);
2262         //if(t){
2263         //    if(t.canActivate && !t.disabled){
2264         //        this.setActiveItem(t, true);
2265         //    }
2266         //}
2267         
2268         this.fireEvent("mouseover", this, e, t);
2269     },
2270     isVisible : function(){
2271         return !this.hidden;
2272     },
2273     onMouseOut : function(e){
2274         var t  = this.findTargetItem(e);
2275         
2276         //if(t ){
2277         //    if(t == this.activeItem && t.shouldDeactivate(e)){
2278         //        this.activeItem.deactivate();
2279         //        delete this.activeItem;
2280         //    }
2281         //}
2282         this.fireEvent("mouseout", this, e, t);
2283     },
2284     
2285     
2286     /**
2287      * Displays this menu relative to another element
2288      * @param {String/HTMLElement/Roo.Element} element The element to align to
2289      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
2290      * the element (defaults to this.defaultAlign)
2291      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
2292      */
2293     show : function(el, pos, parentMenu)
2294     {
2295         if (false === this.fireEvent("beforeshow", this)) {
2296             Roo.log("show canceled");
2297             return;
2298         }
2299         this.parentMenu = parentMenu;
2300         if(!this.el){
2301             this.render();
2302         }
2303         
2304         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
2305     },
2306      /**
2307      * Displays this menu at a specific xy position
2308      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
2309      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
2310      */
2311     showAt : function(xy, parentMenu, /* private: */_e){
2312         this.parentMenu = parentMenu;
2313         if(!this.el){
2314             this.render();
2315         }
2316         if(_e !== false){
2317             this.fireEvent("beforeshow", this);
2318             //xy = this.el.adjustForConstraints(xy);
2319         }
2320         
2321         //this.el.show();
2322         this.hideMenuItems();
2323         this.hidden = false;
2324         this.triggerEl.addClass('open');
2325         this.el.addClass('show');
2326         
2327         // reassign x when hitting right
2328         if(this.el.getWidth() + xy[0] >= Roo.lib.Dom.getViewWidth()){
2329             xy[0] = xy[0] - this.el.getWidth() + this.triggerEl.getWidth();
2330         }
2331         
2332         // reassign y when hitting bottom
2333         if(this.el.getHeight() + xy[1] >= Roo.lib.Dom.getViewHeight()){
2334             xy[1] = xy[1] - this.el.getHeight() - this.triggerEl.getHeight();
2335         }
2336         
2337         // but the list may align on trigger left or trigger top... should it be a properity?
2338         
2339         if(this.el.getStyle('top') != 'auto' && this.el.getStyle('top').slice(-1) != "%"){
2340             this.el.setXY(xy);
2341         }
2342         
2343         this.focus();
2344         this.fireEvent("show", this);
2345     },
2346     
2347     focus : function(){
2348         return;
2349         if(!this.hidden){
2350             this.doFocus.defer(50, this);
2351         }
2352     },
2353
2354     doFocus : function(){
2355         if(!this.hidden){
2356             this.focusEl.focus();
2357         }
2358     },
2359
2360     /**
2361      * Hides this menu and optionally all parent menus
2362      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
2363      */
2364     hide : function(deep)
2365     {
2366         if (false === this.fireEvent("beforehide", this)) {
2367             Roo.log("hide canceled");
2368             return;
2369         }
2370         this.hideMenuItems();
2371         if(this.el && this.isVisible()){
2372            
2373             if(this.activeItem){
2374                 this.activeItem.deactivate();
2375                 this.activeItem = null;
2376             }
2377             this.triggerEl.removeClass('open');;
2378             this.el.removeClass('show');
2379             this.hidden = true;
2380             this.fireEvent("hide", this);
2381         }
2382         if(deep === true && this.parentMenu){
2383             this.parentMenu.hide(true);
2384         }
2385     },
2386     
2387     onTriggerClick : function(e)
2388     {
2389         Roo.log('trigger click');
2390         
2391         var target = e.getTarget();
2392         
2393         Roo.log(target.nodeName.toLowerCase());
2394         
2395         if(target.nodeName.toLowerCase() === 'i'){
2396             e.preventDefault();
2397         }
2398         
2399     },
2400     
2401     onTriggerPress  : function(e)
2402     {
2403         Roo.log('trigger press');
2404         //Roo.log(e.getTarget());
2405        // Roo.log(this.triggerEl.dom);
2406        
2407         // trigger only occurs on normal menu's -- if it's a treeview or dropdown... do not hide/show..
2408         var pel = Roo.get(e.getTarget());
2409         if (pel.findParent('.dropdown-menu') || pel.findParent('.treeview-menu') ) {
2410             Roo.log('is treeview or dropdown?');
2411             return;
2412         }
2413         
2414         if(e.getTarget().nodeName.toLowerCase() !== 'i' && this.isLink){
2415             return;
2416         }
2417         
2418         if (this.isVisible()) {
2419             Roo.log('hide');
2420             this.hide();
2421         } else {
2422             Roo.log('show');
2423             this.show(this.triggerEl, '?', false);
2424         }
2425         
2426         if(this.stopEvent || e.getTarget().nodeName.toLowerCase() === 'i'){
2427             e.stopEvent();
2428         }
2429         
2430     },
2431        
2432     
2433     hideMenuItems : function()
2434     {
2435         Roo.log("hide Menu Items");
2436         if (!this.el) { 
2437             return;
2438         }
2439         
2440         this.el.select('.open',true).each(function(aa) {
2441             
2442             aa.removeClass('open');
2443          
2444         });
2445     },
2446     addxtypeChild : function (tree, cntr) {
2447         var comp= Roo.bootstrap.Menu.superclass.addxtypeChild.call(this, tree, cntr);
2448           
2449         this.menuitems.add(comp);
2450         return comp;
2451
2452     },
2453     getEl : function()
2454     {
2455         Roo.log(this.el);
2456         return this.el;
2457     },
2458     
2459     clear : function()
2460     {
2461         this.getEl().dom.innerHTML = '';
2462         this.menuitems.clear();
2463     }
2464 });
2465
2466  
2467  /*
2468  * - LGPL
2469  *
2470  * menu item
2471  * 
2472  */
2473
2474
2475 /**
2476  * @class Roo.bootstrap.MenuItem
2477  * @extends Roo.bootstrap.Component
2478  * Bootstrap MenuItem class
2479  * @cfg {String} html the menu label
2480  * @cfg {String} href the link
2481  * @cfg {Boolean} preventDefault do not trigger A href on clicks (default false).
2482  * @cfg {Boolean} isContainer is it a container - just returns a drop down item..
2483  * @cfg {Boolean} active  used on sidebars to highlight active itesm
2484  * @cfg {String} fa favicon to show on left of menu item.
2485  * @cfg {Roo.bootsrap.Menu} menu the child menu.
2486  * 
2487  * 
2488  * @constructor
2489  * Create a new MenuItem
2490  * @param {Object} config The config object
2491  */
2492
2493
2494 Roo.bootstrap.MenuItem = function(config){
2495     Roo.bootstrap.MenuItem.superclass.constructor.call(this, config);
2496     this.addEvents({
2497         // raw events
2498         /**
2499          * @event click
2500          * The raw click event for the entire grid.
2501          * @param {Roo.bootstrap.MenuItem} this
2502          * @param {Roo.EventObject} e
2503          */
2504         "click" : true
2505     });
2506 };
2507
2508 Roo.extend(Roo.bootstrap.MenuItem, Roo.bootstrap.Component,  {
2509     
2510     href : false,
2511     html : false,
2512     preventDefault: false,
2513     isContainer : false,
2514     active : false,
2515     fa: false,
2516     
2517     getAutoCreate : function(){
2518         
2519         if(this.isContainer){
2520             return {
2521                 tag: 'li',
2522                 cls: 'dropdown-menu-item '
2523             };
2524         }
2525         var ctag = {
2526             tag: 'span',
2527             html: 'Link'
2528         };
2529         
2530         var anc = {
2531             tag : 'a',
2532             cls : 'dropdown-item',
2533             href : '#',
2534             cn : [  ]
2535         };
2536         
2537         if (this.fa !== false) {
2538             anc.cn.push({
2539                 tag : 'i',
2540                 cls : 'fa fa-' + this.fa
2541             });
2542         }
2543         
2544         anc.cn.push(ctag);
2545         
2546         
2547         var cfg= {
2548             tag: 'li',
2549             cls: 'dropdown-menu-item',
2550             cn: [ anc ]
2551         };
2552         if (this.parent().type == 'treeview') {
2553             cfg.cls = 'treeview-menu';
2554         }
2555         if (this.active) {
2556             cfg.cls += ' active';
2557         }
2558         
2559         
2560         
2561         anc.href = this.href || cfg.cn[0].href ;
2562         ctag.html = this.html || cfg.cn[0].html ;
2563         return cfg;
2564     },
2565     
2566     initEvents: function()
2567     {
2568         if (this.parent().type == 'treeview') {
2569             this.el.select('a').on('click', this.onClick, this);
2570         }
2571         
2572         if (this.menu) {
2573             this.menu.parentType = this.xtype;
2574             this.menu.triggerEl = this.el;
2575             this.menu = this.addxtype(Roo.apply({}, this.menu));
2576         }
2577         
2578     },
2579     onClick : function(e)
2580     {
2581         Roo.log('item on click ');
2582         
2583         if(this.preventDefault){
2584             e.preventDefault();
2585         }
2586         //this.parent().hideMenuItems();
2587         
2588         this.fireEvent('click', this, e);
2589     },
2590     getEl : function()
2591     {
2592         return this.el;
2593     } 
2594 });
2595
2596  
2597
2598  /*
2599  * - LGPL
2600  *
2601  * menu separator
2602  * 
2603  */
2604
2605
2606 /**
2607  * @class Roo.bootstrap.MenuSeparator
2608  * @extends Roo.bootstrap.Component
2609  * Bootstrap MenuSeparator class
2610  * 
2611  * @constructor
2612  * Create a new MenuItem
2613  * @param {Object} config The config object
2614  */
2615
2616
2617 Roo.bootstrap.MenuSeparator = function(config){
2618     Roo.bootstrap.MenuSeparator.superclass.constructor.call(this, config);
2619 };
2620
2621 Roo.extend(Roo.bootstrap.MenuSeparator, Roo.bootstrap.Component,  {
2622     
2623     getAutoCreate : function(){
2624         var cfg = {
2625             cls: 'divider',
2626             tag : 'li'
2627         };
2628         
2629         return cfg;
2630     }
2631    
2632 });
2633
2634  
2635
2636  
2637 /*
2638 * Licence: LGPL
2639 */
2640
2641 /**
2642  * @class Roo.bootstrap.Modal
2643  * @extends Roo.bootstrap.Component
2644  * Bootstrap Modal class
2645  * @cfg {String} title Title of dialog
2646  * @cfg {String} html - the body of the dialog (for simple ones) - you can also use template..
2647  * @cfg {Roo.Template} tmpl - a template with variables. to use it, add a handler in show:method  adn
2648  * @cfg {Boolean} specificTitle default false
2649  * @cfg {Array} buttons Array of buttons or standard button set..
2650  * @cfg {String} buttonPosition (left|right|center) default right (DEPRICATED) - use mr-auto on buttons to put them on the left
2651  * @cfg {Boolean} animate default true
2652  * @cfg {Boolean} allow_close default true
2653  * @cfg {Boolean} fitwindow default false
2654  * @cfg {Number} width fixed width - usefull for chrome extension only really.
2655  * @cfg {Number} height fixed height - usefull for chrome extension only really.
2656  * @cfg {String} size (sm|lg) default empty
2657  * @cfg {Number} max_width set the max width of modal
2658  *
2659  *
2660  * @constructor
2661  * Create a new Modal Dialog
2662  * @param {Object} config The config object
2663  */
2664
2665 Roo.bootstrap.Modal = function(config){
2666     Roo.bootstrap.Modal.superclass.constructor.call(this, config);
2667     this.addEvents({
2668         // raw events
2669         /**
2670          * @event btnclick
2671          * The raw btnclick event for the button
2672          * @param {Roo.EventObject} e
2673          */
2674         "btnclick" : true,
2675         /**
2676          * @event resize
2677          * Fire when dialog resize
2678          * @param {Roo.bootstrap.Modal} this
2679          * @param {Roo.EventObject} e
2680          */
2681         "resize" : true
2682     });
2683     this.buttons = this.buttons || [];
2684
2685     if (this.tmpl) {
2686         this.tmpl = Roo.factory(this.tmpl);
2687     }
2688
2689 };
2690
2691 Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
2692
2693     title : 'test dialog',
2694
2695     buttons : false,
2696
2697     // set on load...
2698
2699     html: false,
2700
2701     tmp: false,
2702
2703     specificTitle: false,
2704
2705     buttonPosition: 'right',
2706
2707     allow_close : true,
2708
2709     animate : true,
2710
2711     fitwindow: false,
2712     
2713      // private
2714     dialogEl: false,
2715     bodyEl:  false,
2716     footerEl:  false,
2717     titleEl:  false,
2718     closeEl:  false,
2719
2720     size: '',
2721     
2722     max_width: 0,
2723     
2724     max_height: 0,
2725     
2726     fit_content: false,
2727
2728     onRender : function(ct, position)
2729     {
2730         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
2731
2732         if(!this.el){
2733             var cfg = Roo.apply({},  this.getAutoCreate());
2734             cfg.id = Roo.id();
2735             //if(!cfg.name){
2736             //    cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
2737             //}
2738             //if (!cfg.name.length) {
2739             //    delete cfg.name;
2740            // }
2741             if (this.cls) {
2742                 cfg.cls += ' ' + this.cls;
2743             }
2744             if (this.style) {
2745                 cfg.style = this.style;
2746             }
2747             this.el = Roo.get(document.body).createChild(cfg, position);
2748         }
2749         //var type = this.el.dom.type;
2750
2751
2752         if(this.tabIndex !== undefined){
2753             this.el.dom.setAttribute('tabIndex', this.tabIndex);
2754         }
2755
2756         this.dialogEl = this.el.select('.modal-dialog',true).first();
2757         this.bodyEl = this.el.select('.modal-body',true).first();
2758         this.closeEl = this.el.select('.modal-header .close', true).first();
2759         this.headerEl = this.el.select('.modal-header',true).first();
2760         this.titleEl = this.el.select('.modal-title',true).first();
2761         this.footerEl = this.el.select('.modal-footer',true).first();
2762
2763         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
2764         
2765         //this.el.addClass("x-dlg-modal");
2766
2767         if (this.buttons.length) {
2768             Roo.each(this.buttons, function(bb) {
2769                 var b = Roo.apply({}, bb);
2770                 b.xns = b.xns || Roo.bootstrap;
2771                 b.xtype = b.xtype || 'Button';
2772                 if (typeof(b.listeners) == 'undefined') {
2773                     b.listeners = { click : this.onButtonClick.createDelegate(this)  };
2774                 }
2775
2776                 var btn = Roo.factory(b);
2777
2778                 btn.render(this.getButtonContainer());
2779
2780             },this);
2781         }
2782         // render the children.
2783         var nitems = [];
2784
2785         if(typeof(this.items) != 'undefined'){
2786             var items = this.items;
2787             delete this.items;
2788
2789             for(var i =0;i < items.length;i++) {
2790                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
2791             }
2792         }
2793
2794         this.items = nitems;
2795
2796         // where are these used - they used to be body/close/footer
2797
2798
2799         this.initEvents();
2800         //this.el.addClass([this.fieldClass, this.cls]);
2801
2802     },
2803
2804     getAutoCreate : function()
2805     {
2806         // we will default to modal-body-overflow - might need to remove or make optional later.
2807         var bdy = {
2808                 cls : 'modal-body enable-modal-body-overflow ', 
2809                 html : this.html || ''
2810         };
2811
2812         var title = {
2813             tag: 'h4',
2814             cls : 'modal-title',
2815             html : this.title
2816         };
2817
2818         if(this.specificTitle){
2819             title = this.title;
2820
2821         }
2822
2823         var header = [];
2824         if (this.allow_close && Roo.bootstrap.version == 3) {
2825             header.push({
2826                 tag: 'button',
2827                 cls : 'close',
2828                 html : '&times'
2829             });
2830         }
2831
2832         header.push(title);
2833
2834         if (this.allow_close && Roo.bootstrap.version == 4) {
2835             header.push({
2836                 tag: 'button',
2837                 cls : 'close',
2838                 html : '&times'
2839             });
2840         }
2841         
2842         var size = '';
2843
2844         if(this.size.length){
2845             size = 'modal-' + this.size;
2846         }
2847         
2848         var footer = Roo.bootstrap.version == 3 ?
2849             {
2850                 cls : 'modal-footer',
2851                 cn : [
2852                     {
2853                         tag: 'div',
2854                         cls: 'btn-' + this.buttonPosition
2855                     }
2856                 ]
2857
2858             } :
2859             {  // BS4 uses mr-auto on left buttons....
2860                 cls : 'modal-footer'
2861             };
2862
2863             
2864
2865         
2866         
2867         var modal = {
2868             cls: "modal",
2869              cn : [
2870                 {
2871                     cls: "modal-dialog " + size,
2872                     cn : [
2873                         {
2874                             cls : "modal-content",
2875                             cn : [
2876                                 {
2877                                     cls : 'modal-header',
2878                                     cn : header
2879                                 },
2880                                 bdy,
2881                                 footer
2882                             ]
2883
2884                         }
2885                     ]
2886
2887                 }
2888             ]
2889         };
2890
2891         if(this.animate){
2892             modal.cls += ' fade';
2893         }
2894
2895         return modal;
2896
2897     },
2898     getChildContainer : function() {
2899
2900          return this.bodyEl;
2901
2902     },
2903     getButtonContainer : function() {
2904         
2905          return Roo.bootstrap.version == 4 ?
2906             this.el.select('.modal-footer',true).first()
2907             : this.el.select('.modal-footer div',true).first();
2908
2909     },
2910     initEvents : function()
2911     {
2912         if (this.allow_close) {
2913             this.closeEl.on('click', this.hide, this);
2914         }
2915         Roo.EventManager.onWindowResize(this.resize, this, true);
2916
2917
2918     },
2919   
2920
2921     resize : function()
2922     {
2923         this.maskEl.setSize(
2924             Roo.lib.Dom.getViewWidth(true),
2925             Roo.lib.Dom.getViewHeight(true)
2926         );
2927         
2928         if (this.fitwindow) {
2929             
2930            
2931             this.setSize(
2932                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
2933                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
2934             );
2935             return;
2936         }
2937         
2938         if(this.max_width !== 0) {
2939             
2940             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
2941             
2942             if(this.height) {
2943                 this.setSize(w, this.height);
2944                 return;
2945             }
2946             
2947             if(this.max_height) {
2948                 this.setSize(w,Math.min(
2949                     this.max_height,
2950                     Roo.lib.Dom.getViewportHeight(true) - 60
2951                 ));
2952                 
2953                 return;
2954             }
2955             
2956             if(!this.fit_content) {
2957                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
2958                 return;
2959             }
2960             
2961             this.setSize(w, Math.min(
2962                 60 +
2963                 this.headerEl.getHeight() + 
2964                 this.footerEl.getHeight() + 
2965                 this.getChildHeight(this.bodyEl.dom.childNodes),
2966                 Roo.lib.Dom.getViewportHeight(true) - 60)
2967             );
2968         }
2969         
2970     },
2971
2972     setSize : function(w,h)
2973     {
2974         if (!w && !h) {
2975             return;
2976         }
2977         
2978         this.resizeTo(w,h);
2979     },
2980
2981     show : function() {
2982
2983         if (!this.rendered) {
2984             this.render();
2985         }
2986
2987         //this.el.setStyle('display', 'block');
2988         this.el.removeClass('hideing');
2989         this.el.dom.style.display='block';
2990         
2991         Roo.get(document.body).addClass('modal-open');
2992  
2993         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
2994             
2995             (function(){
2996                 this.el.addClass('show');
2997                 this.el.addClass('in');
2998             }).defer(50, this);
2999         }else{
3000             this.el.addClass('show');
3001             this.el.addClass('in');
3002         }
3003
3004         // not sure how we can show data in here..
3005         //if (this.tmpl) {
3006         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
3007         //}
3008
3009         Roo.get(document.body).addClass("x-body-masked");
3010         
3011         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
3012         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3013         this.maskEl.dom.style.display = 'block';
3014         this.maskEl.addClass('show');
3015         
3016         
3017         this.resize();
3018         
3019         this.fireEvent('show', this);
3020
3021         // set zindex here - otherwise it appears to be ignored...
3022         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3023
3024         (function () {
3025             this.items.forEach( function(e) {
3026                 e.layout ? e.layout() : false;
3027
3028             });
3029         }).defer(100,this);
3030
3031     },
3032     hide : function()
3033     {
3034         if(this.fireEvent("beforehide", this) !== false){
3035             
3036             this.maskEl.removeClass('show');
3037             
3038             this.maskEl.dom.style.display = '';
3039             Roo.get(document.body).removeClass("x-body-masked");
3040             this.el.removeClass('in');
3041             this.el.select('.modal-dialog', true).first().setStyle('transform','');
3042
3043             if(this.animate){ // why
3044                 this.el.addClass('hideing');
3045                 this.el.removeClass('show');
3046                 (function(){
3047                     if (!this.el.hasClass('hideing')) {
3048                         return; // it's been shown again...
3049                     }
3050                     
3051                     this.el.dom.style.display='';
3052
3053                     Roo.get(document.body).removeClass('modal-open');
3054                     this.el.removeClass('hideing');
3055                 }).defer(150,this);
3056                 
3057             }else{
3058                 this.el.removeClass('show');
3059                 this.el.dom.style.display='';
3060                 Roo.get(document.body).removeClass('modal-open');
3061
3062             }
3063             this.fireEvent('hide', this);
3064         }
3065     },
3066     isVisible : function()
3067     {
3068         
3069         return this.el.hasClass('show') && !this.el.hasClass('hideing');
3070         
3071     },
3072
3073     addButton : function(str, cb)
3074     {
3075
3076
3077         var b = Roo.apply({}, { html : str } );
3078         b.xns = b.xns || Roo.bootstrap;
3079         b.xtype = b.xtype || 'Button';
3080         if (typeof(b.listeners) == 'undefined') {
3081             b.listeners = { click : cb.createDelegate(this)  };
3082         }
3083
3084         var btn = Roo.factory(b);
3085
3086         btn.render(this.getButtonContainer());
3087
3088         return btn;
3089
3090     },
3091
3092     setDefaultButton : function(btn)
3093     {
3094         //this.el.select('.modal-footer').()
3095     },
3096
3097     resizeTo: function(w,h)
3098     {
3099         this.dialogEl.setWidth(w);
3100         
3101         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 60; // dialog margin-bottom: 30  
3102
3103         this.bodyEl.setHeight(h - diff);
3104         
3105         this.fireEvent('resize', this);
3106     },
3107     
3108     setContentSize  : function(w, h)
3109     {
3110
3111     },
3112     onButtonClick: function(btn,e)
3113     {
3114         //Roo.log([a,b,c]);
3115         this.fireEvent('btnclick', btn.name, e);
3116     },
3117      /**
3118      * Set the title of the Dialog
3119      * @param {String} str new Title
3120      */
3121     setTitle: function(str) {
3122         this.titleEl.dom.innerHTML = str;
3123     },
3124     /**
3125      * Set the body of the Dialog
3126      * @param {String} str new Title
3127      */
3128     setBody: function(str) {
3129         this.bodyEl.dom.innerHTML = str;
3130     },
3131     /**
3132      * Set the body of the Dialog using the template
3133      * @param {Obj} data - apply this data to the template and replace the body contents.
3134      */
3135     applyBody: function(obj)
3136     {
3137         if (!this.tmpl) {
3138             Roo.log("Error - using apply Body without a template");
3139             //code
3140         }
3141         this.tmpl.overwrite(this.bodyEl, obj);
3142     },
3143     
3144     getChildHeight : function(child_nodes)
3145     {
3146         if(
3147             !child_nodes ||
3148             child_nodes.length == 0
3149         ) {
3150             return;
3151         }
3152         
3153         var child_height = 0;
3154         
3155         for(var i = 0; i < child_nodes.length; i++) {
3156             
3157             /*
3158             * for modal with tabs...
3159             if(child_nodes[i].classList.contains('roo-layout-panel')) {
3160                 
3161                 var layout_childs = child_nodes[i].childNodes;
3162                 
3163                 for(var j = 0; j < layout_childs.length; j++) {
3164                     
3165                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
3166                         
3167                         var layout_body_childs = layout_childs[j].childNodes;
3168                         
3169                         for(var k = 0; k < layout_body_childs.length; k++) {
3170                             
3171                             if(layout_body_childs[k].classList.contains('navbar')) {
3172                                 child_height += layout_body_childs[k].offsetHeight;
3173                                 continue;
3174                             }
3175                             
3176                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
3177                                 
3178                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
3179                                 
3180                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
3181                                     
3182                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
3183                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
3184                                         continue;
3185                                     }
3186                                     
3187                                 }
3188                                 
3189                             }
3190                             
3191                         }
3192                     }
3193                 }
3194                 continue;
3195             }
3196             */
3197             
3198             child_height += child_nodes[i].offsetHeight;
3199             // Roo.log(child_nodes[i].offsetHeight);
3200         }
3201         
3202         return child_height;
3203     }
3204
3205 });
3206
3207
3208 Roo.apply(Roo.bootstrap.Modal,  {
3209     /**
3210          * Button config that displays a single OK button
3211          * @type Object
3212          */
3213         OK :  [{
3214             name : 'ok',
3215             weight : 'primary',
3216             html : 'OK'
3217         }],
3218         /**
3219          * Button config that displays Yes and No buttons
3220          * @type Object
3221          */
3222         YESNO : [
3223             {
3224                 name  : 'no',
3225                 html : 'No'
3226             },
3227             {
3228                 name  :'yes',
3229                 weight : 'primary',
3230                 html : 'Yes'
3231             }
3232         ],
3233
3234         /**
3235          * Button config that displays OK and Cancel buttons
3236          * @type Object
3237          */
3238         OKCANCEL : [
3239             {
3240                name : 'cancel',
3241                 html : 'Cancel'
3242             },
3243             {
3244                 name : 'ok',
3245                 weight : 'primary',
3246                 html : 'OK'
3247             }
3248         ],
3249         /**
3250          * Button config that displays Yes, No and Cancel buttons
3251          * @type Object
3252          */
3253         YESNOCANCEL : [
3254             {
3255                 name : 'yes',
3256                 weight : 'primary',
3257                 html : 'Yes'
3258             },
3259             {
3260                 name : 'no',
3261                 html : 'No'
3262             },
3263             {
3264                 name : 'cancel',
3265                 html : 'Cancel'
3266             }
3267         ],
3268         
3269         zIndex : 10001
3270 });
3271 /*
3272  * - LGPL
3273  *
3274  * messagebox - can be used as a replace
3275  * 
3276  */
3277 /**
3278  * @class Roo.MessageBox
3279  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
3280  * Example usage:
3281  *<pre><code>
3282 // Basic alert:
3283 Roo.Msg.alert('Status', 'Changes saved successfully.');
3284
3285 // Prompt for user data:
3286 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
3287     if (btn == 'ok'){
3288         // process text value...
3289     }
3290 });
3291
3292 // Show a dialog using config options:
3293 Roo.Msg.show({
3294    title:'Save Changes?',
3295    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
3296    buttons: Roo.Msg.YESNOCANCEL,
3297    fn: processResult,
3298    animEl: 'elId'
3299 });
3300 </code></pre>
3301  * @singleton
3302  */
3303 Roo.bootstrap.MessageBox = function(){
3304     var dlg, opt, mask, waitTimer;
3305     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
3306     var buttons, activeTextEl, bwidth;
3307
3308     
3309     // private
3310     var handleButton = function(button){
3311         dlg.hide();
3312         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
3313     };
3314
3315     // private
3316     var handleHide = function(){
3317         if(opt && opt.cls){
3318             dlg.el.removeClass(opt.cls);
3319         }
3320         //if(waitTimer){
3321         //    Roo.TaskMgr.stop(waitTimer);
3322         //    waitTimer = null;
3323         //}
3324     };
3325
3326     // private
3327     var updateButtons = function(b){
3328         var width = 0;
3329         if(!b){
3330             buttons["ok"].hide();
3331             buttons["cancel"].hide();
3332             buttons["yes"].hide();
3333             buttons["no"].hide();
3334             dlg.footerEl.hide();
3335             
3336             return width;
3337         }
3338         dlg.footerEl.show();
3339         for(var k in buttons){
3340             if(typeof buttons[k] != "function"){
3341                 if(b[k]){
3342                     buttons[k].show();
3343                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.bootstrap.MessageBox.buttonText[k]);
3344                     width += buttons[k].el.getWidth()+15;
3345                 }else{
3346                     buttons[k].hide();
3347                 }
3348             }
3349         }
3350         return width;
3351     };
3352
3353     // private
3354     var handleEsc = function(d, k, e){
3355         if(opt && opt.closable !== false){
3356             dlg.hide();
3357         }
3358         if(e){
3359             e.stopEvent();
3360         }
3361     };
3362
3363     return {
3364         /**
3365          * Returns a reference to the underlying {@link Roo.BasicDialog} element
3366          * @return {Roo.BasicDialog} The BasicDialog element
3367          */
3368         getDialog : function(){
3369            if(!dlg){
3370                 dlg = new Roo.bootstrap.Modal( {
3371                     //draggable: true,
3372                     //resizable:false,
3373                     //constraintoviewport:false,
3374                     //fixedcenter:true,
3375                     //collapsible : false,
3376                     //shim:true,
3377                     //modal: true,
3378                 //    width: 'auto',
3379                   //  height:100,
3380                     //buttonAlign:"center",
3381                     closeClick : function(){
3382                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
3383                             handleButton("no");
3384                         }else{
3385                             handleButton("cancel");
3386                         }
3387                     }
3388                 });
3389                 dlg.render();
3390                 dlg.on("hide", handleHide);
3391                 mask = dlg.mask;
3392                 //dlg.addKeyListener(27, handleEsc);
3393                 buttons = {};
3394                 this.buttons = buttons;
3395                 var bt = this.buttonText;
3396                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
3397                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
3398                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
3399                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
3400                 //Roo.log(buttons);
3401                 bodyEl = dlg.bodyEl.createChild({
3402
3403                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" />' +
3404                         '<textarea class="roo-mb-textarea"></textarea>' +
3405                         '<div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
3406                 });
3407                 msgEl = bodyEl.dom.firstChild;
3408                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
3409                 textboxEl.enableDisplayMode();
3410                 textboxEl.addKeyListener([10,13], function(){
3411                     if(dlg.isVisible() && opt && opt.buttons){
3412                         if(opt.buttons.ok){
3413                             handleButton("ok");
3414                         }else if(opt.buttons.yes){
3415                             handleButton("yes");
3416                         }
3417                     }
3418                 });
3419                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
3420                 textareaEl.enableDisplayMode();
3421                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
3422                 progressEl.enableDisplayMode();
3423                 
3424                 // This is supposed to be the progessElement.. but I think it's controlling the height of everything..
3425                 var pf = progressEl.dom.firstChild;
3426                 if (pf) {
3427                     pp = Roo.get(pf.firstChild);
3428                     pp.setHeight(pf.offsetHeight);
3429                 }
3430                 
3431             }
3432             return dlg;
3433         },
3434
3435         /**
3436          * Updates the message box body text
3437          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
3438          * the XHTML-compliant non-breaking space character '&amp;#160;')
3439          * @return {Roo.MessageBox} This message box
3440          */
3441         updateText : function(text)
3442         {
3443             if(!dlg.isVisible() && !opt.width){
3444                 dlg.dialogEl.setStyle({ 'max-width' : this.maxWidth});
3445                 // dlg.resizeTo(this.maxWidth, 100); // forcing the height breaks long alerts()
3446             }
3447             msgEl.innerHTML = text || '&#160;';
3448       
3449             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
3450             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
3451             var w = Math.max(
3452                     Math.min(opt.width || cw , this.maxWidth), 
3453                     Math.max(opt.minWidth || this.minWidth, bwidth)
3454             );
3455             if(opt.prompt){
3456                 activeTextEl.setWidth(w);
3457             }
3458             if(dlg.isVisible()){
3459                 dlg.fixedcenter = false;
3460             }
3461             // to big, make it scroll. = But as usual stupid IE does not support
3462             // !important..
3463             
3464             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
3465                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
3466                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
3467             } else {
3468                 bodyEl.dom.style.height = '';
3469                 bodyEl.dom.style.overflowY = '';
3470             }
3471             if (cw > w) {
3472                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
3473             } else {
3474                 bodyEl.dom.style.overflowX = '';
3475             }
3476             
3477             dlg.setContentSize(w, bodyEl.getHeight());
3478             if(dlg.isVisible()){
3479                 dlg.fixedcenter = true;
3480             }
3481             return this;
3482         },
3483
3484         /**
3485          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
3486          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
3487          * @param {Number} value Any number between 0 and 1 (e.g., .5)
3488          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
3489          * @return {Roo.MessageBox} This message box
3490          */
3491         updateProgress : function(value, text){
3492             if(text){
3493                 this.updateText(text);
3494             }
3495             
3496             if (pp) { // weird bug on my firefox - for some reason this is not defined
3497                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
3498                 pp.setHeight(Math.floor(progressEl.dom.firstChild.offsetHeight));
3499             }
3500             return this;
3501         },        
3502
3503         /**
3504          * Returns true if the message box is currently displayed
3505          * @return {Boolean} True if the message box is visible, else false
3506          */
3507         isVisible : function(){
3508             return dlg && dlg.isVisible();  
3509         },
3510
3511         /**
3512          * Hides the message box if it is displayed
3513          */
3514         hide : function(){
3515             if(this.isVisible()){
3516                 dlg.hide();
3517             }  
3518         },
3519
3520         /**
3521          * Displays a new message box, or reinitializes an existing message box, based on the config options
3522          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
3523          * The following config object properties are supported:
3524          * <pre>
3525 Property    Type             Description
3526 ----------  ---------------  ------------------------------------------------------------------------------------
3527 animEl            String/Element   An id or Element from which the message box should animate as it opens and
3528                                    closes (defaults to undefined)
3529 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
3530                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
3531 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
3532                                    progress and wait dialogs will ignore this property and always hide the
3533                                    close button as they can only be closed programmatically.
3534 cls               String           A custom CSS class to apply to the message box element
3535 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
3536                                    displayed (defaults to 75)
3537 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
3538                                    function will be btn (the name of the button that was clicked, if applicable,
3539                                    e.g. "ok"), and text (the value of the active text field, if applicable).
3540                                    Progress and wait dialogs will ignore this option since they do not respond to
3541                                    user actions and can only be closed programmatically, so any required function
3542                                    should be called by the same code after it closes the dialog.
3543 icon              String           A CSS class that provides a background image to be used as an icon for
3544                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
3545 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
3546 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
3547 modal             Boolean          False to allow user interaction with the page while the message box is
3548                                    displayed (defaults to true)
3549 msg               String           A string that will replace the existing message box body text (defaults
3550                                    to the XHTML-compliant non-breaking space character '&#160;')
3551 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
3552 progress          Boolean          True to display a progress bar (defaults to false)
3553 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
3554 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
3555 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
3556 title             String           The title text
3557 value             String           The string value to set into the active textbox element if displayed
3558 wait              Boolean          True to display a progress bar (defaults to false)
3559 width             Number           The width of the dialog in pixels
3560 </pre>
3561          *
3562          * Example usage:
3563          * <pre><code>
3564 Roo.Msg.show({
3565    title: 'Address',
3566    msg: 'Please enter your address:',
3567    width: 300,
3568    buttons: Roo.MessageBox.OKCANCEL,
3569    multiline: true,
3570    fn: saveAddress,
3571    animEl: 'addAddressBtn'
3572 });
3573 </code></pre>
3574          * @param {Object} config Configuration options
3575          * @return {Roo.MessageBox} This message box
3576          */
3577         show : function(options)
3578         {
3579             
3580             // this causes nightmares if you show one dialog after another
3581             // especially on callbacks..
3582              
3583             if(this.isVisible()){
3584                 
3585                 this.hide();
3586                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
3587                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
3588                 Roo.log("New Dialog Message:" +  options.msg )
3589                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
3590                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
3591                 
3592             }
3593             var d = this.getDialog();
3594             opt = options;
3595             d.setTitle(opt.title || "&#160;");
3596             d.closeEl.setDisplayed(opt.closable !== false);
3597             activeTextEl = textboxEl;
3598             opt.prompt = opt.prompt || (opt.multiline ? true : false);
3599             if(opt.prompt){
3600                 if(opt.multiline){
3601                     textboxEl.hide();
3602                     textareaEl.show();
3603                     textareaEl.setHeight(typeof opt.multiline == "number" ?
3604                         opt.multiline : this.defaultTextHeight);
3605                     activeTextEl = textareaEl;
3606                 }else{
3607                     textboxEl.show();
3608                     textareaEl.hide();
3609                 }
3610             }else{
3611                 textboxEl.hide();
3612                 textareaEl.hide();
3613             }
3614             progressEl.setDisplayed(opt.progress === true);
3615             if (opt.progress) {
3616                 d.animate = false; // do not animate progress, as it may not have finished animating before we close it..
3617             }
3618             this.updateProgress(0);
3619             activeTextEl.dom.value = opt.value || "";
3620             if(opt.prompt){
3621                 dlg.setDefaultButton(activeTextEl);
3622             }else{
3623                 var bs = opt.buttons;
3624                 var db = null;
3625                 if(bs && bs.ok){
3626                     db = buttons["ok"];
3627                 }else if(bs && bs.yes){
3628                     db = buttons["yes"];
3629                 }
3630                 dlg.setDefaultButton(db);
3631             }
3632             bwidth = updateButtons(opt.buttons);
3633             this.updateText(opt.msg);
3634             if(opt.cls){
3635                 d.el.addClass(opt.cls);
3636             }
3637             d.proxyDrag = opt.proxyDrag === true;
3638             d.modal = opt.modal !== false;
3639             d.mask = opt.modal !== false ? mask : false;
3640             if(!d.isVisible()){
3641                 // force it to the end of the z-index stack so it gets a cursor in FF
3642                 document.body.appendChild(dlg.el.dom);
3643                 d.animateTarget = null;
3644                 d.show(options.animEl);
3645             }
3646             return this;
3647         },
3648
3649         /**
3650          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
3651          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
3652          * and closing the message box when the process is complete.
3653          * @param {String} title The title bar text
3654          * @param {String} msg The message box body text
3655          * @return {Roo.MessageBox} This message box
3656          */
3657         progress : function(title, msg){
3658             this.show({
3659                 title : title,
3660                 msg : msg,
3661                 buttons: false,
3662                 progress:true,
3663                 closable:false,
3664                 minWidth: this.minProgressWidth,
3665                 modal : true
3666             });
3667             return this;
3668         },
3669
3670         /**
3671          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
3672          * If a callback function is passed it will be called after the user clicks the button, and the
3673          * id of the button that was clicked will be passed as the only parameter to the callback
3674          * (could also be the top-right close button).
3675          * @param {String} title The title bar text
3676          * @param {String} msg The message box body text
3677          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3678          * @param {Object} scope (optional) The scope of the callback function
3679          * @return {Roo.MessageBox} This message box
3680          */
3681         alert : function(title, msg, fn, scope)
3682         {
3683             this.show({
3684                 title : title,
3685                 msg : msg,
3686                 buttons: this.OK,
3687                 fn: fn,
3688                 closable : false,
3689                 scope : scope,
3690                 modal : true
3691             });
3692             return this;
3693         },
3694
3695         /**
3696          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
3697          * interaction while waiting for a long-running process to complete that does not have defined intervals.
3698          * You are responsible for closing the message box when the process is complete.
3699          * @param {String} msg The message box body text
3700          * @param {String} title (optional) The title bar text
3701          * @return {Roo.MessageBox} This message box
3702          */
3703         wait : function(msg, title){
3704             this.show({
3705                 title : title,
3706                 msg : msg,
3707                 buttons: false,
3708                 closable:false,
3709                 progress:true,
3710                 modal:true,
3711                 width:300,
3712                 wait:true
3713             });
3714             waitTimer = Roo.TaskMgr.start({
3715                 run: function(i){
3716                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
3717                 },
3718                 interval: 1000
3719             });
3720             return this;
3721         },
3722
3723         /**
3724          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
3725          * If a callback function is passed it will be called after the user clicks either button, and the id of the
3726          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
3727          * @param {String} title The title bar text
3728          * @param {String} msg The message box body text
3729          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3730          * @param {Object} scope (optional) The scope of the callback function
3731          * @return {Roo.MessageBox} This message box
3732          */
3733         confirm : function(title, msg, fn, scope){
3734             this.show({
3735                 title : title,
3736                 msg : msg,
3737                 buttons: this.YESNO,
3738                 fn: fn,
3739                 scope : scope,
3740                 modal : true
3741             });
3742             return this;
3743         },
3744
3745         /**
3746          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
3747          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
3748          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
3749          * (could also be the top-right close button) and the text that was entered will be passed as the two
3750          * parameters to the callback.
3751          * @param {String} title The title bar text
3752          * @param {String} msg The message box body text
3753          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3754          * @param {Object} scope (optional) The scope of the callback function
3755          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
3756          * property, or the height in pixels to create the textbox (defaults to false / single-line)
3757          * @return {Roo.MessageBox} This message box
3758          */
3759         prompt : function(title, msg, fn, scope, multiline){
3760             this.show({
3761                 title : title,
3762                 msg : msg,
3763                 buttons: this.OKCANCEL,
3764                 fn: fn,
3765                 minWidth:250,
3766                 scope : scope,
3767                 prompt:true,
3768                 multiline: multiline,
3769                 modal : true
3770             });
3771             return this;
3772         },
3773
3774         /**
3775          * Button config that displays a single OK button
3776          * @type Object
3777          */
3778         OK : {ok:true},
3779         /**
3780          * Button config that displays Yes and No buttons
3781          * @type Object
3782          */
3783         YESNO : {yes:true, no:true},
3784         /**
3785          * Button config that displays OK and Cancel buttons
3786          * @type Object
3787          */
3788         OKCANCEL : {ok:true, cancel:true},
3789         /**
3790          * Button config that displays Yes, No and Cancel buttons
3791          * @type Object
3792          */
3793         YESNOCANCEL : {yes:true, no:true, cancel:true},
3794
3795         /**
3796          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
3797          * @type Number
3798          */
3799         defaultTextHeight : 75,
3800         /**
3801          * The maximum width in pixels of the message box (defaults to 600)
3802          * @type Number
3803          */
3804         maxWidth : 600,
3805         /**
3806          * The minimum width in pixels of the message box (defaults to 100)
3807          * @type Number
3808          */
3809         minWidth : 100,
3810         /**
3811          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
3812          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
3813          * @type Number
3814          */
3815         minProgressWidth : 250,
3816         /**
3817          * An object containing the default button text strings that can be overriden for localized language support.
3818          * Supported properties are: ok, cancel, yes and no.
3819          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
3820          * @type Object
3821          */
3822         buttonText : {
3823             ok : "OK",
3824             cancel : "Cancel",
3825             yes : "Yes",
3826             no : "No"
3827         }
3828     };
3829 }();
3830
3831 /**
3832  * Shorthand for {@link Roo.MessageBox}
3833  */
3834 Roo.MessageBox = Roo.MessageBox || Roo.bootstrap.MessageBox;
3835 Roo.Msg = Roo.Msg || Roo.MessageBox;
3836 /*
3837  * - LGPL
3838  *
3839  * navbar
3840  * 
3841  */
3842
3843 /**
3844  * @class Roo.bootstrap.Navbar
3845  * @extends Roo.bootstrap.Component
3846  * Bootstrap Navbar class
3847
3848  * @constructor
3849  * Create a new Navbar
3850  * @param {Object} config The config object
3851  */
3852
3853
3854 Roo.bootstrap.Navbar = function(config){
3855     Roo.bootstrap.Navbar.superclass.constructor.call(this, config);
3856     this.addEvents({
3857         // raw events
3858         /**
3859          * @event beforetoggle
3860          * Fire before toggle the menu
3861          * @param {Roo.EventObject} e
3862          */
3863         "beforetoggle" : true
3864     });
3865 };
3866
3867 Roo.extend(Roo.bootstrap.Navbar, Roo.bootstrap.Component,  {
3868     
3869     
3870    
3871     // private
3872     navItems : false,
3873     loadMask : false,
3874     
3875     
3876     getAutoCreate : function(){
3877         
3878         
3879         throw { message : "nav bar is now a abstract base class - use NavSimplebar / NavHeaderbar / NavSidebar etc..."};
3880         
3881     },
3882     
3883     initEvents :function ()
3884     {
3885         //Roo.log(this.el.select('.navbar-toggle',true));
3886         this.el.select('.navbar-toggle',true).on('click', this.onToggle , this);
3887         
3888         var mark = {
3889             tag: "div",
3890             cls:"x-dlg-mask"
3891         };
3892         
3893         this.maskEl = Roo.DomHelper.append(this.el, mark, true);
3894         
3895         var size = this.el.getSize();
3896         this.maskEl.setSize(size.width, size.height);
3897         this.maskEl.enableDisplayMode("block");
3898         this.maskEl.hide();
3899         
3900         if(this.loadMask){
3901             this.maskEl.show();
3902         }
3903     },
3904     
3905     
3906     getChildContainer : function()
3907     {
3908         if (this.el && this.el.select('.collapse').getCount()) {
3909             return this.el.select('.collapse',true).first();
3910         }
3911         
3912         return this.el;
3913     },
3914     
3915     mask : function()
3916     {
3917         this.maskEl.show();
3918     },
3919     
3920     unmask : function()
3921     {
3922         this.maskEl.hide();
3923     },
3924     onToggle : function()
3925     {
3926         
3927         if(this.fireEvent('beforetoggle', this) === false){
3928             return;
3929         }
3930         var ce = this.el.select('.navbar-collapse',true).first();
3931       
3932         if (!ce.hasClass('show')) {
3933            this.expand();
3934         } else {
3935             this.collapse();
3936         }
3937         
3938         
3939     
3940     },
3941     /**
3942      * Expand the navbar pulldown 
3943      */
3944     expand : function ()
3945     {
3946        
3947         var ce = this.el.select('.navbar-collapse',true).first();
3948         if (ce.hasClass('collapsing')) {
3949             return;
3950         }
3951         ce.dom.style.height = '';
3952                // show it...
3953         ce.addClass('in'); // old...
3954         ce.removeClass('collapse');
3955         ce.addClass('show');
3956         var h = ce.getHeight();
3957         Roo.log(h);
3958         ce.removeClass('show');
3959         // at this point we should be able to see it..
3960         ce.addClass('collapsing');
3961         
3962         ce.setHeight(0); // resize it ...
3963         ce.on('transitionend', function() {
3964             //Roo.log('done transition');
3965             ce.removeClass('collapsing');
3966             ce.addClass('show');
3967             ce.removeClass('collapse');
3968
3969             ce.dom.style.height = '';
3970         }, this, { single: true} );
3971         ce.setHeight(h);
3972         ce.dom.scrollTop = 0;
3973     },
3974     /**
3975      * Collapse the navbar pulldown 
3976      */
3977     collapse : function()
3978     {
3979          var ce = this.el.select('.navbar-collapse',true).first();
3980        
3981         if (ce.hasClass('collapsing') || ce.hasClass('collapse') ) {
3982             // it's collapsed or collapsing..
3983             return;
3984         }
3985         ce.removeClass('in'); // old...
3986         ce.setHeight(ce.getHeight());
3987         ce.removeClass('show');
3988         ce.addClass('collapsing');
3989         
3990         ce.on('transitionend', function() {
3991             ce.dom.style.height = '';
3992             ce.removeClass('collapsing');
3993             ce.addClass('collapse');
3994         }, this, { single: true} );
3995         ce.setHeight(0);
3996     }
3997     
3998     
3999     
4000 });
4001
4002
4003
4004  
4005
4006  /*
4007  * - LGPL
4008  *
4009  * navbar
4010  * 
4011  */
4012
4013 /**
4014  * @class Roo.bootstrap.NavSimplebar
4015  * @extends Roo.bootstrap.Navbar
4016  * Bootstrap Sidebar class
4017  *
4018  * @cfg {Boolean} inverse is inverted color
4019  * 
4020  * @cfg {String} type (nav | pills | tabs)
4021  * @cfg {Boolean} arrangement stacked | justified
4022  * @cfg {String} align (left | right) alignment
4023  * 
4024  * @cfg {Boolean} main (true|false) main nav bar? default false
4025  * @cfg {Boolean} loadMask (true|false) loadMask on the bar
4026  * 
4027  * @cfg {String} tag (header|footer|nav|div) default is nav 
4028
4029  * @cfg {String} weight (light|primary|secondary|success|danger|warning|info|dark|white) default is light.
4030  * 
4031  * 
4032  * @constructor
4033  * Create a new Sidebar
4034  * @param {Object} config The config object
4035  */
4036
4037
4038 Roo.bootstrap.NavSimplebar = function(config){
4039     Roo.bootstrap.NavSimplebar.superclass.constructor.call(this, config);
4040 };
4041
4042 Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
4043     
4044     inverse: false,
4045     
4046     type: false,
4047     arrangement: '',
4048     align : false,
4049     
4050     weight : 'light',
4051     
4052     main : false,
4053     
4054     
4055     tag : false,
4056     
4057     
4058     getAutoCreate : function(){
4059         
4060         
4061         var cfg = {
4062             tag : this.tag || 'div',
4063             cls : 'navbar roo-navbar-simple' //navbar-expand-lg ??
4064         };
4065         if (['light','white'].indexOf(this.weight) > -1) {
4066             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4067         }
4068         cfg.cls += ' bg-' + this.weight;
4069         
4070         if (this.inverse) {
4071             cfg.cls += ' navbar-inverse';
4072             
4073         }
4074         
4075         // i'm not actually sure these are really used - normally we add a navGroup to a navbar
4076         
4077         if (Roo.bootstrap.version == 4 && this.xtype == 'NavSimplebar') {
4078             return cfg;
4079         }
4080         
4081         
4082     
4083         
4084         cfg.cn = [
4085             {
4086                 cls: 'nav nav-' + this.xtype,
4087                 tag : 'ul'
4088             }
4089         ];
4090         
4091          
4092         this.type = this.type || 'nav';
4093         if (['tabs','pills'].indexOf(this.type) != -1) {
4094             cfg.cn[0].cls += ' nav-' + this.type
4095         
4096         
4097         } else {
4098             if (this.type!=='nav') {
4099                 Roo.log('nav type must be nav/tabs/pills')
4100             }
4101             cfg.cn[0].cls += ' navbar-nav'
4102         }
4103         
4104         
4105         
4106         
4107         if (['stacked','justified'].indexOf(this.arrangement) != -1) {
4108             cfg.cn[0].cls += ' nav-' + this.arrangement;
4109         }
4110         
4111         
4112         if (this.align === 'right') {
4113             cfg.cn[0].cls += ' navbar-right';
4114         }
4115         
4116         
4117         
4118         
4119         return cfg;
4120     
4121         
4122     }
4123     
4124     
4125     
4126 });
4127
4128
4129
4130  
4131
4132  
4133        /*
4134  * - LGPL
4135  *
4136  * navbar
4137  * navbar-fixed-top
4138  * navbar-expand-md  fixed-top 
4139  */
4140
4141 /**
4142  * @class Roo.bootstrap.NavHeaderbar
4143  * @extends Roo.bootstrap.NavSimplebar
4144  * Bootstrap Sidebar class
4145  *
4146  * @cfg {String} brand what is brand
4147  * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
4148  * @cfg {String} brand_href href of the brand
4149  * @cfg {Boolean} srButton generate the (screen reader / mobile) sr-only button   default true
4150  * @cfg {Boolean} autohide a top nav bar header that hides on scroll.
4151  * @cfg {Boolean} desktopCenter should the header be centered on desktop using a container class
4152  * @cfg {Roo.bootstrap.Row} mobilerow - a row to display on mobile only..
4153  * 
4154  * @constructor
4155  * Create a new Sidebar
4156  * @param {Object} config The config object
4157  */
4158
4159
4160 Roo.bootstrap.NavHeaderbar = function(config){
4161     Roo.bootstrap.NavHeaderbar.superclass.constructor.call(this, config);
4162       
4163 };
4164
4165 Roo.extend(Roo.bootstrap.NavHeaderbar, Roo.bootstrap.NavSimplebar,  {
4166     
4167     position: '',
4168     brand: '',
4169     brand_href: false,
4170     srButton : true,
4171     autohide : false,
4172     desktopCenter : false,
4173    
4174     
4175     getAutoCreate : function(){
4176         
4177         var   cfg = {
4178             tag: this.nav || 'nav',
4179             cls: 'navbar navbar-expand-md',
4180             role: 'navigation',
4181             cn: []
4182         };
4183         
4184         var cn = cfg.cn;
4185         if (this.desktopCenter) {
4186             cn.push({cls : 'container', cn : []});
4187             cn = cn[0].cn;
4188         }
4189         
4190         if(this.srButton){
4191             var btn = {
4192                 tag: 'button',
4193                 type: 'button',
4194                 cls: 'navbar-toggle navbar-toggler',
4195                 'data-toggle': 'collapse',
4196                 cn: [
4197                     {
4198                         tag: 'span',
4199                         cls: 'sr-only',
4200                         html: 'Toggle navigation'
4201                     },
4202                     {
4203                         tag: 'span',
4204                         cls: 'icon-bar navbar-toggler-icon'
4205                     },
4206                     {
4207                         tag: 'span',
4208                         cls: 'icon-bar'
4209                     },
4210                     {
4211                         tag: 'span',
4212                         cls: 'icon-bar'
4213                     }
4214                 ]
4215             };
4216             
4217             cn.push( Roo.bootstrap.version == 4 ? btn : {
4218                 tag: 'div',
4219                 cls: 'navbar-header',
4220                 cn: [
4221                     btn
4222                 ]
4223             });
4224         }
4225         
4226         cn.push({
4227             tag: 'div',
4228             cls: Roo.bootstrap.version == 4  ? 'nav flex-row roo-navbar-collapse' : 'collapse navbar-collapse roo-navbar-collapse',
4229             cn : []
4230         });
4231         
4232         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
4233         
4234         if (['light','white'].indexOf(this.weight) > -1) {
4235             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4236         }
4237         cfg.cls += ' bg-' + this.weight;
4238         
4239         
4240         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
4241             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
4242             
4243             // tag can override this..
4244             
4245             cfg.tag = this.tag || (this.position  == 'fixed-bottom' ? 'footer' : 'header');
4246         }
4247         
4248         if (this.brand !== '') {
4249             var cp =  Roo.bootstrap.version == 4 ? cn : cn[0].cn;
4250             cp.unshift({ // changed from push ?? BS4 needs it at the start? - does this break or exsiting?
4251                 tag: 'a',
4252                 href: this.brand_href ? this.brand_href : '#',
4253                 cls: 'navbar-brand',
4254                 cn: [
4255                 this.brand
4256                 ]
4257             });
4258         }
4259         
4260         if(this.main){
4261             cfg.cls += ' main-nav';
4262         }
4263         
4264         
4265         return cfg;
4266
4267         
4268     },
4269     getHeaderChildContainer : function()
4270     {
4271         if (this.srButton && this.el.select('.navbar-header').getCount()) {
4272             return this.el.select('.navbar-header',true).first();
4273         }
4274         
4275         return this.getChildContainer();
4276     },
4277     
4278     
4279     initEvents : function()
4280     {
4281         Roo.bootstrap.NavHeaderbar.superclass.initEvents.call(this);
4282         
4283         if (this.autohide) {
4284             
4285             var prevScroll = 0;
4286             var ft = this.el;
4287             
4288             Roo.get(document).on('scroll',function(e) {
4289                 var ns = Roo.get(document).getScroll().top;
4290                 var os = prevScroll;
4291                 prevScroll = ns;
4292                 
4293                 if(ns > os){
4294                     ft.removeClass('slideDown');
4295                     ft.addClass('slideUp');
4296                     return;
4297                 }
4298                 ft.removeClass('slideUp');
4299                 ft.addClass('slideDown');
4300                  
4301               
4302           },this);
4303         }
4304     }    
4305     
4306 });
4307
4308
4309
4310  
4311
4312  /*
4313  * - LGPL
4314  *
4315  * navbar
4316  * 
4317  */
4318
4319 /**
4320  * @class Roo.bootstrap.NavSidebar
4321  * @extends Roo.bootstrap.Navbar
4322  * Bootstrap Sidebar class
4323  * 
4324  * @constructor
4325  * Create a new Sidebar
4326  * @param {Object} config The config object
4327  */
4328
4329
4330 Roo.bootstrap.NavSidebar = function(config){
4331     Roo.bootstrap.NavSidebar.superclass.constructor.call(this, config);
4332 };
4333
4334 Roo.extend(Roo.bootstrap.NavSidebar, Roo.bootstrap.Navbar,  {
4335     
4336     sidebar : true, // used by Navbar Item and NavbarGroup at present...
4337     
4338     getAutoCreate : function(){
4339         
4340         
4341         return  {
4342             tag: 'div',
4343             cls: 'sidebar sidebar-nav'
4344         };
4345     
4346         
4347     }
4348     
4349     
4350     
4351 });
4352
4353
4354
4355  
4356
4357  /*
4358  * - LGPL
4359  *
4360  * nav group
4361  * 
4362  */
4363
4364 /**
4365  * @class Roo.bootstrap.NavGroup
4366  * @extends Roo.bootstrap.Component
4367  * Bootstrap NavGroup class
4368  * @cfg {String} align (left|right)
4369  * @cfg {Boolean} inverse
4370  * @cfg {String} type (nav|pills|tab) default nav
4371  * @cfg {String} navId - reference Id for navbar.
4372
4373  * 
4374  * @constructor
4375  * Create a new nav group
4376  * @param {Object} config The config object
4377  */
4378
4379 Roo.bootstrap.NavGroup = function(config){
4380     Roo.bootstrap.NavGroup.superclass.constructor.call(this, config);
4381     this.navItems = [];
4382    
4383     Roo.bootstrap.NavGroup.register(this);
4384      this.addEvents({
4385         /**
4386              * @event changed
4387              * Fires when the active item changes
4388              * @param {Roo.bootstrap.NavGroup} this
4389              * @param {Roo.bootstrap.Navbar.Item} selected The item selected
4390              * @param {Roo.bootstrap.Navbar.Item} prev The previously selected item 
4391          */
4392         'changed': true
4393      });
4394     
4395 };
4396
4397 Roo.extend(Roo.bootstrap.NavGroup, Roo.bootstrap.Component,  {
4398     
4399     align: '',
4400     inverse: false,
4401     form: false,
4402     type: 'nav',
4403     navId : '',
4404     // private
4405     
4406     navItems : false, 
4407     
4408     getAutoCreate : function()
4409     {
4410         var cfg = Roo.apply({}, Roo.bootstrap.NavGroup.superclass.getAutoCreate.call(this));
4411         
4412         cfg = {
4413             tag : 'ul',
4414             cls: 'nav' 
4415         };
4416         if (Roo.bootstrap.version == 4) {
4417             if (['tabs','pills'].indexOf(this.type) != -1) {
4418                 cfg.cls += ' nav-' + this.type; 
4419             } else {
4420                 // trying to remove so header bar can right align top?
4421                 if (this.parent() && this.parent().xtype != 'NavHeaderbar') {
4422                     // do not use on header bar... 
4423                     cfg.cls += ' navbar-nav';
4424                 }
4425             }
4426             
4427         } else {
4428             if (['tabs','pills'].indexOf(this.type) != -1) {
4429                 cfg.cls += ' nav-' + this.type
4430             } else {
4431                 if (this.type !== 'nav') {
4432                     Roo.log('nav type must be nav/tabs/pills')
4433                 }
4434                 cfg.cls += ' navbar-nav'
4435             }
4436         }
4437         
4438         if (this.parent() && this.parent().sidebar) {
4439             cfg = {
4440                 tag: 'ul',
4441                 cls: 'dashboard-menu sidebar-menu'
4442             };
4443             
4444             return cfg;
4445         }
4446         
4447         if (this.form === true) {
4448             cfg = {
4449                 tag: 'form',
4450                 cls: 'navbar-form form-inline'
4451             };
4452             //nav navbar-right ml-md-auto
4453             if (this.align === 'right') {
4454                 cfg.cls += ' navbar-right ml-md-auto';
4455             } else {
4456                 cfg.cls += ' navbar-left';
4457             }
4458         }
4459         
4460         if (this.align === 'right') {
4461             cfg.cls += ' navbar-right ml-md-auto';
4462         } else {
4463             cfg.cls += ' mr-auto';
4464         }
4465         
4466         if (this.inverse) {
4467             cfg.cls += ' navbar-inverse';
4468             
4469         }
4470         
4471         
4472         return cfg;
4473     },
4474     /**
4475     * sets the active Navigation item
4476     * @param {Roo.bootstrap.NavItem} the new current navitem
4477     */
4478     setActiveItem : function(item)
4479     {
4480         var prev = false;
4481         Roo.each(this.navItems, function(v){
4482             if (v == item) {
4483                 return ;
4484             }
4485             if (v.isActive()) {
4486                 v.setActive(false, true);
4487                 prev = v;
4488                 
4489             }
4490             
4491         });
4492
4493         item.setActive(true, true);
4494         this.fireEvent('changed', this, item, prev);
4495         
4496         
4497     },
4498     /**
4499     * gets the active Navigation item
4500     * @return {Roo.bootstrap.NavItem} the current navitem
4501     */
4502     getActive : function()
4503     {
4504         
4505         var prev = false;
4506         Roo.each(this.navItems, function(v){
4507             
4508             if (v.isActive()) {
4509                 prev = v;
4510                 
4511             }
4512             
4513         });
4514         return prev;
4515     },
4516     
4517     indexOfNav : function()
4518     {
4519         
4520         var prev = false;
4521         Roo.each(this.navItems, function(v,i){
4522             
4523             if (v.isActive()) {
4524                 prev = i;
4525                 
4526             }
4527             
4528         });
4529         return prev;
4530     },
4531     /**
4532     * adds a Navigation item
4533     * @param {Roo.bootstrap.NavItem} the navitem to add
4534     */
4535     addItem : function(cfg)
4536     {
4537         if (this.form && Roo.bootstrap.version == 4) {
4538             cfg.tag = 'div';
4539         }
4540         var cn = new Roo.bootstrap.NavItem(cfg);
4541         this.register(cn);
4542         cn.parentId = this.id;
4543         cn.onRender(this.el, null);
4544         return cn;
4545     },
4546     /**
4547     * register a Navigation item
4548     * @param {Roo.bootstrap.NavItem} the navitem to add
4549     */
4550     register : function(item)
4551     {
4552         this.navItems.push( item);
4553         item.navId = this.navId;
4554     
4555     },
4556     
4557     /**
4558     * clear all the Navigation item
4559     */
4560    
4561     clearAll : function()
4562     {
4563         this.navItems = [];
4564         this.el.dom.innerHTML = '';
4565     },
4566     
4567     getNavItem: function(tabId)
4568     {
4569         var ret = false;
4570         Roo.each(this.navItems, function(e) {
4571             if (e.tabId == tabId) {
4572                ret =  e;
4573                return false;
4574             }
4575             return true;
4576             
4577         });
4578         return ret;
4579     },
4580     
4581     setActiveNext : function()
4582     {
4583         var i = this.indexOfNav(this.getActive());
4584         if (i > this.navItems.length) {
4585             return;
4586         }
4587         this.setActiveItem(this.navItems[i+1]);
4588     },
4589     setActivePrev : function()
4590     {
4591         var i = this.indexOfNav(this.getActive());
4592         if (i  < 1) {
4593             return;
4594         }
4595         this.setActiveItem(this.navItems[i-1]);
4596     },
4597     clearWasActive : function(except) {
4598         Roo.each(this.navItems, function(e) {
4599             if (e.tabId != except.tabId && e.was_active) {
4600                e.was_active = false;
4601                return false;
4602             }
4603             return true;
4604             
4605         });
4606     },
4607     getWasActive : function ()
4608     {
4609         var r = false;
4610         Roo.each(this.navItems, function(e) {
4611             if (e.was_active) {
4612                r = e;
4613                return false;
4614             }
4615             return true;
4616             
4617         });
4618         return r;
4619     }
4620     
4621     
4622 });
4623
4624  
4625 Roo.apply(Roo.bootstrap.NavGroup, {
4626     
4627     groups: {},
4628      /**
4629     * register a Navigation Group
4630     * @param {Roo.bootstrap.NavGroup} the navgroup to add
4631     */
4632     register : function(navgrp)
4633     {
4634         this.groups[navgrp.navId] = navgrp;
4635         
4636     },
4637     /**
4638     * fetch a Navigation Group based on the navigation ID
4639     * @param {string} the navgroup to add
4640     * @returns {Roo.bootstrap.NavGroup} the navgroup 
4641     */
4642     get: function(navId) {
4643         if (typeof(this.groups[navId]) == 'undefined') {
4644             return false;
4645             //this.register(new Roo.bootstrap.NavGroup({ navId : navId }));
4646         }
4647         return this.groups[navId] ;
4648     }
4649     
4650     
4651     
4652 });
4653
4654  /*
4655  * - LGPL
4656  *
4657  * row
4658  * 
4659  */
4660
4661 /**
4662  * @class Roo.bootstrap.NavItem
4663  * @extends Roo.bootstrap.Component
4664  * Bootstrap Navbar.NavItem class
4665  * @cfg {String} href  link to
4666  * @cfg {String} button_weight (default | primary | secondary | success | info | warning | danger | link ) default none
4667
4668  * @cfg {String} html content of button
4669  * @cfg {String} badge text inside badge
4670  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
4671  * @cfg {String} glyphicon DEPRICATED - use fa
4672  * @cfg {String} icon DEPRICATED - use fa
4673  * @cfg {String} fa - Fontawsome icon name (can add stuff to it like fa-2x)
4674  * @cfg {Boolean} active Is item active
4675  * @cfg {Boolean} disabled Is item disabled
4676  
4677  * @cfg {Boolean} preventDefault (true | false) default false
4678  * @cfg {String} tabId the tab that this item activates.
4679  * @cfg {String} tagtype (a|span) render as a href or span?
4680  * @cfg {Boolean} animateRef (true|false) link to element default false  
4681   
4682  * @constructor
4683  * Create a new Navbar Item
4684  * @param {Object} config The config object
4685  */
4686 Roo.bootstrap.NavItem = function(config){
4687     Roo.bootstrap.NavItem.superclass.constructor.call(this, config);
4688     this.addEvents({
4689         // raw events
4690         /**
4691          * @event click
4692          * The raw click event for the entire grid.
4693          * @param {Roo.EventObject} e
4694          */
4695         "click" : true,
4696          /**
4697             * @event changed
4698             * Fires when the active item active state changes
4699             * @param {Roo.bootstrap.NavItem} this
4700             * @param {boolean} state the new state
4701              
4702          */
4703         'changed': true,
4704         /**
4705             * @event scrollto
4706             * Fires when scroll to element
4707             * @param {Roo.bootstrap.NavItem} this
4708             * @param {Object} options
4709             * @param {Roo.EventObject} e
4710              
4711          */
4712         'scrollto': true
4713     });
4714    
4715 };
4716
4717 Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
4718     
4719     href: false,
4720     html: '',
4721     badge: '',
4722     icon: false,
4723     fa : false,
4724     glyphicon: false,
4725     active: false,
4726     preventDefault : false,
4727     tabId : false,
4728     tagtype : 'a',
4729     tag: 'li',
4730     disabled : false,
4731     animateRef : false,
4732     was_active : false,
4733     button_weight : '',
4734     button_outline : false,
4735     
4736     navLink: false,
4737     
4738     getAutoCreate : function(){
4739          
4740         var cfg = {
4741             tag: this.tag,
4742             cls: 'nav-item'
4743         };
4744         
4745         if (this.active) {
4746             cfg.cls = typeof(cfg.cls) == 'undefined' ? 'active' : cfg.cls + ' active';
4747         }
4748         if (this.disabled) {
4749             cfg.cls += ' disabled';
4750         }
4751         
4752         // BS4 only?
4753         if (this.button_weight.length) {
4754             cfg.tag = this.href ? 'a' : 'button';
4755             cfg.html = this.html || '';
4756             cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
4757             if (this.href) {
4758                 cfg.href = this.href;
4759             }
4760             if (this.fa) {
4761                 cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + this.html + '</span>';
4762             }
4763             
4764             // menu .. should add dropdown-menu class - so no need for carat..
4765             
4766             if (this.badge !== '') {
4767                  
4768                 cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4769             }
4770             return cfg;
4771         }
4772         
4773         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
4774             cfg.cn = [
4775                 {
4776                     tag: this.tagtype,
4777                     href : this.href || "#",
4778                     html: this.html || ''
4779                 }
4780             ];
4781             if (this.tagtype == 'a') {
4782                 cfg.cn[0].cls = 'nav-link';
4783             }
4784             if (this.icon) {
4785                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>';
4786             }
4787             if (this.fa) {
4788                 cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>';
4789             }
4790             if(this.glyphicon) {
4791                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
4792             }
4793             
4794             if (this.menu) {
4795                 
4796                 cfg.cn[0].html += " <span class='caret'></span>";
4797              
4798             }
4799             
4800             if (this.badge !== '') {
4801                  
4802                 cfg.cn[0].html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4803             }
4804         }
4805         
4806         
4807         
4808         return cfg;
4809     },
4810     onRender : function(ct, position)
4811     {
4812        // Roo.log("Call onRender: " + this.xtype);
4813         if (Roo.bootstrap.version == 4 && ct.dom.type != 'ul') {
4814             this.tag = 'div';
4815         }
4816         
4817         var ret = Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
4818         this.navLink = this.el.select('.nav-link',true).first();
4819         return ret;
4820     },
4821       
4822     
4823     initEvents: function() 
4824     {
4825         if (typeof (this.menu) != 'undefined') {
4826             this.menu.parentType = this.xtype;
4827             this.menu.triggerEl = this.el;
4828             this.menu = this.addxtype(Roo.apply({}, this.menu));
4829         }
4830         
4831         this.el.select('a',true).on('click', this.onClick, this);
4832         
4833         if(this.tagtype == 'span'){
4834             this.el.select('span',true).on('click', this.onClick, this);
4835         }
4836        
4837         // at this point parent should be available..
4838         this.parent().register(this);
4839     },
4840     
4841     onClick : function(e)
4842     {
4843         if (e.getTarget('.dropdown-menu-item')) {
4844             // did you click on a menu itemm.... - then don't trigger onclick..
4845             return;
4846         }
4847         
4848         if(
4849                 this.preventDefault || 
4850                 this.href == '#' 
4851         ){
4852             Roo.log("NavItem - prevent Default?");
4853             e.preventDefault();
4854         }
4855         
4856         if (this.disabled) {
4857             return;
4858         }
4859         
4860         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4861         if (tg && tg.transition) {
4862             Roo.log("waiting for the transitionend");
4863             return;
4864         }
4865         
4866         
4867         
4868         //Roo.log("fire event clicked");
4869         if(this.fireEvent('click', this, e) === false){
4870             return;
4871         };
4872         
4873         if(this.tagtype == 'span'){
4874             return;
4875         }
4876         
4877         //Roo.log(this.href);
4878         var ael = this.el.select('a',true).first();
4879         //Roo.log(ael);
4880         
4881         if(ael && this.animateRef && this.href.indexOf('#') > -1){
4882             //Roo.log(["test:",ael.dom.href.split("#")[0], document.location.toString().split("#")[0]]);
4883             if (ael.dom.href.split("#")[0] != document.location.toString().split("#")[0]) {
4884                 return; // ignore... - it's a 'hash' to another page.
4885             }
4886             Roo.log("NavItem - prevent Default?");
4887             e.preventDefault();
4888             this.scrollToElement(e);
4889         }
4890         
4891         
4892         var p =  this.parent();
4893    
4894         if (['tabs','pills'].indexOf(p.type)!==-1) {
4895             if (typeof(p.setActiveItem) !== 'undefined') {
4896                 p.setActiveItem(this);
4897             }
4898         }
4899         
4900         // if parent is a navbarheader....- and link is probably a '#' page ref.. then remove the expanded menu.
4901         if (p.parentType == 'NavHeaderbar' && !this.menu) {
4902             // remove the collapsed menu expand...
4903             p.parent().el.select('.roo-navbar-collapse',true).removeClass('in');  
4904         }
4905     },
4906     
4907     isActive: function () {
4908         return this.active
4909     },
4910     setActive : function(state, fire, is_was_active)
4911     {
4912         if (this.active && !state && this.navId) {
4913             this.was_active = true;
4914             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4915             if (nv) {
4916                 nv.clearWasActive(this);
4917             }
4918             
4919         }
4920         this.active = state;
4921         
4922         if (!state ) {
4923             this.el.removeClass('active');
4924             this.navLink ? this.navLink.removeClass('active') : false;
4925         } else if (!this.el.hasClass('active')) {
4926             
4927             this.el.addClass('active');
4928             if (Roo.bootstrap.version == 4 && this.navLink ) {
4929                 this.navLink.addClass('active');
4930             }
4931             
4932         }
4933         if (fire) {
4934             this.fireEvent('changed', this, state);
4935         }
4936         
4937         // show a panel if it's registered and related..
4938         
4939         if (!this.navId || !this.tabId || !state || is_was_active) {
4940             return;
4941         }
4942         
4943         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4944         if (!tg) {
4945             return;
4946         }
4947         var pan = tg.getPanelByName(this.tabId);
4948         if (!pan) {
4949             return;
4950         }
4951         // if we can not flip to new panel - go back to old nav highlight..
4952         if (false == tg.showPanel(pan)) {
4953             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4954             if (nv) {
4955                 var onav = nv.getWasActive();
4956                 if (onav) {
4957                     onav.setActive(true, false, true);
4958                 }
4959             }
4960             
4961         }
4962         
4963         
4964         
4965     },
4966      // this should not be here...
4967     setDisabled : function(state)
4968     {
4969         this.disabled = state;
4970         if (!state ) {
4971             this.el.removeClass('disabled');
4972         } else if (!this.el.hasClass('disabled')) {
4973             this.el.addClass('disabled');
4974         }
4975         
4976     },
4977     
4978     /**
4979      * Fetch the element to display the tooltip on.
4980      * @return {Roo.Element} defaults to this.el
4981      */
4982     tooltipEl : function()
4983     {
4984         return this.el.select('' + this.tagtype + '', true).first();
4985     },
4986     
4987     scrollToElement : function(e)
4988     {
4989         var c = document.body;
4990         
4991         /*
4992          * Firefox / IE places the overflow at the html level, unless specifically styled to behave differently.
4993          */
4994         if(Roo.isFirefox || Roo.isIE || Roo.isIE11){
4995             c = document.documentElement;
4996         }
4997         
4998         var target = Roo.get(c).select('a[name=' + this.href.split('#')[1] +']', true).first();
4999         
5000         if(!target){
5001             return;
5002         }
5003
5004         var o = target.calcOffsetsTo(c);
5005         
5006         var options = {
5007             target : target,
5008             value : o[1]
5009         };
5010         
5011         this.fireEvent('scrollto', this, options, e);
5012         
5013         Roo.get(c).scrollTo('top', options.value, true);
5014         
5015         return;
5016     }
5017 });
5018  
5019
5020  /*
5021  * - LGPL
5022  *
5023  * sidebar item
5024  *
5025  *  li
5026  *    <span> icon </span>
5027  *    <span> text </span>
5028  *    <span>badge </span>
5029  */
5030
5031 /**
5032  * @class Roo.bootstrap.NavSidebarItem
5033  * @extends Roo.bootstrap.NavItem
5034  * Bootstrap Navbar.NavSidebarItem class
5035  * {String} badgeWeight (default|primary|success|info|warning|danger)the extra classes for the badge
5036  * {Boolean} open is the menu open
5037  * {Boolean} buttonView use button as the tigger el rather that a (default false)
5038  * {String} buttonWeight (default|primary|success|info|warning|danger)the extra classes for the button
5039  * {String} buttonSize (sm|md|lg)the extra classes for the button
5040  * {Boolean} showArrow show arrow next to the text (default true)
5041  * @constructor
5042  * Create a new Navbar Button
5043  * @param {Object} config The config object
5044  */
5045 Roo.bootstrap.NavSidebarItem = function(config){
5046     Roo.bootstrap.NavSidebarItem.superclass.constructor.call(this, config);
5047     this.addEvents({
5048         // raw events
5049         /**
5050          * @event click
5051          * The raw click event for the entire grid.
5052          * @param {Roo.EventObject} e
5053          */
5054         "click" : true,
5055          /**
5056             * @event changed
5057             * Fires when the active item active state changes
5058             * @param {Roo.bootstrap.NavSidebarItem} this
5059             * @param {boolean} state the new state
5060              
5061          */
5062         'changed': true
5063     });
5064    
5065 };
5066
5067 Roo.extend(Roo.bootstrap.NavSidebarItem, Roo.bootstrap.NavItem,  {
5068     
5069     badgeWeight : 'default',
5070     
5071     open: false,
5072     
5073     buttonView : false,
5074     
5075     buttonWeight : 'default',
5076     
5077     buttonSize : 'md',
5078     
5079     showArrow : true,
5080     
5081     getAutoCreate : function(){
5082         
5083         
5084         var a = {
5085                 tag: 'a',
5086                 href : this.href || '#',
5087                 cls: '',
5088                 html : '',
5089                 cn : []
5090         };
5091         
5092         if(this.buttonView){
5093             a = {
5094                 tag: 'button',
5095                 href : this.href || '#',
5096                 cls: 'btn btn-' + this.buttonWeight + ' btn-' + this.buttonSize + 'roo-button-dropdown-toggle',
5097                 html : this.html,
5098                 cn : []
5099             };
5100         }
5101         
5102         var cfg = {
5103             tag: 'li',
5104             cls: '',
5105             cn: [ a ]
5106         };
5107         
5108         if (this.active) {
5109             cfg.cls += ' active';
5110         }
5111         
5112         if (this.disabled) {
5113             cfg.cls += ' disabled';
5114         }
5115         if (this.open) {
5116             cfg.cls += ' open x-open';
5117         }
5118         // left icon..
5119         if (this.glyphicon || this.icon) {
5120             var c = this.glyphicon  ? ('glyphicon glyphicon-'+this.glyphicon)  : this.icon;
5121             a.cn.push({ tag : 'i', cls : c }) ;
5122         }
5123         
5124         if(!this.buttonView){
5125             var span = {
5126                 tag: 'span',
5127                 html : this.html || ''
5128             };
5129
5130             a.cn.push(span);
5131             
5132         }
5133         
5134         if (this.badge !== '') {
5135             a.cn.push({ tag: 'span',  cls : 'badge pull-right badge-' + this.badgeWeight, html: this.badge }); 
5136         }
5137         
5138         if (this.menu) {
5139             
5140             if(this.showArrow){
5141                 a.cn.push({ tag : 'i', cls : 'glyphicon glyphicon-chevron-down pull-right'});
5142             }
5143             
5144             a.cls += ' dropdown-toggle treeview' ;
5145         }
5146         
5147         return cfg;
5148     },
5149     
5150     initEvents : function()
5151     { 
5152         if (typeof (this.menu) != 'undefined') {
5153             this.menu.parentType = this.xtype;
5154             this.menu.triggerEl = this.el;
5155             this.menu = this.addxtype(Roo.apply({}, this.menu));
5156         }
5157         
5158         this.el.on('click', this.onClick, this);
5159         
5160         if(this.badge !== ''){
5161             this.badgeEl = this.el.select('.badge', true).first().setVisibilityMode(Roo.Element.DISPLAY);
5162         }
5163         
5164     },
5165     
5166     onClick : function(e)
5167     {
5168         if(this.disabled){
5169             e.preventDefault();
5170             return;
5171         }
5172         
5173         if(this.preventDefault){
5174             e.preventDefault();
5175         }
5176         
5177         this.fireEvent('click', this, e);
5178     },
5179     
5180     disable : function()
5181     {
5182         this.setDisabled(true);
5183     },
5184     
5185     enable : function()
5186     {
5187         this.setDisabled(false);
5188     },
5189     
5190     setDisabled : function(state)
5191     {
5192         if(this.disabled == state){
5193             return;
5194         }
5195         
5196         this.disabled = state;
5197         
5198         if (state) {
5199             this.el.addClass('disabled');
5200             return;
5201         }
5202         
5203         this.el.removeClass('disabled');
5204         
5205         return;
5206     },
5207     
5208     setActive : function(state)
5209     {
5210         if(this.active == state){
5211             return;
5212         }
5213         
5214         this.active = state;
5215         
5216         if (state) {
5217             this.el.addClass('active');
5218             return;
5219         }
5220         
5221         this.el.removeClass('active');
5222         
5223         return;
5224     },
5225     
5226     isActive: function () 
5227     {
5228         return this.active;
5229     },
5230     
5231     setBadge : function(str)
5232     {
5233         if(!this.badgeEl){
5234             return;
5235         }
5236         
5237         this.badgeEl.dom.innerHTML = str;
5238     }
5239     
5240    
5241      
5242  
5243 });
5244  
5245
5246  /*
5247  * - LGPL
5248  *
5249  * row
5250  * 
5251  */
5252
5253 /**
5254  * @class Roo.bootstrap.Row
5255  * @extends Roo.bootstrap.Component
5256  * Bootstrap Row class (contains columns...)
5257  * 
5258  * @constructor
5259  * Create a new Row
5260  * @param {Object} config The config object
5261  */
5262
5263 Roo.bootstrap.Row = function(config){
5264     Roo.bootstrap.Row.superclass.constructor.call(this, config);
5265 };
5266
5267 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
5268     
5269     getAutoCreate : function(){
5270        return {
5271             cls: 'row clearfix'
5272        };
5273     }
5274     
5275     
5276 });
5277
5278  
5279
5280  /*
5281  * - LGPL
5282  *
5283  * element
5284  * 
5285  */
5286
5287 /**
5288  * @class Roo.bootstrap.Element
5289  * @extends Roo.bootstrap.Component
5290  * Bootstrap Element class
5291  * @cfg {String} html contents of the element
5292  * @cfg {String} tag tag of the element
5293  * @cfg {String} cls class of the element
5294  * @cfg {Boolean} preventDefault (true|false) default false
5295  * @cfg {Boolean} clickable (true|false) default false
5296  * 
5297  * @constructor
5298  * Create a new Element
5299  * @param {Object} config The config object
5300  */
5301
5302 Roo.bootstrap.Element = function(config){
5303     Roo.bootstrap.Element.superclass.constructor.call(this, config);
5304     
5305     this.addEvents({
5306         // raw events
5307         /**
5308          * @event click
5309          * When a element is chick
5310          * @param {Roo.bootstrap.Element} this
5311          * @param {Roo.EventObject} e
5312          */
5313         "click" : true
5314     });
5315 };
5316
5317 Roo.extend(Roo.bootstrap.Element, Roo.bootstrap.Component,  {
5318     
5319     tag: 'div',
5320     cls: '',
5321     html: '',
5322     preventDefault: false, 
5323     clickable: false,
5324     
5325     getAutoCreate : function(){
5326         
5327         var cfg = {
5328             tag: this.tag,
5329             // cls: this.cls, double assign in parent class Component.js :: onRender
5330             html: this.html
5331         };
5332         
5333         return cfg;
5334     },
5335     
5336     initEvents: function() 
5337     {
5338         Roo.bootstrap.Element.superclass.initEvents.call(this);
5339         
5340         if(this.clickable){
5341             this.el.on('click', this.onClick, this);
5342         }
5343         
5344     },
5345     
5346     onClick : function(e)
5347     {
5348         if(this.preventDefault){
5349             e.preventDefault();
5350         }
5351         
5352         this.fireEvent('click', this, e);
5353     },
5354     
5355     getValue : function()
5356     {
5357         return this.el.dom.innerHTML;
5358     },
5359     
5360     setValue : function(value)
5361     {
5362         this.el.dom.innerHTML = value;
5363     }
5364    
5365 });
5366
5367  
5368
5369  /*
5370  * - LGPL
5371  *
5372  * pagination
5373  * 
5374  */
5375
5376 /**
5377  * @class Roo.bootstrap.Pagination
5378  * @extends Roo.bootstrap.Component
5379  * Bootstrap Pagination class
5380  * @cfg {String} size xs | sm | md | lg
5381  * @cfg {Boolean} inverse false | true
5382  * 
5383  * @constructor
5384  * Create a new Pagination
5385  * @param {Object} config The config object
5386  */
5387
5388 Roo.bootstrap.Pagination = function(config){
5389     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
5390 };
5391
5392 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
5393     
5394     cls: false,
5395     size: false,
5396     inverse: false,
5397     
5398     getAutoCreate : function(){
5399         var cfg = {
5400             tag: 'ul',
5401                 cls: 'pagination'
5402         };
5403         if (this.inverse) {
5404             cfg.cls += ' inverse';
5405         }
5406         if (this.html) {
5407             cfg.html=this.html;
5408         }
5409         if (this.cls) {
5410             cfg.cls += " " + this.cls;
5411         }
5412         return cfg;
5413     }
5414    
5415 });
5416
5417  
5418
5419  /*
5420  * - LGPL
5421  *
5422  * Pagination item
5423  * 
5424  */
5425
5426
5427 /**
5428  * @class Roo.bootstrap.PaginationItem
5429  * @extends Roo.bootstrap.Component
5430  * Bootstrap PaginationItem class
5431  * @cfg {String} html text
5432  * @cfg {String} href the link
5433  * @cfg {Boolean} preventDefault (true | false) default true
5434  * @cfg {Boolean} active (true | false) default false
5435  * @cfg {Boolean} disabled default false
5436  * 
5437  * 
5438  * @constructor
5439  * Create a new PaginationItem
5440  * @param {Object} config The config object
5441  */
5442
5443
5444 Roo.bootstrap.PaginationItem = function(config){
5445     Roo.bootstrap.PaginationItem.superclass.constructor.call(this, config);
5446     this.addEvents({
5447         // raw events
5448         /**
5449          * @event click
5450          * The raw click event for the entire grid.
5451          * @param {Roo.EventObject} e
5452          */
5453         "click" : true
5454     });
5455 };
5456
5457 Roo.extend(Roo.bootstrap.PaginationItem, Roo.bootstrap.Component,  {
5458     
5459     href : false,
5460     html : false,
5461     preventDefault: true,
5462     active : false,
5463     cls : false,
5464     disabled: false,
5465     
5466     getAutoCreate : function(){
5467         var cfg= {
5468             tag: 'li',
5469             cn: [
5470                 {
5471                     tag : 'a',
5472                     href : this.href ? this.href : '#',
5473                     html : this.html ? this.html : ''
5474                 }
5475             ]
5476         };
5477         
5478         if(this.cls){
5479             cfg.cls = this.cls;
5480         }
5481         
5482         if(this.disabled){
5483             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' disabled' : 'disabled';
5484         }
5485         
5486         if(this.active){
5487             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' active' : 'active';
5488         }
5489         
5490         return cfg;
5491     },
5492     
5493     initEvents: function() {
5494         
5495         this.el.on('click', this.onClick, this);
5496         
5497     },
5498     onClick : function(e)
5499     {
5500         Roo.log('PaginationItem on click ');
5501         if(this.preventDefault){
5502             e.preventDefault();
5503         }
5504         
5505         if(this.disabled){
5506             return;
5507         }
5508         
5509         this.fireEvent('click', this, e);
5510     }
5511    
5512 });
5513
5514  
5515
5516  /*
5517  * - LGPL
5518  *
5519  * slider
5520  * 
5521  */
5522
5523
5524 /**
5525  * @class Roo.bootstrap.Slider
5526  * @extends Roo.bootstrap.Component
5527  * Bootstrap Slider class
5528  *    
5529  * @constructor
5530  * Create a new Slider
5531  * @param {Object} config The config object
5532  */
5533
5534 Roo.bootstrap.Slider = function(config){
5535     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
5536 };
5537
5538 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
5539     
5540     getAutoCreate : function(){
5541         
5542         var cfg = {
5543             tag: 'div',
5544             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
5545             cn: [
5546                 {
5547                     tag: 'a',
5548                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
5549                 }
5550             ]
5551         };
5552         
5553         return cfg;
5554     }
5555    
5556 });
5557
5558  /*
5559  * Based on:
5560  * Ext JS Library 1.1.1
5561  * Copyright(c) 2006-2007, Ext JS, LLC.
5562  *
5563  * Originally Released Under LGPL - original licence link has changed is not relivant.
5564  *
5565  * Fork - LGPL
5566  * <script type="text/javascript">
5567  */
5568  
5569
5570 /**
5571  * @class Roo.grid.ColumnModel
5572  * @extends Roo.util.Observable
5573  * This is the default implementation of a ColumnModel used by the Grid. It defines
5574  * the columns in the grid.
5575  * <br>Usage:<br>
5576  <pre><code>
5577  var colModel = new Roo.grid.ColumnModel([
5578         {header: "Ticker", width: 60, sortable: true, locked: true},
5579         {header: "Company Name", width: 150, sortable: true},
5580         {header: "Market Cap.", width: 100, sortable: true},
5581         {header: "$ Sales", width: 100, sortable: true, renderer: money},
5582         {header: "Employees", width: 100, sortable: true, resizable: false}
5583  ]);
5584  </code></pre>
5585  * <p>
5586  
5587  * The config options listed for this class are options which may appear in each
5588  * individual column definition.
5589  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
5590  * @constructor
5591  * @param {Object} config An Array of column config objects. See this class's
5592  * config objects for details.
5593 */
5594 Roo.grid.ColumnModel = function(config){
5595         /**
5596      * The config passed into the constructor
5597      */
5598     this.config = config;
5599     this.lookup = {};
5600
5601     // if no id, create one
5602     // if the column does not have a dataIndex mapping,
5603     // map it to the order it is in the config
5604     for(var i = 0, len = config.length; i < len; i++){
5605         var c = config[i];
5606         if(typeof c.dataIndex == "undefined"){
5607             c.dataIndex = i;
5608         }
5609         if(typeof c.renderer == "string"){
5610             c.renderer = Roo.util.Format[c.renderer];
5611         }
5612         if(typeof c.id == "undefined"){
5613             c.id = Roo.id();
5614         }
5615         if(c.editor && c.editor.xtype){
5616             c.editor  = Roo.factory(c.editor, Roo.grid);
5617         }
5618         if(c.editor && c.editor.isFormField){
5619             c.editor = new Roo.grid.GridEditor(c.editor);
5620         }
5621         this.lookup[c.id] = c;
5622     }
5623
5624     /**
5625      * The width of columns which have no width specified (defaults to 100)
5626      * @type Number
5627      */
5628     this.defaultWidth = 100;
5629
5630     /**
5631      * Default sortable of columns which have no sortable specified (defaults to false)
5632      * @type Boolean
5633      */
5634     this.defaultSortable = false;
5635
5636     this.addEvents({
5637         /**
5638              * @event widthchange
5639              * Fires when the width of a column changes.
5640              * @param {ColumnModel} this
5641              * @param {Number} columnIndex The column index
5642              * @param {Number} newWidth The new width
5643              */
5644             "widthchange": true,
5645         /**
5646              * @event headerchange
5647              * Fires when the text of a header changes.
5648              * @param {ColumnModel} this
5649              * @param {Number} columnIndex The column index
5650              * @param {Number} newText The new header text
5651              */
5652             "headerchange": true,
5653         /**
5654              * @event hiddenchange
5655              * Fires when a column is hidden or "unhidden".
5656              * @param {ColumnModel} this
5657              * @param {Number} columnIndex The column index
5658              * @param {Boolean} hidden true if hidden, false otherwise
5659              */
5660             "hiddenchange": true,
5661             /**
5662          * @event columnmoved
5663          * Fires when a column is moved.
5664          * @param {ColumnModel} this
5665          * @param {Number} oldIndex
5666          * @param {Number} newIndex
5667          */
5668         "columnmoved" : true,
5669         /**
5670          * @event columlockchange
5671          * Fires when a column's locked state is changed
5672          * @param {ColumnModel} this
5673          * @param {Number} colIndex
5674          * @param {Boolean} locked true if locked
5675          */
5676         "columnlockchange" : true
5677     });
5678     Roo.grid.ColumnModel.superclass.constructor.call(this);
5679 };
5680 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
5681     /**
5682      * @cfg {String} header The header text to display in the Grid view.
5683      */
5684     /**
5685      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
5686      * {@link Roo.data.Record} definition from which to draw the column's value. If not
5687      * specified, the column's index is used as an index into the Record's data Array.
5688      */
5689     /**
5690      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
5691      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
5692      */
5693     /**
5694      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
5695      * Defaults to the value of the {@link #defaultSortable} property.
5696      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
5697      */
5698     /**
5699      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
5700      */
5701     /**
5702      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
5703      */
5704     /**
5705      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
5706      */
5707     /**
5708      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
5709      */
5710     /**
5711      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
5712      * given the cell's data value. See {@link #setRenderer}. If not specified, the
5713      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
5714      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
5715      */
5716        /**
5717      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
5718      */
5719     /**
5720      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
5721      */
5722     /**
5723      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
5724      */
5725     /**
5726      * @cfg {String} cursor (Optional)
5727      */
5728     /**
5729      * @cfg {String} tooltip (Optional)
5730      */
5731     /**
5732      * @cfg {Number} xs (Optional)
5733      */
5734     /**
5735      * @cfg {Number} sm (Optional)
5736      */
5737     /**
5738      * @cfg {Number} md (Optional)
5739      */
5740     /**
5741      * @cfg {Number} lg (Optional)
5742      */
5743     /**
5744      * Returns the id of the column at the specified index.
5745      * @param {Number} index The column index
5746      * @return {String} the id
5747      */
5748     getColumnId : function(index){
5749         return this.config[index].id;
5750     },
5751
5752     /**
5753      * Returns the column for a specified id.
5754      * @param {String} id The column id
5755      * @return {Object} the column
5756      */
5757     getColumnById : function(id){
5758         return this.lookup[id];
5759     },
5760
5761     
5762     /**
5763      * Returns the column for a specified dataIndex.
5764      * @param {String} dataIndex The column dataIndex
5765      * @return {Object|Boolean} the column or false if not found
5766      */
5767     getColumnByDataIndex: function(dataIndex){
5768         var index = this.findColumnIndex(dataIndex);
5769         return index > -1 ? this.config[index] : false;
5770     },
5771     
5772     /**
5773      * Returns the index for a specified column id.
5774      * @param {String} id The column id
5775      * @return {Number} the index, or -1 if not found
5776      */
5777     getIndexById : function(id){
5778         for(var i = 0, len = this.config.length; i < len; i++){
5779             if(this.config[i].id == id){
5780                 return i;
5781             }
5782         }
5783         return -1;
5784     },
5785     
5786     /**
5787      * Returns the index for a specified column dataIndex.
5788      * @param {String} dataIndex The column dataIndex
5789      * @return {Number} the index, or -1 if not found
5790      */
5791     
5792     findColumnIndex : function(dataIndex){
5793         for(var i = 0, len = this.config.length; i < len; i++){
5794             if(this.config[i].dataIndex == dataIndex){
5795                 return i;
5796             }
5797         }
5798         return -1;
5799     },
5800     
5801     
5802     moveColumn : function(oldIndex, newIndex){
5803         var c = this.config[oldIndex];
5804         this.config.splice(oldIndex, 1);
5805         this.config.splice(newIndex, 0, c);
5806         this.dataMap = null;
5807         this.fireEvent("columnmoved", this, oldIndex, newIndex);
5808     },
5809
5810     isLocked : function(colIndex){
5811         return this.config[colIndex].locked === true;
5812     },
5813
5814     setLocked : function(colIndex, value, suppressEvent){
5815         if(this.isLocked(colIndex) == value){
5816             return;
5817         }
5818         this.config[colIndex].locked = value;
5819         if(!suppressEvent){
5820             this.fireEvent("columnlockchange", this, colIndex, value);
5821         }
5822     },
5823
5824     getTotalLockedWidth : function(){
5825         var totalWidth = 0;
5826         for(var i = 0; i < this.config.length; i++){
5827             if(this.isLocked(i) && !this.isHidden(i)){
5828                 this.totalWidth += this.getColumnWidth(i);
5829             }
5830         }
5831         return totalWidth;
5832     },
5833
5834     getLockedCount : function(){
5835         for(var i = 0, len = this.config.length; i < len; i++){
5836             if(!this.isLocked(i)){
5837                 return i;
5838             }
5839         }
5840         
5841         return this.config.length;
5842     },
5843
5844     /**
5845      * Returns the number of columns.
5846      * @return {Number}
5847      */
5848     getColumnCount : function(visibleOnly){
5849         if(visibleOnly === true){
5850             var c = 0;
5851             for(var i = 0, len = this.config.length; i < len; i++){
5852                 if(!this.isHidden(i)){
5853                     c++;
5854                 }
5855             }
5856             return c;
5857         }
5858         return this.config.length;
5859     },
5860
5861     /**
5862      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
5863      * @param {Function} fn
5864      * @param {Object} scope (optional)
5865      * @return {Array} result
5866      */
5867     getColumnsBy : function(fn, scope){
5868         var r = [];
5869         for(var i = 0, len = this.config.length; i < len; i++){
5870             var c = this.config[i];
5871             if(fn.call(scope||this, c, i) === true){
5872                 r[r.length] = c;
5873             }
5874         }
5875         return r;
5876     },
5877
5878     /**
5879      * Returns true if the specified column is sortable.
5880      * @param {Number} col The column index
5881      * @return {Boolean}
5882      */
5883     isSortable : function(col){
5884         if(typeof this.config[col].sortable == "undefined"){
5885             return this.defaultSortable;
5886         }
5887         return this.config[col].sortable;
5888     },
5889
5890     /**
5891      * Returns the rendering (formatting) function defined for the column.
5892      * @param {Number} col The column index.
5893      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
5894      */
5895     getRenderer : function(col){
5896         if(!this.config[col].renderer){
5897             return Roo.grid.ColumnModel.defaultRenderer;
5898         }
5899         return this.config[col].renderer;
5900     },
5901
5902     /**
5903      * Sets the rendering (formatting) function for a column.
5904      * @param {Number} col The column index
5905      * @param {Function} fn The function to use to process the cell's raw data
5906      * to return HTML markup for the grid view. The render function is called with
5907      * the following parameters:<ul>
5908      * <li>Data value.</li>
5909      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
5910      * <li>css A CSS style string to apply to the table cell.</li>
5911      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
5912      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
5913      * <li>Row index</li>
5914      * <li>Column index</li>
5915      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
5916      */
5917     setRenderer : function(col, fn){
5918         this.config[col].renderer = fn;
5919     },
5920
5921     /**
5922      * Returns the width for the specified column.
5923      * @param {Number} col The column index
5924      * @return {Number}
5925      */
5926     getColumnWidth : function(col){
5927         return this.config[col].width * 1 || this.defaultWidth;
5928     },
5929
5930     /**
5931      * Sets the width for a column.
5932      * @param {Number} col The column index
5933      * @param {Number} width The new width
5934      */
5935     setColumnWidth : function(col, width, suppressEvent){
5936         this.config[col].width = width;
5937         this.totalWidth = null;
5938         if(!suppressEvent){
5939              this.fireEvent("widthchange", this, col, width);
5940         }
5941     },
5942
5943     /**
5944      * Returns the total width of all columns.
5945      * @param {Boolean} includeHidden True to include hidden column widths
5946      * @return {Number}
5947      */
5948     getTotalWidth : function(includeHidden){
5949         if(!this.totalWidth){
5950             this.totalWidth = 0;
5951             for(var i = 0, len = this.config.length; i < len; i++){
5952                 if(includeHidden || !this.isHidden(i)){
5953                     this.totalWidth += this.getColumnWidth(i);
5954                 }
5955             }
5956         }
5957         return this.totalWidth;
5958     },
5959
5960     /**
5961      * Returns the header for the specified column.
5962      * @param {Number} col The column index
5963      * @return {String}
5964      */
5965     getColumnHeader : function(col){
5966         return this.config[col].header;
5967     },
5968
5969     /**
5970      * Sets the header for a column.
5971      * @param {Number} col The column index
5972      * @param {String} header The new header
5973      */
5974     setColumnHeader : function(col, header){
5975         this.config[col].header = header;
5976         this.fireEvent("headerchange", this, col, header);
5977     },
5978
5979     /**
5980      * Returns the tooltip for the specified column.
5981      * @param {Number} col The column index
5982      * @return {String}
5983      */
5984     getColumnTooltip : function(col){
5985             return this.config[col].tooltip;
5986     },
5987     /**
5988      * Sets the tooltip for a column.
5989      * @param {Number} col The column index
5990      * @param {String} tooltip The new tooltip
5991      */
5992     setColumnTooltip : function(col, tooltip){
5993             this.config[col].tooltip = tooltip;
5994     },
5995
5996     /**
5997      * Returns the dataIndex for the specified column.
5998      * @param {Number} col The column index
5999      * @return {Number}
6000      */
6001     getDataIndex : function(col){
6002         return this.config[col].dataIndex;
6003     },
6004
6005     /**
6006      * Sets the dataIndex for a column.
6007      * @param {Number} col The column index
6008      * @param {Number} dataIndex The new dataIndex
6009      */
6010     setDataIndex : function(col, dataIndex){
6011         this.config[col].dataIndex = dataIndex;
6012     },
6013
6014     
6015     
6016     /**
6017      * Returns true if the cell is editable.
6018      * @param {Number} colIndex The column index
6019      * @param {Number} rowIndex The row index - this is nto actually used..?
6020      * @return {Boolean}
6021      */
6022     isCellEditable : function(colIndex, rowIndex){
6023         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
6024     },
6025
6026     /**
6027      * Returns the editor defined for the cell/column.
6028      * return false or null to disable editing.
6029      * @param {Number} colIndex The column index
6030      * @param {Number} rowIndex The row index
6031      * @return {Object}
6032      */
6033     getCellEditor : function(colIndex, rowIndex){
6034         return this.config[colIndex].editor;
6035     },
6036
6037     /**
6038      * Sets if a column is editable.
6039      * @param {Number} col The column index
6040      * @param {Boolean} editable True if the column is editable
6041      */
6042     setEditable : function(col, editable){
6043         this.config[col].editable = editable;
6044     },
6045
6046
6047     /**
6048      * Returns true if the column is hidden.
6049      * @param {Number} colIndex The column index
6050      * @return {Boolean}
6051      */
6052     isHidden : function(colIndex){
6053         return this.config[colIndex].hidden;
6054     },
6055
6056
6057     /**
6058      * Returns true if the column width cannot be changed
6059      */
6060     isFixed : function(colIndex){
6061         return this.config[colIndex].fixed;
6062     },
6063
6064     /**
6065      * Returns true if the column can be resized
6066      * @return {Boolean}
6067      */
6068     isResizable : function(colIndex){
6069         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
6070     },
6071     /**
6072      * Sets if a column is hidden.
6073      * @param {Number} colIndex The column index
6074      * @param {Boolean} hidden True if the column is hidden
6075      */
6076     setHidden : function(colIndex, hidden){
6077         this.config[colIndex].hidden = hidden;
6078         this.totalWidth = null;
6079         this.fireEvent("hiddenchange", this, colIndex, hidden);
6080     },
6081
6082     /**
6083      * Sets the editor for a column.
6084      * @param {Number} col The column index
6085      * @param {Object} editor The editor object
6086      */
6087     setEditor : function(col, editor){
6088         this.config[col].editor = editor;
6089     }
6090 });
6091
6092 Roo.grid.ColumnModel.defaultRenderer = function(value)
6093 {
6094     if(typeof value == "object") {
6095         return value;
6096     }
6097         if(typeof value == "string" && value.length < 1){
6098             return "&#160;";
6099         }
6100     
6101         return String.format("{0}", value);
6102 };
6103
6104 // Alias for backwards compatibility
6105 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
6106 /*
6107  * Based on:
6108  * Ext JS Library 1.1.1
6109  * Copyright(c) 2006-2007, Ext JS, LLC.
6110  *
6111  * Originally Released Under LGPL - original licence link has changed is not relivant.
6112  *
6113  * Fork - LGPL
6114  * <script type="text/javascript">
6115  */
6116  
6117 /**
6118  * @class Roo.LoadMask
6119  * A simple utility class for generically masking elements while loading data.  If the element being masked has
6120  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
6121  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
6122  * element's UpdateManager load indicator and will be destroyed after the initial load.
6123  * @constructor
6124  * Create a new LoadMask
6125  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
6126  * @param {Object} config The config object
6127  */
6128 Roo.LoadMask = function(el, config){
6129     this.el = Roo.get(el);
6130     Roo.apply(this, config);
6131     if(this.store){
6132         this.store.on('beforeload', this.onBeforeLoad, this);
6133         this.store.on('load', this.onLoad, this);
6134         this.store.on('loadexception', this.onLoadException, this);
6135         this.removeMask = false;
6136     }else{
6137         var um = this.el.getUpdateManager();
6138         um.showLoadIndicator = false; // disable the default indicator
6139         um.on('beforeupdate', this.onBeforeLoad, this);
6140         um.on('update', this.onLoad, this);
6141         um.on('failure', this.onLoad, this);
6142         this.removeMask = true;
6143     }
6144 };
6145
6146 Roo.LoadMask.prototype = {
6147     /**
6148      * @cfg {Boolean} removeMask
6149      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
6150      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
6151      */
6152     /**
6153      * @cfg {String} msg
6154      * The text to display in a centered loading message box (defaults to 'Loading...')
6155      */
6156     msg : 'Loading...',
6157     /**
6158      * @cfg {String} msgCls
6159      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
6160      */
6161     msgCls : 'x-mask-loading',
6162
6163     /**
6164      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
6165      * @type Boolean
6166      */
6167     disabled: false,
6168
6169     /**
6170      * Disables the mask to prevent it from being displayed
6171      */
6172     disable : function(){
6173        this.disabled = true;
6174     },
6175
6176     /**
6177      * Enables the mask so that it can be displayed
6178      */
6179     enable : function(){
6180         this.disabled = false;
6181     },
6182     
6183     onLoadException : function()
6184     {
6185         Roo.log(arguments);
6186         
6187         if (typeof(arguments[3]) != 'undefined') {
6188             Roo.MessageBox.alert("Error loading",arguments[3]);
6189         } 
6190         /*
6191         try {
6192             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
6193                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
6194             }   
6195         } catch(e) {
6196             
6197         }
6198         */
6199     
6200         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6201     },
6202     // private
6203     onLoad : function()
6204     {
6205         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6206     },
6207
6208     // private
6209     onBeforeLoad : function(){
6210         if(!this.disabled){
6211             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
6212         }
6213     },
6214
6215     // private
6216     destroy : function(){
6217         if(this.store){
6218             this.store.un('beforeload', this.onBeforeLoad, this);
6219             this.store.un('load', this.onLoad, this);
6220             this.store.un('loadexception', this.onLoadException, this);
6221         }else{
6222             var um = this.el.getUpdateManager();
6223             um.un('beforeupdate', this.onBeforeLoad, this);
6224             um.un('update', this.onLoad, this);
6225             um.un('failure', this.onLoad, this);
6226         }
6227     }
6228 };/*
6229  * - LGPL
6230  *
6231  * table
6232  * 
6233  */
6234
6235 /**
6236  * @class Roo.bootstrap.Table
6237  * @extends Roo.bootstrap.Component
6238  * Bootstrap Table class
6239  * @cfg {String} cls table class
6240  * @cfg {String} align (left|center|right) Specifies the alignment of a table according to surrounding text
6241  * @cfg {String} bgcolor Specifies the background color for a table
6242  * @cfg {Number} border Specifies whether the table cells should have borders or not
6243  * @cfg {Number} cellpadding Specifies the space between the cell wall and the cell content
6244  * @cfg {Number} cellspacing Specifies the space between cells
6245  * @cfg {String} frame Specifies which parts of the outside borders that should be visible
6246  * @cfg {String} rules Specifies which parts of the inside borders that should be visible
6247  * @cfg {String} sortable Specifies that the table should be sortable
6248  * @cfg {String} summary Specifies a summary of the content of a table
6249  * @cfg {Number} width Specifies the width of a table
6250  * @cfg {String} layout table layout (auto | fixed | initial | inherit)
6251  * 
6252  * @cfg {boolean} striped Should the rows be alternative striped
6253  * @cfg {boolean} bordered Add borders to the table
6254  * @cfg {boolean} hover Add hover highlighting
6255  * @cfg {boolean} condensed Format condensed
6256  * @cfg {boolean} responsive Format condensed
6257  * @cfg {Boolean} loadMask (true|false) default false
6258  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
6259  * @cfg {Boolean} headerShow (true|false) generate thead, default true
6260  * @cfg {Boolean} rowSelection (true|false) default false
6261  * @cfg {Boolean} cellSelection (true|false) default false
6262  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header
6263  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
6264  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
6265  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
6266  
6267  * 
6268  * @constructor
6269  * Create a new Table
6270  * @param {Object} config The config object
6271  */
6272
6273 Roo.bootstrap.Table = function(config){
6274     Roo.bootstrap.Table.superclass.constructor.call(this, config);
6275     
6276   
6277     
6278     // BC...
6279     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
6280     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
6281     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
6282     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
6283     
6284     this.sm = this.sm || {xtype: 'RowSelectionModel'};
6285     if (this.sm) {
6286         this.sm.grid = this;
6287         this.selModel = Roo.factory(this.sm, Roo.bootstrap.Table);
6288         this.sm = this.selModel;
6289         this.sm.xmodule = this.xmodule || false;
6290     }
6291     
6292     if (this.cm && typeof(this.cm.config) == 'undefined') {
6293         this.colModel = new Roo.grid.ColumnModel(this.cm);
6294         this.cm = this.colModel;
6295         this.cm.xmodule = this.xmodule || false;
6296     }
6297     if (this.store) {
6298         this.store= Roo.factory(this.store, Roo.data);
6299         this.ds = this.store;
6300         this.ds.xmodule = this.xmodule || false;
6301          
6302     }
6303     if (this.footer && this.store) {
6304         this.footer.dataSource = this.ds;
6305         this.footer = Roo.factory(this.footer);
6306     }
6307     
6308     /** @private */
6309     this.addEvents({
6310         /**
6311          * @event cellclick
6312          * Fires when a cell is clicked
6313          * @param {Roo.bootstrap.Table} this
6314          * @param {Roo.Element} el
6315          * @param {Number} rowIndex
6316          * @param {Number} columnIndex
6317          * @param {Roo.EventObject} e
6318          */
6319         "cellclick" : true,
6320         /**
6321          * @event celldblclick
6322          * Fires when a cell is double clicked
6323          * @param {Roo.bootstrap.Table} this
6324          * @param {Roo.Element} el
6325          * @param {Number} rowIndex
6326          * @param {Number} columnIndex
6327          * @param {Roo.EventObject} e
6328          */
6329         "celldblclick" : true,
6330         /**
6331          * @event rowclick
6332          * Fires when a row is clicked
6333          * @param {Roo.bootstrap.Table} this
6334          * @param {Roo.Element} el
6335          * @param {Number} rowIndex
6336          * @param {Roo.EventObject} e
6337          */
6338         "rowclick" : true,
6339         /**
6340          * @event rowdblclick
6341          * Fires when a row is double clicked
6342          * @param {Roo.bootstrap.Table} this
6343          * @param {Roo.Element} el
6344          * @param {Number} rowIndex
6345          * @param {Roo.EventObject} e
6346          */
6347         "rowdblclick" : true,
6348         /**
6349          * @event mouseover
6350          * Fires when a mouseover occur
6351          * @param {Roo.bootstrap.Table} this
6352          * @param {Roo.Element} el
6353          * @param {Number} rowIndex
6354          * @param {Number} columnIndex
6355          * @param {Roo.EventObject} e
6356          */
6357         "mouseover" : true,
6358         /**
6359          * @event mouseout
6360          * Fires when a mouseout occur
6361          * @param {Roo.bootstrap.Table} this
6362          * @param {Roo.Element} el
6363          * @param {Number} rowIndex
6364          * @param {Number} columnIndex
6365          * @param {Roo.EventObject} e
6366          */
6367         "mouseout" : true,
6368         /**
6369          * @event rowclass
6370          * Fires when a row is rendered, so you can change add a style to it.
6371          * @param {Roo.bootstrap.Table} this
6372          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
6373          */
6374         'rowclass' : true,
6375           /**
6376          * @event rowsrendered
6377          * Fires when all the  rows have been rendered
6378          * @param {Roo.bootstrap.Table} this
6379          */
6380         'rowsrendered' : true,
6381         /**
6382          * @event contextmenu
6383          * The raw contextmenu event for the entire grid.
6384          * @param {Roo.EventObject} e
6385          */
6386         "contextmenu" : true,
6387         /**
6388          * @event rowcontextmenu
6389          * Fires when a row is right clicked
6390          * @param {Roo.bootstrap.Table} this
6391          * @param {Number} rowIndex
6392          * @param {Roo.EventObject} e
6393          */
6394         "rowcontextmenu" : true,
6395         /**
6396          * @event cellcontextmenu
6397          * Fires when a cell is right clicked
6398          * @param {Roo.bootstrap.Table} this
6399          * @param {Number} rowIndex
6400          * @param {Number} cellIndex
6401          * @param {Roo.EventObject} e
6402          */
6403          "cellcontextmenu" : true,
6404          /**
6405          * @event headercontextmenu
6406          * Fires when a header is right clicked
6407          * @param {Roo.bootstrap.Table} this
6408          * @param {Number} columnIndex
6409          * @param {Roo.EventObject} e
6410          */
6411         "headercontextmenu" : true
6412     });
6413 };
6414
6415 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
6416     
6417     cls: false,
6418     align: false,
6419     bgcolor: false,
6420     border: false,
6421     cellpadding: false,
6422     cellspacing: false,
6423     frame: false,
6424     rules: false,
6425     sortable: false,
6426     summary: false,
6427     width: false,
6428     striped : false,
6429     scrollBody : false,
6430     bordered: false,
6431     hover:  false,
6432     condensed : false,
6433     responsive : false,
6434     sm : false,
6435     cm : false,
6436     store : false,
6437     loadMask : false,
6438     footerShow : true,
6439     headerShow : true,
6440   
6441     rowSelection : false,
6442     cellSelection : false,
6443     layout : false,
6444     
6445     // Roo.Element - the tbody
6446     mainBody: false,
6447     // Roo.Element - thead element
6448     mainHead: false,
6449     
6450     container: false, // used by gridpanel...
6451     
6452     lazyLoad : false,
6453     
6454     CSS : Roo.util.CSS,
6455     
6456     auto_hide_footer : false,
6457     
6458     getAutoCreate : function()
6459     {
6460         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
6461         
6462         cfg = {
6463             tag: 'table',
6464             cls : 'table',
6465             cn : []
6466         };
6467         if (this.scrollBody) {
6468             cfg.cls += ' table-body-fixed';
6469         }    
6470         if (this.striped) {
6471             cfg.cls += ' table-striped';
6472         }
6473         
6474         if (this.hover) {
6475             cfg.cls += ' table-hover';
6476         }
6477         if (this.bordered) {
6478             cfg.cls += ' table-bordered';
6479         }
6480         if (this.condensed) {
6481             cfg.cls += ' table-condensed';
6482         }
6483         if (this.responsive) {
6484             cfg.cls += ' table-responsive';
6485         }
6486         
6487         if (this.cls) {
6488             cfg.cls+=  ' ' +this.cls;
6489         }
6490         
6491         // this lot should be simplifed...
6492         var _t = this;
6493         var cp = [
6494             'align',
6495             'bgcolor',
6496             'border',
6497             'cellpadding',
6498             'cellspacing',
6499             'frame',
6500             'rules',
6501             'sortable',
6502             'summary',
6503             'width'
6504         ].forEach(function(k) {
6505             if (_t[k]) {
6506                 cfg[k] = _t[k];
6507             }
6508         });
6509         
6510         
6511         if (this.layout) {
6512             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
6513         }
6514         
6515         if(this.store || this.cm){
6516             if(this.headerShow){
6517                 cfg.cn.push(this.renderHeader());
6518             }
6519             
6520             cfg.cn.push(this.renderBody());
6521             
6522             if(this.footerShow){
6523                 cfg.cn.push(this.renderFooter());
6524             }
6525             // where does this come from?
6526             //cfg.cls+=  ' TableGrid';
6527         }
6528         
6529         return { cn : [ cfg ] };
6530     },
6531     
6532     initEvents : function()
6533     {   
6534         if(!this.store || !this.cm){
6535             return;
6536         }
6537         if (this.selModel) {
6538             this.selModel.initEvents();
6539         }
6540         
6541         
6542         //Roo.log('initEvents with ds!!!!');
6543         
6544         this.mainBody = this.el.select('tbody', true).first();
6545         this.mainHead = this.el.select('thead', true).first();
6546         this.mainFoot = this.el.select('tfoot', true).first();
6547         
6548         
6549         
6550         var _this = this;
6551         
6552         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6553             e.on('click', _this.sort, _this);
6554         });
6555         
6556         this.mainBody.on("click", this.onClick, this);
6557         this.mainBody.on("dblclick", this.onDblClick, this);
6558         
6559         // why is this done????? = it breaks dialogs??
6560         //this.parent().el.setStyle('position', 'relative');
6561         
6562         
6563         if (this.footer) {
6564             this.footer.parentId = this.id;
6565             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
6566             
6567             if(this.lazyLoad){
6568                 this.el.select('tfoot tr td').first().addClass('hide');
6569             }
6570         } 
6571         
6572         if(this.loadMask) {
6573             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
6574         }
6575         
6576         this.store.on('load', this.onLoad, this);
6577         this.store.on('beforeload', this.onBeforeLoad, this);
6578         this.store.on('update', this.onUpdate, this);
6579         this.store.on('add', this.onAdd, this);
6580         this.store.on("clear", this.clear, this);
6581         
6582         this.el.on("contextmenu", this.onContextMenu, this);
6583         
6584         this.mainBody.on('scroll', this.onBodyScroll, this);
6585         
6586         this.cm.on("headerchange", this.onHeaderChange, this);
6587         
6588         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
6589         
6590     },
6591     
6592     onContextMenu : function(e, t)
6593     {
6594         this.processEvent("contextmenu", e);
6595     },
6596     
6597     processEvent : function(name, e)
6598     {
6599         if (name != 'touchstart' ) {
6600             this.fireEvent(name, e);    
6601         }
6602         
6603         var t = e.getTarget();
6604         
6605         var cell = Roo.get(t);
6606         
6607         if(!cell){
6608             return;
6609         }
6610         
6611         if(cell.findParent('tfoot', false, true)){
6612             return;
6613         }
6614         
6615         if(cell.findParent('thead', false, true)){
6616             
6617             if(e.getTarget().nodeName.toLowerCase() != 'th'){
6618                 cell = Roo.get(t).findParent('th', false, true);
6619                 if (!cell) {
6620                     Roo.log("failed to find th in thead?");
6621                     Roo.log(e.getTarget());
6622                     return;
6623                 }
6624             }
6625             
6626             var cellIndex = cell.dom.cellIndex;
6627             
6628             var ename = name == 'touchstart' ? 'click' : name;
6629             this.fireEvent("header" + ename, this, cellIndex, e);
6630             
6631             return;
6632         }
6633         
6634         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6635             cell = Roo.get(t).findParent('td', false, true);
6636             if (!cell) {
6637                 Roo.log("failed to find th in tbody?");
6638                 Roo.log(e.getTarget());
6639                 return;
6640             }
6641         }
6642         
6643         var row = cell.findParent('tr', false, true);
6644         var cellIndex = cell.dom.cellIndex;
6645         var rowIndex = row.dom.rowIndex - 1;
6646         
6647         if(row !== false){
6648             
6649             this.fireEvent("row" + name, this, rowIndex, e);
6650             
6651             if(cell !== false){
6652             
6653                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
6654             }
6655         }
6656         
6657     },
6658     
6659     onMouseover : function(e, el)
6660     {
6661         var cell = Roo.get(el);
6662         
6663         if(!cell){
6664             return;
6665         }
6666         
6667         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6668             cell = cell.findParent('td', false, true);
6669         }
6670         
6671         var row = cell.findParent('tr', false, true);
6672         var cellIndex = cell.dom.cellIndex;
6673         var rowIndex = row.dom.rowIndex - 1; // start from 0
6674         
6675         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
6676         
6677     },
6678     
6679     onMouseout : function(e, el)
6680     {
6681         var cell = Roo.get(el);
6682         
6683         if(!cell){
6684             return;
6685         }
6686         
6687         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6688             cell = cell.findParent('td', false, true);
6689         }
6690         
6691         var row = cell.findParent('tr', false, true);
6692         var cellIndex = cell.dom.cellIndex;
6693         var rowIndex = row.dom.rowIndex - 1; // start from 0
6694         
6695         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
6696         
6697     },
6698     
6699     onClick : function(e, el)
6700     {
6701         var cell = Roo.get(el);
6702         
6703         if(!cell || (!this.cellSelection && !this.rowSelection)){
6704             return;
6705         }
6706         
6707         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6708             cell = cell.findParent('td', false, true);
6709         }
6710         
6711         if(!cell || typeof(cell) == 'undefined'){
6712             return;
6713         }
6714         
6715         var row = cell.findParent('tr', false, true);
6716         
6717         if(!row || typeof(row) == 'undefined'){
6718             return;
6719         }
6720         
6721         var cellIndex = cell.dom.cellIndex;
6722         var rowIndex = this.getRowIndex(row);
6723         
6724         // why??? - should these not be based on SelectionModel?
6725         if(this.cellSelection){
6726             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
6727         }
6728         
6729         if(this.rowSelection){
6730             this.fireEvent('rowclick', this, row, rowIndex, e);
6731         }
6732         
6733         
6734     },
6735         
6736     onDblClick : function(e,el)
6737     {
6738         var cell = Roo.get(el);
6739         
6740         if(!cell || (!this.cellSelection && !this.rowSelection)){
6741             return;
6742         }
6743         
6744         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6745             cell = cell.findParent('td', false, true);
6746         }
6747         
6748         if(!cell || typeof(cell) == 'undefined'){
6749             return;
6750         }
6751         
6752         var row = cell.findParent('tr', false, true);
6753         
6754         if(!row || typeof(row) == 'undefined'){
6755             return;
6756         }
6757         
6758         var cellIndex = cell.dom.cellIndex;
6759         var rowIndex = this.getRowIndex(row);
6760         
6761         if(this.cellSelection){
6762             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
6763         }
6764         
6765         if(this.rowSelection){
6766             this.fireEvent('rowdblclick', this, row, rowIndex, e);
6767         }
6768     },
6769     
6770     sort : function(e,el)
6771     {
6772         var col = Roo.get(el);
6773         
6774         if(!col.hasClass('sortable')){
6775             return;
6776         }
6777         
6778         var sort = col.attr('sort');
6779         var dir = 'ASC';
6780         
6781         if(col.select('i', true).first().hasClass('glyphicon-arrow-up')){
6782             dir = 'DESC';
6783         }
6784         
6785         this.store.sortInfo = {field : sort, direction : dir};
6786         
6787         if (this.footer) {
6788             Roo.log("calling footer first");
6789             this.footer.onClick('first');
6790         } else {
6791         
6792             this.store.load({ params : { start : 0 } });
6793         }
6794     },
6795     
6796     renderHeader : function()
6797     {
6798         var header = {
6799             tag: 'thead',
6800             cn : []
6801         };
6802         
6803         var cm = this.cm;
6804         this.totalWidth = 0;
6805         
6806         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
6807             
6808             var config = cm.config[i];
6809             
6810             var c = {
6811                 tag: 'th',
6812                 cls : 'x-hcol-' + i,
6813                 style : '',
6814                 html: cm.getColumnHeader(i)
6815             };
6816             
6817             var hh = '';
6818             
6819             if(typeof(config.sortable) != 'undefined' && config.sortable){
6820                 c.cls = 'sortable';
6821                 c.html = '<i class="glyphicon"></i>' + c.html;
6822             }
6823             
6824             // could use BS4 hidden-..-down 
6825             
6826             if(typeof(config.lgHeader) != 'undefined'){
6827                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
6828             }
6829             
6830             if(typeof(config.mdHeader) != 'undefined'){
6831                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
6832             }
6833             
6834             if(typeof(config.smHeader) != 'undefined'){
6835                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
6836             }
6837             
6838             if(typeof(config.xsHeader) != 'undefined'){
6839                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
6840             }
6841             
6842             if(hh.length){
6843                 c.html = hh;
6844             }
6845             
6846             if(typeof(config.tooltip) != 'undefined'){
6847                 c.tooltip = config.tooltip;
6848             }
6849             
6850             if(typeof(config.colspan) != 'undefined'){
6851                 c.colspan = config.colspan;
6852             }
6853             
6854             if(typeof(config.hidden) != 'undefined' && config.hidden){
6855                 c.style += ' display:none;';
6856             }
6857             
6858             if(typeof(config.dataIndex) != 'undefined'){
6859                 c.sort = config.dataIndex;
6860             }
6861             
6862            
6863             
6864             if(typeof(config.align) != 'undefined' && config.align.length){
6865                 c.style += ' text-align:' + config.align + ';';
6866             }
6867             
6868             if(typeof(config.width) != 'undefined'){
6869                 c.style += ' width:' + config.width + 'px;';
6870                 this.totalWidth += config.width;
6871             } else {
6872                 this.totalWidth += 100; // assume minimum of 100 per column?
6873             }
6874             
6875             if(typeof(config.cls) != 'undefined'){
6876                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
6877             }
6878             
6879             ['xs','sm','md','lg'].map(function(size){
6880                 
6881                 if(typeof(config[size]) == 'undefined'){
6882                     return;
6883                 }
6884                  
6885                 if (!config[size]) { // 0 = hidden
6886                     // BS 4 '0' is treated as hide that column and below.
6887                     c.cls += ' hidden-' + size + ' hidden' + size + '-down';
6888                     return;
6889                 }
6890                 
6891                 c.cls += ' col-' + size + '-' + config[size] + (
6892                     size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
6893                 );
6894                 
6895                 
6896             });
6897             
6898             header.cn.push(c)
6899         }
6900         
6901         return header;
6902     },
6903     
6904     renderBody : function()
6905     {
6906         var body = {
6907             tag: 'tbody',
6908             cn : [
6909                 {
6910                     tag: 'tr',
6911                     cn : [
6912                         {
6913                             tag : 'td',
6914                             colspan :  this.cm.getColumnCount()
6915                         }
6916                     ]
6917                 }
6918             ]
6919         };
6920         
6921         return body;
6922     },
6923     
6924     renderFooter : function()
6925     {
6926         var footer = {
6927             tag: 'tfoot',
6928             cn : [
6929                 {
6930                     tag: 'tr',
6931                     cn : [
6932                         {
6933                             tag : 'td',
6934                             colspan :  this.cm.getColumnCount()
6935                         }
6936                     ]
6937                 }
6938             ]
6939         };
6940         
6941         return footer;
6942     },
6943     
6944     
6945     
6946     onLoad : function()
6947     {
6948 //        Roo.log('ds onload');
6949         this.clear();
6950         
6951         var _this = this;
6952         var cm = this.cm;
6953         var ds = this.store;
6954         
6955         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6956             e.select('i', true).removeClass(['glyphicon-arrow-up', 'glyphicon-arrow-down']);
6957             if (_this.store.sortInfo) {
6958                     
6959                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
6960                     e.select('i', true).addClass(['glyphicon-arrow-up']);
6961                 }
6962                 
6963                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
6964                     e.select('i', true).addClass(['glyphicon-arrow-down']);
6965                 }
6966             }
6967         });
6968         
6969         var tbody =  this.mainBody;
6970               
6971         if(ds.getCount() > 0){
6972             ds.data.each(function(d,rowIndex){
6973                 var row =  this.renderRow(cm, ds, rowIndex);
6974                 
6975                 tbody.createChild(row);
6976                 
6977                 var _this = this;
6978                 
6979                 if(row.cellObjects.length){
6980                     Roo.each(row.cellObjects, function(r){
6981                         _this.renderCellObject(r);
6982                     })
6983                 }
6984                 
6985             }, this);
6986         }
6987         
6988         var tfoot = this.el.select('tfoot', true).first();
6989         
6990         if(this.footerShow && this.auto_hide_footer && this.mainFoot){
6991             
6992             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
6993             
6994             var total = this.ds.getTotalCount();
6995             
6996             if(this.footer.pageSize < total){
6997                 this.mainFoot.show();
6998             }
6999         }
7000         
7001         Roo.each(this.el.select('tbody td', true).elements, function(e){
7002             e.on('mouseover', _this.onMouseover, _this);
7003         });
7004         
7005         Roo.each(this.el.select('tbody td', true).elements, function(e){
7006             e.on('mouseout', _this.onMouseout, _this);
7007         });
7008         this.fireEvent('rowsrendered', this);
7009         
7010         this.autoSize();
7011     },
7012     
7013     
7014     onUpdate : function(ds,record)
7015     {
7016         this.refreshRow(record);
7017         this.autoSize();
7018     },
7019     
7020     onRemove : function(ds, record, index, isUpdate){
7021         if(isUpdate !== true){
7022             this.fireEvent("beforerowremoved", this, index, record);
7023         }
7024         var bt = this.mainBody.dom;
7025         
7026         var rows = this.el.select('tbody > tr', true).elements;
7027         
7028         if(typeof(rows[index]) != 'undefined'){
7029             bt.removeChild(rows[index].dom);
7030         }
7031         
7032 //        if(bt.rows[index]){
7033 //            bt.removeChild(bt.rows[index]);
7034 //        }
7035         
7036         if(isUpdate !== true){
7037             //this.stripeRows(index);
7038             //this.syncRowHeights(index, index);
7039             //this.layout();
7040             this.fireEvent("rowremoved", this, index, record);
7041         }
7042     },
7043     
7044     onAdd : function(ds, records, rowIndex)
7045     {
7046         //Roo.log('on Add called');
7047         // - note this does not handle multiple adding very well..
7048         var bt = this.mainBody.dom;
7049         for (var i =0 ; i < records.length;i++) {
7050             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
7051             //Roo.log(records[i]);
7052             //Roo.log(this.store.getAt(rowIndex+i));
7053             this.insertRow(this.store, rowIndex + i, false);
7054             return;
7055         }
7056         
7057     },
7058     
7059     
7060     refreshRow : function(record){
7061         var ds = this.store, index;
7062         if(typeof record == 'number'){
7063             index = record;
7064             record = ds.getAt(index);
7065         }else{
7066             index = ds.indexOf(record);
7067         }
7068         this.insertRow(ds, index, true);
7069         this.autoSize();
7070         this.onRemove(ds, record, index+1, true);
7071         this.autoSize();
7072         //this.syncRowHeights(index, index);
7073         //this.layout();
7074         this.fireEvent("rowupdated", this, index, record);
7075     },
7076     
7077     insertRow : function(dm, rowIndex, isUpdate){
7078         
7079         if(!isUpdate){
7080             this.fireEvent("beforerowsinserted", this, rowIndex);
7081         }
7082             //var s = this.getScrollState();
7083         var row = this.renderRow(this.cm, this.store, rowIndex);
7084         // insert before rowIndex..
7085         var e = this.mainBody.createChild(row,this.getRowDom(rowIndex));
7086         
7087         var _this = this;
7088                 
7089         if(row.cellObjects.length){
7090             Roo.each(row.cellObjects, function(r){
7091                 _this.renderCellObject(r);
7092             })
7093         }
7094             
7095         if(!isUpdate){
7096             this.fireEvent("rowsinserted", this, rowIndex);
7097             //this.syncRowHeights(firstRow, lastRow);
7098             //this.stripeRows(firstRow);
7099             //this.layout();
7100         }
7101         
7102     },
7103     
7104     
7105     getRowDom : function(rowIndex)
7106     {
7107         var rows = this.el.select('tbody > tr', true).elements;
7108         
7109         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
7110         
7111     },
7112     // returns the object tree for a tr..
7113   
7114     
7115     renderRow : function(cm, ds, rowIndex) 
7116     {
7117         var d = ds.getAt(rowIndex);
7118         
7119         var row = {
7120             tag : 'tr',
7121             cls : 'x-row-' + rowIndex,
7122             cn : []
7123         };
7124             
7125         var cellObjects = [];
7126         
7127         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
7128             var config = cm.config[i];
7129             
7130             var renderer = cm.getRenderer(i);
7131             var value = '';
7132             var id = false;
7133             
7134             if(typeof(renderer) !== 'undefined'){
7135                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
7136             }
7137             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
7138             // and are rendered into the cells after the row is rendered - using the id for the element.
7139             
7140             if(typeof(value) === 'object'){
7141                 id = Roo.id();
7142                 cellObjects.push({
7143                     container : id,
7144                     cfg : value 
7145                 })
7146             }
7147             
7148             var rowcfg = {
7149                 record: d,
7150                 rowIndex : rowIndex,
7151                 colIndex : i,
7152                 rowClass : ''
7153             };
7154
7155             this.fireEvent('rowclass', this, rowcfg);
7156             
7157             var td = {
7158                 tag: 'td',
7159                 cls : rowcfg.rowClass + ' x-col-' + i,
7160                 style: '',
7161                 html: (typeof(value) === 'object') ? '' : value
7162             };
7163             
7164             if (id) {
7165                 td.id = id;
7166             }
7167             
7168             if(typeof(config.colspan) != 'undefined'){
7169                 td.colspan = config.colspan;
7170             }
7171             
7172             if(typeof(config.hidden) != 'undefined' && config.hidden){
7173                 td.style += ' display:none;';
7174             }
7175             
7176             if(typeof(config.align) != 'undefined' && config.align.length){
7177                 td.style += ' text-align:' + config.align + ';';
7178             }
7179             if(typeof(config.valign) != 'undefined' && config.valign.length){
7180                 td.style += ' vertical-align:' + config.valign + ';';
7181             }
7182             
7183             if(typeof(config.width) != 'undefined'){
7184                 td.style += ' width:' +  config.width + 'px;';
7185             }
7186             
7187             if(typeof(config.cursor) != 'undefined'){
7188                 td.style += ' cursor:' +  config.cursor + ';';
7189             }
7190             
7191             if(typeof(config.cls) != 'undefined'){
7192                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
7193             }
7194             
7195             ['xs','sm','md','lg'].map(function(size){
7196                 
7197                 if(typeof(config[size]) == 'undefined'){
7198                     return;
7199                 }
7200                 
7201                 
7202                   
7203                 if (!config[size]) { // 0 = hidden
7204                     // BS 4 '0' is treated as hide that column and below.
7205                     td.cls += ' hidden-' + size + ' hidden' + size + '-down';
7206                     return;
7207                 }
7208                 
7209                 td.cls += ' col-' + size + '-' + config[size] + (
7210                     size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
7211                 );
7212                  
7213
7214             });
7215             
7216             row.cn.push(td);
7217            
7218         }
7219         
7220         row.cellObjects = cellObjects;
7221         
7222         return row;
7223           
7224     },
7225     
7226     
7227     
7228     onBeforeLoad : function()
7229     {
7230         
7231     },
7232      /**
7233      * Remove all rows
7234      */
7235     clear : function()
7236     {
7237         this.el.select('tbody', true).first().dom.innerHTML = '';
7238     },
7239     /**
7240      * Show or hide a row.
7241      * @param {Number} rowIndex to show or hide
7242      * @param {Boolean} state hide
7243      */
7244     setRowVisibility : function(rowIndex, state)
7245     {
7246         var bt = this.mainBody.dom;
7247         
7248         var rows = this.el.select('tbody > tr', true).elements;
7249         
7250         if(typeof(rows[rowIndex]) == 'undefined'){
7251             return;
7252         }
7253         rows[rowIndex].dom.style.display = state ? '' : 'none';
7254     },
7255     
7256     
7257     getSelectionModel : function(){
7258         if(!this.selModel){
7259             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
7260         }
7261         return this.selModel;
7262     },
7263     /*
7264      * Render the Roo.bootstrap object from renderder
7265      */
7266     renderCellObject : function(r)
7267     {
7268         var _this = this;
7269         
7270         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
7271         
7272         var t = r.cfg.render(r.container);
7273         
7274         if(r.cfg.cn){
7275             Roo.each(r.cfg.cn, function(c){
7276                 var child = {
7277                     container: t.getChildContainer(),
7278                     cfg: c
7279                 };
7280                 _this.renderCellObject(child);
7281             })
7282         }
7283     },
7284     
7285     getRowIndex : function(row)
7286     {
7287         var rowIndex = -1;
7288         
7289         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
7290             if(el != row){
7291                 return;
7292             }
7293             
7294             rowIndex = index;
7295         });
7296         
7297         return rowIndex;
7298     },
7299      /**
7300      * Returns the grid's underlying element = used by panel.Grid
7301      * @return {Element} The element
7302      */
7303     getGridEl : function(){
7304         return this.el;
7305     },
7306      /**
7307      * Forces a resize - used by panel.Grid
7308      * @return {Element} The element
7309      */
7310     autoSize : function()
7311     {
7312         //var ctr = Roo.get(this.container.dom.parentElement);
7313         var ctr = Roo.get(this.el.dom);
7314         
7315         var thd = this.getGridEl().select('thead',true).first();
7316         var tbd = this.getGridEl().select('tbody', true).first();
7317         var tfd = this.getGridEl().select('tfoot', true).first();
7318         
7319         var cw = ctr.getWidth();
7320         
7321         if (tbd) {
7322             
7323             tbd.setSize(ctr.getWidth(),
7324                         ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
7325             );
7326             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
7327             cw -= barsize;
7328         }
7329         cw = Math.max(cw, this.totalWidth);
7330         this.getGridEl().select('tr',true).setWidth(cw);
7331         // resize 'expandable coloumn?
7332         
7333         return; // we doe not have a view in this design..
7334         
7335     },
7336     onBodyScroll: function()
7337     {
7338         //Roo.log("body scrolled');" + this.mainBody.dom.scrollLeft);
7339         if(this.mainHead){
7340             this.mainHead.setStyle({
7341                 'position' : 'relative',
7342                 'left': (-1* this.mainBody.dom.scrollLeft) + 'px'
7343             });
7344         }
7345         
7346         if(this.lazyLoad){
7347             
7348             var scrollHeight = this.mainBody.dom.scrollHeight;
7349             
7350             var scrollTop = Math.ceil(this.mainBody.getScroll().top);
7351             
7352             var height = this.mainBody.getHeight();
7353             
7354             if(scrollHeight - height == scrollTop) {
7355                 
7356                 var total = this.ds.getTotalCount();
7357                 
7358                 if(this.footer.cursor + this.footer.pageSize < total){
7359                     
7360                     this.footer.ds.load({
7361                         params : {
7362                             start : this.footer.cursor + this.footer.pageSize,
7363                             limit : this.footer.pageSize
7364                         },
7365                         add : true
7366                     });
7367                 }
7368             }
7369             
7370         }
7371     },
7372     
7373     onHeaderChange : function()
7374     {
7375         var header = this.renderHeader();
7376         var table = this.el.select('table', true).first();
7377         
7378         this.mainHead.remove();
7379         this.mainHead = table.createChild(header, this.mainBody, false);
7380     },
7381     
7382     onHiddenChange : function(colModel, colIndex, hidden)
7383     {
7384         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
7385         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
7386         
7387         this.CSS.updateRule(thSelector, "display", "");
7388         this.CSS.updateRule(tdSelector, "display", "");
7389         
7390         if(hidden){
7391             this.CSS.updateRule(thSelector, "display", "none");
7392             this.CSS.updateRule(tdSelector, "display", "none");
7393         }
7394         
7395         this.onHeaderChange();
7396         this.onLoad();
7397     },
7398     
7399     setColumnWidth: function(col_index, width)
7400     {
7401         // width = "md-2 xs-2..."
7402         if(!this.colModel.config[col_index]) {
7403             return;
7404         }
7405         
7406         var w = width.split(" ");
7407         
7408         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
7409         
7410         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
7411         
7412         
7413         for(var j = 0; j < w.length; j++) {
7414             
7415             if(!w[j]) {
7416                 continue;
7417             }
7418             
7419             var size_cls = w[j].split("-");
7420             
7421             if(!Number.isInteger(size_cls[1] * 1)) {
7422                 continue;
7423             }
7424             
7425             if(!this.colModel.config[col_index][size_cls[0]]) {
7426                 continue;
7427             }
7428             
7429             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7430                 continue;
7431             }
7432             
7433             h_row[0].classList.replace(
7434                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7435                 "col-"+size_cls[0]+"-"+size_cls[1]
7436             );
7437             
7438             for(var i = 0; i < rows.length; i++) {
7439                 
7440                 var size_cls = w[j].split("-");
7441                 
7442                 if(!Number.isInteger(size_cls[1] * 1)) {
7443                     continue;
7444                 }
7445                 
7446                 if(!this.colModel.config[col_index][size_cls[0]]) {
7447                     continue;
7448                 }
7449                 
7450                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7451                     continue;
7452                 }
7453                 
7454                 rows[i].classList.replace(
7455                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7456                     "col-"+size_cls[0]+"-"+size_cls[1]
7457                 );
7458             }
7459             
7460             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
7461         }
7462     }
7463 });
7464
7465  
7466
7467  /*
7468  * - LGPL
7469  *
7470  * table cell
7471  * 
7472  */
7473
7474 /**
7475  * @class Roo.bootstrap.TableCell
7476  * @extends Roo.bootstrap.Component
7477  * Bootstrap TableCell class
7478  * @cfg {String} html cell contain text
7479  * @cfg {String} cls cell class
7480  * @cfg {String} tag cell tag (td|th) default td
7481  * @cfg {String} abbr Specifies an abbreviated version of the content in a cell
7482  * @cfg {String} align Aligns the content in a cell
7483  * @cfg {String} axis Categorizes cells
7484  * @cfg {String} bgcolor Specifies the background color of a cell
7485  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7486  * @cfg {Number} colspan Specifies the number of columns a cell should span
7487  * @cfg {String} headers Specifies one or more header cells a cell is related to
7488  * @cfg {Number} height Sets the height of a cell
7489  * @cfg {String} nowrap Specifies that the content inside a cell should not wrap
7490  * @cfg {Number} rowspan Sets the number of rows a cell should span
7491  * @cfg {String} scope Defines a way to associate header cells and data cells in a table
7492  * @cfg {String} valign Vertical aligns the content in a cell
7493  * @cfg {Number} width Specifies the width of a cell
7494  * 
7495  * @constructor
7496  * Create a new TableCell
7497  * @param {Object} config The config object
7498  */
7499
7500 Roo.bootstrap.TableCell = function(config){
7501     Roo.bootstrap.TableCell.superclass.constructor.call(this, config);
7502 };
7503
7504 Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
7505     
7506     html: false,
7507     cls: false,
7508     tag: false,
7509     abbr: false,
7510     align: false,
7511     axis: false,
7512     bgcolor: false,
7513     charoff: false,
7514     colspan: false,
7515     headers: false,
7516     height: false,
7517     nowrap: false,
7518     rowspan: false,
7519     scope: false,
7520     valign: false,
7521     width: false,
7522     
7523     
7524     getAutoCreate : function(){
7525         var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this));
7526         
7527         cfg = {
7528             tag: 'td'
7529         };
7530         
7531         if(this.tag){
7532             cfg.tag = this.tag;
7533         }
7534         
7535         if (this.html) {
7536             cfg.html=this.html
7537         }
7538         if (this.cls) {
7539             cfg.cls=this.cls
7540         }
7541         if (this.abbr) {
7542             cfg.abbr=this.abbr
7543         }
7544         if (this.align) {
7545             cfg.align=this.align
7546         }
7547         if (this.axis) {
7548             cfg.axis=this.axis
7549         }
7550         if (this.bgcolor) {
7551             cfg.bgcolor=this.bgcolor
7552         }
7553         if (this.charoff) {
7554             cfg.charoff=this.charoff
7555         }
7556         if (this.colspan) {
7557             cfg.colspan=this.colspan
7558         }
7559         if (this.headers) {
7560             cfg.headers=this.headers
7561         }
7562         if (this.height) {
7563             cfg.height=this.height
7564         }
7565         if (this.nowrap) {
7566             cfg.nowrap=this.nowrap
7567         }
7568         if (this.rowspan) {
7569             cfg.rowspan=this.rowspan
7570         }
7571         if (this.scope) {
7572             cfg.scope=this.scope
7573         }
7574         if (this.valign) {
7575             cfg.valign=this.valign
7576         }
7577         if (this.width) {
7578             cfg.width=this.width
7579         }
7580         
7581         
7582         return cfg;
7583     }
7584    
7585 });
7586
7587  
7588
7589  /*
7590  * - LGPL
7591  *
7592  * table row
7593  * 
7594  */
7595
7596 /**
7597  * @class Roo.bootstrap.TableRow
7598  * @extends Roo.bootstrap.Component
7599  * Bootstrap TableRow class
7600  * @cfg {String} cls row class
7601  * @cfg {String} align Aligns the content in a table row
7602  * @cfg {String} bgcolor Specifies a background color for a table row
7603  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7604  * @cfg {String} valign Vertical aligns the content in a table row
7605  * 
7606  * @constructor
7607  * Create a new TableRow
7608  * @param {Object} config The config object
7609  */
7610
7611 Roo.bootstrap.TableRow = function(config){
7612     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
7613 };
7614
7615 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
7616     
7617     cls: false,
7618     align: false,
7619     bgcolor: false,
7620     charoff: false,
7621     valign: false,
7622     
7623     getAutoCreate : function(){
7624         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
7625         
7626         cfg = {
7627             tag: 'tr'
7628         };
7629             
7630         if(this.cls){
7631             cfg.cls = this.cls;
7632         }
7633         if(this.align){
7634             cfg.align = this.align;
7635         }
7636         if(this.bgcolor){
7637             cfg.bgcolor = this.bgcolor;
7638         }
7639         if(this.charoff){
7640             cfg.charoff = this.charoff;
7641         }
7642         if(this.valign){
7643             cfg.valign = this.valign;
7644         }
7645         
7646         return cfg;
7647     }
7648    
7649 });
7650
7651  
7652
7653  /*
7654  * - LGPL
7655  *
7656  * table body
7657  * 
7658  */
7659
7660 /**
7661  * @class Roo.bootstrap.TableBody
7662  * @extends Roo.bootstrap.Component
7663  * Bootstrap TableBody class
7664  * @cfg {String} cls element class
7665  * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
7666  * @cfg {String} align Aligns the content inside the element
7667  * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
7668  * @cfg {String} valign Vertical aligns the content inside the <tbody> element
7669  * 
7670  * @constructor
7671  * Create a new TableBody
7672  * @param {Object} config The config object
7673  */
7674
7675 Roo.bootstrap.TableBody = function(config){
7676     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
7677 };
7678
7679 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
7680     
7681     cls: false,
7682     tag: false,
7683     align: false,
7684     charoff: false,
7685     valign: false,
7686     
7687     getAutoCreate : function(){
7688         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
7689         
7690         cfg = {
7691             tag: 'tbody'
7692         };
7693             
7694         if (this.cls) {
7695             cfg.cls=this.cls
7696         }
7697         if(this.tag){
7698             cfg.tag = this.tag;
7699         }
7700         
7701         if(this.align){
7702             cfg.align = this.align;
7703         }
7704         if(this.charoff){
7705             cfg.charoff = this.charoff;
7706         }
7707         if(this.valign){
7708             cfg.valign = this.valign;
7709         }
7710         
7711         return cfg;
7712     }
7713     
7714     
7715 //    initEvents : function()
7716 //    {
7717 //        
7718 //        if(!this.store){
7719 //            return;
7720 //        }
7721 //        
7722 //        this.store = Roo.factory(this.store, Roo.data);
7723 //        this.store.on('load', this.onLoad, this);
7724 //        
7725 //        this.store.load();
7726 //        
7727 //    },
7728 //    
7729 //    onLoad: function () 
7730 //    {   
7731 //        this.fireEvent('load', this);
7732 //    }
7733 //    
7734 //   
7735 });
7736
7737  
7738
7739  /*
7740  * Based on:
7741  * Ext JS Library 1.1.1
7742  * Copyright(c) 2006-2007, Ext JS, LLC.
7743  *
7744  * Originally Released Under LGPL - original licence link has changed is not relivant.
7745  *
7746  * Fork - LGPL
7747  * <script type="text/javascript">
7748  */
7749
7750 // as we use this in bootstrap.
7751 Roo.namespace('Roo.form');
7752  /**
7753  * @class Roo.form.Action
7754  * Internal Class used to handle form actions
7755  * @constructor
7756  * @param {Roo.form.BasicForm} el The form element or its id
7757  * @param {Object} config Configuration options
7758  */
7759
7760  
7761  
7762 // define the action interface
7763 Roo.form.Action = function(form, options){
7764     this.form = form;
7765     this.options = options || {};
7766 };
7767 /**
7768  * Client Validation Failed
7769  * @const 
7770  */
7771 Roo.form.Action.CLIENT_INVALID = 'client';
7772 /**
7773  * Server Validation Failed
7774  * @const 
7775  */
7776 Roo.form.Action.SERVER_INVALID = 'server';
7777  /**
7778  * Connect to Server Failed
7779  * @const 
7780  */
7781 Roo.form.Action.CONNECT_FAILURE = 'connect';
7782 /**
7783  * Reading Data from Server Failed
7784  * @const 
7785  */
7786 Roo.form.Action.LOAD_FAILURE = 'load';
7787
7788 Roo.form.Action.prototype = {
7789     type : 'default',
7790     failureType : undefined,
7791     response : undefined,
7792     result : undefined,
7793
7794     // interface method
7795     run : function(options){
7796
7797     },
7798
7799     // interface method
7800     success : function(response){
7801
7802     },
7803
7804     // interface method
7805     handleResponse : function(response){
7806
7807     },
7808
7809     // default connection failure
7810     failure : function(response){
7811         
7812         this.response = response;
7813         this.failureType = Roo.form.Action.CONNECT_FAILURE;
7814         this.form.afterAction(this, false);
7815     },
7816
7817     processResponse : function(response){
7818         this.response = response;
7819         if(!response.responseText){
7820             return true;
7821         }
7822         this.result = this.handleResponse(response);
7823         return this.result;
7824     },
7825
7826     // utility functions used internally
7827     getUrl : function(appendParams){
7828         var url = this.options.url || this.form.url || this.form.el.dom.action;
7829         if(appendParams){
7830             var p = this.getParams();
7831             if(p){
7832                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
7833             }
7834         }
7835         return url;
7836     },
7837
7838     getMethod : function(){
7839         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
7840     },
7841
7842     getParams : function(){
7843         var bp = this.form.baseParams;
7844         var p = this.options.params;
7845         if(p){
7846             if(typeof p == "object"){
7847                 p = Roo.urlEncode(Roo.applyIf(p, bp));
7848             }else if(typeof p == 'string' && bp){
7849                 p += '&' + Roo.urlEncode(bp);
7850             }
7851         }else if(bp){
7852             p = Roo.urlEncode(bp);
7853         }
7854         return p;
7855     },
7856
7857     createCallback : function(){
7858         return {
7859             success: this.success,
7860             failure: this.failure,
7861             scope: this,
7862             timeout: (this.form.timeout*1000),
7863             upload: this.form.fileUpload ? this.success : undefined
7864         };
7865     }
7866 };
7867
7868 Roo.form.Action.Submit = function(form, options){
7869     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
7870 };
7871
7872 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
7873     type : 'submit',
7874
7875     haveProgress : false,
7876     uploadComplete : false,
7877     
7878     // uploadProgress indicator.
7879     uploadProgress : function()
7880     {
7881         if (!this.form.progressUrl) {
7882             return;
7883         }
7884         
7885         if (!this.haveProgress) {
7886             Roo.MessageBox.progress("Uploading", "Uploading");
7887         }
7888         if (this.uploadComplete) {
7889            Roo.MessageBox.hide();
7890            return;
7891         }
7892         
7893         this.haveProgress = true;
7894    
7895         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
7896         
7897         var c = new Roo.data.Connection();
7898         c.request({
7899             url : this.form.progressUrl,
7900             params: {
7901                 id : uid
7902             },
7903             method: 'GET',
7904             success : function(req){
7905                //console.log(data);
7906                 var rdata = false;
7907                 var edata;
7908                 try  {
7909                    rdata = Roo.decode(req.responseText)
7910                 } catch (e) {
7911                     Roo.log("Invalid data from server..");
7912                     Roo.log(edata);
7913                     return;
7914                 }
7915                 if (!rdata || !rdata.success) {
7916                     Roo.log(rdata);
7917                     Roo.MessageBox.alert(Roo.encode(rdata));
7918                     return;
7919                 }
7920                 var data = rdata.data;
7921                 
7922                 if (this.uploadComplete) {
7923                    Roo.MessageBox.hide();
7924                    return;
7925                 }
7926                    
7927                 if (data){
7928                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
7929                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
7930                     );
7931                 }
7932                 this.uploadProgress.defer(2000,this);
7933             },
7934        
7935             failure: function(data) {
7936                 Roo.log('progress url failed ');
7937                 Roo.log(data);
7938             },
7939             scope : this
7940         });
7941            
7942     },
7943     
7944     
7945     run : function()
7946     {
7947         // run get Values on the form, so it syncs any secondary forms.
7948         this.form.getValues();
7949         
7950         var o = this.options;
7951         var method = this.getMethod();
7952         var isPost = method == 'POST';
7953         if(o.clientValidation === false || this.form.isValid()){
7954             
7955             if (this.form.progressUrl) {
7956                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
7957                     (new Date() * 1) + '' + Math.random());
7958                     
7959             } 
7960             
7961             
7962             Roo.Ajax.request(Roo.apply(this.createCallback(), {
7963                 form:this.form.el.dom,
7964                 url:this.getUrl(!isPost),
7965                 method: method,
7966                 params:isPost ? this.getParams() : null,
7967                 isUpload: this.form.fileUpload,
7968                 formData : this.form.formData
7969             }));
7970             
7971             this.uploadProgress();
7972
7973         }else if (o.clientValidation !== false){ // client validation failed
7974             this.failureType = Roo.form.Action.CLIENT_INVALID;
7975             this.form.afterAction(this, false);
7976         }
7977     },
7978
7979     success : function(response)
7980     {
7981         this.uploadComplete= true;
7982         if (this.haveProgress) {
7983             Roo.MessageBox.hide();
7984         }
7985         
7986         
7987         var result = this.processResponse(response);
7988         if(result === true || result.success){
7989             this.form.afterAction(this, true);
7990             return;
7991         }
7992         if(result.errors){
7993             this.form.markInvalid(result.errors);
7994             this.failureType = Roo.form.Action.SERVER_INVALID;
7995         }
7996         this.form.afterAction(this, false);
7997     },
7998     failure : function(response)
7999     {
8000         this.uploadComplete= true;
8001         if (this.haveProgress) {
8002             Roo.MessageBox.hide();
8003         }
8004         
8005         this.response = response;
8006         this.failureType = Roo.form.Action.CONNECT_FAILURE;
8007         this.form.afterAction(this, false);
8008     },
8009     
8010     handleResponse : function(response){
8011         if(this.form.errorReader){
8012             var rs = this.form.errorReader.read(response);
8013             var errors = [];
8014             if(rs.records){
8015                 for(var i = 0, len = rs.records.length; i < len; i++) {
8016                     var r = rs.records[i];
8017                     errors[i] = r.data;
8018                 }
8019             }
8020             if(errors.length < 1){
8021                 errors = null;
8022             }
8023             return {
8024                 success : rs.success,
8025                 errors : errors
8026             };
8027         }
8028         var ret = false;
8029         try {
8030             ret = Roo.decode(response.responseText);
8031         } catch (e) {
8032             ret = {
8033                 success: false,
8034                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
8035                 errors : []
8036             };
8037         }
8038         return ret;
8039         
8040     }
8041 });
8042
8043
8044 Roo.form.Action.Load = function(form, options){
8045     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
8046     this.reader = this.form.reader;
8047 };
8048
8049 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
8050     type : 'load',
8051
8052     run : function(){
8053         
8054         Roo.Ajax.request(Roo.apply(
8055                 this.createCallback(), {
8056                     method:this.getMethod(),
8057                     url:this.getUrl(false),
8058                     params:this.getParams()
8059         }));
8060     },
8061
8062     success : function(response){
8063         
8064         var result = this.processResponse(response);
8065         if(result === true || !result.success || !result.data){
8066             this.failureType = Roo.form.Action.LOAD_FAILURE;
8067             this.form.afterAction(this, false);
8068             return;
8069         }
8070         this.form.clearInvalid();
8071         this.form.setValues(result.data);
8072         this.form.afterAction(this, true);
8073     },
8074
8075     handleResponse : function(response){
8076         if(this.form.reader){
8077             var rs = this.form.reader.read(response);
8078             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
8079             return {
8080                 success : rs.success,
8081                 data : data
8082             };
8083         }
8084         return Roo.decode(response.responseText);
8085     }
8086 });
8087
8088 Roo.form.Action.ACTION_TYPES = {
8089     'load' : Roo.form.Action.Load,
8090     'submit' : Roo.form.Action.Submit
8091 };/*
8092  * - LGPL
8093  *
8094  * form
8095  *
8096  */
8097
8098 /**
8099  * @class Roo.bootstrap.Form
8100  * @extends Roo.bootstrap.Component
8101  * Bootstrap Form class
8102  * @cfg {String} method  GET | POST (default POST)
8103  * @cfg {String} labelAlign top | left (default top)
8104  * @cfg {String} align left  | right - for navbars
8105  * @cfg {Boolean} loadMask load mask when submit (default true)
8106
8107  *
8108  * @constructor
8109  * Create a new Form
8110  * @param {Object} config The config object
8111  */
8112
8113
8114 Roo.bootstrap.Form = function(config){
8115     
8116     Roo.bootstrap.Form.superclass.constructor.call(this, config);
8117     
8118     Roo.bootstrap.Form.popover.apply();
8119     
8120     this.addEvents({
8121         /**
8122          * @event clientvalidation
8123          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
8124          * @param {Form} this
8125          * @param {Boolean} valid true if the form has passed client-side validation
8126          */
8127         clientvalidation: true,
8128         /**
8129          * @event beforeaction
8130          * Fires before any action is performed. Return false to cancel the action.
8131          * @param {Form} this
8132          * @param {Action} action The action to be performed
8133          */
8134         beforeaction: true,
8135         /**
8136          * @event actionfailed
8137          * Fires when an action fails.
8138          * @param {Form} this
8139          * @param {Action} action The action that failed
8140          */
8141         actionfailed : true,
8142         /**
8143          * @event actioncomplete
8144          * Fires when an action is completed.
8145          * @param {Form} this
8146          * @param {Action} action The action that completed
8147          */
8148         actioncomplete : true
8149     });
8150 };
8151
8152 Roo.extend(Roo.bootstrap.Form, Roo.bootstrap.Component,  {
8153
8154      /**
8155      * @cfg {String} method
8156      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
8157      */
8158     method : 'POST',
8159     /**
8160      * @cfg {String} url
8161      * The URL to use for form actions if one isn't supplied in the action options.
8162      */
8163     /**
8164      * @cfg {Boolean} fileUpload
8165      * Set to true if this form is a file upload.
8166      */
8167
8168     /**
8169      * @cfg {Object} baseParams
8170      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
8171      */
8172
8173     /**
8174      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
8175      */
8176     timeout: 30,
8177     /**
8178      * @cfg {Sting} align (left|right) for navbar forms
8179      */
8180     align : 'left',
8181
8182     // private
8183     activeAction : null,
8184
8185     /**
8186      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
8187      * element by passing it or its id or mask the form itself by passing in true.
8188      * @type Mixed
8189      */
8190     waitMsgTarget : false,
8191
8192     loadMask : true,
8193     
8194     /**
8195      * @cfg {Boolean} errorMask (true|false) default false
8196      */
8197     errorMask : false,
8198     
8199     /**
8200      * @cfg {Number} maskOffset Default 100
8201      */
8202     maskOffset : 100,
8203     
8204     /**
8205      * @cfg {Boolean} maskBody
8206      */
8207     maskBody : false,
8208
8209     getAutoCreate : function(){
8210
8211         var cfg = {
8212             tag: 'form',
8213             method : this.method || 'POST',
8214             id : this.id || Roo.id(),
8215             cls : ''
8216         };
8217         if (this.parent().xtype.match(/^Nav/)) {
8218             cfg.cls = 'navbar-form form-inline navbar-' + this.align;
8219
8220         }
8221
8222         if (this.labelAlign == 'left' ) {
8223             cfg.cls += ' form-horizontal';
8224         }
8225
8226
8227         return cfg;
8228     },
8229     initEvents : function()
8230     {
8231         this.el.on('submit', this.onSubmit, this);
8232         // this was added as random key presses on the form where triggering form submit.
8233         this.el.on('keypress', function(e) {
8234             if (e.getCharCode() != 13) {
8235                 return true;
8236             }
8237             // we might need to allow it for textareas.. and some other items.
8238             // check e.getTarget().
8239
8240             if(e.getTarget().nodeName.toLowerCase() === 'textarea'){
8241                 return true;
8242             }
8243
8244             Roo.log("keypress blocked");
8245
8246             e.preventDefault();
8247             return false;
8248         });
8249         
8250     },
8251     // private
8252     onSubmit : function(e){
8253         e.stopEvent();
8254     },
8255
8256      /**
8257      * Returns true if client-side validation on the form is successful.
8258      * @return Boolean
8259      */
8260     isValid : function(){
8261         var items = this.getItems();
8262         var valid = true;
8263         var target = false;
8264         
8265         items.each(function(f){
8266             
8267             if(f.validate()){
8268                 return;
8269             }
8270             
8271             Roo.log('invalid field: ' + f.name);
8272             
8273             valid = false;
8274
8275             if(!target && f.el.isVisible(true)){
8276                 target = f;
8277             }
8278            
8279         });
8280         
8281         if(this.errorMask && !valid){
8282             Roo.bootstrap.Form.popover.mask(this, target);
8283         }
8284         
8285         return valid;
8286     },
8287     
8288     /**
8289      * Returns true if any fields in this form have changed since their original load.
8290      * @return Boolean
8291      */
8292     isDirty : function(){
8293         var dirty = false;
8294         var items = this.getItems();
8295         items.each(function(f){
8296            if(f.isDirty()){
8297                dirty = true;
8298                return false;
8299            }
8300            return true;
8301         });
8302         return dirty;
8303     },
8304      /**
8305      * Performs a predefined action (submit or load) or custom actions you define on this form.
8306      * @param {String} actionName The name of the action type
8307      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
8308      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
8309      * accept other config options):
8310      * <pre>
8311 Property          Type             Description
8312 ----------------  ---------------  ----------------------------------------------------------------------------------
8313 url               String           The url for the action (defaults to the form's url)
8314 method            String           The form method to use (defaults to the form's method, or POST if not defined)
8315 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
8316 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
8317                                    validate the form on the client (defaults to false)
8318      * </pre>
8319      * @return {BasicForm} this
8320      */
8321     doAction : function(action, options){
8322         if(typeof action == 'string'){
8323             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
8324         }
8325         if(this.fireEvent('beforeaction', this, action) !== false){
8326             this.beforeAction(action);
8327             action.run.defer(100, action);
8328         }
8329         return this;
8330     },
8331
8332     // private
8333     beforeAction : function(action){
8334         var o = action.options;
8335         
8336         if(this.loadMask){
8337             
8338             if(this.maskBody){
8339                 Roo.get(document.body).mask(o.waitMsg || "Sending", 'x-mask-loading')
8340             } else {
8341                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8342             }
8343         }
8344         // not really supported yet.. ??
8345
8346         //if(this.waitMsgTarget === true){
8347         //  this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8348         //}else if(this.waitMsgTarget){
8349         //    this.waitMsgTarget = Roo.get(this.waitMsgTarget);
8350         //    this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
8351         //}else {
8352         //    Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
8353        // }
8354
8355     },
8356
8357     // private
8358     afterAction : function(action, success){
8359         this.activeAction = null;
8360         var o = action.options;
8361
8362         if(this.loadMask){
8363             
8364             if(this.maskBody){
8365                 Roo.get(document.body).unmask();
8366             } else {
8367                 this.el.unmask();
8368             }
8369         }
8370         
8371         //if(this.waitMsgTarget === true){
8372 //            this.el.unmask();
8373         //}else if(this.waitMsgTarget){
8374         //    this.waitMsgTarget.unmask();
8375         //}else{
8376         //    Roo.MessageBox.updateProgress(1);
8377         //    Roo.MessageBox.hide();
8378        // }
8379         //
8380         if(success){
8381             if(o.reset){
8382                 this.reset();
8383             }
8384             Roo.callback(o.success, o.scope, [this, action]);
8385             this.fireEvent('actioncomplete', this, action);
8386
8387         }else{
8388
8389             // failure condition..
8390             // we have a scenario where updates need confirming.
8391             // eg. if a locking scenario exists..
8392             // we look for { errors : { needs_confirm : true }} in the response.
8393             if (
8394                 (typeof(action.result) != 'undefined')  &&
8395                 (typeof(action.result.errors) != 'undefined')  &&
8396                 (typeof(action.result.errors.needs_confirm) != 'undefined')
8397            ){
8398                 var _t = this;
8399                 Roo.log("not supported yet");
8400                  /*
8401
8402                 Roo.MessageBox.confirm(
8403                     "Change requires confirmation",
8404                     action.result.errorMsg,
8405                     function(r) {
8406                         if (r != 'yes') {
8407                             return;
8408                         }
8409                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
8410                     }
8411
8412                 );
8413                 */
8414
8415
8416                 return;
8417             }
8418
8419             Roo.callback(o.failure, o.scope, [this, action]);
8420             // show an error message if no failed handler is set..
8421             if (!this.hasListener('actionfailed')) {
8422                 Roo.log("need to add dialog support");
8423                 /*
8424                 Roo.MessageBox.alert("Error",
8425                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
8426                         action.result.errorMsg :
8427                         "Saving Failed, please check your entries or try again"
8428                 );
8429                 */
8430             }
8431
8432             this.fireEvent('actionfailed', this, action);
8433         }
8434
8435     },
8436     /**
8437      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
8438      * @param {String} id The value to search for
8439      * @return Field
8440      */
8441     findField : function(id){
8442         var items = this.getItems();
8443         var field = items.get(id);
8444         if(!field){
8445              items.each(function(f){
8446                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
8447                     field = f;
8448                     return false;
8449                 }
8450                 return true;
8451             });
8452         }
8453         return field || null;
8454     },
8455      /**
8456      * Mark fields in this form invalid in bulk.
8457      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
8458      * @return {BasicForm} this
8459      */
8460     markInvalid : function(errors){
8461         if(errors instanceof Array){
8462             for(var i = 0, len = errors.length; i < len; i++){
8463                 var fieldError = errors[i];
8464                 var f = this.findField(fieldError.id);
8465                 if(f){
8466                     f.markInvalid(fieldError.msg);
8467                 }
8468             }
8469         }else{
8470             var field, id;
8471             for(id in errors){
8472                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
8473                     field.markInvalid(errors[id]);
8474                 }
8475             }
8476         }
8477         //Roo.each(this.childForms || [], function (f) {
8478         //    f.markInvalid(errors);
8479         //});
8480
8481         return this;
8482     },
8483
8484     /**
8485      * Set values for fields in this form in bulk.
8486      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
8487      * @return {BasicForm} this
8488      */
8489     setValues : function(values){
8490         if(values instanceof Array){ // array of objects
8491             for(var i = 0, len = values.length; i < len; i++){
8492                 var v = values[i];
8493                 var f = this.findField(v.id);
8494                 if(f){
8495                     f.setValue(v.value);
8496                     if(this.trackResetOnLoad){
8497                         f.originalValue = f.getValue();
8498                     }
8499                 }
8500             }
8501         }else{ // object hash
8502             var field, id;
8503             for(id in values){
8504                 if(typeof values[id] != 'function' && (field = this.findField(id))){
8505
8506                     if (field.setFromData &&
8507                         field.valueField &&
8508                         field.displayField &&
8509                         // combos' with local stores can
8510                         // be queried via setValue()
8511                         // to set their value..
8512                         (field.store && !field.store.isLocal)
8513                         ) {
8514                         // it's a combo
8515                         var sd = { };
8516                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
8517                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
8518                         field.setFromData(sd);
8519
8520                     } else if(field.setFromData && (field.store && !field.store.isLocal)) {
8521                         
8522                         field.setFromData(values);
8523                         
8524                     } else {
8525                         field.setValue(values[id]);
8526                     }
8527
8528
8529                     if(this.trackResetOnLoad){
8530                         field.originalValue = field.getValue();
8531                     }
8532                 }
8533             }
8534         }
8535
8536         //Roo.each(this.childForms || [], function (f) {
8537         //    f.setValues(values);
8538         //});
8539
8540         return this;
8541     },
8542
8543     /**
8544      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
8545      * they are returned as an array.
8546      * @param {Boolean} asString
8547      * @return {Object}
8548      */
8549     getValues : function(asString){
8550         //if (this.childForms) {
8551             // copy values from the child forms
8552         //    Roo.each(this.childForms, function (f) {
8553         //        this.setValues(f.getValues());
8554         //    }, this);
8555         //}
8556
8557
8558
8559         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
8560         if(asString === true){
8561             return fs;
8562         }
8563         return Roo.urlDecode(fs);
8564     },
8565
8566     /**
8567      * Returns the fields in this form as an object with key/value pairs.
8568      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
8569      * @return {Object}
8570      */
8571     getFieldValues : function(with_hidden)
8572     {
8573         var items = this.getItems();
8574         var ret = {};
8575         items.each(function(f){
8576             
8577             if (!f.getName()) {
8578                 return;
8579             }
8580             
8581             var v = f.getValue();
8582             
8583             if (f.inputType =='radio') {
8584                 if (typeof(ret[f.getName()]) == 'undefined') {
8585                     ret[f.getName()] = ''; // empty..
8586                 }
8587
8588                 if (!f.el.dom.checked) {
8589                     return;
8590
8591                 }
8592                 v = f.el.dom.value;
8593
8594             }
8595             
8596             if(f.xtype == 'MoneyField'){
8597                 ret[f.currencyName] = f.getCurrency();
8598             }
8599
8600             // not sure if this supported any more..
8601             if ((typeof(v) == 'object') && f.getRawValue) {
8602                 v = f.getRawValue() ; // dates..
8603             }
8604             // combo boxes where name != hiddenName...
8605             if (f.name !== false && f.name != '' && f.name != f.getName()) {
8606                 ret[f.name] = f.getRawValue();
8607             }
8608             ret[f.getName()] = v;
8609         });
8610
8611         return ret;
8612     },
8613
8614     /**
8615      * Clears all invalid messages in this form.
8616      * @return {BasicForm} this
8617      */
8618     clearInvalid : function(){
8619         var items = this.getItems();
8620
8621         items.each(function(f){
8622            f.clearInvalid();
8623         });
8624
8625         return this;
8626     },
8627
8628     /**
8629      * Resets this form.
8630      * @return {BasicForm} this
8631      */
8632     reset : function(){
8633         var items = this.getItems();
8634         items.each(function(f){
8635             f.reset();
8636         });
8637
8638         Roo.each(this.childForms || [], function (f) {
8639             f.reset();
8640         });
8641
8642
8643         return this;
8644     },
8645     
8646     getItems : function()
8647     {
8648         var r=new Roo.util.MixedCollection(false, function(o){
8649             return o.id || (o.id = Roo.id());
8650         });
8651         var iter = function(el) {
8652             if (el.inputEl) {
8653                 r.add(el);
8654             }
8655             if (!el.items) {
8656                 return;
8657             }
8658             Roo.each(el.items,function(e) {
8659                 iter(e);
8660             });
8661         };
8662
8663         iter(this);
8664         return r;
8665     },
8666     
8667     hideFields : function(items)
8668     {
8669         Roo.each(items, function(i){
8670             
8671             var f = this.findField(i);
8672             
8673             if(!f){
8674                 return;
8675             }
8676             
8677             f.hide();
8678             
8679         }, this);
8680     },
8681     
8682     showFields : function(items)
8683     {
8684         Roo.each(items, function(i){
8685             
8686             var f = this.findField(i);
8687             
8688             if(!f){
8689                 return;
8690             }
8691             
8692             f.show();
8693             
8694         }, this);
8695     }
8696
8697 });
8698
8699 Roo.apply(Roo.bootstrap.Form, {
8700     
8701     popover : {
8702         
8703         padding : 5,
8704         
8705         isApplied : false,
8706         
8707         isMasked : false,
8708         
8709         form : false,
8710         
8711         target : false,
8712         
8713         toolTip : false,
8714         
8715         intervalID : false,
8716         
8717         maskEl : false,
8718         
8719         apply : function()
8720         {
8721             if(this.isApplied){
8722                 return;
8723             }
8724             
8725             this.maskEl = {
8726                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
8727                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
8728                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
8729                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
8730             };
8731             
8732             this.maskEl.top.enableDisplayMode("block");
8733             this.maskEl.left.enableDisplayMode("block");
8734             this.maskEl.bottom.enableDisplayMode("block");
8735             this.maskEl.right.enableDisplayMode("block");
8736             
8737             this.toolTip = new Roo.bootstrap.Tooltip({
8738                 cls : 'roo-form-error-popover',
8739                 alignment : {
8740                     'left' : ['r-l', [-2,0], 'right'],
8741                     'right' : ['l-r', [2,0], 'left'],
8742                     'bottom' : ['tl-bl', [0,2], 'top'],
8743                     'top' : [ 'bl-tl', [0,-2], 'bottom']
8744                 }
8745             });
8746             
8747             this.toolTip.render(Roo.get(document.body));
8748
8749             this.toolTip.el.enableDisplayMode("block");
8750             
8751             Roo.get(document.body).on('click', function(){
8752                 this.unmask();
8753             }, this);
8754             
8755             Roo.get(document.body).on('touchstart', function(){
8756                 this.unmask();
8757             }, this);
8758             
8759             this.isApplied = true
8760         },
8761         
8762         mask : function(form, target)
8763         {
8764             this.form = form;
8765             
8766             this.target = target;
8767             
8768             if(!this.form.errorMask || !target.el){
8769                 return;
8770             }
8771             
8772             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.modal', 100, true) || Roo.get(document.body);
8773             
8774             Roo.log(scrollable);
8775             
8776             var ot = this.target.el.calcOffsetsTo(scrollable);
8777             
8778             var scrollTo = ot[1] - this.form.maskOffset;
8779             
8780             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
8781             
8782             scrollable.scrollTo('top', scrollTo);
8783             
8784             var box = this.target.el.getBox();
8785             Roo.log(box);
8786             var zIndex = Roo.bootstrap.Modal.zIndex++;
8787
8788             
8789             this.maskEl.top.setStyle('position', 'absolute');
8790             this.maskEl.top.setStyle('z-index', zIndex);
8791             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
8792             this.maskEl.top.setLeft(0);
8793             this.maskEl.top.setTop(0);
8794             this.maskEl.top.show();
8795             
8796             this.maskEl.left.setStyle('position', 'absolute');
8797             this.maskEl.left.setStyle('z-index', zIndex);
8798             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
8799             this.maskEl.left.setLeft(0);
8800             this.maskEl.left.setTop(box.y - this.padding);
8801             this.maskEl.left.show();
8802
8803             this.maskEl.bottom.setStyle('position', 'absolute');
8804             this.maskEl.bottom.setStyle('z-index', zIndex);
8805             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
8806             this.maskEl.bottom.setLeft(0);
8807             this.maskEl.bottom.setTop(box.bottom + this.padding);
8808             this.maskEl.bottom.show();
8809
8810             this.maskEl.right.setStyle('position', 'absolute');
8811             this.maskEl.right.setStyle('z-index', zIndex);
8812             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
8813             this.maskEl.right.setLeft(box.right + this.padding);
8814             this.maskEl.right.setTop(box.y - this.padding);
8815             this.maskEl.right.show();
8816
8817             this.toolTip.bindEl = this.target.el;
8818
8819             this.toolTip.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
8820
8821             var tip = this.target.blankText;
8822
8823             if(this.target.getValue() !== '' ) {
8824                 
8825                 if (this.target.invalidText.length) {
8826                     tip = this.target.invalidText;
8827                 } else if (this.target.regexText.length){
8828                     tip = this.target.regexText;
8829                 }
8830             }
8831
8832             this.toolTip.show(tip);
8833
8834             this.intervalID = window.setInterval(function() {
8835                 Roo.bootstrap.Form.popover.unmask();
8836             }, 10000);
8837
8838             window.onwheel = function(){ return false;};
8839             
8840             (function(){ this.isMasked = true; }).defer(500, this);
8841             
8842         },
8843         
8844         unmask : function()
8845         {
8846             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
8847                 return;
8848             }
8849             
8850             this.maskEl.top.setStyle('position', 'absolute');
8851             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
8852             this.maskEl.top.hide();
8853
8854             this.maskEl.left.setStyle('position', 'absolute');
8855             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
8856             this.maskEl.left.hide();
8857
8858             this.maskEl.bottom.setStyle('position', 'absolute');
8859             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
8860             this.maskEl.bottom.hide();
8861
8862             this.maskEl.right.setStyle('position', 'absolute');
8863             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
8864             this.maskEl.right.hide();
8865             
8866             this.toolTip.hide();
8867             
8868             this.toolTip.el.hide();
8869             
8870             window.onwheel = function(){ return true;};
8871             
8872             if(this.intervalID){
8873                 window.clearInterval(this.intervalID);
8874                 this.intervalID = false;
8875             }
8876             
8877             this.isMasked = false;
8878             
8879         }
8880         
8881     }
8882     
8883 });
8884
8885 /*
8886  * Based on:
8887  * Ext JS Library 1.1.1
8888  * Copyright(c) 2006-2007, Ext JS, LLC.
8889  *
8890  * Originally Released Under LGPL - original licence link has changed is not relivant.
8891  *
8892  * Fork - LGPL
8893  * <script type="text/javascript">
8894  */
8895 /**
8896  * @class Roo.form.VTypes
8897  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
8898  * @singleton
8899  */
8900 Roo.form.VTypes = function(){
8901     // closure these in so they are only created once.
8902     var alpha = /^[a-zA-Z_]+$/;
8903     var alphanum = /^[a-zA-Z0-9_]+$/;
8904     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
8905     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
8906
8907     // All these messages and functions are configurable
8908     return {
8909         /**
8910          * The function used to validate email addresses
8911          * @param {String} value The email address
8912          */
8913         'email' : function(v){
8914             return email.test(v);
8915         },
8916         /**
8917          * The error text to display when the email validation function returns false
8918          * @type String
8919          */
8920         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
8921         /**
8922          * The keystroke filter mask to be applied on email input
8923          * @type RegExp
8924          */
8925         'emailMask' : /[a-z0-9_\.\-@]/i,
8926
8927         /**
8928          * The function used to validate URLs
8929          * @param {String} value The URL
8930          */
8931         'url' : function(v){
8932             return url.test(v);
8933         },
8934         /**
8935          * The error text to display when the url validation function returns false
8936          * @type String
8937          */
8938         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
8939         
8940         /**
8941          * The function used to validate alpha values
8942          * @param {String} value The value
8943          */
8944         'alpha' : function(v){
8945             return alpha.test(v);
8946         },
8947         /**
8948          * The error text to display when the alpha validation function returns false
8949          * @type String
8950          */
8951         'alphaText' : 'This field should only contain letters and _',
8952         /**
8953          * The keystroke filter mask to be applied on alpha input
8954          * @type RegExp
8955          */
8956         'alphaMask' : /[a-z_]/i,
8957
8958         /**
8959          * The function used to validate alphanumeric values
8960          * @param {String} value The value
8961          */
8962         'alphanum' : function(v){
8963             return alphanum.test(v);
8964         },
8965         /**
8966          * The error text to display when the alphanumeric validation function returns false
8967          * @type String
8968          */
8969         'alphanumText' : 'This field should only contain letters, numbers and _',
8970         /**
8971          * The keystroke filter mask to be applied on alphanumeric input
8972          * @type RegExp
8973          */
8974         'alphanumMask' : /[a-z0-9_]/i
8975     };
8976 }();/*
8977  * - LGPL
8978  *
8979  * Input
8980  * 
8981  */
8982
8983 /**
8984  * @class Roo.bootstrap.Input
8985  * @extends Roo.bootstrap.Component
8986  * Bootstrap Input class
8987  * @cfg {Boolean} disabled is it disabled
8988  * @cfg {String} inputType button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text
8989  * @cfg {String} name name of the input
8990  * @cfg {string} fieldLabel - the label associated
8991  * @cfg {string} placeholder - placeholder to put in text.
8992  * @cfg {string}  before - input group add on before
8993  * @cfg {string} after - input group add on after
8994  * @cfg {string} size - (lg|sm) or leave empty..
8995  * @cfg {Number} xs colspan out of 12 for mobile-sized screens
8996  * @cfg {Number} sm colspan out of 12 for tablet-sized screens
8997  * @cfg {Number} md colspan out of 12 for computer-sized screens
8998  * @cfg {Number} lg colspan out of 12 for large computer-sized screens
8999  * @cfg {string} value default value of the input
9000  * @cfg {Number} labelWidth set the width of label 
9001  * @cfg {Number} labellg set the width of label (1-12)
9002  * @cfg {Number} labelmd set the width of label (1-12)
9003  * @cfg {Number} labelsm set the width of label (1-12)
9004  * @cfg {Number} labelxs set the width of label (1-12)
9005  * @cfg {String} labelAlign (top|left)
9006  * @cfg {Boolean} readOnly Specifies that the field should be read-only
9007  * @cfg {String} autocomplete - default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en
9008  * @cfg {String} indicatorpos (left|right) default left
9009  * @cfg {String} capture (user|camera) use for file input only. (default empty)
9010  * @cfg {String} accept (image|video|audio) use for file input only. (default empty)
9011
9012  * @cfg {String} align (left|center|right) Default left
9013  * @cfg {Boolean} forceFeedback (true|false) Default false
9014  * 
9015  * @constructor
9016  * Create a new Input
9017  * @param {Object} config The config object
9018  */
9019
9020 Roo.bootstrap.Input = function(config){
9021     
9022     Roo.bootstrap.Input.superclass.constructor.call(this, config);
9023     
9024     this.addEvents({
9025         /**
9026          * @event focus
9027          * Fires when this field receives input focus.
9028          * @param {Roo.form.Field} this
9029          */
9030         focus : true,
9031         /**
9032          * @event blur
9033          * Fires when this field loses input focus.
9034          * @param {Roo.form.Field} this
9035          */
9036         blur : true,
9037         /**
9038          * @event specialkey
9039          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
9040          * {@link Roo.EventObject#getKey} to determine which key was pressed.
9041          * @param {Roo.form.Field} this
9042          * @param {Roo.EventObject} e The event object
9043          */
9044         specialkey : true,
9045         /**
9046          * @event change
9047          * Fires just before the field blurs if the field value has changed.
9048          * @param {Roo.form.Field} this
9049          * @param {Mixed} newValue The new value
9050          * @param {Mixed} oldValue The original value
9051          */
9052         change : true,
9053         /**
9054          * @event invalid
9055          * Fires after the field has been marked as invalid.
9056          * @param {Roo.form.Field} this
9057          * @param {String} msg The validation message
9058          */
9059         invalid : true,
9060         /**
9061          * @event valid
9062          * Fires after the field has been validated with no errors.
9063          * @param {Roo.form.Field} this
9064          */
9065         valid : true,
9066          /**
9067          * @event keyup
9068          * Fires after the key up
9069          * @param {Roo.form.Field} this
9070          * @param {Roo.EventObject}  e The event Object
9071          */
9072         keyup : true
9073     });
9074 };
9075
9076 Roo.extend(Roo.bootstrap.Input, Roo.bootstrap.Component,  {
9077      /**
9078      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
9079       automatic validation (defaults to "keyup").
9080      */
9081     validationEvent : "keyup",
9082      /**
9083      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
9084      */
9085     validateOnBlur : true,
9086     /**
9087      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
9088      */
9089     validationDelay : 250,
9090      /**
9091      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
9092      */
9093     focusClass : "x-form-focus",  // not needed???
9094     
9095        
9096     /**
9097      * @cfg {String} invalidClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9098      */
9099     invalidClass : "has-warning",
9100     
9101     /**
9102      * @cfg {String} validClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9103      */
9104     validClass : "has-success",
9105     
9106     /**
9107      * @cfg {Boolean} hasFeedback (true|false) default true
9108      */
9109     hasFeedback : true,
9110     
9111     /**
9112      * @cfg {String} invalidFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9113      */
9114     invalidFeedbackClass : "glyphicon-warning-sign",
9115     
9116     /**
9117      * @cfg {String} validFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9118      */
9119     validFeedbackClass : "glyphicon-ok",
9120     
9121     /**
9122      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
9123      */
9124     selectOnFocus : false,
9125     
9126      /**
9127      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
9128      */
9129     maskRe : null,
9130        /**
9131      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
9132      */
9133     vtype : null,
9134     
9135       /**
9136      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
9137      */
9138     disableKeyFilter : false,
9139     
9140        /**
9141      * @cfg {Boolean} disabled True to disable the field (defaults to false).
9142      */
9143     disabled : false,
9144      /**
9145      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
9146      */
9147     allowBlank : true,
9148     /**
9149      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
9150      */
9151     blankText : "Please complete this mandatory field",
9152     
9153      /**
9154      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
9155      */
9156     minLength : 0,
9157     /**
9158      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
9159      */
9160     maxLength : Number.MAX_VALUE,
9161     /**
9162      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
9163      */
9164     minLengthText : "The minimum length for this field is {0}",
9165     /**
9166      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
9167      */
9168     maxLengthText : "The maximum length for this field is {0}",
9169   
9170     
9171     /**
9172      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
9173      * If available, this function will be called only after the basic validators all return true, and will be passed the
9174      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
9175      */
9176     validator : null,
9177     /**
9178      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
9179      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
9180      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
9181      */
9182     regex : null,
9183     /**
9184      * @cfg {String} regexText -- Depricated - use Invalid Text
9185      */
9186     regexText : "",
9187     
9188     /**
9189      * @cfg {String} invalidText The error text to display if {@link #validator} test fails during validation (defaults to "")
9190      */
9191     invalidText : "",
9192     
9193     
9194     
9195     autocomplete: false,
9196     
9197     
9198     fieldLabel : '',
9199     inputType : 'text',
9200     
9201     name : false,
9202     placeholder: false,
9203     before : false,
9204     after : false,
9205     size : false,
9206     hasFocus : false,
9207     preventMark: false,
9208     isFormField : true,
9209     value : '',
9210     labelWidth : 2,
9211     labelAlign : false,
9212     readOnly : false,
9213     align : false,
9214     formatedValue : false,
9215     forceFeedback : false,
9216     
9217     indicatorpos : 'left',
9218     
9219     labellg : 0,
9220     labelmd : 0,
9221     labelsm : 0,
9222     labelxs : 0,
9223     
9224     capture : '',
9225     accept : '',
9226     
9227     parentLabelAlign : function()
9228     {
9229         var parent = this;
9230         while (parent.parent()) {
9231             parent = parent.parent();
9232             if (typeof(parent.labelAlign) !='undefined') {
9233                 return parent.labelAlign;
9234             }
9235         }
9236         return 'left';
9237         
9238     },
9239     
9240     getAutoCreate : function()
9241     {
9242         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
9243         
9244         var id = Roo.id();
9245         
9246         var cfg = {};
9247         
9248         if(this.inputType != 'hidden'){
9249             cfg.cls = 'form-group' //input-group
9250         }
9251         
9252         var input =  {
9253             tag: 'input',
9254             id : id,
9255             type : this.inputType,
9256             value : this.value,
9257             cls : 'form-control',
9258             placeholder : this.placeholder || '',
9259             autocomplete : this.autocomplete || 'new-password'
9260         };
9261         
9262         if(this.capture.length){
9263             input.capture = this.capture;
9264         }
9265         
9266         if(this.accept.length){
9267             input.accept = this.accept + "/*";
9268         }
9269         
9270         if(this.align){
9271             input.style = (typeof(input.style) == 'undefined') ? ('text-align:' + this.align) : (input.style + 'text-align:' + this.align);
9272         }
9273         
9274         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
9275             input.maxLength = this.maxLength;
9276         }
9277         
9278         if (this.disabled) {
9279             input.disabled=true;
9280         }
9281         
9282         if (this.readOnly) {
9283             input.readonly=true;
9284         }
9285         
9286         if (this.name) {
9287             input.name = this.name;
9288         }
9289         
9290         if (this.size) {
9291             input.cls += ' input-' + this.size;
9292         }
9293         
9294         var settings=this;
9295         ['xs','sm','md','lg'].map(function(size){
9296             if (settings[size]) {
9297                 cfg.cls += ' col-' + size + '-' + settings[size];
9298             }
9299         });
9300         
9301         var inputblock = input;
9302         
9303         var feedback = {
9304             tag: 'span',
9305             cls: 'glyphicon form-control-feedback'
9306         };
9307             
9308         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9309             
9310             inputblock = {
9311                 cls : 'has-feedback',
9312                 cn :  [
9313                     input,
9314                     feedback
9315                 ] 
9316             };  
9317         }
9318         
9319         if (this.before || this.after) {
9320             
9321             inputblock = {
9322                 cls : 'input-group',
9323                 cn :  [] 
9324             };
9325             
9326             if (this.before && typeof(this.before) == 'string') {
9327                 
9328                 inputblock.cn.push({
9329                     tag :'span',
9330                     cls : 'roo-input-before input-group-addon input-group-prepend input-group-text',
9331                     html : this.before
9332                 });
9333             }
9334             if (this.before && typeof(this.before) == 'object') {
9335                 this.before = Roo.factory(this.before);
9336                 
9337                 inputblock.cn.push({
9338                     tag :'span',
9339                     cls : 'roo-input-before input-group-prepend input-group-text input-group-' +
9340                         (this.before.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9341                 });
9342             }
9343             
9344             inputblock.cn.push(input);
9345             
9346             if (this.after && typeof(this.after) == 'string') {
9347                 inputblock.cn.push({
9348                     tag :'span',
9349                     cls : 'roo-input-after input-group-append input-group-text input-group-addon',
9350                     html : this.after
9351                 });
9352             }
9353             if (this.after && typeof(this.after) == 'object') {
9354                 this.after = Roo.factory(this.after);
9355                 
9356                 inputblock.cn.push({
9357                     tag :'span',
9358                     cls : 'roo-input-after input-group-append input-group-text input-group-' +
9359                         (this.after.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9360                 });
9361             }
9362             
9363             if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9364                 inputblock.cls += ' has-feedback';
9365                 inputblock.cn.push(feedback);
9366             }
9367         };
9368         var indicator = {
9369             tag : 'i',
9370             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
9371             tooltip : 'This field is required'
9372         };
9373         if (Roo.bootstrap.version == 4) {
9374             indicator = {
9375                 tag : 'i',
9376                 style : 'display-none'
9377             };
9378         }
9379         if (align ==='left' && this.fieldLabel.length) {
9380             
9381             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
9382             
9383             cfg.cn = [
9384                 indicator,
9385                 {
9386                     tag: 'label',
9387                     'for' :  id,
9388                     cls : 'control-label col-form-label',
9389                     html : this.fieldLabel
9390
9391                 },
9392                 {
9393                     cls : "", 
9394                     cn: [
9395                         inputblock
9396                     ]
9397                 }
9398             ];
9399             
9400             var labelCfg = cfg.cn[1];
9401             var contentCfg = cfg.cn[2];
9402             
9403             if(this.indicatorpos == 'right'){
9404                 cfg.cn = [
9405                     {
9406                         tag: 'label',
9407                         'for' :  id,
9408                         cls : 'control-label col-form-label',
9409                         cn : [
9410                             {
9411                                 tag : 'span',
9412                                 html : this.fieldLabel
9413                             },
9414                             indicator
9415                         ]
9416                     },
9417                     {
9418                         cls : "",
9419                         cn: [
9420                             inputblock
9421                         ]
9422                     }
9423
9424                 ];
9425                 
9426                 labelCfg = cfg.cn[0];
9427                 contentCfg = cfg.cn[1];
9428             
9429             }
9430             
9431             if(this.labelWidth > 12){
9432                 labelCfg.style = "width: " + this.labelWidth + 'px';
9433             }
9434             
9435             if(this.labelWidth < 13 && this.labelmd == 0){
9436                 this.labelmd = this.labelWidth;
9437             }
9438             
9439             if(this.labellg > 0){
9440                 labelCfg.cls += ' col-lg-' + this.labellg;
9441                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
9442             }
9443             
9444             if(this.labelmd > 0){
9445                 labelCfg.cls += ' col-md-' + this.labelmd;
9446                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
9447             }
9448             
9449             if(this.labelsm > 0){
9450                 labelCfg.cls += ' col-sm-' + this.labelsm;
9451                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
9452             }
9453             
9454             if(this.labelxs > 0){
9455                 labelCfg.cls += ' col-xs-' + this.labelxs;
9456                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
9457             }
9458             
9459             
9460         } else if ( this.fieldLabel.length) {
9461                 
9462             cfg.cn = [
9463                 {
9464                     tag : 'i',
9465                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
9466                     tooltip : 'This field is required'
9467                 },
9468                 {
9469                     tag: 'label',
9470                    //cls : 'input-group-addon',
9471                     html : this.fieldLabel
9472
9473                 },
9474
9475                inputblock
9476
9477            ];
9478            
9479            if(this.indicatorpos == 'right'){
9480                 
9481                 cfg.cn = [
9482                     {
9483                         tag: 'label',
9484                        //cls : 'input-group-addon',
9485                         html : this.fieldLabel
9486
9487                     },
9488                     {
9489                         tag : 'i',
9490                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
9491                         tooltip : 'This field is required'
9492                     },
9493
9494                    inputblock
9495
9496                ];
9497
9498             }
9499
9500         } else {
9501             
9502             cfg.cn = [
9503
9504                     inputblock
9505
9506             ];
9507                 
9508                 
9509         };
9510         
9511         if (this.parentType === 'Navbar' &&  this.parent().bar) {
9512            cfg.cls += ' navbar-form';
9513         }
9514         
9515         if (this.parentType === 'NavGroup' && !(Roo.bootstrap.version == 4 && this.parent().form)) {
9516             // on BS4 we do this only if not form 
9517             cfg.cls += ' navbar-form';
9518             cfg.tag = 'li';
9519         }
9520         
9521         return cfg;
9522         
9523     },
9524     /**
9525      * return the real input element.
9526      */
9527     inputEl: function ()
9528     {
9529         return this.el.select('input.form-control',true).first();
9530     },
9531     
9532     tooltipEl : function()
9533     {
9534         return this.inputEl();
9535     },
9536     
9537     indicatorEl : function()
9538     {
9539         if (Roo.bootstrap.version == 4) {
9540             return false; // not enabled in v4 yet.
9541         }
9542         
9543         var indicator = this.el.select('i.roo-required-indicator',true).first();
9544         
9545         if(!indicator){
9546             return false;
9547         }
9548         
9549         return indicator;
9550         
9551     },
9552     
9553     setDisabled : function(v)
9554     {
9555         var i  = this.inputEl().dom;
9556         if (!v) {
9557             i.removeAttribute('disabled');
9558             return;
9559             
9560         }
9561         i.setAttribute('disabled','true');
9562     },
9563     initEvents : function()
9564     {
9565           
9566         this.inputEl().on("keydown" , this.fireKey,  this);
9567         this.inputEl().on("focus", this.onFocus,  this);
9568         this.inputEl().on("blur", this.onBlur,  this);
9569         
9570         this.inputEl().relayEvent('keyup', this);
9571         
9572         this.indicator = this.indicatorEl();
9573         
9574         if(this.indicator){
9575             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible'); // changed from invisible??? - 
9576         }
9577  
9578         // reference to original value for reset
9579         this.originalValue = this.getValue();
9580         //Roo.form.TextField.superclass.initEvents.call(this);
9581         if(this.validationEvent == 'keyup'){
9582             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
9583             this.inputEl().on('keyup', this.filterValidation, this);
9584         }
9585         else if(this.validationEvent !== false){
9586             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
9587         }
9588         
9589         if(this.selectOnFocus){
9590             this.on("focus", this.preFocus, this);
9591             
9592         }
9593         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
9594             this.inputEl().on("keypress", this.filterKeys, this);
9595         } else {
9596             this.inputEl().relayEvent('keypress', this);
9597         }
9598        /* if(this.grow){
9599             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
9600             this.el.on("click", this.autoSize,  this);
9601         }
9602         */
9603         if(this.inputEl().is('input[type=password]') && Roo.isSafari){
9604             this.inputEl().on('keydown', this.SafariOnKeyDown, this);
9605         }
9606         
9607         if (typeof(this.before) == 'object') {
9608             this.before.render(this.el.select('.roo-input-before',true).first());
9609         }
9610         if (typeof(this.after) == 'object') {
9611             this.after.render(this.el.select('.roo-input-after',true).first());
9612         }
9613         
9614         this.inputEl().on('change', this.onChange, this);
9615         
9616     },
9617     filterValidation : function(e){
9618         if(!e.isNavKeyPress()){
9619             this.validationTask.delay(this.validationDelay);
9620         }
9621     },
9622      /**
9623      * Validates the field value
9624      * @return {Boolean} True if the value is valid, else false
9625      */
9626     validate : function(){
9627         //if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
9628         if(this.disabled || this.validateValue(this.getRawValue())){
9629             this.markValid();
9630             return true;
9631         }
9632         
9633         this.markInvalid();
9634         return false;
9635     },
9636     
9637     
9638     /**
9639      * Validates a value according to the field's validation rules and marks the field as invalid
9640      * if the validation fails
9641      * @param {Mixed} value The value to validate
9642      * @return {Boolean} True if the value is valid, else false
9643      */
9644     validateValue : function(value)
9645     {
9646         if(this.getVisibilityEl().hasClass('hidden')){
9647             return true;
9648         }
9649         
9650         if(value.length < 1)  { // if it's blank
9651             if(this.allowBlank){
9652                 return true;
9653             }
9654             return false;
9655         }
9656         
9657         if(value.length < this.minLength){
9658             return false;
9659         }
9660         if(value.length > this.maxLength){
9661             return false;
9662         }
9663         if(this.vtype){
9664             var vt = Roo.form.VTypes;
9665             if(!vt[this.vtype](value, this)){
9666                 return false;
9667             }
9668         }
9669         if(typeof this.validator == "function"){
9670             var msg = this.validator(value);
9671             if(msg !== true){
9672                 return false;
9673             }
9674             if (typeof(msg) == 'string') {
9675                 this.invalidText = msg;
9676             }
9677         }
9678         
9679         if(this.regex && !this.regex.test(value)){
9680             return false;
9681         }
9682         
9683         return true;
9684     },
9685     
9686      // private
9687     fireKey : function(e){
9688         //Roo.log('field ' + e.getKey());
9689         if(e.isNavKeyPress()){
9690             this.fireEvent("specialkey", this, e);
9691         }
9692     },
9693     focus : function (selectText){
9694         if(this.rendered){
9695             this.inputEl().focus();
9696             if(selectText === true){
9697                 this.inputEl().dom.select();
9698             }
9699         }
9700         return this;
9701     } ,
9702     
9703     onFocus : function(){
9704         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9705            // this.el.addClass(this.focusClass);
9706         }
9707         if(!this.hasFocus){
9708             this.hasFocus = true;
9709             this.startValue = this.getValue();
9710             this.fireEvent("focus", this);
9711         }
9712     },
9713     
9714     beforeBlur : Roo.emptyFn,
9715
9716     
9717     // private
9718     onBlur : function(){
9719         this.beforeBlur();
9720         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9721             //this.el.removeClass(this.focusClass);
9722         }
9723         this.hasFocus = false;
9724         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
9725             this.validate();
9726         }
9727         var v = this.getValue();
9728         if(String(v) !== String(this.startValue)){
9729             this.fireEvent('change', this, v, this.startValue);
9730         }
9731         this.fireEvent("blur", this);
9732     },
9733     
9734     onChange : function(e)
9735     {
9736         var v = this.getValue();
9737         if(String(v) !== String(this.startValue)){
9738             this.fireEvent('change', this, v, this.startValue);
9739         }
9740         
9741     },
9742     
9743     /**
9744      * Resets the current field value to the originally loaded value and clears any validation messages
9745      */
9746     reset : function(){
9747         this.setValue(this.originalValue);
9748         this.validate();
9749     },
9750      /**
9751      * Returns the name of the field
9752      * @return {Mixed} name The name field
9753      */
9754     getName: function(){
9755         return this.name;
9756     },
9757      /**
9758      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
9759      * @return {Mixed} value The field value
9760      */
9761     getValue : function(){
9762         
9763         var v = this.inputEl().getValue();
9764         
9765         return v;
9766     },
9767     /**
9768      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
9769      * @return {Mixed} value The field value
9770      */
9771     getRawValue : function(){
9772         var v = this.inputEl().getValue();
9773         
9774         return v;
9775     },
9776     
9777     /**
9778      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
9779      * @param {Mixed} value The value to set
9780      */
9781     setRawValue : function(v){
9782         return this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9783     },
9784     
9785     selectText : function(start, end){
9786         var v = this.getRawValue();
9787         if(v.length > 0){
9788             start = start === undefined ? 0 : start;
9789             end = end === undefined ? v.length : end;
9790             var d = this.inputEl().dom;
9791             if(d.setSelectionRange){
9792                 d.setSelectionRange(start, end);
9793             }else if(d.createTextRange){
9794                 var range = d.createTextRange();
9795                 range.moveStart("character", start);
9796                 range.moveEnd("character", v.length-end);
9797                 range.select();
9798             }
9799         }
9800     },
9801     
9802     /**
9803      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
9804      * @param {Mixed} value The value to set
9805      */
9806     setValue : function(v){
9807         this.value = v;
9808         if(this.rendered){
9809             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9810             this.validate();
9811         }
9812     },
9813     
9814     /*
9815     processValue : function(value){
9816         if(this.stripCharsRe){
9817             var newValue = value.replace(this.stripCharsRe, '');
9818             if(newValue !== value){
9819                 this.setRawValue(newValue);
9820                 return newValue;
9821             }
9822         }
9823         return value;
9824     },
9825   */
9826     preFocus : function(){
9827         
9828         if(this.selectOnFocus){
9829             this.inputEl().dom.select();
9830         }
9831     },
9832     filterKeys : function(e){
9833         var k = e.getKey();
9834         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
9835             return;
9836         }
9837         var c = e.getCharCode(), cc = String.fromCharCode(c);
9838         if(Roo.isIE && (e.isSpecialKey() || !cc)){
9839             return;
9840         }
9841         if(!this.maskRe.test(cc)){
9842             e.stopEvent();
9843         }
9844     },
9845      /**
9846      * Clear any invalid styles/messages for this field
9847      */
9848     clearInvalid : function(){
9849         
9850         if(!this.el || this.preventMark){ // not rendered
9851             return;
9852         }
9853         
9854         
9855         this.el.removeClass([this.invalidClass, 'is-invalid']);
9856         
9857         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9858             
9859             var feedback = this.el.select('.form-control-feedback', true).first();
9860             
9861             if(feedback){
9862                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
9863             }
9864             
9865         }
9866         
9867         if(this.indicator){
9868             this.indicator.removeClass('visible');
9869             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9870         }
9871         
9872         this.fireEvent('valid', this);
9873     },
9874     
9875      /**
9876      * Mark this field as valid
9877      */
9878     markValid : function()
9879     {
9880         if(!this.el  || this.preventMark){ // not rendered...
9881             return;
9882         }
9883         
9884         this.el.removeClass([this.invalidClass, this.validClass]);
9885         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9886
9887         var feedback = this.el.select('.form-control-feedback', true).first();
9888             
9889         if(feedback){
9890             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9891         }
9892         
9893         if(this.indicator){
9894             this.indicator.removeClass('visible');
9895             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9896         }
9897         
9898         if(this.disabled){
9899             return;
9900         }
9901         
9902         if(this.allowBlank && !this.getRawValue().length){
9903             return;
9904         }
9905         if (Roo.bootstrap.version == 3) {
9906             this.el.addClass(this.validClass);
9907         } else {
9908             this.inputEl().addClass('is-valid');
9909         }
9910
9911         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
9912             
9913             var feedback = this.el.select('.form-control-feedback', true).first();
9914             
9915             if(feedback){
9916                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9917                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
9918             }
9919             
9920         }
9921         
9922         this.fireEvent('valid', this);
9923     },
9924     
9925      /**
9926      * Mark this field as invalid
9927      * @param {String} msg The validation message
9928      */
9929     markInvalid : function(msg)
9930     {
9931         if(!this.el  || this.preventMark){ // not rendered
9932             return;
9933         }
9934         
9935         this.el.removeClass([this.invalidClass, this.validClass]);
9936         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9937         
9938         var feedback = this.el.select('.form-control-feedback', true).first();
9939             
9940         if(feedback){
9941             this.el.select('.form-control-feedback', true).first().removeClass(
9942                     [this.invalidFeedbackClass, this.validFeedbackClass]);
9943         }
9944
9945         if(this.disabled){
9946             return;
9947         }
9948         
9949         if(this.allowBlank && !this.getRawValue().length){
9950             return;
9951         }
9952         
9953         if(this.indicator){
9954             this.indicator.removeClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9955             this.indicator.addClass('visible');
9956         }
9957         if (Roo.bootstrap.version == 3) {
9958             this.el.addClass(this.invalidClass);
9959         } else {
9960             this.inputEl().addClass('is-invalid');
9961         }
9962         
9963         
9964         
9965         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9966             
9967             var feedback = this.el.select('.form-control-feedback', true).first();
9968             
9969             if(feedback){
9970                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9971                 
9972                 if(this.getValue().length || this.forceFeedback){
9973                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
9974                 }
9975                 
9976             }
9977             
9978         }
9979         
9980         this.fireEvent('invalid', this, msg);
9981     },
9982     // private
9983     SafariOnKeyDown : function(event)
9984     {
9985         // this is a workaround for a password hang bug on chrome/ webkit.
9986         if (this.inputEl().dom.type != 'password') {
9987             return;
9988         }
9989         
9990         var isSelectAll = false;
9991         
9992         if(this.inputEl().dom.selectionEnd > 0){
9993             isSelectAll = (this.inputEl().dom.selectionEnd - this.inputEl().dom.selectionStart - this.getValue().length == 0) ? true : false;
9994         }
9995         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
9996             event.preventDefault();
9997             this.setValue('');
9998             return;
9999         }
10000         
10001         if(isSelectAll  && event.getCharCode() > 31 && !event.ctrlKey) { // not backspace and delete key (or ctrl-v)
10002             
10003             event.preventDefault();
10004             // this is very hacky as keydown always get's upper case.
10005             //
10006             var cc = String.fromCharCode(event.getCharCode());
10007             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
10008             
10009         }
10010     },
10011     adjustWidth : function(tag, w){
10012         tag = tag.toLowerCase();
10013         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
10014             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
10015                 if(tag == 'input'){
10016                     return w + 2;
10017                 }
10018                 if(tag == 'textarea'){
10019                     return w-2;
10020                 }
10021             }else if(Roo.isOpera){
10022                 if(tag == 'input'){
10023                     return w + 2;
10024                 }
10025                 if(tag == 'textarea'){
10026                     return w-2;
10027                 }
10028             }
10029         }
10030         return w;
10031     },
10032     
10033     setFieldLabel : function(v)
10034     {
10035         if(!this.rendered){
10036             return;
10037         }
10038         
10039         if(this.indicatorEl()){
10040             var ar = this.el.select('label > span',true);
10041             
10042             if (ar.elements.length) {
10043                 this.el.select('label > span',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10044                 this.fieldLabel = v;
10045                 return;
10046             }
10047             
10048             var br = this.el.select('label',true);
10049             
10050             if(br.elements.length) {
10051                 this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10052                 this.fieldLabel = v;
10053                 return;
10054             }
10055             
10056             Roo.log('Cannot Found any of label > span || label in input');
10057             return;
10058         }
10059         
10060         this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10061         this.fieldLabel = v;
10062         
10063         
10064     }
10065 });
10066
10067  
10068 /*
10069  * - LGPL
10070  *
10071  * Input
10072  * 
10073  */
10074
10075 /**
10076  * @class Roo.bootstrap.TextArea
10077  * @extends Roo.bootstrap.Input
10078  * Bootstrap TextArea class
10079  * @cfg {Number} cols Specifies the visible width of a text area
10080  * @cfg {Number} rows Specifies the visible number of lines in a text area
10081  * @cfg {string} wrap (soft|hard)Specifies how the text in a text area is to be wrapped when submitted in a form
10082  * @cfg {string} resize (none|both|horizontal|vertical|inherit|initial)
10083  * @cfg {string} html text
10084  * 
10085  * @constructor
10086  * Create a new TextArea
10087  * @param {Object} config The config object
10088  */
10089
10090 Roo.bootstrap.TextArea = function(config){
10091     Roo.bootstrap.TextArea.superclass.constructor.call(this, config);
10092    
10093 };
10094
10095 Roo.extend(Roo.bootstrap.TextArea, Roo.bootstrap.Input,  {
10096      
10097     cols : false,
10098     rows : 5,
10099     readOnly : false,
10100     warp : 'soft',
10101     resize : false,
10102     value: false,
10103     html: false,
10104     
10105     getAutoCreate : function(){
10106         
10107         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
10108         
10109         var id = Roo.id();
10110         
10111         var cfg = {};
10112         
10113         if(this.inputType != 'hidden'){
10114             cfg.cls = 'form-group' //input-group
10115         }
10116         
10117         var input =  {
10118             tag: 'textarea',
10119             id : id,
10120             warp : this.warp,
10121             rows : this.rows,
10122             value : this.value || '',
10123             html: this.html || '',
10124             cls : 'form-control',
10125             placeholder : this.placeholder || '' 
10126             
10127         };
10128         
10129         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
10130             input.maxLength = this.maxLength;
10131         }
10132         
10133         if(this.resize){
10134             input.style = (typeof(input.style) == 'undefined') ? 'resize:' + this.resize : input.style + 'resize:' + this.resize;
10135         }
10136         
10137         if(this.cols){
10138             input.cols = this.cols;
10139         }
10140         
10141         if (this.readOnly) {
10142             input.readonly = true;
10143         }
10144         
10145         if (this.name) {
10146             input.name = this.name;
10147         }
10148         
10149         if (this.size) {
10150             input.cls = (typeof(input.cls) == 'undefined') ? 'input-' + this.size : input.cls + ' input-' + this.size;
10151         }
10152         
10153         var settings=this;
10154         ['xs','sm','md','lg'].map(function(size){
10155             if (settings[size]) {
10156                 cfg.cls += ' col-' + size + '-' + settings[size];
10157             }
10158         });
10159         
10160         var inputblock = input;
10161         
10162         if(this.hasFeedback && !this.allowBlank){
10163             
10164             var feedback = {
10165                 tag: 'span',
10166                 cls: 'glyphicon form-control-feedback'
10167             };
10168
10169             inputblock = {
10170                 cls : 'has-feedback',
10171                 cn :  [
10172                     input,
10173                     feedback
10174                 ] 
10175             };  
10176         }
10177         
10178         
10179         if (this.before || this.after) {
10180             
10181             inputblock = {
10182                 cls : 'input-group',
10183                 cn :  [] 
10184             };
10185             if (this.before) {
10186                 inputblock.cn.push({
10187                     tag :'span',
10188                     cls : 'input-group-addon',
10189                     html : this.before
10190                 });
10191             }
10192             
10193             inputblock.cn.push(input);
10194             
10195             if(this.hasFeedback && !this.allowBlank){
10196                 inputblock.cls += ' has-feedback';
10197                 inputblock.cn.push(feedback);
10198             }
10199             
10200             if (this.after) {
10201                 inputblock.cn.push({
10202                     tag :'span',
10203                     cls : 'input-group-addon',
10204                     html : this.after
10205                 });
10206             }
10207             
10208         }
10209         
10210         if (align ==='left' && this.fieldLabel.length) {
10211             cfg.cn = [
10212                 {
10213                     tag: 'label',
10214                     'for' :  id,
10215                     cls : 'control-label',
10216                     html : this.fieldLabel
10217                 },
10218                 {
10219                     cls : "",
10220                     cn: [
10221                         inputblock
10222                     ]
10223                 }
10224
10225             ];
10226             
10227             if(this.labelWidth > 12){
10228                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
10229             }
10230
10231             if(this.labelWidth < 13 && this.labelmd == 0){
10232                 this.labelmd = this.labelWidth;
10233             }
10234
10235             if(this.labellg > 0){
10236                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
10237                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
10238             }
10239
10240             if(this.labelmd > 0){
10241                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
10242                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
10243             }
10244
10245             if(this.labelsm > 0){
10246                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
10247                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
10248             }
10249
10250             if(this.labelxs > 0){
10251                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
10252                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
10253             }
10254             
10255         } else if ( this.fieldLabel.length) {
10256             cfg.cn = [
10257
10258                {
10259                    tag: 'label',
10260                    //cls : 'input-group-addon',
10261                    html : this.fieldLabel
10262
10263                },
10264
10265                inputblock
10266
10267            ];
10268
10269         } else {
10270
10271             cfg.cn = [
10272
10273                 inputblock
10274
10275             ];
10276                 
10277         }
10278         
10279         if (this.disabled) {
10280             input.disabled=true;
10281         }
10282         
10283         return cfg;
10284         
10285     },
10286     /**
10287      * return the real textarea element.
10288      */
10289     inputEl: function ()
10290     {
10291         return this.el.select('textarea.form-control',true).first();
10292     },
10293     
10294     /**
10295      * Clear any invalid styles/messages for this field
10296      */
10297     clearInvalid : function()
10298     {
10299         
10300         if(!this.el || this.preventMark){ // not rendered
10301             return;
10302         }
10303         
10304         var label = this.el.select('label', true).first();
10305         var icon = this.el.select('i.fa-star', true).first();
10306         
10307         if(label && icon){
10308             icon.remove();
10309         }
10310         this.el.removeClass( this.validClass);
10311         this.inputEl().removeClass('is-invalid');
10312          
10313         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10314             
10315             var feedback = this.el.select('.form-control-feedback', true).first();
10316             
10317             if(feedback){
10318                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
10319             }
10320             
10321         }
10322         
10323         this.fireEvent('valid', this);
10324     },
10325     
10326      /**
10327      * Mark this field as valid
10328      */
10329     markValid : function()
10330     {
10331         if(!this.el  || this.preventMark){ // not rendered
10332             return;
10333         }
10334         
10335         this.el.removeClass([this.invalidClass, this.validClass]);
10336         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10337         
10338         var feedback = this.el.select('.form-control-feedback', true).first();
10339             
10340         if(feedback){
10341             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10342         }
10343
10344         if(this.disabled || this.allowBlank){
10345             return;
10346         }
10347         
10348         var label = this.el.select('label', true).first();
10349         var icon = this.el.select('i.fa-star', true).first();
10350         
10351         if(label && icon){
10352             icon.remove();
10353         }
10354         if (Roo.bootstrap.version == 3) {
10355             this.el.addClass(this.validClass);
10356         } else {
10357             this.inputEl().addClass('is-valid');
10358         }
10359         
10360         
10361         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
10362             
10363             var feedback = this.el.select('.form-control-feedback', true).first();
10364             
10365             if(feedback){
10366                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10367                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
10368             }
10369             
10370         }
10371         
10372         this.fireEvent('valid', this);
10373     },
10374     
10375      /**
10376      * Mark this field as invalid
10377      * @param {String} msg The validation message
10378      */
10379     markInvalid : function(msg)
10380     {
10381         if(!this.el  || this.preventMark){ // not rendered
10382             return;
10383         }
10384         
10385         this.el.removeClass([this.invalidClass, this.validClass]);
10386         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10387         
10388         var feedback = this.el.select('.form-control-feedback', true).first();
10389             
10390         if(feedback){
10391             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10392         }
10393
10394         if(this.disabled || this.allowBlank){
10395             return;
10396         }
10397         
10398         var label = this.el.select('label', true).first();
10399         var icon = this.el.select('i.fa-star', true).first();
10400         
10401         if(!this.getValue().length && label && !icon){
10402             this.el.createChild({
10403                 tag : 'i',
10404                 cls : 'text-danger fa fa-lg fa-star',
10405                 tooltip : 'This field is required',
10406                 style : 'margin-right:5px;'
10407             }, label, true);
10408         }
10409         
10410         if (Roo.bootstrap.version == 3) {
10411             this.el.addClass(this.invalidClass);
10412         } else {
10413             this.inputEl().addClass('is-invalid');
10414         }
10415         
10416         // fixme ... this may be depricated need to test..
10417         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10418             
10419             var feedback = this.el.select('.form-control-feedback', true).first();
10420             
10421             if(feedback){
10422                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10423                 
10424                 if(this.getValue().length || this.forceFeedback){
10425                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
10426                 }
10427                 
10428             }
10429             
10430         }
10431         
10432         this.fireEvent('invalid', this, msg);
10433     }
10434 });
10435
10436  
10437 /*
10438  * - LGPL
10439  *
10440  * trigger field - base class for combo..
10441  * 
10442  */
10443  
10444 /**
10445  * @class Roo.bootstrap.TriggerField
10446  * @extends Roo.bootstrap.Input
10447  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
10448  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
10449  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
10450  * for which you can provide a custom implementation.  For example:
10451  * <pre><code>
10452 var trigger = new Roo.bootstrap.TriggerField();
10453 trigger.onTriggerClick = myTriggerFn;
10454 trigger.applyTo('my-field');
10455 </code></pre>
10456  *
10457  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
10458  * {@link Roo.bootstrap.DateField} and {@link Roo.bootstrap.ComboBox} are perfect examples of this.
10459  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
10460  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
10461  * @cfg {String} caret (search|calendar) BS3 only - carat fa name
10462
10463  * @constructor
10464  * Create a new TriggerField.
10465  * @param {Object} config Configuration options (valid {@Roo.bootstrap.Input} config options will also be applied
10466  * to the base TextField)
10467  */
10468 Roo.bootstrap.TriggerField = function(config){
10469     this.mimicing = false;
10470     Roo.bootstrap.TriggerField.superclass.constructor.call(this, config);
10471 };
10472
10473 Roo.extend(Roo.bootstrap.TriggerField, Roo.bootstrap.Input,  {
10474     /**
10475      * @cfg {String} triggerClass A CSS class to apply to the trigger
10476      */
10477      /**
10478      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
10479      */
10480     hideTrigger:false,
10481
10482     /**
10483      * @cfg {Boolean} removable (true|false) special filter default false
10484      */
10485     removable : false,
10486     
10487     /** @cfg {Boolean} grow @hide */
10488     /** @cfg {Number} growMin @hide */
10489     /** @cfg {Number} growMax @hide */
10490
10491     /**
10492      * @hide 
10493      * @method
10494      */
10495     autoSize: Roo.emptyFn,
10496     // private
10497     monitorTab : true,
10498     // private
10499     deferHeight : true,
10500
10501     
10502     actionMode : 'wrap',
10503     
10504     caret : false,
10505     
10506     
10507     getAutoCreate : function(){
10508        
10509         var align = this.labelAlign || this.parentLabelAlign();
10510         
10511         var id = Roo.id();
10512         
10513         var cfg = {
10514             cls: 'form-group' //input-group
10515         };
10516         
10517         
10518         var input =  {
10519             tag: 'input',
10520             id : id,
10521             type : this.inputType,
10522             cls : 'form-control',
10523             autocomplete: 'new-password',
10524             placeholder : this.placeholder || '' 
10525             
10526         };
10527         if (this.name) {
10528             input.name = this.name;
10529         }
10530         if (this.size) {
10531             input.cls += ' input-' + this.size;
10532         }
10533         
10534         if (this.disabled) {
10535             input.disabled=true;
10536         }
10537         
10538         var inputblock = input;
10539         
10540         if(this.hasFeedback && !this.allowBlank){
10541             
10542             var feedback = {
10543                 tag: 'span',
10544                 cls: 'glyphicon form-control-feedback'
10545             };
10546             
10547             if(this.removable && !this.editable && !this.tickable){
10548                 inputblock = {
10549                     cls : 'has-feedback',
10550                     cn :  [
10551                         inputblock,
10552                         {
10553                             tag: 'button',
10554                             html : 'x',
10555                             cls : 'roo-combo-removable-btn close'
10556                         },
10557                         feedback
10558                     ] 
10559                 };
10560             } else {
10561                 inputblock = {
10562                     cls : 'has-feedback',
10563                     cn :  [
10564                         inputblock,
10565                         feedback
10566                     ] 
10567                 };
10568             }
10569
10570         } else {
10571             if(this.removable && !this.editable && !this.tickable){
10572                 inputblock = {
10573                     cls : 'roo-removable',
10574                     cn :  [
10575                         inputblock,
10576                         {
10577                             tag: 'button',
10578                             html : 'x',
10579                             cls : 'roo-combo-removable-btn close'
10580                         }
10581                     ] 
10582                 };
10583             }
10584         }
10585         
10586         if (this.before || this.after) {
10587             
10588             inputblock = {
10589                 cls : 'input-group',
10590                 cn :  [] 
10591             };
10592             if (this.before) {
10593                 inputblock.cn.push({
10594                     tag :'span',
10595                     cls : 'input-group-addon input-group-prepend input-group-text',
10596                     html : this.before
10597                 });
10598             }
10599             
10600             inputblock.cn.push(input);
10601             
10602             if(this.hasFeedback && !this.allowBlank){
10603                 inputblock.cls += ' has-feedback';
10604                 inputblock.cn.push(feedback);
10605             }
10606             
10607             if (this.after) {
10608                 inputblock.cn.push({
10609                     tag :'span',
10610                     cls : 'input-group-addon input-group-append input-group-text',
10611                     html : this.after
10612                 });
10613             }
10614             
10615         };
10616         
10617       
10618         
10619         var ibwrap = inputblock;
10620         
10621         if(this.multiple){
10622             ibwrap = {
10623                 tag: 'ul',
10624                 cls: 'roo-select2-choices',
10625                 cn:[
10626                     {
10627                         tag: 'li',
10628                         cls: 'roo-select2-search-field',
10629                         cn: [
10630
10631                             inputblock
10632                         ]
10633                     }
10634                 ]
10635             };
10636                 
10637         }
10638         
10639         var combobox = {
10640             cls: 'roo-select2-container input-group',
10641             cn: [
10642                  {
10643                     tag: 'input',
10644                     type : 'hidden',
10645                     cls: 'form-hidden-field'
10646                 },
10647                 ibwrap
10648             ]
10649         };
10650         
10651         if(!this.multiple && this.showToggleBtn){
10652             
10653             var caret = {
10654                         tag: 'span',
10655                         cls: 'caret'
10656              };
10657             if (this.caret != false) {
10658                 caret = {
10659                      tag: 'i',
10660                      cls: 'fa fa-' + this.caret
10661                 };
10662                 
10663             }
10664             
10665             combobox.cn.push({
10666                 tag :'span',
10667                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
10668                 cn : [
10669                     Roo.bootstrap.version == 3 ? caret : '',
10670                     {
10671                         tag: 'span',
10672                         cls: 'combobox-clear',
10673                         cn  : [
10674                             {
10675                                 tag : 'i',
10676                                 cls: 'icon-remove'
10677                             }
10678                         ]
10679                     }
10680                 ]
10681
10682             })
10683         }
10684         
10685         if(this.multiple){
10686             combobox.cls += ' roo-select2-container-multi';
10687         }
10688          var indicator = {
10689             tag : 'i',
10690             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
10691             tooltip : 'This field is required'
10692         };
10693         if (Roo.bootstrap.version == 4) {
10694             indicator = {
10695                 tag : 'i',
10696                 style : 'display:none'
10697             };
10698         }
10699         
10700         
10701         if (align ==='left' && this.fieldLabel.length) {
10702             
10703             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
10704
10705             cfg.cn = [
10706                 indicator,
10707                 {
10708                     tag: 'label',
10709                     'for' :  id,
10710                     cls : 'control-label',
10711                     html : this.fieldLabel
10712
10713                 },
10714                 {
10715                     cls : "", 
10716                     cn: [
10717                         combobox
10718                     ]
10719                 }
10720
10721             ];
10722             
10723             var labelCfg = cfg.cn[1];
10724             var contentCfg = cfg.cn[2];
10725             
10726             if(this.indicatorpos == 'right'){
10727                 cfg.cn = [
10728                     {
10729                         tag: 'label',
10730                         'for' :  id,
10731                         cls : 'control-label',
10732                         cn : [
10733                             {
10734                                 tag : 'span',
10735                                 html : this.fieldLabel
10736                             },
10737                             indicator
10738                         ]
10739                     },
10740                     {
10741                         cls : "", 
10742                         cn: [
10743                             combobox
10744                         ]
10745                     }
10746
10747                 ];
10748                 
10749                 labelCfg = cfg.cn[0];
10750                 contentCfg = cfg.cn[1];
10751             }
10752             
10753             if(this.labelWidth > 12){
10754                 labelCfg.style = "width: " + this.labelWidth + 'px';
10755             }
10756             
10757             if(this.labelWidth < 13 && this.labelmd == 0){
10758                 this.labelmd = this.labelWidth;
10759             }
10760             
10761             if(this.labellg > 0){
10762                 labelCfg.cls += ' col-lg-' + this.labellg;
10763                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
10764             }
10765             
10766             if(this.labelmd > 0){
10767                 labelCfg.cls += ' col-md-' + this.labelmd;
10768                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
10769             }
10770             
10771             if(this.labelsm > 0){
10772                 labelCfg.cls += ' col-sm-' + this.labelsm;
10773                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
10774             }
10775             
10776             if(this.labelxs > 0){
10777                 labelCfg.cls += ' col-xs-' + this.labelxs;
10778                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
10779             }
10780             
10781         } else if ( this.fieldLabel.length) {
10782 //                Roo.log(" label");
10783             cfg.cn = [
10784                 indicator,
10785                {
10786                    tag: 'label',
10787                    //cls : 'input-group-addon',
10788                    html : this.fieldLabel
10789
10790                },
10791
10792                combobox
10793
10794             ];
10795             
10796             if(this.indicatorpos == 'right'){
10797                 
10798                 cfg.cn = [
10799                     {
10800                        tag: 'label',
10801                        cn : [
10802                            {
10803                                tag : 'span',
10804                                html : this.fieldLabel
10805                            },
10806                            indicator
10807                        ]
10808
10809                     },
10810                     combobox
10811
10812                 ];
10813
10814             }
10815
10816         } else {
10817             
10818 //                Roo.log(" no label && no align");
10819                 cfg = combobox
10820                      
10821                 
10822         }
10823         
10824         var settings=this;
10825         ['xs','sm','md','lg'].map(function(size){
10826             if (settings[size]) {
10827                 cfg.cls += ' col-' + size + '-' + settings[size];
10828             }
10829         });
10830         
10831         return cfg;
10832         
10833     },
10834     
10835     
10836     
10837     // private
10838     onResize : function(w, h){
10839 //        Roo.bootstrap.TriggerField.superclass.onResize.apply(this, arguments);
10840 //        if(typeof w == 'number'){
10841 //            var x = w - this.trigger.getWidth();
10842 //            this.inputEl().setWidth(this.adjustWidth('input', x));
10843 //            this.trigger.setStyle('left', x+'px');
10844 //        }
10845     },
10846
10847     // private
10848     adjustSize : Roo.BoxComponent.prototype.adjustSize,
10849
10850     // private
10851     getResizeEl : function(){
10852         return this.inputEl();
10853     },
10854
10855     // private
10856     getPositionEl : function(){
10857         return this.inputEl();
10858     },
10859
10860     // private
10861     alignErrorIcon : function(){
10862         this.errorIcon.alignTo(this.inputEl(), 'tl-tr', [2, 0]);
10863     },
10864
10865     // private
10866     initEvents : function(){
10867         
10868         this.createList();
10869         
10870         Roo.bootstrap.TriggerField.superclass.initEvents.call(this);
10871         //this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
10872         if(!this.multiple && this.showToggleBtn){
10873             this.trigger = this.el.select('span.dropdown-toggle',true).first();
10874             if(this.hideTrigger){
10875                 this.trigger.setDisplayed(false);
10876             }
10877             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
10878         }
10879         
10880         if(this.multiple){
10881             this.inputEl().on("click", this.onTriggerClick, this, {preventDefault:true});
10882         }
10883         
10884         if(this.removable && !this.editable && !this.tickable){
10885             var close = this.closeTriggerEl();
10886             
10887             if(close){
10888                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
10889                 close.on('click', this.removeBtnClick, this, close);
10890             }
10891         }
10892         
10893         //this.trigger.addClassOnOver('x-form-trigger-over');
10894         //this.trigger.addClassOnClick('x-form-trigger-click');
10895         
10896         //if(!this.width){
10897         //    this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
10898         //}
10899     },
10900     
10901     closeTriggerEl : function()
10902     {
10903         var close = this.el.select('.roo-combo-removable-btn', true).first();
10904         return close ? close : false;
10905     },
10906     
10907     removeBtnClick : function(e, h, el)
10908     {
10909         e.preventDefault();
10910         
10911         if(this.fireEvent("remove", this) !== false){
10912             this.reset();
10913             this.fireEvent("afterremove", this)
10914         }
10915     },
10916     
10917     createList : function()
10918     {
10919         this.list = Roo.get(document.body).createChild({
10920             tag: Roo.bootstrap.version == 4 ? 'div' : 'ul',
10921             cls: 'typeahead typeahead-long dropdown-menu',
10922             style: 'display:none'
10923         });
10924         
10925         this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';;
10926         
10927     },
10928
10929     // private
10930     initTrigger : function(){
10931        
10932     },
10933
10934     // private
10935     onDestroy : function(){
10936         if(this.trigger){
10937             this.trigger.removeAllListeners();
10938           //  this.trigger.remove();
10939         }
10940         //if(this.wrap){
10941         //    this.wrap.remove();
10942         //}
10943         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
10944     },
10945
10946     // private
10947     onFocus : function(){
10948         Roo.bootstrap.TriggerField.superclass.onFocus.call(this);
10949         /*
10950         if(!this.mimicing){
10951             this.wrap.addClass('x-trigger-wrap-focus');
10952             this.mimicing = true;
10953             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
10954             if(this.monitorTab){
10955                 this.el.on("keydown", this.checkTab, this);
10956             }
10957         }
10958         */
10959     },
10960
10961     // private
10962     checkTab : function(e){
10963         if(e.getKey() == e.TAB){
10964             this.triggerBlur();
10965         }
10966     },
10967
10968     // private
10969     onBlur : function(){
10970         // do nothing
10971     },
10972
10973     // private
10974     mimicBlur : function(e, t){
10975         /*
10976         if(!this.wrap.contains(t) && this.validateBlur()){
10977             this.triggerBlur();
10978         }
10979         */
10980     },
10981
10982     // private
10983     triggerBlur : function(){
10984         this.mimicing = false;
10985         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
10986         if(this.monitorTab){
10987             this.el.un("keydown", this.checkTab, this);
10988         }
10989         //this.wrap.removeClass('x-trigger-wrap-focus');
10990         Roo.bootstrap.TriggerField.superclass.onBlur.call(this);
10991     },
10992
10993     // private
10994     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
10995     validateBlur : function(e, t){
10996         return true;
10997     },
10998
10999     // private
11000     onDisable : function(){
11001         this.inputEl().dom.disabled = true;
11002         //Roo.bootstrap.TriggerField.superclass.onDisable.call(this);
11003         //if(this.wrap){
11004         //    this.wrap.addClass('x-item-disabled');
11005         //}
11006     },
11007
11008     // private
11009     onEnable : function(){
11010         this.inputEl().dom.disabled = false;
11011         //Roo.bootstrap.TriggerField.superclass.onEnable.call(this);
11012         //if(this.wrap){
11013         //    this.el.removeClass('x-item-disabled');
11014         //}
11015     },
11016
11017     // private
11018     onShow : function(){
11019         var ae = this.getActionEl();
11020         
11021         if(ae){
11022             ae.dom.style.display = '';
11023             ae.dom.style.visibility = 'visible';
11024         }
11025     },
11026
11027     // private
11028     
11029     onHide : function(){
11030         var ae = this.getActionEl();
11031         ae.dom.style.display = 'none';
11032     },
11033
11034     /**
11035      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
11036      * by an implementing function.
11037      * @method
11038      * @param {EventObject} e
11039      */
11040     onTriggerClick : Roo.emptyFn
11041 });
11042  /*
11043  * Based on:
11044  * Ext JS Library 1.1.1
11045  * Copyright(c) 2006-2007, Ext JS, LLC.
11046  *
11047  * Originally Released Under LGPL - original licence link has changed is not relivant.
11048  *
11049  * Fork - LGPL
11050  * <script type="text/javascript">
11051  */
11052
11053
11054 /**
11055  * @class Roo.data.SortTypes
11056  * @singleton
11057  * Defines the default sorting (casting?) comparison functions used when sorting data.
11058  */
11059 Roo.data.SortTypes = {
11060     /**
11061      * Default sort that does nothing
11062      * @param {Mixed} s The value being converted
11063      * @return {Mixed} The comparison value
11064      */
11065     none : function(s){
11066         return s;
11067     },
11068     
11069     /**
11070      * The regular expression used to strip tags
11071      * @type {RegExp}
11072      * @property
11073      */
11074     stripTagsRE : /<\/?[^>]+>/gi,
11075     
11076     /**
11077      * Strips all HTML tags to sort on text only
11078      * @param {Mixed} s The value being converted
11079      * @return {String} The comparison value
11080      */
11081     asText : function(s){
11082         return String(s).replace(this.stripTagsRE, "");
11083     },
11084     
11085     /**
11086      * Strips all HTML tags to sort on text only - Case insensitive
11087      * @param {Mixed} s The value being converted
11088      * @return {String} The comparison value
11089      */
11090     asUCText : function(s){
11091         return String(s).toUpperCase().replace(this.stripTagsRE, "");
11092     },
11093     
11094     /**
11095      * Case insensitive string
11096      * @param {Mixed} s The value being converted
11097      * @return {String} The comparison value
11098      */
11099     asUCString : function(s) {
11100         return String(s).toUpperCase();
11101     },
11102     
11103     /**
11104      * Date sorting
11105      * @param {Mixed} s The value being converted
11106      * @return {Number} The comparison value
11107      */
11108     asDate : function(s) {
11109         if(!s){
11110             return 0;
11111         }
11112         if(s instanceof Date){
11113             return s.getTime();
11114         }
11115         return Date.parse(String(s));
11116     },
11117     
11118     /**
11119      * Float sorting
11120      * @param {Mixed} s The value being converted
11121      * @return {Float} The comparison value
11122      */
11123     asFloat : function(s) {
11124         var val = parseFloat(String(s).replace(/,/g, ""));
11125         if(isNaN(val)) {
11126             val = 0;
11127         }
11128         return val;
11129     },
11130     
11131     /**
11132      * Integer sorting
11133      * @param {Mixed} s The value being converted
11134      * @return {Number} The comparison value
11135      */
11136     asInt : function(s) {
11137         var val = parseInt(String(s).replace(/,/g, ""));
11138         if(isNaN(val)) {
11139             val = 0;
11140         }
11141         return val;
11142     }
11143 };/*
11144  * Based on:
11145  * Ext JS Library 1.1.1
11146  * Copyright(c) 2006-2007, Ext JS, LLC.
11147  *
11148  * Originally Released Under LGPL - original licence link has changed is not relivant.
11149  *
11150  * Fork - LGPL
11151  * <script type="text/javascript">
11152  */
11153
11154 /**
11155 * @class Roo.data.Record
11156  * Instances of this class encapsulate both record <em>definition</em> information, and record
11157  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
11158  * to access Records cached in an {@link Roo.data.Store} object.<br>
11159  * <p>
11160  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
11161  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
11162  * objects.<br>
11163  * <p>
11164  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
11165  * @constructor
11166  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
11167  * {@link #create}. The parameters are the same.
11168  * @param {Array} data An associative Array of data values keyed by the field name.
11169  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
11170  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
11171  * not specified an integer id is generated.
11172  */
11173 Roo.data.Record = function(data, id){
11174     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
11175     this.data = data;
11176 };
11177
11178 /**
11179  * Generate a constructor for a specific record layout.
11180  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
11181  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
11182  * Each field definition object may contain the following properties: <ul>
11183  * <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,
11184  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
11185  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
11186  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
11187  * is being used, then this is a string containing the javascript expression to reference the data relative to 
11188  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
11189  * to the data item relative to the record element. If the mapping expression is the same as the field name,
11190  * this may be omitted.</p></li>
11191  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
11192  * <ul><li>auto (Default, implies no conversion)</li>
11193  * <li>string</li>
11194  * <li>int</li>
11195  * <li>float</li>
11196  * <li>boolean</li>
11197  * <li>date</li></ul></p></li>
11198  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
11199  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
11200  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
11201  * by the Reader into an object that will be stored in the Record. It is passed the
11202  * following parameters:<ul>
11203  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
11204  * </ul></p></li>
11205  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
11206  * </ul>
11207  * <br>usage:<br><pre><code>
11208 var TopicRecord = Roo.data.Record.create(
11209     {name: 'title', mapping: 'topic_title'},
11210     {name: 'author', mapping: 'username'},
11211     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
11212     {name: 'lastPost', mapping: 'post_time', type: 'date'},
11213     {name: 'lastPoster', mapping: 'user2'},
11214     {name: 'excerpt', mapping: 'post_text'}
11215 );
11216
11217 var myNewRecord = new TopicRecord({
11218     title: 'Do my job please',
11219     author: 'noobie',
11220     totalPosts: 1,
11221     lastPost: new Date(),
11222     lastPoster: 'Animal',
11223     excerpt: 'No way dude!'
11224 });
11225 myStore.add(myNewRecord);
11226 </code></pre>
11227  * @method create
11228  * @static
11229  */
11230 Roo.data.Record.create = function(o){
11231     var f = function(){
11232         f.superclass.constructor.apply(this, arguments);
11233     };
11234     Roo.extend(f, Roo.data.Record);
11235     var p = f.prototype;
11236     p.fields = new Roo.util.MixedCollection(false, function(field){
11237         return field.name;
11238     });
11239     for(var i = 0, len = o.length; i < len; i++){
11240         p.fields.add(new Roo.data.Field(o[i]));
11241     }
11242     f.getField = function(name){
11243         return p.fields.get(name);  
11244     };
11245     return f;
11246 };
11247
11248 Roo.data.Record.AUTO_ID = 1000;
11249 Roo.data.Record.EDIT = 'edit';
11250 Roo.data.Record.REJECT = 'reject';
11251 Roo.data.Record.COMMIT = 'commit';
11252
11253 Roo.data.Record.prototype = {
11254     /**
11255      * Readonly flag - true if this record has been modified.
11256      * @type Boolean
11257      */
11258     dirty : false,
11259     editing : false,
11260     error: null,
11261     modified: null,
11262
11263     // private
11264     join : function(store){
11265         this.store = store;
11266     },
11267
11268     /**
11269      * Set the named field to the specified value.
11270      * @param {String} name The name of the field to set.
11271      * @param {Object} value The value to set the field to.
11272      */
11273     set : function(name, value){
11274         if(this.data[name] == value){
11275             return;
11276         }
11277         this.dirty = true;
11278         if(!this.modified){
11279             this.modified = {};
11280         }
11281         if(typeof this.modified[name] == 'undefined'){
11282             this.modified[name] = this.data[name];
11283         }
11284         this.data[name] = value;
11285         if(!this.editing && this.store){
11286             this.store.afterEdit(this);
11287         }       
11288     },
11289
11290     /**
11291      * Get the value of the named field.
11292      * @param {String} name The name of the field to get the value of.
11293      * @return {Object} The value of the field.
11294      */
11295     get : function(name){
11296         return this.data[name]; 
11297     },
11298
11299     // private
11300     beginEdit : function(){
11301         this.editing = true;
11302         this.modified = {}; 
11303     },
11304
11305     // private
11306     cancelEdit : function(){
11307         this.editing = false;
11308         delete this.modified;
11309     },
11310
11311     // private
11312     endEdit : function(){
11313         this.editing = false;
11314         if(this.dirty && this.store){
11315             this.store.afterEdit(this);
11316         }
11317     },
11318
11319     /**
11320      * Usually called by the {@link Roo.data.Store} which owns the Record.
11321      * Rejects all changes made to the Record since either creation, or the last commit operation.
11322      * Modified fields are reverted to their original values.
11323      * <p>
11324      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11325      * of reject operations.
11326      */
11327     reject : function(){
11328         var m = this.modified;
11329         for(var n in m){
11330             if(typeof m[n] != "function"){
11331                 this.data[n] = m[n];
11332             }
11333         }
11334         this.dirty = false;
11335         delete this.modified;
11336         this.editing = false;
11337         if(this.store){
11338             this.store.afterReject(this);
11339         }
11340     },
11341
11342     /**
11343      * Usually called by the {@link Roo.data.Store} which owns the Record.
11344      * Commits all changes made to the Record since either creation, or the last commit operation.
11345      * <p>
11346      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11347      * of commit operations.
11348      */
11349     commit : function(){
11350         this.dirty = false;
11351         delete this.modified;
11352         this.editing = false;
11353         if(this.store){
11354             this.store.afterCommit(this);
11355         }
11356     },
11357
11358     // private
11359     hasError : function(){
11360         return this.error != null;
11361     },
11362
11363     // private
11364     clearError : function(){
11365         this.error = null;
11366     },
11367
11368     /**
11369      * Creates a copy of this record.
11370      * @param {String} id (optional) A new record id if you don't want to use this record's id
11371      * @return {Record}
11372      */
11373     copy : function(newId) {
11374         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
11375     }
11376 };/*
11377  * Based on:
11378  * Ext JS Library 1.1.1
11379  * Copyright(c) 2006-2007, Ext JS, LLC.
11380  *
11381  * Originally Released Under LGPL - original licence link has changed is not relivant.
11382  *
11383  * Fork - LGPL
11384  * <script type="text/javascript">
11385  */
11386
11387
11388
11389 /**
11390  * @class Roo.data.Store
11391  * @extends Roo.util.Observable
11392  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
11393  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
11394  * <p>
11395  * 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
11396  * has no knowledge of the format of the data returned by the Proxy.<br>
11397  * <p>
11398  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
11399  * instances from the data object. These records are cached and made available through accessor functions.
11400  * @constructor
11401  * Creates a new Store.
11402  * @param {Object} config A config object containing the objects needed for the Store to access data,
11403  * and read the data into Records.
11404  */
11405 Roo.data.Store = function(config){
11406     this.data = new Roo.util.MixedCollection(false);
11407     this.data.getKey = function(o){
11408         return o.id;
11409     };
11410     this.baseParams = {};
11411     // private
11412     this.paramNames = {
11413         "start" : "start",
11414         "limit" : "limit",
11415         "sort" : "sort",
11416         "dir" : "dir",
11417         "multisort" : "_multisort"
11418     };
11419
11420     if(config && config.data){
11421         this.inlineData = config.data;
11422         delete config.data;
11423     }
11424
11425     Roo.apply(this, config);
11426     
11427     if(this.reader){ // reader passed
11428         this.reader = Roo.factory(this.reader, Roo.data);
11429         this.reader.xmodule = this.xmodule || false;
11430         if(!this.recordType){
11431             this.recordType = this.reader.recordType;
11432         }
11433         if(this.reader.onMetaChange){
11434             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
11435         }
11436     }
11437
11438     if(this.recordType){
11439         this.fields = this.recordType.prototype.fields;
11440     }
11441     this.modified = [];
11442
11443     this.addEvents({
11444         /**
11445          * @event datachanged
11446          * Fires when the data cache has changed, and a widget which is using this Store
11447          * as a Record cache should refresh its view.
11448          * @param {Store} this
11449          */
11450         datachanged : true,
11451         /**
11452          * @event metachange
11453          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
11454          * @param {Store} this
11455          * @param {Object} meta The JSON metadata
11456          */
11457         metachange : true,
11458         /**
11459          * @event add
11460          * Fires when Records have been added to the Store
11461          * @param {Store} this
11462          * @param {Roo.data.Record[]} records The array of Records added
11463          * @param {Number} index The index at which the record(s) were added
11464          */
11465         add : true,
11466         /**
11467          * @event remove
11468          * Fires when a Record has been removed from the Store
11469          * @param {Store} this
11470          * @param {Roo.data.Record} record The Record that was removed
11471          * @param {Number} index The index at which the record was removed
11472          */
11473         remove : true,
11474         /**
11475          * @event update
11476          * Fires when a Record has been updated
11477          * @param {Store} this
11478          * @param {Roo.data.Record} record The Record that was updated
11479          * @param {String} operation The update operation being performed.  Value may be one of:
11480          * <pre><code>
11481  Roo.data.Record.EDIT
11482  Roo.data.Record.REJECT
11483  Roo.data.Record.COMMIT
11484          * </code></pre>
11485          */
11486         update : true,
11487         /**
11488          * @event clear
11489          * Fires when the data cache has been cleared.
11490          * @param {Store} this
11491          */
11492         clear : true,
11493         /**
11494          * @event beforeload
11495          * Fires before a request is made for a new data object.  If the beforeload handler returns false
11496          * the load action will be canceled.
11497          * @param {Store} this
11498          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11499          */
11500         beforeload : true,
11501         /**
11502          * @event beforeloadadd
11503          * Fires after a new set of Records has been loaded.
11504          * @param {Store} this
11505          * @param {Roo.data.Record[]} records The Records that were loaded
11506          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11507          */
11508         beforeloadadd : true,
11509         /**
11510          * @event load
11511          * Fires after a new set of Records has been loaded, before they are added to the store.
11512          * @param {Store} this
11513          * @param {Roo.data.Record[]} records The Records that were loaded
11514          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11515          * @params {Object} return from reader
11516          */
11517         load : true,
11518         /**
11519          * @event loadexception
11520          * Fires if an exception occurs in the Proxy during loading.
11521          * Called with the signature of the Proxy's "loadexception" event.
11522          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
11523          * 
11524          * @param {Proxy} 
11525          * @param {Object} return from JsonData.reader() - success, totalRecords, records
11526          * @param {Object} load options 
11527          * @param {Object} jsonData from your request (normally this contains the Exception)
11528          */
11529         loadexception : true
11530     });
11531     
11532     if(this.proxy){
11533         this.proxy = Roo.factory(this.proxy, Roo.data);
11534         this.proxy.xmodule = this.xmodule || false;
11535         this.relayEvents(this.proxy,  ["loadexception"]);
11536     }
11537     this.sortToggle = {};
11538     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
11539
11540     Roo.data.Store.superclass.constructor.call(this);
11541
11542     if(this.inlineData){
11543         this.loadData(this.inlineData);
11544         delete this.inlineData;
11545     }
11546 };
11547
11548 Roo.extend(Roo.data.Store, Roo.util.Observable, {
11549      /**
11550     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
11551     * without a remote query - used by combo/forms at present.
11552     */
11553     
11554     /**
11555     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
11556     */
11557     /**
11558     * @cfg {Array} data Inline data to be loaded when the store is initialized.
11559     */
11560     /**
11561     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
11562     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
11563     */
11564     /**
11565     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
11566     * on any HTTP request
11567     */
11568     /**
11569     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
11570     */
11571     /**
11572     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
11573     */
11574     multiSort: false,
11575     /**
11576     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
11577     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
11578     */
11579     remoteSort : false,
11580
11581     /**
11582     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
11583      * loaded or when a record is removed. (defaults to false).
11584     */
11585     pruneModifiedRecords : false,
11586
11587     // private
11588     lastOptions : null,
11589
11590     /**
11591      * Add Records to the Store and fires the add event.
11592      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11593      */
11594     add : function(records){
11595         records = [].concat(records);
11596         for(var i = 0, len = records.length; i < len; i++){
11597             records[i].join(this);
11598         }
11599         var index = this.data.length;
11600         this.data.addAll(records);
11601         this.fireEvent("add", this, records, index);
11602     },
11603
11604     /**
11605      * Remove a Record from the Store and fires the remove event.
11606      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
11607      */
11608     remove : function(record){
11609         var index = this.data.indexOf(record);
11610         this.data.removeAt(index);
11611  
11612         if(this.pruneModifiedRecords){
11613             this.modified.remove(record);
11614         }
11615         this.fireEvent("remove", this, record, index);
11616     },
11617
11618     /**
11619      * Remove all Records from the Store and fires the clear event.
11620      */
11621     removeAll : function(){
11622         this.data.clear();
11623         if(this.pruneModifiedRecords){
11624             this.modified = [];
11625         }
11626         this.fireEvent("clear", this);
11627     },
11628
11629     /**
11630      * Inserts Records to the Store at the given index and fires the add event.
11631      * @param {Number} index The start index at which to insert the passed Records.
11632      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11633      */
11634     insert : function(index, records){
11635         records = [].concat(records);
11636         for(var i = 0, len = records.length; i < len; i++){
11637             this.data.insert(index, records[i]);
11638             records[i].join(this);
11639         }
11640         this.fireEvent("add", this, records, index);
11641     },
11642
11643     /**
11644      * Get the index within the cache of the passed Record.
11645      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
11646      * @return {Number} The index of the passed Record. Returns -1 if not found.
11647      */
11648     indexOf : function(record){
11649         return this.data.indexOf(record);
11650     },
11651
11652     /**
11653      * Get the index within the cache of the Record with the passed id.
11654      * @param {String} id The id of the Record to find.
11655      * @return {Number} The index of the Record. Returns -1 if not found.
11656      */
11657     indexOfId : function(id){
11658         return this.data.indexOfKey(id);
11659     },
11660
11661     /**
11662      * Get the Record with the specified id.
11663      * @param {String} id The id of the Record to find.
11664      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
11665      */
11666     getById : function(id){
11667         return this.data.key(id);
11668     },
11669
11670     /**
11671      * Get the Record at the specified index.
11672      * @param {Number} index The index of the Record to find.
11673      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
11674      */
11675     getAt : function(index){
11676         return this.data.itemAt(index);
11677     },
11678
11679     /**
11680      * Returns a range of Records between specified indices.
11681      * @param {Number} startIndex (optional) The starting index (defaults to 0)
11682      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
11683      * @return {Roo.data.Record[]} An array of Records
11684      */
11685     getRange : function(start, end){
11686         return this.data.getRange(start, end);
11687     },
11688
11689     // private
11690     storeOptions : function(o){
11691         o = Roo.apply({}, o);
11692         delete o.callback;
11693         delete o.scope;
11694         this.lastOptions = o;
11695     },
11696
11697     /**
11698      * Loads the Record cache from the configured Proxy using the configured Reader.
11699      * <p>
11700      * If using remote paging, then the first load call must specify the <em>start</em>
11701      * and <em>limit</em> properties in the options.params property to establish the initial
11702      * position within the dataset, and the number of Records to cache on each read from the Proxy.
11703      * <p>
11704      * <strong>It is important to note that for remote data sources, loading is asynchronous,
11705      * and this call will return before the new data has been loaded. Perform any post-processing
11706      * in a callback function, or in a "load" event handler.</strong>
11707      * <p>
11708      * @param {Object} options An object containing properties which control loading options:<ul>
11709      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
11710      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
11711      * passed the following arguments:<ul>
11712      * <li>r : Roo.data.Record[]</li>
11713      * <li>options: Options object from the load call</li>
11714      * <li>success: Boolean success indicator</li></ul></li>
11715      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
11716      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
11717      * </ul>
11718      */
11719     load : function(options){
11720         options = options || {};
11721         if(this.fireEvent("beforeload", this, options) !== false){
11722             this.storeOptions(options);
11723             var p = Roo.apply(options.params || {}, this.baseParams);
11724             // if meta was not loaded from remote source.. try requesting it.
11725             if (!this.reader.metaFromRemote) {
11726                 p._requestMeta = 1;
11727             }
11728             if(this.sortInfo && this.remoteSort){
11729                 var pn = this.paramNames;
11730                 p[pn["sort"]] = this.sortInfo.field;
11731                 p[pn["dir"]] = this.sortInfo.direction;
11732             }
11733             if (this.multiSort) {
11734                 var pn = this.paramNames;
11735                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
11736             }
11737             
11738             this.proxy.load(p, this.reader, this.loadRecords, this, options);
11739         }
11740     },
11741
11742     /**
11743      * Reloads the Record cache from the configured Proxy using the configured Reader and
11744      * the options from the last load operation performed.
11745      * @param {Object} options (optional) An object containing properties which may override the options
11746      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
11747      * the most recently used options are reused).
11748      */
11749     reload : function(options){
11750         this.load(Roo.applyIf(options||{}, this.lastOptions));
11751     },
11752
11753     // private
11754     // Called as a callback by the Reader during a load operation.
11755     loadRecords : function(o, options, success){
11756         if(!o || success === false){
11757             if(success !== false){
11758                 this.fireEvent("load", this, [], options, o);
11759             }
11760             if(options.callback){
11761                 options.callback.call(options.scope || this, [], options, false);
11762             }
11763             return;
11764         }
11765         // if data returned failure - throw an exception.
11766         if (o.success === false) {
11767             // show a message if no listener is registered.
11768             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
11769                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
11770             }
11771             // loadmask wil be hooked into this..
11772             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
11773             return;
11774         }
11775         var r = o.records, t = o.totalRecords || r.length;
11776         
11777         this.fireEvent("beforeloadadd", this, r, options, o);
11778         
11779         if(!options || options.add !== true){
11780             if(this.pruneModifiedRecords){
11781                 this.modified = [];
11782             }
11783             for(var i = 0, len = r.length; i < len; i++){
11784                 r[i].join(this);
11785             }
11786             if(this.snapshot){
11787                 this.data = this.snapshot;
11788                 delete this.snapshot;
11789             }
11790             this.data.clear();
11791             this.data.addAll(r);
11792             this.totalLength = t;
11793             this.applySort();
11794             this.fireEvent("datachanged", this);
11795         }else{
11796             this.totalLength = Math.max(t, this.data.length+r.length);
11797             this.add(r);
11798         }
11799         
11800         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
11801                 
11802             var e = new Roo.data.Record({});
11803
11804             e.set(this.parent.displayField, this.parent.emptyTitle);
11805             e.set(this.parent.valueField, '');
11806
11807             this.insert(0, e);
11808         }
11809             
11810         this.fireEvent("load", this, r, options, o);
11811         if(options.callback){
11812             options.callback.call(options.scope || this, r, options, true);
11813         }
11814     },
11815
11816
11817     /**
11818      * Loads data from a passed data block. A Reader which understands the format of the data
11819      * must have been configured in the constructor.
11820      * @param {Object} data The data block from which to read the Records.  The format of the data expected
11821      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
11822      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
11823      */
11824     loadData : function(o, append){
11825         var r = this.reader.readRecords(o);
11826         this.loadRecords(r, {add: append}, true);
11827     },
11828
11829     /**
11830      * Gets the number of cached records.
11831      * <p>
11832      * <em>If using paging, this may not be the total size of the dataset. If the data object
11833      * used by the Reader contains the dataset size, then the getTotalCount() function returns
11834      * the data set size</em>
11835      */
11836     getCount : function(){
11837         return this.data.length || 0;
11838     },
11839
11840     /**
11841      * Gets the total number of records in the dataset as returned by the server.
11842      * <p>
11843      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
11844      * the dataset size</em>
11845      */
11846     getTotalCount : function(){
11847         return this.totalLength || 0;
11848     },
11849
11850     /**
11851      * Returns the sort state of the Store as an object with two properties:
11852      * <pre><code>
11853  field {String} The name of the field by which the Records are sorted
11854  direction {String} The sort order, "ASC" or "DESC"
11855      * </code></pre>
11856      */
11857     getSortState : function(){
11858         return this.sortInfo;
11859     },
11860
11861     // private
11862     applySort : function(){
11863         if(this.sortInfo && !this.remoteSort){
11864             var s = this.sortInfo, f = s.field;
11865             var st = this.fields.get(f).sortType;
11866             var fn = function(r1, r2){
11867                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
11868                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
11869             };
11870             this.data.sort(s.direction, fn);
11871             if(this.snapshot && this.snapshot != this.data){
11872                 this.snapshot.sort(s.direction, fn);
11873             }
11874         }
11875     },
11876
11877     /**
11878      * Sets the default sort column and order to be used by the next load operation.
11879      * @param {String} fieldName The name of the field to sort by.
11880      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11881      */
11882     setDefaultSort : function(field, dir){
11883         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
11884     },
11885
11886     /**
11887      * Sort the Records.
11888      * If remote sorting is used, the sort is performed on the server, and the cache is
11889      * reloaded. If local sorting is used, the cache is sorted internally.
11890      * @param {String} fieldName The name of the field to sort by.
11891      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11892      */
11893     sort : function(fieldName, dir){
11894         var f = this.fields.get(fieldName);
11895         if(!dir){
11896             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
11897             
11898             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
11899                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
11900             }else{
11901                 dir = f.sortDir;
11902             }
11903         }
11904         this.sortToggle[f.name] = dir;
11905         this.sortInfo = {field: f.name, direction: dir};
11906         if(!this.remoteSort){
11907             this.applySort();
11908             this.fireEvent("datachanged", this);
11909         }else{
11910             this.load(this.lastOptions);
11911         }
11912     },
11913
11914     /**
11915      * Calls the specified function for each of the Records in the cache.
11916      * @param {Function} fn The function to call. The Record is passed as the first parameter.
11917      * Returning <em>false</em> aborts and exits the iteration.
11918      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
11919      */
11920     each : function(fn, scope){
11921         this.data.each(fn, scope);
11922     },
11923
11924     /**
11925      * Gets all records modified since the last commit.  Modified records are persisted across load operations
11926      * (e.g., during paging).
11927      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
11928      */
11929     getModifiedRecords : function(){
11930         return this.modified;
11931     },
11932
11933     // private
11934     createFilterFn : function(property, value, anyMatch){
11935         if(!value.exec){ // not a regex
11936             value = String(value);
11937             if(value.length == 0){
11938                 return false;
11939             }
11940             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
11941         }
11942         return function(r){
11943             return value.test(r.data[property]);
11944         };
11945     },
11946
11947     /**
11948      * Sums the value of <i>property</i> for each record between start and end and returns the result.
11949      * @param {String} property A field on your records
11950      * @param {Number} start The record index to start at (defaults to 0)
11951      * @param {Number} end The last record index to include (defaults to length - 1)
11952      * @return {Number} The sum
11953      */
11954     sum : function(property, start, end){
11955         var rs = this.data.items, v = 0;
11956         start = start || 0;
11957         end = (end || end === 0) ? end : rs.length-1;
11958
11959         for(var i = start; i <= end; i++){
11960             v += (rs[i].data[property] || 0);
11961         }
11962         return v;
11963     },
11964
11965     /**
11966      * Filter the records by a specified property.
11967      * @param {String} field A field on your records
11968      * @param {String/RegExp} value Either a string that the field
11969      * should start with or a RegExp to test against the field
11970      * @param {Boolean} anyMatch True to match any part not just the beginning
11971      */
11972     filter : function(property, value, anyMatch){
11973         var fn = this.createFilterFn(property, value, anyMatch);
11974         return fn ? this.filterBy(fn) : this.clearFilter();
11975     },
11976
11977     /**
11978      * Filter by a function. The specified function will be called with each
11979      * record in this data source. If the function returns true the record is included,
11980      * otherwise it is filtered.
11981      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
11982      * @param {Object} scope (optional) The scope of the function (defaults to this)
11983      */
11984     filterBy : function(fn, scope){
11985         this.snapshot = this.snapshot || this.data;
11986         this.data = this.queryBy(fn, scope||this);
11987         this.fireEvent("datachanged", this);
11988     },
11989
11990     /**
11991      * Query the records by a specified property.
11992      * @param {String} field A field on your records
11993      * @param {String/RegExp} value Either a string that the field
11994      * should start with or a RegExp to test against the field
11995      * @param {Boolean} anyMatch True to match any part not just the beginning
11996      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
11997      */
11998     query : function(property, value, anyMatch){
11999         var fn = this.createFilterFn(property, value, anyMatch);
12000         return fn ? this.queryBy(fn) : this.data.clone();
12001     },
12002
12003     /**
12004      * Query by a function. The specified function will be called with each
12005      * record in this data source. If the function returns true the record is included
12006      * in the results.
12007      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
12008      * @param {Object} scope (optional) The scope of the function (defaults to this)
12009       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
12010      **/
12011     queryBy : function(fn, scope){
12012         var data = this.snapshot || this.data;
12013         return data.filterBy(fn, scope||this);
12014     },
12015
12016     /**
12017      * Collects unique values for a particular dataIndex from this store.
12018      * @param {String} dataIndex The property to collect
12019      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
12020      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
12021      * @return {Array} An array of the unique values
12022      **/
12023     collect : function(dataIndex, allowNull, bypassFilter){
12024         var d = (bypassFilter === true && this.snapshot) ?
12025                 this.snapshot.items : this.data.items;
12026         var v, sv, r = [], l = {};
12027         for(var i = 0, len = d.length; i < len; i++){
12028             v = d[i].data[dataIndex];
12029             sv = String(v);
12030             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
12031                 l[sv] = true;
12032                 r[r.length] = v;
12033             }
12034         }
12035         return r;
12036     },
12037
12038     /**
12039      * Revert to a view of the Record cache with no filtering applied.
12040      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
12041      */
12042     clearFilter : function(suppressEvent){
12043         if(this.snapshot && this.snapshot != this.data){
12044             this.data = this.snapshot;
12045             delete this.snapshot;
12046             if(suppressEvent !== true){
12047                 this.fireEvent("datachanged", this);
12048             }
12049         }
12050     },
12051
12052     // private
12053     afterEdit : function(record){
12054         if(this.modified.indexOf(record) == -1){
12055             this.modified.push(record);
12056         }
12057         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
12058     },
12059     
12060     // private
12061     afterReject : function(record){
12062         this.modified.remove(record);
12063         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
12064     },
12065
12066     // private
12067     afterCommit : function(record){
12068         this.modified.remove(record);
12069         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
12070     },
12071
12072     /**
12073      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
12074      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
12075      */
12076     commitChanges : function(){
12077         var m = this.modified.slice(0);
12078         this.modified = [];
12079         for(var i = 0, len = m.length; i < len; i++){
12080             m[i].commit();
12081         }
12082     },
12083
12084     /**
12085      * Cancel outstanding changes on all changed records.
12086      */
12087     rejectChanges : function(){
12088         var m = this.modified.slice(0);
12089         this.modified = [];
12090         for(var i = 0, len = m.length; i < len; i++){
12091             m[i].reject();
12092         }
12093     },
12094
12095     onMetaChange : function(meta, rtype, o){
12096         this.recordType = rtype;
12097         this.fields = rtype.prototype.fields;
12098         delete this.snapshot;
12099         this.sortInfo = meta.sortInfo || this.sortInfo;
12100         this.modified = [];
12101         this.fireEvent('metachange', this, this.reader.meta);
12102     },
12103     
12104     moveIndex : function(data, type)
12105     {
12106         var index = this.indexOf(data);
12107         
12108         var newIndex = index + type;
12109         
12110         this.remove(data);
12111         
12112         this.insert(newIndex, data);
12113         
12114     }
12115 });/*
12116  * Based on:
12117  * Ext JS Library 1.1.1
12118  * Copyright(c) 2006-2007, Ext JS, LLC.
12119  *
12120  * Originally Released Under LGPL - original licence link has changed is not relivant.
12121  *
12122  * Fork - LGPL
12123  * <script type="text/javascript">
12124  */
12125
12126 /**
12127  * @class Roo.data.SimpleStore
12128  * @extends Roo.data.Store
12129  * Small helper class to make creating Stores from Array data easier.
12130  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
12131  * @cfg {Array} fields An array of field definition objects, or field name strings.
12132  * @cfg {Object} an existing reader (eg. copied from another store)
12133  * @cfg {Array} data The multi-dimensional array of data
12134  * @constructor
12135  * @param {Object} config
12136  */
12137 Roo.data.SimpleStore = function(config)
12138 {
12139     Roo.data.SimpleStore.superclass.constructor.call(this, {
12140         isLocal : true,
12141         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
12142                 id: config.id
12143             },
12144             Roo.data.Record.create(config.fields)
12145         ),
12146         proxy : new Roo.data.MemoryProxy(config.data)
12147     });
12148     this.load();
12149 };
12150 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
12151  * Based on:
12152  * Ext JS Library 1.1.1
12153  * Copyright(c) 2006-2007, Ext JS, LLC.
12154  *
12155  * Originally Released Under LGPL - original licence link has changed is not relivant.
12156  *
12157  * Fork - LGPL
12158  * <script type="text/javascript">
12159  */
12160
12161 /**
12162 /**
12163  * @extends Roo.data.Store
12164  * @class Roo.data.JsonStore
12165  * Small helper class to make creating Stores for JSON data easier. <br/>
12166 <pre><code>
12167 var store = new Roo.data.JsonStore({
12168     url: 'get-images.php',
12169     root: 'images',
12170     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
12171 });
12172 </code></pre>
12173  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
12174  * JsonReader and HttpProxy (unless inline data is provided).</b>
12175  * @cfg {Array} fields An array of field definition objects, or field name strings.
12176  * @constructor
12177  * @param {Object} config
12178  */
12179 Roo.data.JsonStore = function(c){
12180     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
12181         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
12182         reader: new Roo.data.JsonReader(c, c.fields)
12183     }));
12184 };
12185 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
12186  * Based on:
12187  * Ext JS Library 1.1.1
12188  * Copyright(c) 2006-2007, Ext JS, LLC.
12189  *
12190  * Originally Released Under LGPL - original licence link has changed is not relivant.
12191  *
12192  * Fork - LGPL
12193  * <script type="text/javascript">
12194  */
12195
12196  
12197 Roo.data.Field = function(config){
12198     if(typeof config == "string"){
12199         config = {name: config};
12200     }
12201     Roo.apply(this, config);
12202     
12203     if(!this.type){
12204         this.type = "auto";
12205     }
12206     
12207     var st = Roo.data.SortTypes;
12208     // named sortTypes are supported, here we look them up
12209     if(typeof this.sortType == "string"){
12210         this.sortType = st[this.sortType];
12211     }
12212     
12213     // set default sortType for strings and dates
12214     if(!this.sortType){
12215         switch(this.type){
12216             case "string":
12217                 this.sortType = st.asUCString;
12218                 break;
12219             case "date":
12220                 this.sortType = st.asDate;
12221                 break;
12222             default:
12223                 this.sortType = st.none;
12224         }
12225     }
12226
12227     // define once
12228     var stripRe = /[\$,%]/g;
12229
12230     // prebuilt conversion function for this field, instead of
12231     // switching every time we're reading a value
12232     if(!this.convert){
12233         var cv, dateFormat = this.dateFormat;
12234         switch(this.type){
12235             case "":
12236             case "auto":
12237             case undefined:
12238                 cv = function(v){ return v; };
12239                 break;
12240             case "string":
12241                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
12242                 break;
12243             case "int":
12244                 cv = function(v){
12245                     return v !== undefined && v !== null && v !== '' ?
12246                            parseInt(String(v).replace(stripRe, ""), 10) : '';
12247                     };
12248                 break;
12249             case "float":
12250                 cv = function(v){
12251                     return v !== undefined && v !== null && v !== '' ?
12252                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
12253                     };
12254                 break;
12255             case "bool":
12256             case "boolean":
12257                 cv = function(v){ return v === true || v === "true" || v == 1; };
12258                 break;
12259             case "date":
12260                 cv = function(v){
12261                     if(!v){
12262                         return '';
12263                     }
12264                     if(v instanceof Date){
12265                         return v;
12266                     }
12267                     if(dateFormat){
12268                         if(dateFormat == "timestamp"){
12269                             return new Date(v*1000);
12270                         }
12271                         return Date.parseDate(v, dateFormat);
12272                     }
12273                     var parsed = Date.parse(v);
12274                     return parsed ? new Date(parsed) : null;
12275                 };
12276              break;
12277             
12278         }
12279         this.convert = cv;
12280     }
12281 };
12282
12283 Roo.data.Field.prototype = {
12284     dateFormat: null,
12285     defaultValue: "",
12286     mapping: null,
12287     sortType : null,
12288     sortDir : "ASC"
12289 };/*
12290  * Based on:
12291  * Ext JS Library 1.1.1
12292  * Copyright(c) 2006-2007, Ext JS, LLC.
12293  *
12294  * Originally Released Under LGPL - original licence link has changed is not relivant.
12295  *
12296  * Fork - LGPL
12297  * <script type="text/javascript">
12298  */
12299  
12300 // Base class for reading structured data from a data source.  This class is intended to be
12301 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
12302
12303 /**
12304  * @class Roo.data.DataReader
12305  * Base class for reading structured data from a data source.  This class is intended to be
12306  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
12307  */
12308
12309 Roo.data.DataReader = function(meta, recordType){
12310     
12311     this.meta = meta;
12312     
12313     this.recordType = recordType instanceof Array ? 
12314         Roo.data.Record.create(recordType) : recordType;
12315 };
12316
12317 Roo.data.DataReader.prototype = {
12318     
12319     
12320     readerType : 'Data',
12321      /**
12322      * Create an empty record
12323      * @param {Object} data (optional) - overlay some values
12324      * @return {Roo.data.Record} record created.
12325      */
12326     newRow :  function(d) {
12327         var da =  {};
12328         this.recordType.prototype.fields.each(function(c) {
12329             switch( c.type) {
12330                 case 'int' : da[c.name] = 0; break;
12331                 case 'date' : da[c.name] = new Date(); break;
12332                 case 'float' : da[c.name] = 0.0; break;
12333                 case 'boolean' : da[c.name] = false; break;
12334                 default : da[c.name] = ""; break;
12335             }
12336             
12337         });
12338         return new this.recordType(Roo.apply(da, d));
12339     }
12340     
12341     
12342 };/*
12343  * Based on:
12344  * Ext JS Library 1.1.1
12345  * Copyright(c) 2006-2007, Ext JS, LLC.
12346  *
12347  * Originally Released Under LGPL - original licence link has changed is not relivant.
12348  *
12349  * Fork - LGPL
12350  * <script type="text/javascript">
12351  */
12352
12353 /**
12354  * @class Roo.data.DataProxy
12355  * @extends Roo.data.Observable
12356  * This class is an abstract base class for implementations which provide retrieval of
12357  * unformatted data objects.<br>
12358  * <p>
12359  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
12360  * (of the appropriate type which knows how to parse the data object) to provide a block of
12361  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
12362  * <p>
12363  * Custom implementations must implement the load method as described in
12364  * {@link Roo.data.HttpProxy#load}.
12365  */
12366 Roo.data.DataProxy = function(){
12367     this.addEvents({
12368         /**
12369          * @event beforeload
12370          * Fires before a network request is made to retrieve a data object.
12371          * @param {Object} This DataProxy object.
12372          * @param {Object} params The params parameter to the load function.
12373          */
12374         beforeload : true,
12375         /**
12376          * @event load
12377          * Fires before the load method's callback is called.
12378          * @param {Object} This DataProxy object.
12379          * @param {Object} o The data object.
12380          * @param {Object} arg The callback argument object passed to the load function.
12381          */
12382         load : true,
12383         /**
12384          * @event loadexception
12385          * Fires if an Exception occurs during data retrieval.
12386          * @param {Object} This DataProxy object.
12387          * @param {Object} o The data object.
12388          * @param {Object} arg The callback argument object passed to the load function.
12389          * @param {Object} e The Exception.
12390          */
12391         loadexception : true
12392     });
12393     Roo.data.DataProxy.superclass.constructor.call(this);
12394 };
12395
12396 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
12397
12398     /**
12399      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
12400      */
12401 /*
12402  * Based on:
12403  * Ext JS Library 1.1.1
12404  * Copyright(c) 2006-2007, Ext JS, LLC.
12405  *
12406  * Originally Released Under LGPL - original licence link has changed is not relivant.
12407  *
12408  * Fork - LGPL
12409  * <script type="text/javascript">
12410  */
12411 /**
12412  * @class Roo.data.MemoryProxy
12413  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
12414  * to the Reader when its load method is called.
12415  * @constructor
12416  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
12417  */
12418 Roo.data.MemoryProxy = function(data){
12419     if (data.data) {
12420         data = data.data;
12421     }
12422     Roo.data.MemoryProxy.superclass.constructor.call(this);
12423     this.data = data;
12424 };
12425
12426 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
12427     
12428     /**
12429      * Load data from the requested source (in this case an in-memory
12430      * data object passed to the constructor), read the data object into
12431      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12432      * process that block using the passed callback.
12433      * @param {Object} params This parameter is not used by the MemoryProxy class.
12434      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12435      * object into a block of Roo.data.Records.
12436      * @param {Function} callback The function into which to pass the block of Roo.data.records.
12437      * The function must be passed <ul>
12438      * <li>The Record block object</li>
12439      * <li>The "arg" argument from the load function</li>
12440      * <li>A boolean success indicator</li>
12441      * </ul>
12442      * @param {Object} scope The scope in which to call the callback
12443      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12444      */
12445     load : function(params, reader, callback, scope, arg){
12446         params = params || {};
12447         var result;
12448         try {
12449             result = reader.readRecords(params.data ? params.data :this.data);
12450         }catch(e){
12451             this.fireEvent("loadexception", this, arg, null, e);
12452             callback.call(scope, null, arg, false);
12453             return;
12454         }
12455         callback.call(scope, result, arg, true);
12456     },
12457     
12458     // private
12459     update : function(params, records){
12460         
12461     }
12462 });/*
12463  * Based on:
12464  * Ext JS Library 1.1.1
12465  * Copyright(c) 2006-2007, Ext JS, LLC.
12466  *
12467  * Originally Released Under LGPL - original licence link has changed is not relivant.
12468  *
12469  * Fork - LGPL
12470  * <script type="text/javascript">
12471  */
12472 /**
12473  * @class Roo.data.HttpProxy
12474  * @extends Roo.data.DataProxy
12475  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
12476  * configured to reference a certain URL.<br><br>
12477  * <p>
12478  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
12479  * from which the running page was served.<br><br>
12480  * <p>
12481  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
12482  * <p>
12483  * Be aware that to enable the browser to parse an XML document, the server must set
12484  * the Content-Type header in the HTTP response to "text/xml".
12485  * @constructor
12486  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
12487  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
12488  * will be used to make the request.
12489  */
12490 Roo.data.HttpProxy = function(conn){
12491     Roo.data.HttpProxy.superclass.constructor.call(this);
12492     // is conn a conn config or a real conn?
12493     this.conn = conn;
12494     this.useAjax = !conn || !conn.events;
12495   
12496 };
12497
12498 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
12499     // thse are take from connection...
12500     
12501     /**
12502      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12503      */
12504     /**
12505      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12506      * extra parameters to each request made by this object. (defaults to undefined)
12507      */
12508     /**
12509      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12510      *  to each request made by this object. (defaults to undefined)
12511      */
12512     /**
12513      * @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)
12514      */
12515     /**
12516      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
12517      */
12518      /**
12519      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
12520      * @type Boolean
12521      */
12522   
12523
12524     /**
12525      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
12526      * @type Boolean
12527      */
12528     /**
12529      * Return the {@link Roo.data.Connection} object being used by this Proxy.
12530      * @return {Connection} The Connection object. This object may be used to subscribe to events on
12531      * a finer-grained basis than the DataProxy events.
12532      */
12533     getConnection : function(){
12534         return this.useAjax ? Roo.Ajax : this.conn;
12535     },
12536
12537     /**
12538      * Load data from the configured {@link Roo.data.Connection}, read the data object into
12539      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
12540      * process that block using the passed callback.
12541      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12542      * for the request to the remote server.
12543      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12544      * object into a block of Roo.data.Records.
12545      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12546      * The function must be passed <ul>
12547      * <li>The Record block object</li>
12548      * <li>The "arg" argument from the load function</li>
12549      * <li>A boolean success indicator</li>
12550      * </ul>
12551      * @param {Object} scope The scope in which to call the callback
12552      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12553      */
12554     load : function(params, reader, callback, scope, arg){
12555         if(this.fireEvent("beforeload", this, params) !== false){
12556             var  o = {
12557                 params : params || {},
12558                 request: {
12559                     callback : callback,
12560                     scope : scope,
12561                     arg : arg
12562                 },
12563                 reader: reader,
12564                 callback : this.loadResponse,
12565                 scope: this
12566             };
12567             if(this.useAjax){
12568                 Roo.applyIf(o, this.conn);
12569                 if(this.activeRequest){
12570                     Roo.Ajax.abort(this.activeRequest);
12571                 }
12572                 this.activeRequest = Roo.Ajax.request(o);
12573             }else{
12574                 this.conn.request(o);
12575             }
12576         }else{
12577             callback.call(scope||this, null, arg, false);
12578         }
12579     },
12580
12581     // private
12582     loadResponse : function(o, success, response){
12583         delete this.activeRequest;
12584         if(!success){
12585             this.fireEvent("loadexception", this, o, response);
12586             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12587             return;
12588         }
12589         var result;
12590         try {
12591             result = o.reader.read(response);
12592         }catch(e){
12593             this.fireEvent("loadexception", this, o, response, e);
12594             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12595             return;
12596         }
12597         
12598         this.fireEvent("load", this, o, o.request.arg);
12599         o.request.callback.call(o.request.scope, result, o.request.arg, true);
12600     },
12601
12602     // private
12603     update : function(dataSet){
12604
12605     },
12606
12607     // private
12608     updateResponse : function(dataSet){
12609
12610     }
12611 });/*
12612  * Based on:
12613  * Ext JS Library 1.1.1
12614  * Copyright(c) 2006-2007, Ext JS, LLC.
12615  *
12616  * Originally Released Under LGPL - original licence link has changed is not relivant.
12617  *
12618  * Fork - LGPL
12619  * <script type="text/javascript">
12620  */
12621
12622 /**
12623  * @class Roo.data.ScriptTagProxy
12624  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
12625  * other than the originating domain of the running page.<br><br>
12626  * <p>
12627  * <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
12628  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
12629  * <p>
12630  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
12631  * source code that is used as the source inside a &lt;script> tag.<br><br>
12632  * <p>
12633  * In order for the browser to process the returned data, the server must wrap the data object
12634  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
12635  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
12636  * depending on whether the callback name was passed:
12637  * <p>
12638  * <pre><code>
12639 boolean scriptTag = false;
12640 String cb = request.getParameter("callback");
12641 if (cb != null) {
12642     scriptTag = true;
12643     response.setContentType("text/javascript");
12644 } else {
12645     response.setContentType("application/x-json");
12646 }
12647 Writer out = response.getWriter();
12648 if (scriptTag) {
12649     out.write(cb + "(");
12650 }
12651 out.print(dataBlock.toJsonString());
12652 if (scriptTag) {
12653     out.write(");");
12654 }
12655 </pre></code>
12656  *
12657  * @constructor
12658  * @param {Object} config A configuration object.
12659  */
12660 Roo.data.ScriptTagProxy = function(config){
12661     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
12662     Roo.apply(this, config);
12663     this.head = document.getElementsByTagName("head")[0];
12664 };
12665
12666 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
12667
12668 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
12669     /**
12670      * @cfg {String} url The URL from which to request the data object.
12671      */
12672     /**
12673      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
12674      */
12675     timeout : 30000,
12676     /**
12677      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
12678      * the server the name of the callback function set up by the load call to process the returned data object.
12679      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
12680      * javascript output which calls this named function passing the data object as its only parameter.
12681      */
12682     callbackParam : "callback",
12683     /**
12684      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
12685      * name to the request.
12686      */
12687     nocache : true,
12688
12689     /**
12690      * Load data from the configured URL, read the data object into
12691      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12692      * process that block using the passed callback.
12693      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12694      * for the request to the remote server.
12695      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12696      * object into a block of Roo.data.Records.
12697      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12698      * The function must be passed <ul>
12699      * <li>The Record block object</li>
12700      * <li>The "arg" argument from the load function</li>
12701      * <li>A boolean success indicator</li>
12702      * </ul>
12703      * @param {Object} scope The scope in which to call the callback
12704      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12705      */
12706     load : function(params, reader, callback, scope, arg){
12707         if(this.fireEvent("beforeload", this, params) !== false){
12708
12709             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
12710
12711             var url = this.url;
12712             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
12713             if(this.nocache){
12714                 url += "&_dc=" + (new Date().getTime());
12715             }
12716             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
12717             var trans = {
12718                 id : transId,
12719                 cb : "stcCallback"+transId,
12720                 scriptId : "stcScript"+transId,
12721                 params : params,
12722                 arg : arg,
12723                 url : url,
12724                 callback : callback,
12725                 scope : scope,
12726                 reader : reader
12727             };
12728             var conn = this;
12729
12730             window[trans.cb] = function(o){
12731                 conn.handleResponse(o, trans);
12732             };
12733
12734             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
12735
12736             if(this.autoAbort !== false){
12737                 this.abort();
12738             }
12739
12740             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
12741
12742             var script = document.createElement("script");
12743             script.setAttribute("src", url);
12744             script.setAttribute("type", "text/javascript");
12745             script.setAttribute("id", trans.scriptId);
12746             this.head.appendChild(script);
12747
12748             this.trans = trans;
12749         }else{
12750             callback.call(scope||this, null, arg, false);
12751         }
12752     },
12753
12754     // private
12755     isLoading : function(){
12756         return this.trans ? true : false;
12757     },
12758
12759     /**
12760      * Abort the current server request.
12761      */
12762     abort : function(){
12763         if(this.isLoading()){
12764             this.destroyTrans(this.trans);
12765         }
12766     },
12767
12768     // private
12769     destroyTrans : function(trans, isLoaded){
12770         this.head.removeChild(document.getElementById(trans.scriptId));
12771         clearTimeout(trans.timeoutId);
12772         if(isLoaded){
12773             window[trans.cb] = undefined;
12774             try{
12775                 delete window[trans.cb];
12776             }catch(e){}
12777         }else{
12778             // if hasn't been loaded, wait for load to remove it to prevent script error
12779             window[trans.cb] = function(){
12780                 window[trans.cb] = undefined;
12781                 try{
12782                     delete window[trans.cb];
12783                 }catch(e){}
12784             };
12785         }
12786     },
12787
12788     // private
12789     handleResponse : function(o, trans){
12790         this.trans = false;
12791         this.destroyTrans(trans, true);
12792         var result;
12793         try {
12794             result = trans.reader.readRecords(o);
12795         }catch(e){
12796             this.fireEvent("loadexception", this, o, trans.arg, e);
12797             trans.callback.call(trans.scope||window, null, trans.arg, false);
12798             return;
12799         }
12800         this.fireEvent("load", this, o, trans.arg);
12801         trans.callback.call(trans.scope||window, result, trans.arg, true);
12802     },
12803
12804     // private
12805     handleFailure : function(trans){
12806         this.trans = false;
12807         this.destroyTrans(trans, false);
12808         this.fireEvent("loadexception", this, null, trans.arg);
12809         trans.callback.call(trans.scope||window, null, trans.arg, false);
12810     }
12811 });/*
12812  * Based on:
12813  * Ext JS Library 1.1.1
12814  * Copyright(c) 2006-2007, Ext JS, LLC.
12815  *
12816  * Originally Released Under LGPL - original licence link has changed is not relivant.
12817  *
12818  * Fork - LGPL
12819  * <script type="text/javascript">
12820  */
12821
12822 /**
12823  * @class Roo.data.JsonReader
12824  * @extends Roo.data.DataReader
12825  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
12826  * based on mappings in a provided Roo.data.Record constructor.
12827  * 
12828  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
12829  * in the reply previously. 
12830  * 
12831  * <p>
12832  * Example code:
12833  * <pre><code>
12834 var RecordDef = Roo.data.Record.create([
12835     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
12836     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
12837 ]);
12838 var myReader = new Roo.data.JsonReader({
12839     totalProperty: "results",    // The property which contains the total dataset size (optional)
12840     root: "rows",                // The property which contains an Array of row objects
12841     id: "id"                     // The property within each row object that provides an ID for the record (optional)
12842 }, RecordDef);
12843 </code></pre>
12844  * <p>
12845  * This would consume a JSON file like this:
12846  * <pre><code>
12847 { 'results': 2, 'rows': [
12848     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
12849     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
12850 }
12851 </code></pre>
12852  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
12853  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
12854  * paged from the remote server.
12855  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
12856  * @cfg {String} root name of the property which contains the Array of row objects.
12857  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
12858  * @cfg {Array} fields Array of field definition objects
12859  * @constructor
12860  * Create a new JsonReader
12861  * @param {Object} meta Metadata configuration options
12862  * @param {Object} recordType Either an Array of field definition objects,
12863  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
12864  */
12865 Roo.data.JsonReader = function(meta, recordType){
12866     
12867     meta = meta || {};
12868     // set some defaults:
12869     Roo.applyIf(meta, {
12870         totalProperty: 'total',
12871         successProperty : 'success',
12872         root : 'data',
12873         id : 'id'
12874     });
12875     
12876     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
12877 };
12878 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
12879     
12880     readerType : 'Json',
12881     
12882     /**
12883      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
12884      * Used by Store query builder to append _requestMeta to params.
12885      * 
12886      */
12887     metaFromRemote : false,
12888     /**
12889      * This method is only used by a DataProxy which has retrieved data from a remote server.
12890      * @param {Object} response The XHR object which contains the JSON data in its responseText.
12891      * @return {Object} data A data block which is used by an Roo.data.Store object as
12892      * a cache of Roo.data.Records.
12893      */
12894     read : function(response){
12895         var json = response.responseText;
12896        
12897         var o = /* eval:var:o */ eval("("+json+")");
12898         if(!o) {
12899             throw {message: "JsonReader.read: Json object not found"};
12900         }
12901         
12902         if(o.metaData){
12903             
12904             delete this.ef;
12905             this.metaFromRemote = true;
12906             this.meta = o.metaData;
12907             this.recordType = Roo.data.Record.create(o.metaData.fields);
12908             this.onMetaChange(this.meta, this.recordType, o);
12909         }
12910         return this.readRecords(o);
12911     },
12912
12913     // private function a store will implement
12914     onMetaChange : function(meta, recordType, o){
12915
12916     },
12917
12918     /**
12919          * @ignore
12920          */
12921     simpleAccess: function(obj, subsc) {
12922         return obj[subsc];
12923     },
12924
12925         /**
12926          * @ignore
12927          */
12928     getJsonAccessor: function(){
12929         var re = /[\[\.]/;
12930         return function(expr) {
12931             try {
12932                 return(re.test(expr))
12933                     ? new Function("obj", "return obj." + expr)
12934                     : function(obj){
12935                         return obj[expr];
12936                     };
12937             } catch(e){}
12938             return Roo.emptyFn;
12939         };
12940     }(),
12941
12942     /**
12943      * Create a data block containing Roo.data.Records from an XML document.
12944      * @param {Object} o An object which contains an Array of row objects in the property specified
12945      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
12946      * which contains the total size of the dataset.
12947      * @return {Object} data A data block which is used by an Roo.data.Store object as
12948      * a cache of Roo.data.Records.
12949      */
12950     readRecords : function(o){
12951         /**
12952          * After any data loads, the raw JSON data is available for further custom processing.
12953          * @type Object
12954          */
12955         this.o = o;
12956         var s = this.meta, Record = this.recordType,
12957             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
12958
12959 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
12960         if (!this.ef) {
12961             if(s.totalProperty) {
12962                     this.getTotal = this.getJsonAccessor(s.totalProperty);
12963                 }
12964                 if(s.successProperty) {
12965                     this.getSuccess = this.getJsonAccessor(s.successProperty);
12966                 }
12967                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
12968                 if (s.id) {
12969                         var g = this.getJsonAccessor(s.id);
12970                         this.getId = function(rec) {
12971                                 var r = g(rec);  
12972                                 return (r === undefined || r === "") ? null : r;
12973                         };
12974                 } else {
12975                         this.getId = function(){return null;};
12976                 }
12977             this.ef = [];
12978             for(var jj = 0; jj < fl; jj++){
12979                 f = fi[jj];
12980                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
12981                 this.ef[jj] = this.getJsonAccessor(map);
12982             }
12983         }
12984
12985         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
12986         if(s.totalProperty){
12987             var vt = parseInt(this.getTotal(o), 10);
12988             if(!isNaN(vt)){
12989                 totalRecords = vt;
12990             }
12991         }
12992         if(s.successProperty){
12993             var vs = this.getSuccess(o);
12994             if(vs === false || vs === 'false'){
12995                 success = false;
12996             }
12997         }
12998         var records = [];
12999         for(var i = 0; i < c; i++){
13000                 var n = root[i];
13001             var values = {};
13002             var id = this.getId(n);
13003             for(var j = 0; j < fl; j++){
13004                 f = fi[j];
13005             var v = this.ef[j](n);
13006             if (!f.convert) {
13007                 Roo.log('missing convert for ' + f.name);
13008                 Roo.log(f);
13009                 continue;
13010             }
13011             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
13012             }
13013             var record = new Record(values, id);
13014             record.json = n;
13015             records[i] = record;
13016         }
13017         return {
13018             raw : o,
13019             success : success,
13020             records : records,
13021             totalRecords : totalRecords
13022         };
13023     },
13024     /**
13025      * using 'cn' the nested child reader read the child array into it's child stores.
13026      * @param {Object} rec The record with a 'children array
13027      */
13028     loadDataFromChildren: function(rec)
13029     {
13030         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
13031         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
13032         return this.loadData({ data : data, total : data.length });
13033         
13034     }
13035 });/*
13036  * Based on:
13037  * Ext JS Library 1.1.1
13038  * Copyright(c) 2006-2007, Ext JS, LLC.
13039  *
13040  * Originally Released Under LGPL - original licence link has changed is not relivant.
13041  *
13042  * Fork - LGPL
13043  * <script type="text/javascript">
13044  */
13045
13046 /**
13047  * @class Roo.data.ArrayReader
13048  * @extends Roo.data.DataReader
13049  * Data reader class to create an Array of Roo.data.Record objects from an Array.
13050  * Each element of that Array represents a row of data fields. The
13051  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
13052  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
13053  * <p>
13054  * Example code:.
13055  * <pre><code>
13056 var RecordDef = Roo.data.Record.create([
13057     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
13058     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
13059 ]);
13060 var myReader = new Roo.data.ArrayReader({
13061     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
13062 }, RecordDef);
13063 </code></pre>
13064  * <p>
13065  * This would consume an Array like this:
13066  * <pre><code>
13067 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
13068   </code></pre>
13069  
13070  * @constructor
13071  * Create a new JsonReader
13072  * @param {Object} meta Metadata configuration options.
13073  * @param {Object|Array} recordType Either an Array of field definition objects
13074  * 
13075  * @cfg {Array} fields Array of field definition objects
13076  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
13077  * as specified to {@link Roo.data.Record#create},
13078  * or an {@link Roo.data.Record} object
13079  *
13080  * 
13081  * created using {@link Roo.data.Record#create}.
13082  */
13083 Roo.data.ArrayReader = function(meta, recordType)
13084 {    
13085     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
13086 };
13087
13088 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
13089     
13090       /**
13091      * Create a data block containing Roo.data.Records from an XML document.
13092      * @param {Object} o An Array of row objects which represents the dataset.
13093      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
13094      * a cache of Roo.data.Records.
13095      */
13096     readRecords : function(o)
13097     {
13098         var sid = this.meta ? this.meta.id : null;
13099         var recordType = this.recordType, fields = recordType.prototype.fields;
13100         var records = [];
13101         var root = o;
13102         for(var i = 0; i < root.length; i++){
13103                 var n = root[i];
13104             var values = {};
13105             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
13106             for(var j = 0, jlen = fields.length; j < jlen; j++){
13107                 var f = fields.items[j];
13108                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
13109                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
13110                 v = f.convert(v);
13111                 values[f.name] = v;
13112             }
13113             var record = new recordType(values, id);
13114             record.json = n;
13115             records[records.length] = record;
13116         }
13117         return {
13118             records : records,
13119             totalRecords : records.length
13120         };
13121     },
13122     /**
13123      * using 'cn' the nested child reader read the child array into it's child stores.
13124      * @param {Object} rec The record with a 'children array
13125      */
13126     loadDataFromChildren: function(rec)
13127     {
13128         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
13129         return this.loadData(typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn);
13130         
13131     }
13132     
13133     
13134 });/*
13135  * - LGPL
13136  * * 
13137  */
13138
13139 /**
13140  * @class Roo.bootstrap.ComboBox
13141  * @extends Roo.bootstrap.TriggerField
13142  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
13143  * @cfg {Boolean} append (true|false) default false
13144  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
13145  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
13146  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
13147  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
13148  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
13149  * @cfg {Boolean} animate default true
13150  * @cfg {Boolean} emptyResultText only for touch device
13151  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
13152  * @cfg {String} emptyTitle default ''
13153  * @constructor
13154  * Create a new ComboBox.
13155  * @param {Object} config Configuration options
13156  */
13157 Roo.bootstrap.ComboBox = function(config){
13158     Roo.bootstrap.ComboBox.superclass.constructor.call(this, config);
13159     this.addEvents({
13160         /**
13161          * @event expand
13162          * Fires when the dropdown list is expanded
13163         * @param {Roo.bootstrap.ComboBox} combo This combo box
13164         */
13165         'expand' : true,
13166         /**
13167          * @event collapse
13168          * Fires when the dropdown list is collapsed
13169         * @param {Roo.bootstrap.ComboBox} combo This combo box
13170         */
13171         'collapse' : true,
13172         /**
13173          * @event beforeselect
13174          * Fires before a list item is selected. Return false to cancel the selection.
13175         * @param {Roo.bootstrap.ComboBox} combo This combo box
13176         * @param {Roo.data.Record} record The data record returned from the underlying store
13177         * @param {Number} index The index of the selected item in the dropdown list
13178         */
13179         'beforeselect' : true,
13180         /**
13181          * @event select
13182          * Fires when a list item is selected
13183         * @param {Roo.bootstrap.ComboBox} combo This combo box
13184         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
13185         * @param {Number} index The index of the selected item in the dropdown list
13186         */
13187         'select' : true,
13188         /**
13189          * @event beforequery
13190          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
13191          * The event object passed has these properties:
13192         * @param {Roo.bootstrap.ComboBox} combo This combo box
13193         * @param {String} query The query
13194         * @param {Boolean} forceAll true to force "all" query
13195         * @param {Boolean} cancel true to cancel the query
13196         * @param {Object} e The query event object
13197         */
13198         'beforequery': true,
13199          /**
13200          * @event add
13201          * Fires when the 'add' icon is pressed (add a listener to enable add button)
13202         * @param {Roo.bootstrap.ComboBox} combo This combo box
13203         */
13204         'add' : true,
13205         /**
13206          * @event edit
13207          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
13208         * @param {Roo.bootstrap.ComboBox} combo This combo box
13209         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
13210         */
13211         'edit' : true,
13212         /**
13213          * @event remove
13214          * Fires when the remove value from the combobox array
13215         * @param {Roo.bootstrap.ComboBox} combo This combo box
13216         */
13217         'remove' : true,
13218         /**
13219          * @event afterremove
13220          * Fires when the remove value from the combobox array
13221         * @param {Roo.bootstrap.ComboBox} combo This combo box
13222         */
13223         'afterremove' : true,
13224         /**
13225          * @event specialfilter
13226          * Fires when specialfilter
13227             * @param {Roo.bootstrap.ComboBox} combo This combo box
13228             */
13229         'specialfilter' : true,
13230         /**
13231          * @event tick
13232          * Fires when tick the element
13233             * @param {Roo.bootstrap.ComboBox} combo This combo box
13234             */
13235         'tick' : true,
13236         /**
13237          * @event touchviewdisplay
13238          * Fires when touch view require special display (default is using displayField)
13239             * @param {Roo.bootstrap.ComboBox} combo This combo box
13240             * @param {Object} cfg set html .
13241             */
13242         'touchviewdisplay' : true
13243         
13244     });
13245     
13246     this.item = [];
13247     this.tickItems = [];
13248     
13249     this.selectedIndex = -1;
13250     if(this.mode == 'local'){
13251         if(config.queryDelay === undefined){
13252             this.queryDelay = 10;
13253         }
13254         if(config.minChars === undefined){
13255             this.minChars = 0;
13256         }
13257     }
13258 };
13259
13260 Roo.extend(Roo.bootstrap.ComboBox, Roo.bootstrap.TriggerField, {
13261      
13262     /**
13263      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
13264      * rendering into an Roo.Editor, defaults to false)
13265      */
13266     /**
13267      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
13268      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
13269      */
13270     /**
13271      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
13272      */
13273     /**
13274      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
13275      * the dropdown list (defaults to undefined, with no header element)
13276      */
13277
13278      /**
13279      * @cfg {String/Roo.Template} tpl The template to use to render the output
13280      */
13281      
13282      /**
13283      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
13284      */
13285     listWidth: undefined,
13286     /**
13287      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
13288      * mode = 'remote' or 'text' if mode = 'local')
13289      */
13290     displayField: undefined,
13291     
13292     /**
13293      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
13294      * mode = 'remote' or 'value' if mode = 'local'). 
13295      * Note: use of a valueField requires the user make a selection
13296      * in order for a value to be mapped.
13297      */
13298     valueField: undefined,
13299     /**
13300      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
13301      */
13302     modalTitle : '',
13303     
13304     /**
13305      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
13306      * field's data value (defaults to the underlying DOM element's name)
13307      */
13308     hiddenName: undefined,
13309     /**
13310      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
13311      */
13312     listClass: '',
13313     /**
13314      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
13315      */
13316     selectedClass: 'active',
13317     
13318     /**
13319      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13320      */
13321     shadow:'sides',
13322     /**
13323      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
13324      * anchor positions (defaults to 'tl-bl')
13325      */
13326     listAlign: 'tl-bl?',
13327     /**
13328      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
13329      */
13330     maxHeight: 300,
13331     /**
13332      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
13333      * query specified by the allQuery config option (defaults to 'query')
13334      */
13335     triggerAction: 'query',
13336     /**
13337      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
13338      * (defaults to 4, does not apply if editable = false)
13339      */
13340     minChars : 4,
13341     /**
13342      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
13343      * delay (typeAheadDelay) if it matches a known value (defaults to false)
13344      */
13345     typeAhead: false,
13346     /**
13347      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
13348      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
13349      */
13350     queryDelay: 500,
13351     /**
13352      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
13353      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
13354      */
13355     pageSize: 0,
13356     /**
13357      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
13358      * when editable = true (defaults to false)
13359      */
13360     selectOnFocus:false,
13361     /**
13362      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
13363      */
13364     queryParam: 'query',
13365     /**
13366      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
13367      * when mode = 'remote' (defaults to 'Loading...')
13368      */
13369     loadingText: 'Loading...',
13370     /**
13371      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
13372      */
13373     resizable: false,
13374     /**
13375      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
13376      */
13377     handleHeight : 8,
13378     /**
13379      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
13380      * traditional select (defaults to true)
13381      */
13382     editable: true,
13383     /**
13384      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
13385      */
13386     allQuery: '',
13387     /**
13388      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
13389      */
13390     mode: 'remote',
13391     /**
13392      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
13393      * listWidth has a higher value)
13394      */
13395     minListWidth : 70,
13396     /**
13397      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
13398      * allow the user to set arbitrary text into the field (defaults to false)
13399      */
13400     forceSelection:false,
13401     /**
13402      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
13403      * if typeAhead = true (defaults to 250)
13404      */
13405     typeAheadDelay : 250,
13406     /**
13407      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
13408      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
13409      */
13410     valueNotFoundText : undefined,
13411     /**
13412      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
13413      */
13414     blockFocus : false,
13415     
13416     /**
13417      * @cfg {Boolean} disableClear Disable showing of clear button.
13418      */
13419     disableClear : false,
13420     /**
13421      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
13422      */
13423     alwaysQuery : false,
13424     
13425     /**
13426      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
13427      */
13428     multiple : false,
13429     
13430     /**
13431      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
13432      */
13433     invalidClass : "has-warning",
13434     
13435     /**
13436      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
13437      */
13438     validClass : "has-success",
13439     
13440     /**
13441      * @cfg {Boolean} specialFilter (true|false) special filter default false
13442      */
13443     specialFilter : false,
13444     
13445     /**
13446      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
13447      */
13448     mobileTouchView : true,
13449     
13450     /**
13451      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
13452      */
13453     useNativeIOS : false,
13454     
13455     /**
13456      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
13457      */
13458     mobile_restrict_height : false,
13459     
13460     ios_options : false,
13461     
13462     //private
13463     addicon : false,
13464     editicon: false,
13465     
13466     page: 0,
13467     hasQuery: false,
13468     append: false,
13469     loadNext: false,
13470     autoFocus : true,
13471     tickable : false,
13472     btnPosition : 'right',
13473     triggerList : true,
13474     showToggleBtn : true,
13475     animate : true,
13476     emptyResultText: 'Empty',
13477     triggerText : 'Select',
13478     emptyTitle : '',
13479     
13480     // element that contains real text value.. (when hidden is used..)
13481     
13482     getAutoCreate : function()
13483     {   
13484         var cfg = false;
13485         //render
13486         /*
13487          * Render classic select for iso
13488          */
13489         
13490         if(Roo.isIOS && this.useNativeIOS){
13491             cfg = this.getAutoCreateNativeIOS();
13492             return cfg;
13493         }
13494         
13495         /*
13496          * Touch Devices
13497          */
13498         
13499         if(Roo.isTouch && this.mobileTouchView){
13500             cfg = this.getAutoCreateTouchView();
13501             return cfg;;
13502         }
13503         
13504         /*
13505          *  Normal ComboBox
13506          */
13507         if(!this.tickable){
13508             cfg = Roo.bootstrap.ComboBox.superclass.getAutoCreate.call(this);
13509             return cfg;
13510         }
13511         
13512         /*
13513          *  ComboBox with tickable selections
13514          */
13515              
13516         var align = this.labelAlign || this.parentLabelAlign();
13517         
13518         cfg = {
13519             cls : 'form-group roo-combobox-tickable' //input-group
13520         };
13521         
13522         var btn_text_select = '';
13523         var btn_text_done = '';
13524         var btn_text_cancel = '';
13525         
13526         if (this.btn_text_show) {
13527             btn_text_select = 'Select';
13528             btn_text_done = 'Done';
13529             btn_text_cancel = 'Cancel'; 
13530         }
13531         
13532         var buttons = {
13533             tag : 'div',
13534             cls : 'tickable-buttons',
13535             cn : [
13536                 {
13537                     tag : 'button',
13538                     type : 'button',
13539                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
13540                     //html : this.triggerText
13541                     html: btn_text_select
13542                 },
13543                 {
13544                     tag : 'button',
13545                     type : 'button',
13546                     name : 'ok',
13547                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
13548                     //html : 'Done'
13549                     html: btn_text_done
13550                 },
13551                 {
13552                     tag : 'button',
13553                     type : 'button',
13554                     name : 'cancel',
13555                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
13556                     //html : 'Cancel'
13557                     html: btn_text_cancel
13558                 }
13559             ]
13560         };
13561         
13562         if(this.editable){
13563             buttons.cn.unshift({
13564                 tag: 'input',
13565                 cls: 'roo-select2-search-field-input'
13566             });
13567         }
13568         
13569         var _this = this;
13570         
13571         Roo.each(buttons.cn, function(c){
13572             if (_this.size) {
13573                 c.cls += ' btn-' + _this.size;
13574             }
13575
13576             if (_this.disabled) {
13577                 c.disabled = true;
13578             }
13579         });
13580         
13581         var box = {
13582             tag: 'div',
13583             style : 'display: contents',
13584             cn: [
13585                 {
13586                     tag: 'input',
13587                     type : 'hidden',
13588                     cls: 'form-hidden-field'
13589                 },
13590                 {
13591                     tag: 'ul',
13592                     cls: 'roo-select2-choices',
13593                     cn:[
13594                         {
13595                             tag: 'li',
13596                             cls: 'roo-select2-search-field',
13597                             cn: [
13598                                 buttons
13599                             ]
13600                         }
13601                     ]
13602                 }
13603             ]
13604         };
13605         
13606         var combobox = {
13607             cls: 'roo-select2-container input-group roo-select2-container-multi',
13608             cn: [
13609                 
13610                 box
13611 //                {
13612 //                    tag: 'ul',
13613 //                    cls: 'typeahead typeahead-long dropdown-menu',
13614 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
13615 //                }
13616             ]
13617         };
13618         
13619         if(this.hasFeedback && !this.allowBlank){
13620             
13621             var feedback = {
13622                 tag: 'span',
13623                 cls: 'glyphicon form-control-feedback'
13624             };
13625
13626             combobox.cn.push(feedback);
13627         }
13628         
13629         var indicator = {
13630             tag : 'i',
13631             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13632             tooltip : 'This field is required'
13633         };
13634         if (Roo.bootstrap.version == 4) {
13635             indicator = {
13636                 tag : 'i',
13637                 style : 'display:none'
13638             };
13639         }
13640         if (align ==='left' && this.fieldLabel.length) {
13641             
13642             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13643             
13644             cfg.cn = [
13645                 indicator,
13646                 {
13647                     tag: 'label',
13648                     'for' :  id,
13649                     cls : 'control-label col-form-label',
13650                     html : this.fieldLabel
13651
13652                 },
13653                 {
13654                     cls : "", 
13655                     cn: [
13656                         combobox
13657                     ]
13658                 }
13659
13660             ];
13661             
13662             var labelCfg = cfg.cn[1];
13663             var contentCfg = cfg.cn[2];
13664             
13665
13666             if(this.indicatorpos == 'right'){
13667                 
13668                 cfg.cn = [
13669                     {
13670                         tag: 'label',
13671                         'for' :  id,
13672                         cls : 'control-label col-form-label',
13673                         cn : [
13674                             {
13675                                 tag : 'span',
13676                                 html : this.fieldLabel
13677                             },
13678                             indicator
13679                         ]
13680                     },
13681                     {
13682                         cls : "",
13683                         cn: [
13684                             combobox
13685                         ]
13686                     }
13687
13688                 ];
13689                 
13690                 
13691                 
13692                 labelCfg = cfg.cn[0];
13693                 contentCfg = cfg.cn[1];
13694             
13695             }
13696             
13697             if(this.labelWidth > 12){
13698                 labelCfg.style = "width: " + this.labelWidth + 'px';
13699             }
13700             
13701             if(this.labelWidth < 13 && this.labelmd == 0){
13702                 this.labelmd = this.labelWidth;
13703             }
13704             
13705             if(this.labellg > 0){
13706                 labelCfg.cls += ' col-lg-' + this.labellg;
13707                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
13708             }
13709             
13710             if(this.labelmd > 0){
13711                 labelCfg.cls += ' col-md-' + this.labelmd;
13712                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
13713             }
13714             
13715             if(this.labelsm > 0){
13716                 labelCfg.cls += ' col-sm-' + this.labelsm;
13717                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
13718             }
13719             
13720             if(this.labelxs > 0){
13721                 labelCfg.cls += ' col-xs-' + this.labelxs;
13722                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
13723             }
13724                 
13725                 
13726         } else if ( this.fieldLabel.length) {
13727 //                Roo.log(" label");
13728                  cfg.cn = [
13729                    indicator,
13730                     {
13731                         tag: 'label',
13732                         //cls : 'input-group-addon',
13733                         html : this.fieldLabel
13734                     },
13735                     combobox
13736                 ];
13737                 
13738                 if(this.indicatorpos == 'right'){
13739                     cfg.cn = [
13740                         {
13741                             tag: 'label',
13742                             //cls : 'input-group-addon',
13743                             html : this.fieldLabel
13744                         },
13745                         indicator,
13746                         combobox
13747                     ];
13748                     
13749                 }
13750
13751         } else {
13752             
13753 //                Roo.log(" no label && no align");
13754                 cfg = combobox
13755                      
13756                 
13757         }
13758          
13759         var settings=this;
13760         ['xs','sm','md','lg'].map(function(size){
13761             if (settings[size]) {
13762                 cfg.cls += ' col-' + size + '-' + settings[size];
13763             }
13764         });
13765         
13766         return cfg;
13767         
13768     },
13769     
13770     _initEventsCalled : false,
13771     
13772     // private
13773     initEvents: function()
13774     {   
13775         if (this._initEventsCalled) { // as we call render... prevent looping...
13776             return;
13777         }
13778         this._initEventsCalled = true;
13779         
13780         if (!this.store) {
13781             throw "can not find store for combo";
13782         }
13783         
13784         this.indicator = this.indicatorEl();
13785         
13786         this.store = Roo.factory(this.store, Roo.data);
13787         this.store.parent = this;
13788         
13789         // if we are building from html. then this element is so complex, that we can not really
13790         // use the rendered HTML.
13791         // so we have to trash and replace the previous code.
13792         if (Roo.XComponent.build_from_html) {
13793             // remove this element....
13794             var e = this.el.dom, k=0;
13795             while (e ) { e = e.previousSibling;  ++k;}
13796
13797             this.el.remove();
13798             
13799             this.el=false;
13800             this.rendered = false;
13801             
13802             this.render(this.parent().getChildContainer(true), k);
13803         }
13804         
13805         if(Roo.isIOS && this.useNativeIOS){
13806             this.initIOSView();
13807             return;
13808         }
13809         
13810         /*
13811          * Touch Devices
13812          */
13813         
13814         if(Roo.isTouch && this.mobileTouchView){
13815             this.initTouchView();
13816             return;
13817         }
13818         
13819         if(this.tickable){
13820             this.initTickableEvents();
13821             return;
13822         }
13823         
13824         Roo.bootstrap.ComboBox.superclass.initEvents.call(this);
13825         
13826         if(this.hiddenName){
13827             
13828             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
13829             
13830             this.hiddenField.dom.value =
13831                 this.hiddenValue !== undefined ? this.hiddenValue :
13832                 this.value !== undefined ? this.value : '';
13833
13834             // prevent input submission
13835             this.el.dom.removeAttribute('name');
13836             this.hiddenField.dom.setAttribute('name', this.hiddenName);
13837              
13838              
13839         }
13840         //if(Roo.isGecko){
13841         //    this.el.dom.setAttribute('autocomplete', 'off');
13842         //}
13843         
13844         var cls = 'x-combo-list';
13845         
13846         //this.list = new Roo.Layer({
13847         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
13848         //});
13849         
13850         var _this = this;
13851         
13852         (function(){
13853             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
13854             _this.list.setWidth(lw);
13855         }).defer(100);
13856         
13857         this.list.on('mouseover', this.onViewOver, this);
13858         this.list.on('mousemove', this.onViewMove, this);
13859         this.list.on('scroll', this.onViewScroll, this);
13860         
13861         /*
13862         this.list.swallowEvent('mousewheel');
13863         this.assetHeight = 0;
13864
13865         if(this.title){
13866             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
13867             this.assetHeight += this.header.getHeight();
13868         }
13869
13870         this.innerList = this.list.createChild({cls:cls+'-inner'});
13871         this.innerList.on('mouseover', this.onViewOver, this);
13872         this.innerList.on('mousemove', this.onViewMove, this);
13873         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
13874         
13875         if(this.allowBlank && !this.pageSize && !this.disableClear){
13876             this.footer = this.list.createChild({cls:cls+'-ft'});
13877             this.pageTb = new Roo.Toolbar(this.footer);
13878            
13879         }
13880         if(this.pageSize){
13881             this.footer = this.list.createChild({cls:cls+'-ft'});
13882             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
13883                     {pageSize: this.pageSize});
13884             
13885         }
13886         
13887         if (this.pageTb && this.allowBlank && !this.disableClear) {
13888             var _this = this;
13889             this.pageTb.add(new Roo.Toolbar.Fill(), {
13890                 cls: 'x-btn-icon x-btn-clear',
13891                 text: '&#160;',
13892                 handler: function()
13893                 {
13894                     _this.collapse();
13895                     _this.clearValue();
13896                     _this.onSelect(false, -1);
13897                 }
13898             });
13899         }
13900         if (this.footer) {
13901             this.assetHeight += this.footer.getHeight();
13902         }
13903         */
13904             
13905         if(!this.tpl){
13906             this.tpl = Roo.bootstrap.version == 4 ?
13907                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
13908                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
13909         }
13910
13911         this.view = new Roo.View(this.list, this.tpl, {
13912             singleSelect:true, store: this.store, selectedClass: this.selectedClass
13913         });
13914         //this.view.wrapEl.setDisplayed(false);
13915         this.view.on('click', this.onViewClick, this);
13916         
13917         
13918         this.store.on('beforeload', this.onBeforeLoad, this);
13919         this.store.on('load', this.onLoad, this);
13920         this.store.on('loadexception', this.onLoadException, this);
13921         /*
13922         if(this.resizable){
13923             this.resizer = new Roo.Resizable(this.list,  {
13924                pinned:true, handles:'se'
13925             });
13926             this.resizer.on('resize', function(r, w, h){
13927                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
13928                 this.listWidth = w;
13929                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
13930                 this.restrictHeight();
13931             }, this);
13932             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
13933         }
13934         */
13935         if(!this.editable){
13936             this.editable = true;
13937             this.setEditable(false);
13938         }
13939         
13940         /*
13941         
13942         if (typeof(this.events.add.listeners) != 'undefined') {
13943             
13944             this.addicon = this.wrap.createChild(
13945                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
13946        
13947             this.addicon.on('click', function(e) {
13948                 this.fireEvent('add', this);
13949             }, this);
13950         }
13951         if (typeof(this.events.edit.listeners) != 'undefined') {
13952             
13953             this.editicon = this.wrap.createChild(
13954                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
13955             if (this.addicon) {
13956                 this.editicon.setStyle('margin-left', '40px');
13957             }
13958             this.editicon.on('click', function(e) {
13959                 
13960                 // we fire even  if inothing is selected..
13961                 this.fireEvent('edit', this, this.lastData );
13962                 
13963             }, this);
13964         }
13965         */
13966         
13967         this.keyNav = new Roo.KeyNav(this.inputEl(), {
13968             "up" : function(e){
13969                 this.inKeyMode = true;
13970                 this.selectPrev();
13971             },
13972
13973             "down" : function(e){
13974                 if(!this.isExpanded()){
13975                     this.onTriggerClick();
13976                 }else{
13977                     this.inKeyMode = true;
13978                     this.selectNext();
13979                 }
13980             },
13981
13982             "enter" : function(e){
13983 //                this.onViewClick();
13984                 //return true;
13985                 this.collapse();
13986                 
13987                 if(this.fireEvent("specialkey", this, e)){
13988                     this.onViewClick(false);
13989                 }
13990                 
13991                 return true;
13992             },
13993
13994             "esc" : function(e){
13995                 this.collapse();
13996             },
13997
13998             "tab" : function(e){
13999                 this.collapse();
14000                 
14001                 if(this.fireEvent("specialkey", this, e)){
14002                     this.onViewClick(false);
14003                 }
14004                 
14005                 return true;
14006             },
14007
14008             scope : this,
14009
14010             doRelay : function(foo, bar, hname){
14011                 if(hname == 'down' || this.scope.isExpanded()){
14012                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14013                 }
14014                 return true;
14015             },
14016
14017             forceKeyDown: true
14018         });
14019         
14020         
14021         this.queryDelay = Math.max(this.queryDelay || 10,
14022                 this.mode == 'local' ? 10 : 250);
14023         
14024         
14025         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14026         
14027         if(this.typeAhead){
14028             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14029         }
14030         if(this.editable !== false){
14031             this.inputEl().on("keyup", this.onKeyUp, this);
14032         }
14033         if(this.forceSelection){
14034             this.inputEl().on('blur', this.doForce, this);
14035         }
14036         
14037         if(this.multiple){
14038             this.choices = this.el.select('ul.roo-select2-choices', true).first();
14039             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14040         }
14041     },
14042     
14043     initTickableEvents: function()
14044     {   
14045         this.createList();
14046         
14047         if(this.hiddenName){
14048             
14049             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
14050             
14051             this.hiddenField.dom.value =
14052                 this.hiddenValue !== undefined ? this.hiddenValue :
14053                 this.value !== undefined ? this.value : '';
14054
14055             // prevent input submission
14056             this.el.dom.removeAttribute('name');
14057             this.hiddenField.dom.setAttribute('name', this.hiddenName);
14058              
14059              
14060         }
14061         
14062 //        this.list = this.el.select('ul.dropdown-menu',true).first();
14063         
14064         this.choices = this.el.select('ul.roo-select2-choices', true).first();
14065         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14066         if(this.triggerList){
14067             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
14068         }
14069          
14070         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
14071         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
14072         
14073         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
14074         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
14075         
14076         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
14077         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
14078         
14079         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
14080         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
14081         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
14082         
14083         this.okBtn.hide();
14084         this.cancelBtn.hide();
14085         
14086         var _this = this;
14087         
14088         (function(){
14089             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
14090             _this.list.setWidth(lw);
14091         }).defer(100);
14092         
14093         this.list.on('mouseover', this.onViewOver, this);
14094         this.list.on('mousemove', this.onViewMove, this);
14095         
14096         this.list.on('scroll', this.onViewScroll, this);
14097         
14098         if(!this.tpl){
14099             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
14100                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
14101         }
14102
14103         this.view = new Roo.View(this.list, this.tpl, {
14104             singleSelect:true,
14105             tickable:true,
14106             parent:this,
14107             store: this.store,
14108             selectedClass: this.selectedClass
14109         });
14110         
14111         //this.view.wrapEl.setDisplayed(false);
14112         this.view.on('click', this.onViewClick, this);
14113         
14114         
14115         
14116         this.store.on('beforeload', this.onBeforeLoad, this);
14117         this.store.on('load', this.onLoad, this);
14118         this.store.on('loadexception', this.onLoadException, this);
14119         
14120         if(this.editable){
14121             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
14122                 "up" : function(e){
14123                     this.inKeyMode = true;
14124                     this.selectPrev();
14125                 },
14126
14127                 "down" : function(e){
14128                     this.inKeyMode = true;
14129                     this.selectNext();
14130                 },
14131
14132                 "enter" : function(e){
14133                     if(this.fireEvent("specialkey", this, e)){
14134                         this.onViewClick(false);
14135                     }
14136                     
14137                     return true;
14138                 },
14139
14140                 "esc" : function(e){
14141                     this.onTickableFooterButtonClick(e, false, false);
14142                 },
14143
14144                 "tab" : function(e){
14145                     this.fireEvent("specialkey", this, e);
14146                     
14147                     this.onTickableFooterButtonClick(e, false, false);
14148                     
14149                     return true;
14150                 },
14151
14152                 scope : this,
14153
14154                 doRelay : function(e, fn, key){
14155                     if(this.scope.isExpanded()){
14156                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14157                     }
14158                     return true;
14159                 },
14160
14161                 forceKeyDown: true
14162             });
14163         }
14164         
14165         this.queryDelay = Math.max(this.queryDelay || 10,
14166                 this.mode == 'local' ? 10 : 250);
14167         
14168         
14169         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14170         
14171         if(this.typeAhead){
14172             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14173         }
14174         
14175         if(this.editable !== false){
14176             this.tickableInputEl().on("keyup", this.onKeyUp, this);
14177         }
14178         
14179         this.indicator = this.indicatorEl();
14180         
14181         if(this.indicator){
14182             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
14183             this.indicator.hide();
14184         }
14185         
14186     },
14187
14188     onDestroy : function(){
14189         if(this.view){
14190             this.view.setStore(null);
14191             this.view.el.removeAllListeners();
14192             this.view.el.remove();
14193             this.view.purgeListeners();
14194         }
14195         if(this.list){
14196             this.list.dom.innerHTML  = '';
14197         }
14198         
14199         if(this.store){
14200             this.store.un('beforeload', this.onBeforeLoad, this);
14201             this.store.un('load', this.onLoad, this);
14202             this.store.un('loadexception', this.onLoadException, this);
14203         }
14204         Roo.bootstrap.ComboBox.superclass.onDestroy.call(this);
14205     },
14206
14207     // private
14208     fireKey : function(e){
14209         if(e.isNavKeyPress() && !this.list.isVisible()){
14210             this.fireEvent("specialkey", this, e);
14211         }
14212     },
14213
14214     // private
14215     onResize: function(w, h){
14216 //        Roo.bootstrap.ComboBox.superclass.onResize.apply(this, arguments);
14217 //        
14218 //        if(typeof w != 'number'){
14219 //            // we do not handle it!?!?
14220 //            return;
14221 //        }
14222 //        var tw = this.trigger.getWidth();
14223 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
14224 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
14225 //        var x = w - tw;
14226 //        this.inputEl().setWidth( this.adjustWidth('input', x));
14227 //            
14228 //        //this.trigger.setStyle('left', x+'px');
14229 //        
14230 //        if(this.list && this.listWidth === undefined){
14231 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
14232 //            this.list.setWidth(lw);
14233 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
14234 //        }
14235         
14236     
14237         
14238     },
14239
14240     /**
14241      * Allow or prevent the user from directly editing the field text.  If false is passed,
14242      * the user will only be able to select from the items defined in the dropdown list.  This method
14243      * is the runtime equivalent of setting the 'editable' config option at config time.
14244      * @param {Boolean} value True to allow the user to directly edit the field text
14245      */
14246     setEditable : function(value){
14247         if(value == this.editable){
14248             return;
14249         }
14250         this.editable = value;
14251         if(!value){
14252             this.inputEl().dom.setAttribute('readOnly', true);
14253             this.inputEl().on('mousedown', this.onTriggerClick,  this);
14254             this.inputEl().addClass('x-combo-noedit');
14255         }else{
14256             this.inputEl().dom.setAttribute('readOnly', false);
14257             this.inputEl().un('mousedown', this.onTriggerClick,  this);
14258             this.inputEl().removeClass('x-combo-noedit');
14259         }
14260     },
14261
14262     // private
14263     
14264     onBeforeLoad : function(combo,opts){
14265         if(!this.hasFocus){
14266             return;
14267         }
14268          if (!opts.add) {
14269             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
14270          }
14271         this.restrictHeight();
14272         this.selectedIndex = -1;
14273     },
14274
14275     // private
14276     onLoad : function(){
14277         
14278         this.hasQuery = false;
14279         
14280         if(!this.hasFocus){
14281             return;
14282         }
14283         
14284         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14285             this.loading.hide();
14286         }
14287         
14288         if(this.store.getCount() > 0){
14289             
14290             this.expand();
14291             this.restrictHeight();
14292             if(this.lastQuery == this.allQuery){
14293                 if(this.editable && !this.tickable){
14294                     this.inputEl().dom.select();
14295                 }
14296                 
14297                 if(
14298                     !this.selectByValue(this.value, true) &&
14299                     this.autoFocus && 
14300                     (
14301                         !this.store.lastOptions ||
14302                         typeof(this.store.lastOptions.add) == 'undefined' || 
14303                         this.store.lastOptions.add != true
14304                     )
14305                 ){
14306                     this.select(0, true);
14307                 }
14308             }else{
14309                 if(this.autoFocus){
14310                     this.selectNext();
14311                 }
14312                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
14313                     this.taTask.delay(this.typeAheadDelay);
14314                 }
14315             }
14316         }else{
14317             this.onEmptyResults();
14318         }
14319         
14320         //this.el.focus();
14321     },
14322     // private
14323     onLoadException : function()
14324     {
14325         this.hasQuery = false;
14326         
14327         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14328             this.loading.hide();
14329         }
14330         
14331         if(this.tickable && this.editable){
14332             return;
14333         }
14334         
14335         this.collapse();
14336         // only causes errors at present
14337         //Roo.log(this.store.reader.jsonData);
14338         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
14339             // fixme
14340             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
14341         //}
14342         
14343         
14344     },
14345     // private
14346     onTypeAhead : function(){
14347         if(this.store.getCount() > 0){
14348             var r = this.store.getAt(0);
14349             var newValue = r.data[this.displayField];
14350             var len = newValue.length;
14351             var selStart = this.getRawValue().length;
14352             
14353             if(selStart != len){
14354                 this.setRawValue(newValue);
14355                 this.selectText(selStart, newValue.length);
14356             }
14357         }
14358     },
14359
14360     // private
14361     onSelect : function(record, index){
14362         
14363         if(this.fireEvent('beforeselect', this, record, index) !== false){
14364         
14365             this.setFromData(index > -1 ? record.data : false);
14366             
14367             this.collapse();
14368             this.fireEvent('select', this, record, index);
14369         }
14370     },
14371
14372     /**
14373      * Returns the currently selected field value or empty string if no value is set.
14374      * @return {String} value The selected value
14375      */
14376     getValue : function()
14377     {
14378         if(Roo.isIOS && this.useNativeIOS){
14379             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
14380         }
14381         
14382         if(this.multiple){
14383             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
14384         }
14385         
14386         if(this.valueField){
14387             return typeof this.value != 'undefined' ? this.value : '';
14388         }else{
14389             return Roo.bootstrap.ComboBox.superclass.getValue.call(this);
14390         }
14391     },
14392     
14393     getRawValue : function()
14394     {
14395         if(Roo.isIOS && this.useNativeIOS){
14396             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
14397         }
14398         
14399         var v = this.inputEl().getValue();
14400         
14401         return v;
14402     },
14403
14404     /**
14405      * Clears any text/value currently set in the field
14406      */
14407     clearValue : function(){
14408         
14409         if(this.hiddenField){
14410             this.hiddenField.dom.value = '';
14411         }
14412         this.value = '';
14413         this.setRawValue('');
14414         this.lastSelectionText = '';
14415         this.lastData = false;
14416         
14417         var close = this.closeTriggerEl();
14418         
14419         if(close){
14420             close.hide();
14421         }
14422         
14423         this.validate();
14424         
14425     },
14426
14427     /**
14428      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
14429      * will be displayed in the field.  If the value does not match the data value of an existing item,
14430      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
14431      * Otherwise the field will be blank (although the value will still be set).
14432      * @param {String} value The value to match
14433      */
14434     setValue : function(v)
14435     {
14436         if(Roo.isIOS && this.useNativeIOS){
14437             this.setIOSValue(v);
14438             return;
14439         }
14440         
14441         if(this.multiple){
14442             this.syncValue();
14443             return;
14444         }
14445         
14446         var text = v;
14447         if(this.valueField){
14448             var r = this.findRecord(this.valueField, v);
14449             if(r){
14450                 text = r.data[this.displayField];
14451             }else if(this.valueNotFoundText !== undefined){
14452                 text = this.valueNotFoundText;
14453             }
14454         }
14455         this.lastSelectionText = text;
14456         if(this.hiddenField){
14457             this.hiddenField.dom.value = v;
14458         }
14459         Roo.bootstrap.ComboBox.superclass.setValue.call(this, text);
14460         this.value = v;
14461         
14462         var close = this.closeTriggerEl();
14463         
14464         if(close){
14465             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
14466         }
14467         
14468         this.validate();
14469     },
14470     /**
14471      * @property {Object} the last set data for the element
14472      */
14473     
14474     lastData : false,
14475     /**
14476      * Sets the value of the field based on a object which is related to the record format for the store.
14477      * @param {Object} value the value to set as. or false on reset?
14478      */
14479     setFromData : function(o){
14480         
14481         if(this.multiple){
14482             this.addItem(o);
14483             return;
14484         }
14485             
14486         var dv = ''; // display value
14487         var vv = ''; // value value..
14488         this.lastData = o;
14489         if (this.displayField) {
14490             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
14491         } else {
14492             // this is an error condition!!!
14493             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
14494         }
14495         
14496         if(this.valueField){
14497             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
14498         }
14499         
14500         var close = this.closeTriggerEl();
14501         
14502         if(close){
14503             if(dv.length || vv * 1 > 0){
14504                 close.show() ;
14505                 this.blockFocus=true;
14506             } else {
14507                 close.hide();
14508             }             
14509         }
14510         
14511         if(this.hiddenField){
14512             this.hiddenField.dom.value = vv;
14513             
14514             this.lastSelectionText = dv;
14515             Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14516             this.value = vv;
14517             return;
14518         }
14519         // no hidden field.. - we store the value in 'value', but still display
14520         // display field!!!!
14521         this.lastSelectionText = dv;
14522         Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14523         this.value = vv;
14524         
14525         
14526         
14527     },
14528     // private
14529     reset : function(){
14530         // overridden so that last data is reset..
14531         
14532         if(this.multiple){
14533             this.clearItem();
14534             return;
14535         }
14536         
14537         this.setValue(this.originalValue);
14538         //this.clearInvalid();
14539         this.lastData = false;
14540         if (this.view) {
14541             this.view.clearSelections();
14542         }
14543         
14544         this.validate();
14545     },
14546     // private
14547     findRecord : function(prop, value){
14548         var record;
14549         if(this.store.getCount() > 0){
14550             this.store.each(function(r){
14551                 if(r.data[prop] == value){
14552                     record = r;
14553                     return false;
14554                 }
14555                 return true;
14556             });
14557         }
14558         return record;
14559     },
14560     
14561     getName: function()
14562     {
14563         // returns hidden if it's set..
14564         if (!this.rendered) {return ''};
14565         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
14566         
14567     },
14568     // private
14569     onViewMove : function(e, t){
14570         this.inKeyMode = false;
14571     },
14572
14573     // private
14574     onViewOver : function(e, t){
14575         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
14576             return;
14577         }
14578         var item = this.view.findItemFromChild(t);
14579         
14580         if(item){
14581             var index = this.view.indexOf(item);
14582             this.select(index, false);
14583         }
14584     },
14585
14586     // private
14587     onViewClick : function(view, doFocus, el, e)
14588     {
14589         var index = this.view.getSelectedIndexes()[0];
14590         
14591         var r = this.store.getAt(index);
14592         
14593         if(this.tickable){
14594             
14595             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
14596                 return;
14597             }
14598             
14599             var rm = false;
14600             var _this = this;
14601             
14602             Roo.each(this.tickItems, function(v,k){
14603                 
14604                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
14605                     Roo.log(v);
14606                     _this.tickItems.splice(k, 1);
14607                     
14608                     if(typeof(e) == 'undefined' && view == false){
14609                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
14610                     }
14611                     
14612                     rm = true;
14613                     return;
14614                 }
14615             });
14616             
14617             if(rm){
14618                 return;
14619             }
14620             
14621             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
14622                 this.tickItems.push(r.data);
14623             }
14624             
14625             if(typeof(e) == 'undefined' && view == false){
14626                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
14627             }
14628                     
14629             return;
14630         }
14631         
14632         if(r){
14633             this.onSelect(r, index);
14634         }
14635         if(doFocus !== false && !this.blockFocus){
14636             this.inputEl().focus();
14637         }
14638     },
14639
14640     // private
14641     restrictHeight : function(){
14642         //this.innerList.dom.style.height = '';
14643         //var inner = this.innerList.dom;
14644         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
14645         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
14646         //this.list.beginUpdate();
14647         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
14648         this.list.alignTo(this.inputEl(), this.listAlign);
14649         this.list.alignTo(this.inputEl(), this.listAlign);
14650         //this.list.endUpdate();
14651     },
14652
14653     // private
14654     onEmptyResults : function(){
14655         
14656         if(this.tickable && this.editable){
14657             this.hasFocus = false;
14658             this.restrictHeight();
14659             return;
14660         }
14661         
14662         this.collapse();
14663     },
14664
14665     /**
14666      * Returns true if the dropdown list is expanded, else false.
14667      */
14668     isExpanded : function(){
14669         return this.list.isVisible();
14670     },
14671
14672     /**
14673      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
14674      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14675      * @param {String} value The data value of the item to select
14676      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14677      * selected item if it is not currently in view (defaults to true)
14678      * @return {Boolean} True if the value matched an item in the list, else false
14679      */
14680     selectByValue : function(v, scrollIntoView){
14681         if(v !== undefined && v !== null){
14682             var r = this.findRecord(this.valueField || this.displayField, v);
14683             if(r){
14684                 this.select(this.store.indexOf(r), scrollIntoView);
14685                 return true;
14686             }
14687         }
14688         return false;
14689     },
14690
14691     /**
14692      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
14693      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14694      * @param {Number} index The zero-based index of the list item to select
14695      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14696      * selected item if it is not currently in view (defaults to true)
14697      */
14698     select : function(index, scrollIntoView){
14699         this.selectedIndex = index;
14700         this.view.select(index);
14701         if(scrollIntoView !== false){
14702             var el = this.view.getNode(index);
14703             /*
14704              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
14705              */
14706             if(el){
14707                 this.list.scrollChildIntoView(el, false);
14708             }
14709         }
14710     },
14711
14712     // private
14713     selectNext : function(){
14714         var ct = this.store.getCount();
14715         if(ct > 0){
14716             if(this.selectedIndex == -1){
14717                 this.select(0);
14718             }else if(this.selectedIndex < ct-1){
14719                 this.select(this.selectedIndex+1);
14720             }
14721         }
14722     },
14723
14724     // private
14725     selectPrev : function(){
14726         var ct = this.store.getCount();
14727         if(ct > 0){
14728             if(this.selectedIndex == -1){
14729                 this.select(0);
14730             }else if(this.selectedIndex != 0){
14731                 this.select(this.selectedIndex-1);
14732             }
14733         }
14734     },
14735
14736     // private
14737     onKeyUp : function(e){
14738         if(this.editable !== false && !e.isSpecialKey()){
14739             this.lastKey = e.getKey();
14740             this.dqTask.delay(this.queryDelay);
14741         }
14742     },
14743
14744     // private
14745     validateBlur : function(){
14746         return !this.list || !this.list.isVisible();   
14747     },
14748
14749     // private
14750     initQuery : function(){
14751         
14752         var v = this.getRawValue();
14753         
14754         if(this.tickable && this.editable){
14755             v = this.tickableInputEl().getValue();
14756         }
14757         
14758         this.doQuery(v);
14759     },
14760
14761     // private
14762     doForce : function(){
14763         if(this.inputEl().dom.value.length > 0){
14764             this.inputEl().dom.value =
14765                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
14766              
14767         }
14768     },
14769
14770     /**
14771      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
14772      * query allowing the query action to be canceled if needed.
14773      * @param {String} query The SQL query to execute
14774      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
14775      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
14776      * saved in the current store (defaults to false)
14777      */
14778     doQuery : function(q, forceAll){
14779         
14780         if(q === undefined || q === null){
14781             q = '';
14782         }
14783         var qe = {
14784             query: q,
14785             forceAll: forceAll,
14786             combo: this,
14787             cancel:false
14788         };
14789         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
14790             return false;
14791         }
14792         q = qe.query;
14793         
14794         forceAll = qe.forceAll;
14795         if(forceAll === true || (q.length >= this.minChars)){
14796             
14797             this.hasQuery = true;
14798             
14799             if(this.lastQuery != q || this.alwaysQuery){
14800                 this.lastQuery = q;
14801                 if(this.mode == 'local'){
14802                     this.selectedIndex = -1;
14803                     if(forceAll){
14804                         this.store.clearFilter();
14805                     }else{
14806                         
14807                         if(this.specialFilter){
14808                             this.fireEvent('specialfilter', this);
14809                             this.onLoad();
14810                             return;
14811                         }
14812                         
14813                         this.store.filter(this.displayField, q);
14814                     }
14815                     
14816                     this.store.fireEvent("datachanged", this.store);
14817                     
14818                     this.onLoad();
14819                     
14820                     
14821                 }else{
14822                     
14823                     this.store.baseParams[this.queryParam] = q;
14824                     
14825                     var options = {params : this.getParams(q)};
14826                     
14827                     if(this.loadNext){
14828                         options.add = true;
14829                         options.params.start = this.page * this.pageSize;
14830                     }
14831                     
14832                     this.store.load(options);
14833                     
14834                     /*
14835                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
14836                      *  we should expand the list on onLoad
14837                      *  so command out it
14838                      */
14839 //                    this.expand();
14840                 }
14841             }else{
14842                 this.selectedIndex = -1;
14843                 this.onLoad();   
14844             }
14845         }
14846         
14847         this.loadNext = false;
14848     },
14849     
14850     // private
14851     getParams : function(q){
14852         var p = {};
14853         //p[this.queryParam] = q;
14854         
14855         if(this.pageSize){
14856             p.start = 0;
14857             p.limit = this.pageSize;
14858         }
14859         return p;
14860     },
14861
14862     /**
14863      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
14864      */
14865     collapse : function(){
14866         if(!this.isExpanded()){
14867             return;
14868         }
14869         
14870         this.list.hide();
14871         
14872         this.hasFocus = false;
14873         
14874         if(this.tickable){
14875             this.okBtn.hide();
14876             this.cancelBtn.hide();
14877             this.trigger.show();
14878             
14879             if(this.editable){
14880                 this.tickableInputEl().dom.value = '';
14881                 this.tickableInputEl().blur();
14882             }
14883             
14884         }
14885         
14886         Roo.get(document).un('mousedown', this.collapseIf, this);
14887         Roo.get(document).un('mousewheel', this.collapseIf, this);
14888         if (!this.editable) {
14889             Roo.get(document).un('keydown', this.listKeyPress, this);
14890         }
14891         this.fireEvent('collapse', this);
14892         
14893         this.validate();
14894     },
14895
14896     // private
14897     collapseIf : function(e){
14898         var in_combo  = e.within(this.el);
14899         var in_list =  e.within(this.list);
14900         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
14901         
14902         if (in_combo || in_list || is_list) {
14903             //e.stopPropagation();
14904             return;
14905         }
14906         
14907         if(this.tickable){
14908             this.onTickableFooterButtonClick(e, false, false);
14909         }
14910
14911         this.collapse();
14912         
14913     },
14914
14915     /**
14916      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
14917      */
14918     expand : function(){
14919        
14920         if(this.isExpanded() || !this.hasFocus){
14921             return;
14922         }
14923         
14924         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
14925         this.list.setWidth(lw);
14926         
14927         Roo.log('expand');
14928         
14929         this.list.show();
14930         
14931         this.restrictHeight();
14932         
14933         if(this.tickable){
14934             
14935             this.tickItems = Roo.apply([], this.item);
14936             
14937             this.okBtn.show();
14938             this.cancelBtn.show();
14939             this.trigger.hide();
14940             
14941             if(this.editable){
14942                 this.tickableInputEl().focus();
14943             }
14944             
14945         }
14946         
14947         Roo.get(document).on('mousedown', this.collapseIf, this);
14948         Roo.get(document).on('mousewheel', this.collapseIf, this);
14949         if (!this.editable) {
14950             Roo.get(document).on('keydown', this.listKeyPress, this);
14951         }
14952         
14953         this.fireEvent('expand', this);
14954     },
14955
14956     // private
14957     // Implements the default empty TriggerField.onTriggerClick function
14958     onTriggerClick : function(e)
14959     {
14960         Roo.log('trigger click');
14961         
14962         if(this.disabled || !this.triggerList){
14963             return;
14964         }
14965         
14966         this.page = 0;
14967         this.loadNext = false;
14968         
14969         if(this.isExpanded()){
14970             this.collapse();
14971             if (!this.blockFocus) {
14972                 this.inputEl().focus();
14973             }
14974             
14975         }else {
14976             this.hasFocus = true;
14977             if(this.triggerAction == 'all') {
14978                 this.doQuery(this.allQuery, true);
14979             } else {
14980                 this.doQuery(this.getRawValue());
14981             }
14982             if (!this.blockFocus) {
14983                 this.inputEl().focus();
14984             }
14985         }
14986     },
14987     
14988     onTickableTriggerClick : function(e)
14989     {
14990         if(this.disabled){
14991             return;
14992         }
14993         
14994         this.page = 0;
14995         this.loadNext = false;
14996         this.hasFocus = true;
14997         
14998         if(this.triggerAction == 'all') {
14999             this.doQuery(this.allQuery, true);
15000         } else {
15001             this.doQuery(this.getRawValue());
15002         }
15003     },
15004     
15005     onSearchFieldClick : function(e)
15006     {
15007         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
15008             this.onTickableFooterButtonClick(e, false, false);
15009             return;
15010         }
15011         
15012         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
15013             return;
15014         }
15015         
15016         this.page = 0;
15017         this.loadNext = false;
15018         this.hasFocus = true;
15019         
15020         if(this.triggerAction == 'all') {
15021             this.doQuery(this.allQuery, true);
15022         } else {
15023             this.doQuery(this.getRawValue());
15024         }
15025     },
15026     
15027     listKeyPress : function(e)
15028     {
15029         //Roo.log('listkeypress');
15030         // scroll to first matching element based on key pres..
15031         if (e.isSpecialKey()) {
15032             return false;
15033         }
15034         var k = String.fromCharCode(e.getKey()).toUpperCase();
15035         //Roo.log(k);
15036         var match  = false;
15037         var csel = this.view.getSelectedNodes();
15038         var cselitem = false;
15039         if (csel.length) {
15040             var ix = this.view.indexOf(csel[0]);
15041             cselitem  = this.store.getAt(ix);
15042             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
15043                 cselitem = false;
15044             }
15045             
15046         }
15047         
15048         this.store.each(function(v) { 
15049             if (cselitem) {
15050                 // start at existing selection.
15051                 if (cselitem.id == v.id) {
15052                     cselitem = false;
15053                 }
15054                 return true;
15055             }
15056                 
15057             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
15058                 match = this.store.indexOf(v);
15059                 return false;
15060             }
15061             return true;
15062         }, this);
15063         
15064         if (match === false) {
15065             return true; // no more action?
15066         }
15067         // scroll to?
15068         this.view.select(match);
15069         var sn = Roo.get(this.view.getSelectedNodes()[0]);
15070         sn.scrollIntoView(sn.dom.parentNode, false);
15071     },
15072     
15073     onViewScroll : function(e, t){
15074         
15075         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){
15076             return;
15077         }
15078         
15079         this.hasQuery = true;
15080         
15081         this.loading = this.list.select('.loading', true).first();
15082         
15083         if(this.loading === null){
15084             this.list.createChild({
15085                 tag: 'div',
15086                 cls: 'loading roo-select2-more-results roo-select2-active',
15087                 html: 'Loading more results...'
15088             });
15089             
15090             this.loading = this.list.select('.loading', true).first();
15091             
15092             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
15093             
15094             this.loading.hide();
15095         }
15096         
15097         this.loading.show();
15098         
15099         var _combo = this;
15100         
15101         this.page++;
15102         this.loadNext = true;
15103         
15104         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
15105         
15106         return;
15107     },
15108     
15109     addItem : function(o)
15110     {   
15111         var dv = ''; // display value
15112         
15113         if (this.displayField) {
15114             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
15115         } else {
15116             // this is an error condition!!!
15117             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
15118         }
15119         
15120         if(!dv.length){
15121             return;
15122         }
15123         
15124         var choice = this.choices.createChild({
15125             tag: 'li',
15126             cls: 'roo-select2-search-choice',
15127             cn: [
15128                 {
15129                     tag: 'div',
15130                     html: dv
15131                 },
15132                 {
15133                     tag: 'a',
15134                     href: '#',
15135                     cls: 'roo-select2-search-choice-close fa fa-times',
15136                     tabindex: '-1'
15137                 }
15138             ]
15139             
15140         }, this.searchField);
15141         
15142         var close = choice.select('a.roo-select2-search-choice-close', true).first();
15143         
15144         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
15145         
15146         this.item.push(o);
15147         
15148         this.lastData = o;
15149         
15150         this.syncValue();
15151         
15152         this.inputEl().dom.value = '';
15153         
15154         this.validate();
15155     },
15156     
15157     onRemoveItem : function(e, _self, o)
15158     {
15159         e.preventDefault();
15160         
15161         this.lastItem = Roo.apply([], this.item);
15162         
15163         var index = this.item.indexOf(o.data) * 1;
15164         
15165         if( index < 0){
15166             Roo.log('not this item?!');
15167             return;
15168         }
15169         
15170         this.item.splice(index, 1);
15171         o.item.remove();
15172         
15173         this.syncValue();
15174         
15175         this.fireEvent('remove', this, e);
15176         
15177         this.validate();
15178         
15179     },
15180     
15181     syncValue : function()
15182     {
15183         if(!this.item.length){
15184             this.clearValue();
15185             return;
15186         }
15187             
15188         var value = [];
15189         var _this = this;
15190         Roo.each(this.item, function(i){
15191             if(_this.valueField){
15192                 value.push(i[_this.valueField]);
15193                 return;
15194             }
15195
15196             value.push(i);
15197         });
15198
15199         this.value = value.join(',');
15200
15201         if(this.hiddenField){
15202             this.hiddenField.dom.value = this.value;
15203         }
15204         
15205         this.store.fireEvent("datachanged", this.store);
15206         
15207         this.validate();
15208     },
15209     
15210     clearItem : function()
15211     {
15212         if(!this.multiple){
15213             return;
15214         }
15215         
15216         this.item = [];
15217         
15218         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
15219            c.remove();
15220         });
15221         
15222         this.syncValue();
15223         
15224         this.validate();
15225         
15226         if(this.tickable && !Roo.isTouch){
15227             this.view.refresh();
15228         }
15229     },
15230     
15231     inputEl: function ()
15232     {
15233         if(Roo.isIOS && this.useNativeIOS){
15234             return this.el.select('select.roo-ios-select', true).first();
15235         }
15236         
15237         if(Roo.isTouch && this.mobileTouchView){
15238             return this.el.select('input.form-control',true).first();
15239         }
15240         
15241         if(this.tickable){
15242             return this.searchField;
15243         }
15244         
15245         return this.el.select('input.form-control',true).first();
15246     },
15247     
15248     onTickableFooterButtonClick : function(e, btn, el)
15249     {
15250         e.preventDefault();
15251         
15252         this.lastItem = Roo.apply([], this.item);
15253         
15254         if(btn && btn.name == 'cancel'){
15255             this.tickItems = Roo.apply([], this.item);
15256             this.collapse();
15257             return;
15258         }
15259         
15260         this.clearItem();
15261         
15262         var _this = this;
15263         
15264         Roo.each(this.tickItems, function(o){
15265             _this.addItem(o);
15266         });
15267         
15268         this.collapse();
15269         
15270     },
15271     
15272     validate : function()
15273     {
15274         if(this.getVisibilityEl().hasClass('hidden')){
15275             return true;
15276         }
15277         
15278         var v = this.getRawValue();
15279         
15280         if(this.multiple){
15281             v = this.getValue();
15282         }
15283         
15284         if(this.disabled || this.allowBlank || v.length){
15285             this.markValid();
15286             return true;
15287         }
15288         
15289         this.markInvalid();
15290         return false;
15291     },
15292     
15293     tickableInputEl : function()
15294     {
15295         if(!this.tickable || !this.editable){
15296             return this.inputEl();
15297         }
15298         
15299         return this.inputEl().select('.roo-select2-search-field-input', true).first();
15300     },
15301     
15302     
15303     getAutoCreateTouchView : function()
15304     {
15305         var id = Roo.id();
15306         
15307         var cfg = {
15308             cls: 'form-group' //input-group
15309         };
15310         
15311         var input =  {
15312             tag: 'input',
15313             id : id,
15314             type : this.inputType,
15315             cls : 'form-control x-combo-noedit',
15316             autocomplete: 'new-password',
15317             placeholder : this.placeholder || '',
15318             readonly : true
15319         };
15320         
15321         if (this.name) {
15322             input.name = this.name;
15323         }
15324         
15325         if (this.size) {
15326             input.cls += ' input-' + this.size;
15327         }
15328         
15329         if (this.disabled) {
15330             input.disabled = true;
15331         }
15332         
15333         var inputblock = {
15334             cls : '',
15335             cn : [
15336                 input
15337             ]
15338         };
15339         
15340         if(this.before){
15341             inputblock.cls += ' input-group';
15342             
15343             inputblock.cn.unshift({
15344                 tag :'span',
15345                 cls : 'input-group-addon input-group-prepend input-group-text',
15346                 html : this.before
15347             });
15348         }
15349         
15350         if(this.removable && !this.multiple){
15351             inputblock.cls += ' roo-removable';
15352             
15353             inputblock.cn.push({
15354                 tag: 'button',
15355                 html : 'x',
15356                 cls : 'roo-combo-removable-btn close'
15357             });
15358         }
15359
15360         if(this.hasFeedback && !this.allowBlank){
15361             
15362             inputblock.cls += ' has-feedback';
15363             
15364             inputblock.cn.push({
15365                 tag: 'span',
15366                 cls: 'glyphicon form-control-feedback'
15367             });
15368             
15369         }
15370         
15371         if (this.after) {
15372             
15373             inputblock.cls += (this.before) ? '' : ' input-group';
15374             
15375             inputblock.cn.push({
15376                 tag :'span',
15377                 cls : 'input-group-addon input-group-append input-group-text',
15378                 html : this.after
15379             });
15380         }
15381
15382         
15383         var ibwrap = inputblock;
15384         
15385         if(this.multiple){
15386             ibwrap = {
15387                 tag: 'ul',
15388                 cls: 'roo-select2-choices',
15389                 cn:[
15390                     {
15391                         tag: 'li',
15392                         cls: 'roo-select2-search-field',
15393                         cn: [
15394
15395                             inputblock
15396                         ]
15397                     }
15398                 ]
15399             };
15400         
15401             
15402         }
15403         
15404         var combobox = {
15405             cls: 'roo-select2-container input-group roo-touchview-combobox ',
15406             cn: [
15407                 {
15408                     tag: 'input',
15409                     type : 'hidden',
15410                     cls: 'form-hidden-field'
15411                 },
15412                 ibwrap
15413             ]
15414         };
15415         
15416         if(!this.multiple && this.showToggleBtn){
15417             
15418             var caret = {
15419                 cls: 'caret'
15420             };
15421             
15422             if (this.caret != false) {
15423                 caret = {
15424                      tag: 'i',
15425                      cls: 'fa fa-' + this.caret
15426                 };
15427                 
15428             }
15429             
15430             combobox.cn.push({
15431                 tag :'span',
15432                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
15433                 cn : [
15434                     Roo.bootstrap.version == 3 ? caret : '',
15435                     {
15436                         tag: 'span',
15437                         cls: 'combobox-clear',
15438                         cn  : [
15439                             {
15440                                 tag : 'i',
15441                                 cls: 'icon-remove'
15442                             }
15443                         ]
15444                     }
15445                 ]
15446
15447             })
15448         }
15449         
15450         if(this.multiple){
15451             combobox.cls += ' roo-select2-container-multi';
15452         }
15453         
15454         var align = this.labelAlign || this.parentLabelAlign();
15455         
15456         if (align ==='left' && this.fieldLabel.length) {
15457
15458             cfg.cn = [
15459                 {
15460                    tag : 'i',
15461                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15462                    tooltip : 'This field is required'
15463                 },
15464                 {
15465                     tag: 'label',
15466                     cls : 'control-label col-form-label',
15467                     html : this.fieldLabel
15468
15469                 },
15470                 {
15471                     cls : '', 
15472                     cn: [
15473                         combobox
15474                     ]
15475                 }
15476             ];
15477             
15478             var labelCfg = cfg.cn[1];
15479             var contentCfg = cfg.cn[2];
15480             
15481
15482             if(this.indicatorpos == 'right'){
15483                 cfg.cn = [
15484                     {
15485                         tag: 'label',
15486                         'for' :  id,
15487                         cls : 'control-label col-form-label',
15488                         cn : [
15489                             {
15490                                 tag : 'span',
15491                                 html : this.fieldLabel
15492                             },
15493                             {
15494                                 tag : 'i',
15495                                 cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15496                                 tooltip : 'This field is required'
15497                             }
15498                         ]
15499                     },
15500                     {
15501                         cls : "",
15502                         cn: [
15503                             combobox
15504                         ]
15505                     }
15506
15507                 ];
15508                 
15509                 labelCfg = cfg.cn[0];
15510                 contentCfg = cfg.cn[1];
15511             }
15512             
15513            
15514             
15515             if(this.labelWidth > 12){
15516                 labelCfg.style = "width: " + this.labelWidth + 'px';
15517             }
15518             
15519             if(this.labelWidth < 13 && this.labelmd == 0){
15520                 this.labelmd = this.labelWidth;
15521             }
15522             
15523             if(this.labellg > 0){
15524                 labelCfg.cls += ' col-lg-' + this.labellg;
15525                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
15526             }
15527             
15528             if(this.labelmd > 0){
15529                 labelCfg.cls += ' col-md-' + this.labelmd;
15530                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
15531             }
15532             
15533             if(this.labelsm > 0){
15534                 labelCfg.cls += ' col-sm-' + this.labelsm;
15535                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
15536             }
15537             
15538             if(this.labelxs > 0){
15539                 labelCfg.cls += ' col-xs-' + this.labelxs;
15540                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
15541             }
15542                 
15543                 
15544         } else if ( this.fieldLabel.length) {
15545             cfg.cn = [
15546                 {
15547                    tag : 'i',
15548                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15549                    tooltip : 'This field is required'
15550                 },
15551                 {
15552                     tag: 'label',
15553                     cls : 'control-label',
15554                     html : this.fieldLabel
15555
15556                 },
15557                 {
15558                     cls : '', 
15559                     cn: [
15560                         combobox
15561                     ]
15562                 }
15563             ];
15564             
15565             if(this.indicatorpos == 'right'){
15566                 cfg.cn = [
15567                     {
15568                         tag: 'label',
15569                         cls : 'control-label',
15570                         html : this.fieldLabel,
15571                         cn : [
15572                             {
15573                                tag : 'i',
15574                                cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15575                                tooltip : 'This field is required'
15576                             }
15577                         ]
15578                     },
15579                     {
15580                         cls : '', 
15581                         cn: [
15582                             combobox
15583                         ]
15584                     }
15585                 ];
15586             }
15587         } else {
15588             cfg.cn = combobox;    
15589         }
15590         
15591         
15592         var settings = this;
15593         
15594         ['xs','sm','md','lg'].map(function(size){
15595             if (settings[size]) {
15596                 cfg.cls += ' col-' + size + '-' + settings[size];
15597             }
15598         });
15599         
15600         return cfg;
15601     },
15602     
15603     initTouchView : function()
15604     {
15605         this.renderTouchView();
15606         
15607         this.touchViewEl.on('scroll', function(){
15608             this.el.dom.scrollTop = 0;
15609         }, this);
15610         
15611         this.originalValue = this.getValue();
15612         
15613         this.triggerEl = this.el.select('span.dropdown-toggle',true).first();
15614         
15615         this.inputEl().on("click", this.showTouchView, this);
15616         if (this.triggerEl) {
15617             this.triggerEl.on("click", this.showTouchView, this);
15618         }
15619         
15620         
15621         this.touchViewFooterEl.select('.roo-touch-view-cancel', true).first().on('click', this.hideTouchView, this);
15622         this.touchViewFooterEl.select('.roo-touch-view-ok', true).first().on('click', this.setTouchViewValue, this);
15623         
15624         this.maskEl = new Roo.LoadMask(this.touchViewEl, { store : this.store, msgCls: 'roo-el-mask-msg' });
15625         
15626         this.store.on('beforeload', this.onTouchViewBeforeLoad, this);
15627         this.store.on('load', this.onTouchViewLoad, this);
15628         this.store.on('loadexception', this.onTouchViewLoadException, this);
15629         
15630         if(this.hiddenName){
15631             
15632             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
15633             
15634             this.hiddenField.dom.value =
15635                 this.hiddenValue !== undefined ? this.hiddenValue :
15636                 this.value !== undefined ? this.value : '';
15637         
15638             this.el.dom.removeAttribute('name');
15639             this.hiddenField.dom.setAttribute('name', this.hiddenName);
15640         }
15641         
15642         if(this.multiple){
15643             this.choices = this.el.select('ul.roo-select2-choices', true).first();
15644             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
15645         }
15646         
15647         if(this.removable && !this.multiple){
15648             var close = this.closeTriggerEl();
15649             if(close){
15650                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
15651                 close.on('click', this.removeBtnClick, this, close);
15652             }
15653         }
15654         /*
15655          * fix the bug in Safari iOS8
15656          */
15657         this.inputEl().on("focus", function(e){
15658             document.activeElement.blur();
15659         }, this);
15660         
15661         this._touchViewMask = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
15662         
15663         return;
15664         
15665         
15666     },
15667     
15668     renderTouchView : function()
15669     {
15670         this.touchViewEl = Roo.get(document.body).createChild(Roo.bootstrap.ComboBox.touchViewTemplate);
15671         this.touchViewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15672         
15673         this.touchViewHeaderEl = this.touchViewEl.select('.modal-header', true).first();
15674         this.touchViewHeaderEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15675         
15676         this.touchViewBodyEl = this.touchViewEl.select('.modal-body', true).first();
15677         this.touchViewBodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15678         this.touchViewBodyEl.setStyle('overflow', 'auto');
15679         
15680         this.touchViewListGroup = this.touchViewBodyEl.select('.list-group', true).first();
15681         this.touchViewListGroup.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15682         
15683         this.touchViewFooterEl = this.touchViewEl.select('.modal-footer', true).first();
15684         this.touchViewFooterEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15685         
15686     },
15687     
15688     showTouchView : function()
15689     {
15690         if(this.disabled){
15691             return;
15692         }
15693         
15694         this.touchViewHeaderEl.hide();
15695
15696         if(this.modalTitle.length){
15697             this.touchViewHeaderEl.dom.innerHTML = this.modalTitle;
15698             this.touchViewHeaderEl.show();
15699         }
15700
15701         this.touchViewEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
15702         this.touchViewEl.show();
15703
15704         this.touchViewEl.select('.modal-dialog', true).first().setStyle({ margin : '0px', width : '100%'});
15705         
15706         //this.touchViewEl.select('.modal-dialog > .modal-content', true).first().setSize(
15707         //        Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
15708
15709         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15710
15711         if(this.modalTitle.length){
15712             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15713         }
15714         
15715         this.touchViewBodyEl.setHeight(bodyHeight);
15716
15717         if(this.animate){
15718             var _this = this;
15719             (function(){ _this.touchViewEl.addClass('in'); }).defer(50);
15720         }else{
15721             this.touchViewEl.addClass('in');
15722         }
15723         
15724         if(this._touchViewMask){
15725             Roo.get(document.body).addClass("x-body-masked");
15726             this._touchViewMask.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
15727             this._touchViewMask.setStyle('z-index', 10000);
15728             this._touchViewMask.addClass('show');
15729         }
15730         
15731         this.doTouchViewQuery();
15732         
15733     },
15734     
15735     hideTouchView : function()
15736     {
15737         this.touchViewEl.removeClass('in');
15738
15739         if(this.animate){
15740             var _this = this;
15741             (function(){ _this.touchViewEl.setStyle('display', 'none'); }).defer(150);
15742         }else{
15743             this.touchViewEl.setStyle('display', 'none');
15744         }
15745         
15746         if(this._touchViewMask){
15747             this._touchViewMask.removeClass('show');
15748             Roo.get(document.body).removeClass("x-body-masked");
15749         }
15750     },
15751     
15752     setTouchViewValue : function()
15753     {
15754         if(this.multiple){
15755             this.clearItem();
15756         
15757             var _this = this;
15758
15759             Roo.each(this.tickItems, function(o){
15760                 this.addItem(o);
15761             }, this);
15762         }
15763         
15764         this.hideTouchView();
15765     },
15766     
15767     doTouchViewQuery : function()
15768     {
15769         var qe = {
15770             query: '',
15771             forceAll: true,
15772             combo: this,
15773             cancel:false
15774         };
15775         
15776         if(this.fireEvent('beforequery', qe) ===false || qe.cancel){
15777             return false;
15778         }
15779         
15780         if(!this.alwaysQuery || this.mode == 'local'){
15781             this.onTouchViewLoad();
15782             return;
15783         }
15784         
15785         this.store.load();
15786     },
15787     
15788     onTouchViewBeforeLoad : function(combo,opts)
15789     {
15790         return;
15791     },
15792
15793     // private
15794     onTouchViewLoad : function()
15795     {
15796         if(this.store.getCount() < 1){
15797             this.onTouchViewEmptyResults();
15798             return;
15799         }
15800         
15801         this.clearTouchView();
15802         
15803         var rawValue = this.getRawValue();
15804         
15805         var template = (this.multiple) ? Roo.bootstrap.ComboBox.listItemCheckbox : Roo.bootstrap.ComboBox.listItemRadio;
15806         
15807         this.tickItems = [];
15808         
15809         this.store.data.each(function(d, rowIndex){
15810             var row = this.touchViewListGroup.createChild(template);
15811             
15812             if(typeof(d.data.cls) != 'undefined' && d.data.cls.length){
15813                 row.addClass(d.data.cls);
15814             }
15815             
15816             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15817                 var cfg = {
15818                     data : d.data,
15819                     html : d.data[this.displayField]
15820                 };
15821                 
15822                 if(this.fireEvent('touchviewdisplay', this, cfg) !== false){
15823                     row.select('.roo-combobox-list-group-item-value', true).first().dom.innerHTML = cfg.html;
15824                 }
15825             }
15826             row.removeClass('selected');
15827             if(!this.multiple && this.valueField &&
15828                     typeof(d.data[this.valueField]) != 'undefined' && d.data[this.valueField] == this.getValue())
15829             {
15830                 // radio buttons..
15831                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15832                 row.addClass('selected');
15833             }
15834             
15835             if(this.multiple && this.valueField &&
15836                     typeof(d.data[this.valueField]) != 'undefined' && this.getValue().indexOf(d.data[this.valueField]) != -1)
15837             {
15838                 
15839                 // checkboxes...
15840                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15841                 this.tickItems.push(d.data);
15842             }
15843             
15844             row.on('click', this.onTouchViewClick, this, {row : row, rowIndex : rowIndex});
15845             
15846         }, this);
15847         
15848         var firstChecked = this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).first();
15849         
15850         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15851
15852         if(this.modalTitle.length){
15853             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15854         }
15855
15856         var listHeight = this.touchViewListGroup.getHeight() + this.touchViewBodyEl.getPadding('tb') * 2;
15857         
15858         if(this.mobile_restrict_height && listHeight < bodyHeight){
15859             this.touchViewBodyEl.setHeight(listHeight);
15860         }
15861         
15862         var _this = this;
15863         
15864         if(firstChecked && listHeight > bodyHeight){
15865             (function() { firstChecked.findParent('li').scrollIntoView(_this.touchViewListGroup.dom); }).defer(500);
15866         }
15867         
15868     },
15869     
15870     onTouchViewLoadException : function()
15871     {
15872         this.hideTouchView();
15873     },
15874     
15875     onTouchViewEmptyResults : function()
15876     {
15877         this.clearTouchView();
15878         
15879         this.touchViewListGroup.createChild(Roo.bootstrap.ComboBox.emptyResult);
15880         
15881         this.touchViewListGroup.select('.roo-combobox-touch-view-empty-result', true).first().dom.innerHTML = this.emptyResultText;
15882         
15883     },
15884     
15885     clearTouchView : function()
15886     {
15887         this.touchViewListGroup.dom.innerHTML = '';
15888     },
15889     
15890     onTouchViewClick : function(e, el, o)
15891     {
15892         e.preventDefault();
15893         
15894         var row = o.row;
15895         var rowIndex = o.rowIndex;
15896         
15897         var r = this.store.getAt(rowIndex);
15898         
15899         if(this.fireEvent('beforeselect', this, r, rowIndex) !== false){
15900             
15901             if(!this.multiple){
15902                 Roo.each(this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).elements, function(c){
15903                     c.dom.removeAttribute('checked');
15904                 }, this);
15905
15906                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15907
15908                 this.setFromData(r.data);
15909
15910                 var close = this.closeTriggerEl();
15911
15912                 if(close){
15913                     close.show();
15914                 }
15915
15916                 this.hideTouchView();
15917
15918                 this.fireEvent('select', this, r, rowIndex);
15919
15920                 return;
15921             }
15922
15923             if(this.valueField && typeof(r.data[this.valueField]) != 'undefined' && this.getValue().indexOf(r.data[this.valueField]) != -1){
15924                 row.select('.roo-combobox-list-group-item-box > input', true).first().dom.removeAttribute('checked');
15925                 this.tickItems.splice(this.tickItems.indexOf(r.data), 1);
15926                 return;
15927             }
15928
15929             row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15930             this.addItem(r.data);
15931             this.tickItems.push(r.data);
15932         }
15933     },
15934     
15935     getAutoCreateNativeIOS : function()
15936     {
15937         var cfg = {
15938             cls: 'form-group' //input-group,
15939         };
15940         
15941         var combobox =  {
15942             tag: 'select',
15943             cls : 'roo-ios-select'
15944         };
15945         
15946         if (this.name) {
15947             combobox.name = this.name;
15948         }
15949         
15950         if (this.disabled) {
15951             combobox.disabled = true;
15952         }
15953         
15954         var settings = this;
15955         
15956         ['xs','sm','md','lg'].map(function(size){
15957             if (settings[size]) {
15958                 cfg.cls += ' col-' + size + '-' + settings[size];
15959             }
15960         });
15961         
15962         cfg.cn = combobox;
15963         
15964         return cfg;
15965         
15966     },
15967     
15968     initIOSView : function()
15969     {
15970         this.store.on('load', this.onIOSViewLoad, this);
15971         
15972         return;
15973     },
15974     
15975     onIOSViewLoad : function()
15976     {
15977         if(this.store.getCount() < 1){
15978             return;
15979         }
15980         
15981         this.clearIOSView();
15982         
15983         if(this.allowBlank) {
15984             
15985             var default_text = '-- SELECT --';
15986             
15987             if(this.placeholder.length){
15988                 default_text = this.placeholder;
15989             }
15990             
15991             if(this.emptyTitle.length){
15992                 default_text += ' - ' + this.emptyTitle + ' -';
15993             }
15994             
15995             var opt = this.inputEl().createChild({
15996                 tag: 'option',
15997                 value : 0,
15998                 html : default_text
15999             });
16000             
16001             var o = {};
16002             o[this.valueField] = 0;
16003             o[this.displayField] = default_text;
16004             
16005             this.ios_options.push({
16006                 data : o,
16007                 el : opt
16008             });
16009             
16010         }
16011         
16012         this.store.data.each(function(d, rowIndex){
16013             
16014             var html = '';
16015             
16016             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
16017                 html = d.data[this.displayField];
16018             }
16019             
16020             var value = '';
16021             
16022             if(this.valueField && typeof(d.data[this.valueField]) != 'undefined'){
16023                 value = d.data[this.valueField];
16024             }
16025             
16026             var option = {
16027                 tag: 'option',
16028                 value : value,
16029                 html : html
16030             };
16031             
16032             if(this.value == d.data[this.valueField]){
16033                 option['selected'] = true;
16034             }
16035             
16036             var opt = this.inputEl().createChild(option);
16037             
16038             this.ios_options.push({
16039                 data : d.data,
16040                 el : opt
16041             });
16042             
16043         }, this);
16044         
16045         this.inputEl().on('change', function(){
16046            this.fireEvent('select', this);
16047         }, this);
16048         
16049     },
16050     
16051     clearIOSView: function()
16052     {
16053         this.inputEl().dom.innerHTML = '';
16054         
16055         this.ios_options = [];
16056     },
16057     
16058     setIOSValue: function(v)
16059     {
16060         this.value = v;
16061         
16062         if(!this.ios_options){
16063             return;
16064         }
16065         
16066         Roo.each(this.ios_options, function(opts){
16067            
16068            opts.el.dom.removeAttribute('selected');
16069            
16070            if(opts.data[this.valueField] != v){
16071                return;
16072            }
16073            
16074            opts.el.dom.setAttribute('selected', true);
16075            
16076         }, this);
16077     }
16078
16079     /** 
16080     * @cfg {Boolean} grow 
16081     * @hide 
16082     */
16083     /** 
16084     * @cfg {Number} growMin 
16085     * @hide 
16086     */
16087     /** 
16088     * @cfg {Number} growMax 
16089     * @hide 
16090     */
16091     /**
16092      * @hide
16093      * @method autoSize
16094      */
16095 });
16096
16097 Roo.apply(Roo.bootstrap.ComboBox,  {
16098     
16099     header : {
16100         tag: 'div',
16101         cls: 'modal-header',
16102         cn: [
16103             {
16104                 tag: 'h4',
16105                 cls: 'modal-title'
16106             }
16107         ]
16108     },
16109     
16110     body : {
16111         tag: 'div',
16112         cls: 'modal-body',
16113         cn: [
16114             {
16115                 tag: 'ul',
16116                 cls: 'list-group'
16117             }
16118         ]
16119     },
16120     
16121     listItemRadio : {
16122         tag: 'li',
16123         cls: 'list-group-item',
16124         cn: [
16125             {
16126                 tag: 'span',
16127                 cls: 'roo-combobox-list-group-item-value'
16128             },
16129             {
16130                 tag: 'div',
16131                 cls: 'roo-combobox-list-group-item-box pull-xs-right radio-inline radio radio-info',
16132                 cn: [
16133                     {
16134                         tag: 'input',
16135                         type: 'radio'
16136                     },
16137                     {
16138                         tag: 'label'
16139                     }
16140                 ]
16141             }
16142         ]
16143     },
16144     
16145     listItemCheckbox : {
16146         tag: 'li',
16147         cls: 'list-group-item',
16148         cn: [
16149             {
16150                 tag: 'span',
16151                 cls: 'roo-combobox-list-group-item-value'
16152             },
16153             {
16154                 tag: 'div',
16155                 cls: 'roo-combobox-list-group-item-box pull-xs-right checkbox-inline checkbox checkbox-info',
16156                 cn: [
16157                     {
16158                         tag: 'input',
16159                         type: 'checkbox'
16160                     },
16161                     {
16162                         tag: 'label'
16163                     }
16164                 ]
16165             }
16166         ]
16167     },
16168     
16169     emptyResult : {
16170         tag: 'div',
16171         cls: 'alert alert-danger roo-combobox-touch-view-empty-result'
16172     },
16173     
16174     footer : {
16175         tag: 'div',
16176         cls: 'modal-footer',
16177         cn: [
16178             {
16179                 tag: 'div',
16180                 cls: 'row',
16181                 cn: [
16182                     {
16183                         tag: 'div',
16184                         cls: 'col-xs-6 text-left',
16185                         cn: {
16186                             tag: 'button',
16187                             cls: 'btn btn-danger roo-touch-view-cancel',
16188                             html: 'Cancel'
16189                         }
16190                     },
16191                     {
16192                         tag: 'div',
16193                         cls: 'col-xs-6 text-right',
16194                         cn: {
16195                             tag: 'button',
16196                             cls: 'btn btn-success roo-touch-view-ok',
16197                             html: 'OK'
16198                         }
16199                     }
16200                 ]
16201             }
16202         ]
16203         
16204     }
16205 });
16206
16207 Roo.apply(Roo.bootstrap.ComboBox,  {
16208     
16209     touchViewTemplate : {
16210         tag: 'div',
16211         cls: 'modal fade roo-combobox-touch-view',
16212         cn: [
16213             {
16214                 tag: 'div',
16215                 cls: 'modal-dialog',
16216                 style : 'position:fixed', // we have to fix position....
16217                 cn: [
16218                     {
16219                         tag: 'div',
16220                         cls: 'modal-content',
16221                         cn: [
16222                             Roo.bootstrap.ComboBox.header,
16223                             Roo.bootstrap.ComboBox.body,
16224                             Roo.bootstrap.ComboBox.footer
16225                         ]
16226                     }
16227                 ]
16228             }
16229         ]
16230     }
16231 });/*
16232  * Based on:
16233  * Ext JS Library 1.1.1
16234  * Copyright(c) 2006-2007, Ext JS, LLC.
16235  *
16236  * Originally Released Under LGPL - original licence link has changed is not relivant.
16237  *
16238  * Fork - LGPL
16239  * <script type="text/javascript">
16240  */
16241
16242 /**
16243  * @class Roo.View
16244  * @extends Roo.util.Observable
16245  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
16246  * This class also supports single and multi selection modes. <br>
16247  * Create a data model bound view:
16248  <pre><code>
16249  var store = new Roo.data.Store(...);
16250
16251  var view = new Roo.View({
16252     el : "my-element",
16253     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
16254  
16255     singleSelect: true,
16256     selectedClass: "ydataview-selected",
16257     store: store
16258  });
16259
16260  // listen for node click?
16261  view.on("click", function(vw, index, node, e){
16262  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
16263  });
16264
16265  // load XML data
16266  dataModel.load("foobar.xml");
16267  </code></pre>
16268  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
16269  * <br><br>
16270  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
16271  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
16272  * 
16273  * Note: old style constructor is still suported (container, template, config)
16274  * 
16275  * @constructor
16276  * Create a new View
16277  * @param {Object} config The config object
16278  * 
16279  */
16280 Roo.View = function(config, depreciated_tpl, depreciated_config){
16281     
16282     this.parent = false;
16283     
16284     if (typeof(depreciated_tpl) == 'undefined') {
16285         // new way.. - universal constructor.
16286         Roo.apply(this, config);
16287         this.el  = Roo.get(this.el);
16288     } else {
16289         // old format..
16290         this.el  = Roo.get(config);
16291         this.tpl = depreciated_tpl;
16292         Roo.apply(this, depreciated_config);
16293     }
16294     this.wrapEl  = this.el.wrap().wrap();
16295     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
16296     
16297     
16298     if(typeof(this.tpl) == "string"){
16299         this.tpl = new Roo.Template(this.tpl);
16300     } else {
16301         // support xtype ctors..
16302         this.tpl = new Roo.factory(this.tpl, Roo);
16303     }
16304     
16305     
16306     this.tpl.compile();
16307     
16308     /** @private */
16309     this.addEvents({
16310         /**
16311          * @event beforeclick
16312          * Fires before a click is processed. Returns false to cancel the default action.
16313          * @param {Roo.View} this
16314          * @param {Number} index The index of the target node
16315          * @param {HTMLElement} node The target node
16316          * @param {Roo.EventObject} e The raw event object
16317          */
16318             "beforeclick" : true,
16319         /**
16320          * @event click
16321          * Fires when a template node is clicked.
16322          * @param {Roo.View} this
16323          * @param {Number} index The index of the target node
16324          * @param {HTMLElement} node The target node
16325          * @param {Roo.EventObject} e The raw event object
16326          */
16327             "click" : true,
16328         /**
16329          * @event dblclick
16330          * Fires when a template node is double clicked.
16331          * @param {Roo.View} this
16332          * @param {Number} index The index of the target node
16333          * @param {HTMLElement} node The target node
16334          * @param {Roo.EventObject} e The raw event object
16335          */
16336             "dblclick" : true,
16337         /**
16338          * @event contextmenu
16339          * Fires when a template node is right clicked.
16340          * @param {Roo.View} this
16341          * @param {Number} index The index of the target node
16342          * @param {HTMLElement} node The target node
16343          * @param {Roo.EventObject} e The raw event object
16344          */
16345             "contextmenu" : true,
16346         /**
16347          * @event selectionchange
16348          * Fires when the selected nodes change.
16349          * @param {Roo.View} this
16350          * @param {Array} selections Array of the selected nodes
16351          */
16352             "selectionchange" : true,
16353     
16354         /**
16355          * @event beforeselect
16356          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
16357          * @param {Roo.View} this
16358          * @param {HTMLElement} node The node to be selected
16359          * @param {Array} selections Array of currently selected nodes
16360          */
16361             "beforeselect" : true,
16362         /**
16363          * @event preparedata
16364          * Fires on every row to render, to allow you to change the data.
16365          * @param {Roo.View} this
16366          * @param {Object} data to be rendered (change this)
16367          */
16368           "preparedata" : true
16369           
16370           
16371         });
16372
16373
16374
16375     this.el.on({
16376         "click": this.onClick,
16377         "dblclick": this.onDblClick,
16378         "contextmenu": this.onContextMenu,
16379         scope:this
16380     });
16381
16382     this.selections = [];
16383     this.nodes = [];
16384     this.cmp = new Roo.CompositeElementLite([]);
16385     if(this.store){
16386         this.store = Roo.factory(this.store, Roo.data);
16387         this.setStore(this.store, true);
16388     }
16389     
16390     if ( this.footer && this.footer.xtype) {
16391            
16392          var fctr = this.wrapEl.appendChild(document.createElement("div"));
16393         
16394         this.footer.dataSource = this.store;
16395         this.footer.container = fctr;
16396         this.footer = Roo.factory(this.footer, Roo);
16397         fctr.insertFirst(this.el);
16398         
16399         // this is a bit insane - as the paging toolbar seems to detach the el..
16400 //        dom.parentNode.parentNode.parentNode
16401          // they get detached?
16402     }
16403     
16404     
16405     Roo.View.superclass.constructor.call(this);
16406     
16407     
16408 };
16409
16410 Roo.extend(Roo.View, Roo.util.Observable, {
16411     
16412      /**
16413      * @cfg {Roo.data.Store} store Data store to load data from.
16414      */
16415     store : false,
16416     
16417     /**
16418      * @cfg {String|Roo.Element} el The container element.
16419      */
16420     el : '',
16421     
16422     /**
16423      * @cfg {String|Roo.Template} tpl The template used by this View 
16424      */
16425     tpl : false,
16426     /**
16427      * @cfg {String} dataName the named area of the template to use as the data area
16428      *                          Works with domtemplates roo-name="name"
16429      */
16430     dataName: false,
16431     /**
16432      * @cfg {String} selectedClass The css class to add to selected nodes
16433      */
16434     selectedClass : "x-view-selected",
16435      /**
16436      * @cfg {String} emptyText The empty text to show when nothing is loaded.
16437      */
16438     emptyText : "",
16439     
16440     /**
16441      * @cfg {String} text to display on mask (default Loading)
16442      */
16443     mask : false,
16444     /**
16445      * @cfg {Boolean} multiSelect Allow multiple selection
16446      */
16447     multiSelect : false,
16448     /**
16449      * @cfg {Boolean} singleSelect Allow single selection
16450      */
16451     singleSelect:  false,
16452     
16453     /**
16454      * @cfg {Boolean} toggleSelect - selecting 
16455      */
16456     toggleSelect : false,
16457     
16458     /**
16459      * @cfg {Boolean} tickable - selecting 
16460      */
16461     tickable : false,
16462     
16463     /**
16464      * Returns the element this view is bound to.
16465      * @return {Roo.Element}
16466      */
16467     getEl : function(){
16468         return this.wrapEl;
16469     },
16470     
16471     
16472
16473     /**
16474      * Refreshes the view. - called by datachanged on the store. - do not call directly.
16475      */
16476     refresh : function(){
16477         //Roo.log('refresh');
16478         var t = this.tpl;
16479         
16480         // if we are using something like 'domtemplate', then
16481         // the what gets used is:
16482         // t.applySubtemplate(NAME, data, wrapping data..)
16483         // the outer template then get' applied with
16484         //     the store 'extra data'
16485         // and the body get's added to the
16486         //      roo-name="data" node?
16487         //      <span class='roo-tpl-{name}'></span> ?????
16488         
16489         
16490         
16491         this.clearSelections();
16492         this.el.update("");
16493         var html = [];
16494         var records = this.store.getRange();
16495         if(records.length < 1) {
16496             
16497             // is this valid??  = should it render a template??
16498             
16499             this.el.update(this.emptyText);
16500             return;
16501         }
16502         var el = this.el;
16503         if (this.dataName) {
16504             this.el.update(t.apply(this.store.meta)); //????
16505             el = this.el.child('.roo-tpl-' + this.dataName);
16506         }
16507         
16508         for(var i = 0, len = records.length; i < len; i++){
16509             var data = this.prepareData(records[i].data, i, records[i]);
16510             this.fireEvent("preparedata", this, data, i, records[i]);
16511             
16512             var d = Roo.apply({}, data);
16513             
16514             if(this.tickable){
16515                 Roo.apply(d, {'roo-id' : Roo.id()});
16516                 
16517                 var _this = this;
16518             
16519                 Roo.each(this.parent.item, function(item){
16520                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
16521                         return;
16522                     }
16523                     Roo.apply(d, {'roo-data-checked' : 'checked'});
16524                 });
16525             }
16526             
16527             html[html.length] = Roo.util.Format.trim(
16528                 this.dataName ?
16529                     t.applySubtemplate(this.dataName, d, this.store.meta) :
16530                     t.apply(d)
16531             );
16532         }
16533         
16534         
16535         
16536         el.update(html.join(""));
16537         this.nodes = el.dom.childNodes;
16538         this.updateIndexes(0);
16539     },
16540     
16541
16542     /**
16543      * Function to override to reformat the data that is sent to
16544      * the template for each node.
16545      * DEPRICATED - use the preparedata event handler.
16546      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
16547      * a JSON object for an UpdateManager bound view).
16548      */
16549     prepareData : function(data, index, record)
16550     {
16551         this.fireEvent("preparedata", this, data, index, record);
16552         return data;
16553     },
16554
16555     onUpdate : function(ds, record){
16556         // Roo.log('on update');   
16557         this.clearSelections();
16558         var index = this.store.indexOf(record);
16559         var n = this.nodes[index];
16560         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
16561         n.parentNode.removeChild(n);
16562         this.updateIndexes(index, index);
16563     },
16564
16565     
16566     
16567 // --------- FIXME     
16568     onAdd : function(ds, records, index)
16569     {
16570         //Roo.log(['on Add', ds, records, index] );        
16571         this.clearSelections();
16572         if(this.nodes.length == 0){
16573             this.refresh();
16574             return;
16575         }
16576         var n = this.nodes[index];
16577         for(var i = 0, len = records.length; i < len; i++){
16578             var d = this.prepareData(records[i].data, i, records[i]);
16579             if(n){
16580                 this.tpl.insertBefore(n, d);
16581             }else{
16582                 
16583                 this.tpl.append(this.el, d);
16584             }
16585         }
16586         this.updateIndexes(index);
16587     },
16588
16589     onRemove : function(ds, record, index){
16590        // Roo.log('onRemove');
16591         this.clearSelections();
16592         var el = this.dataName  ?
16593             this.el.child('.roo-tpl-' + this.dataName) :
16594             this.el; 
16595         
16596         el.dom.removeChild(this.nodes[index]);
16597         this.updateIndexes(index);
16598     },
16599
16600     /**
16601      * Refresh an individual node.
16602      * @param {Number} index
16603      */
16604     refreshNode : function(index){
16605         this.onUpdate(this.store, this.store.getAt(index));
16606     },
16607
16608     updateIndexes : function(startIndex, endIndex){
16609         var ns = this.nodes;
16610         startIndex = startIndex || 0;
16611         endIndex = endIndex || ns.length - 1;
16612         for(var i = startIndex; i <= endIndex; i++){
16613             ns[i].nodeIndex = i;
16614         }
16615     },
16616
16617     /**
16618      * Changes the data store this view uses and refresh the view.
16619      * @param {Store} store
16620      */
16621     setStore : function(store, initial){
16622         if(!initial && this.store){
16623             this.store.un("datachanged", this.refresh);
16624             this.store.un("add", this.onAdd);
16625             this.store.un("remove", this.onRemove);
16626             this.store.un("update", this.onUpdate);
16627             this.store.un("clear", this.refresh);
16628             this.store.un("beforeload", this.onBeforeLoad);
16629             this.store.un("load", this.onLoad);
16630             this.store.un("loadexception", this.onLoad);
16631         }
16632         if(store){
16633           
16634             store.on("datachanged", this.refresh, this);
16635             store.on("add", this.onAdd, this);
16636             store.on("remove", this.onRemove, this);
16637             store.on("update", this.onUpdate, this);
16638             store.on("clear", this.refresh, this);
16639             store.on("beforeload", this.onBeforeLoad, this);
16640             store.on("load", this.onLoad, this);
16641             store.on("loadexception", this.onLoad, this);
16642         }
16643         
16644         if(store){
16645             this.refresh();
16646         }
16647     },
16648     /**
16649      * onbeforeLoad - masks the loading area.
16650      *
16651      */
16652     onBeforeLoad : function(store,opts)
16653     {
16654          //Roo.log('onBeforeLoad');   
16655         if (!opts.add) {
16656             this.el.update("");
16657         }
16658         this.el.mask(this.mask ? this.mask : "Loading" ); 
16659     },
16660     onLoad : function ()
16661     {
16662         this.el.unmask();
16663     },
16664     
16665
16666     /**
16667      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
16668      * @param {HTMLElement} node
16669      * @return {HTMLElement} The template node
16670      */
16671     findItemFromChild : function(node){
16672         var el = this.dataName  ?
16673             this.el.child('.roo-tpl-' + this.dataName,true) :
16674             this.el.dom; 
16675         
16676         if(!node || node.parentNode == el){
16677                     return node;
16678             }
16679             var p = node.parentNode;
16680             while(p && p != el){
16681             if(p.parentNode == el){
16682                 return p;
16683             }
16684             p = p.parentNode;
16685         }
16686             return null;
16687     },
16688
16689     /** @ignore */
16690     onClick : function(e){
16691         var item = this.findItemFromChild(e.getTarget());
16692         if(item){
16693             var index = this.indexOf(item);
16694             if(this.onItemClick(item, index, e) !== false){
16695                 this.fireEvent("click", this, index, item, e);
16696             }
16697         }else{
16698             this.clearSelections();
16699         }
16700     },
16701
16702     /** @ignore */
16703     onContextMenu : function(e){
16704         var item = this.findItemFromChild(e.getTarget());
16705         if(item){
16706             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
16707         }
16708     },
16709
16710     /** @ignore */
16711     onDblClick : function(e){
16712         var item = this.findItemFromChild(e.getTarget());
16713         if(item){
16714             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
16715         }
16716     },
16717
16718     onItemClick : function(item, index, e)
16719     {
16720         if(this.fireEvent("beforeclick", this, index, item, e) === false){
16721             return false;
16722         }
16723         if (this.toggleSelect) {
16724             var m = this.isSelected(item) ? 'unselect' : 'select';
16725             //Roo.log(m);
16726             var _t = this;
16727             _t[m](item, true, false);
16728             return true;
16729         }
16730         if(this.multiSelect || this.singleSelect){
16731             if(this.multiSelect && e.shiftKey && this.lastSelection){
16732                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
16733             }else{
16734                 this.select(item, this.multiSelect && e.ctrlKey);
16735                 this.lastSelection = item;
16736             }
16737             
16738             if(!this.tickable){
16739                 e.preventDefault();
16740             }
16741             
16742         }
16743         return true;
16744     },
16745
16746     /**
16747      * Get the number of selected nodes.
16748      * @return {Number}
16749      */
16750     getSelectionCount : function(){
16751         return this.selections.length;
16752     },
16753
16754     /**
16755      * Get the currently selected nodes.
16756      * @return {Array} An array of HTMLElements
16757      */
16758     getSelectedNodes : function(){
16759         return this.selections;
16760     },
16761
16762     /**
16763      * Get the indexes of the selected nodes.
16764      * @return {Array}
16765      */
16766     getSelectedIndexes : function(){
16767         var indexes = [], s = this.selections;
16768         for(var i = 0, len = s.length; i < len; i++){
16769             indexes.push(s[i].nodeIndex);
16770         }
16771         return indexes;
16772     },
16773
16774     /**
16775      * Clear all selections
16776      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
16777      */
16778     clearSelections : function(suppressEvent){
16779         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
16780             this.cmp.elements = this.selections;
16781             this.cmp.removeClass(this.selectedClass);
16782             this.selections = [];
16783             if(!suppressEvent){
16784                 this.fireEvent("selectionchange", this, this.selections);
16785             }
16786         }
16787     },
16788
16789     /**
16790      * Returns true if the passed node is selected
16791      * @param {HTMLElement/Number} node The node or node index
16792      * @return {Boolean}
16793      */
16794     isSelected : function(node){
16795         var s = this.selections;
16796         if(s.length < 1){
16797             return false;
16798         }
16799         node = this.getNode(node);
16800         return s.indexOf(node) !== -1;
16801     },
16802
16803     /**
16804      * Selects 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 to keep existing selections
16807      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16808      */
16809     select : function(nodeInfo, keepExisting, suppressEvent){
16810         if(nodeInfo instanceof Array){
16811             if(!keepExisting){
16812                 this.clearSelections(true);
16813             }
16814             for(var i = 0, len = nodeInfo.length; i < len; i++){
16815                 this.select(nodeInfo[i], true, true);
16816             }
16817             return;
16818         } 
16819         var node = this.getNode(nodeInfo);
16820         if(!node || this.isSelected(node)){
16821             return; // already selected.
16822         }
16823         if(!keepExisting){
16824             this.clearSelections(true);
16825         }
16826         
16827         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
16828             Roo.fly(node).addClass(this.selectedClass);
16829             this.selections.push(node);
16830             if(!suppressEvent){
16831                 this.fireEvent("selectionchange", this, this.selections);
16832             }
16833         }
16834         
16835         
16836     },
16837       /**
16838      * Unselects nodes.
16839      * @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
16840      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
16841      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16842      */
16843     unselect : function(nodeInfo, keepExisting, suppressEvent)
16844     {
16845         if(nodeInfo instanceof Array){
16846             Roo.each(this.selections, function(s) {
16847                 this.unselect(s, nodeInfo);
16848             }, this);
16849             return;
16850         }
16851         var node = this.getNode(nodeInfo);
16852         if(!node || !this.isSelected(node)){
16853             //Roo.log("not selected");
16854             return; // not selected.
16855         }
16856         // fireevent???
16857         var ns = [];
16858         Roo.each(this.selections, function(s) {
16859             if (s == node ) {
16860                 Roo.fly(node).removeClass(this.selectedClass);
16861
16862                 return;
16863             }
16864             ns.push(s);
16865         },this);
16866         
16867         this.selections= ns;
16868         this.fireEvent("selectionchange", this, this.selections);
16869     },
16870
16871     /**
16872      * Gets a template node.
16873      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16874      * @return {HTMLElement} The node or null if it wasn't found
16875      */
16876     getNode : function(nodeInfo){
16877         if(typeof nodeInfo == "string"){
16878             return document.getElementById(nodeInfo);
16879         }else if(typeof nodeInfo == "number"){
16880             return this.nodes[nodeInfo];
16881         }
16882         return nodeInfo;
16883     },
16884
16885     /**
16886      * Gets a range template nodes.
16887      * @param {Number} startIndex
16888      * @param {Number} endIndex
16889      * @return {Array} An array of nodes
16890      */
16891     getNodes : function(start, end){
16892         var ns = this.nodes;
16893         start = start || 0;
16894         end = typeof end == "undefined" ? ns.length - 1 : end;
16895         var nodes = [];
16896         if(start <= end){
16897             for(var i = start; i <= end; i++){
16898                 nodes.push(ns[i]);
16899             }
16900         } else{
16901             for(var i = start; i >= end; i--){
16902                 nodes.push(ns[i]);
16903             }
16904         }
16905         return nodes;
16906     },
16907
16908     /**
16909      * Finds the index of the passed node
16910      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16911      * @return {Number} The index of the node or -1
16912      */
16913     indexOf : function(node){
16914         node = this.getNode(node);
16915         if(typeof node.nodeIndex == "number"){
16916             return node.nodeIndex;
16917         }
16918         var ns = this.nodes;
16919         for(var i = 0, len = ns.length; i < len; i++){
16920             if(ns[i] == node){
16921                 return i;
16922             }
16923         }
16924         return -1;
16925     }
16926 });
16927 /*
16928  * - LGPL
16929  *
16930  * based on jquery fullcalendar
16931  * 
16932  */
16933
16934 Roo.bootstrap = Roo.bootstrap || {};
16935 /**
16936  * @class Roo.bootstrap.Calendar
16937  * @extends Roo.bootstrap.Component
16938  * Bootstrap Calendar class
16939  * @cfg {Boolean} loadMask (true|false) default false
16940  * @cfg {Object} header generate the user specific header of the calendar, default false
16941
16942  * @constructor
16943  * Create a new Container
16944  * @param {Object} config The config object
16945  */
16946
16947
16948
16949 Roo.bootstrap.Calendar = function(config){
16950     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
16951      this.addEvents({
16952         /**
16953              * @event select
16954              * Fires when a date is selected
16955              * @param {DatePicker} this
16956              * @param {Date} date The selected date
16957              */
16958         'select': true,
16959         /**
16960              * @event monthchange
16961              * Fires when the displayed month changes 
16962              * @param {DatePicker} this
16963              * @param {Date} date The selected month
16964              */
16965         'monthchange': true,
16966         /**
16967              * @event evententer
16968              * Fires when mouse over an event
16969              * @param {Calendar} this
16970              * @param {event} Event
16971              */
16972         'evententer': true,
16973         /**
16974              * @event eventleave
16975              * Fires when the mouse leaves an
16976              * @param {Calendar} this
16977              * @param {event}
16978              */
16979         'eventleave': true,
16980         /**
16981              * @event eventclick
16982              * Fires when the mouse click an
16983              * @param {Calendar} this
16984              * @param {event}
16985              */
16986         'eventclick': true
16987         
16988     });
16989
16990 };
16991
16992 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
16993     
16994      /**
16995      * @cfg {Number} startDay
16996      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
16997      */
16998     startDay : 0,
16999     
17000     loadMask : false,
17001     
17002     header : false,
17003       
17004     getAutoCreate : function(){
17005         
17006         
17007         var fc_button = function(name, corner, style, content ) {
17008             return Roo.apply({},{
17009                 tag : 'span',
17010                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
17011                          (corner.length ?
17012                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
17013                             ''
17014                         ),
17015                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
17016                 unselectable: 'on'
17017             });
17018         };
17019         
17020         var header = {};
17021         
17022         if(!this.header){
17023             header = {
17024                 tag : 'table',
17025                 cls : 'fc-header',
17026                 style : 'width:100%',
17027                 cn : [
17028                     {
17029                         tag: 'tr',
17030                         cn : [
17031                             {
17032                                 tag : 'td',
17033                                 cls : 'fc-header-left',
17034                                 cn : [
17035                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
17036                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
17037                                     { tag: 'span', cls: 'fc-header-space' },
17038                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
17039
17040
17041                                 ]
17042                             },
17043
17044                             {
17045                                 tag : 'td',
17046                                 cls : 'fc-header-center',
17047                                 cn : [
17048                                     {
17049                                         tag: 'span',
17050                                         cls: 'fc-header-title',
17051                                         cn : {
17052                                             tag: 'H2',
17053                                             html : 'month / year'
17054                                         }
17055                                     }
17056
17057                                 ]
17058                             },
17059                             {
17060                                 tag : 'td',
17061                                 cls : 'fc-header-right',
17062                                 cn : [
17063                               /*      fc_button('month', 'left', '', 'month' ),
17064                                     fc_button('week', '', '', 'week' ),
17065                                     fc_button('day', 'right', '', 'day' )
17066                                 */    
17067
17068                                 ]
17069                             }
17070
17071                         ]
17072                     }
17073                 ]
17074             };
17075         }
17076         
17077         header = this.header;
17078         
17079        
17080         var cal_heads = function() {
17081             var ret = [];
17082             // fixme - handle this.
17083             
17084             for (var i =0; i < Date.dayNames.length; i++) {
17085                 var d = Date.dayNames[i];
17086                 ret.push({
17087                     tag: 'th',
17088                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
17089                     html : d.substring(0,3)
17090                 });
17091                 
17092             }
17093             ret[0].cls += ' fc-first';
17094             ret[6].cls += ' fc-last';
17095             return ret;
17096         };
17097         var cal_cell = function(n) {
17098             return  {
17099                 tag: 'td',
17100                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
17101                 cn : [
17102                     {
17103                         cn : [
17104                             {
17105                                 cls: 'fc-day-number',
17106                                 html: 'D'
17107                             },
17108                             {
17109                                 cls: 'fc-day-content',
17110                              
17111                                 cn : [
17112                                      {
17113                                         style: 'position: relative;' // height: 17px;
17114                                     }
17115                                 ]
17116                             }
17117                             
17118                             
17119                         ]
17120                     }
17121                 ]
17122                 
17123             }
17124         };
17125         var cal_rows = function() {
17126             
17127             var ret = [];
17128             for (var r = 0; r < 6; r++) {
17129                 var row= {
17130                     tag : 'tr',
17131                     cls : 'fc-week',
17132                     cn : []
17133                 };
17134                 
17135                 for (var i =0; i < Date.dayNames.length; i++) {
17136                     var d = Date.dayNames[i];
17137                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
17138
17139                 }
17140                 row.cn[0].cls+=' fc-first';
17141                 row.cn[0].cn[0].style = 'min-height:90px';
17142                 row.cn[6].cls+=' fc-last';
17143                 ret.push(row);
17144                 
17145             }
17146             ret[0].cls += ' fc-first';
17147             ret[4].cls += ' fc-prev-last';
17148             ret[5].cls += ' fc-last';
17149             return ret;
17150             
17151         };
17152         
17153         var cal_table = {
17154             tag: 'table',
17155             cls: 'fc-border-separate',
17156             style : 'width:100%',
17157             cellspacing  : 0,
17158             cn : [
17159                 { 
17160                     tag: 'thead',
17161                     cn : [
17162                         { 
17163                             tag: 'tr',
17164                             cls : 'fc-first fc-last',
17165                             cn : cal_heads()
17166                         }
17167                     ]
17168                 },
17169                 { 
17170                     tag: 'tbody',
17171                     cn : cal_rows()
17172                 }
17173                   
17174             ]
17175         };
17176          
17177          var cfg = {
17178             cls : 'fc fc-ltr',
17179             cn : [
17180                 header,
17181                 {
17182                     cls : 'fc-content',
17183                     style : "position: relative;",
17184                     cn : [
17185                         {
17186                             cls : 'fc-view fc-view-month fc-grid',
17187                             style : 'position: relative',
17188                             unselectable : 'on',
17189                             cn : [
17190                                 {
17191                                     cls : 'fc-event-container',
17192                                     style : 'position:absolute;z-index:8;top:0;left:0;'
17193                                 },
17194                                 cal_table
17195                             ]
17196                         }
17197                     ]
17198     
17199                 }
17200            ] 
17201             
17202         };
17203         
17204          
17205         
17206         return cfg;
17207     },
17208     
17209     
17210     initEvents : function()
17211     {
17212         if(!this.store){
17213             throw "can not find store for calendar";
17214         }
17215         
17216         var mark = {
17217             tag: "div",
17218             cls:"x-dlg-mask",
17219             style: "text-align:center",
17220             cn: [
17221                 {
17222                     tag: "div",
17223                     style: "background-color:white;width:50%;margin:250 auto",
17224                     cn: [
17225                         {
17226                             tag: "img",
17227                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
17228                         },
17229                         {
17230                             tag: "span",
17231                             html: "Loading"
17232                         }
17233                         
17234                     ]
17235                 }
17236             ]
17237         };
17238         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
17239         
17240         var size = this.el.select('.fc-content', true).first().getSize();
17241         this.maskEl.setSize(size.width, size.height);
17242         this.maskEl.enableDisplayMode("block");
17243         if(!this.loadMask){
17244             this.maskEl.hide();
17245         }
17246         
17247         this.store = Roo.factory(this.store, Roo.data);
17248         this.store.on('load', this.onLoad, this);
17249         this.store.on('beforeload', this.onBeforeLoad, this);
17250         
17251         this.resize();
17252         
17253         this.cells = this.el.select('.fc-day',true);
17254         //Roo.log(this.cells);
17255         this.textNodes = this.el.query('.fc-day-number');
17256         this.cells.addClassOnOver('fc-state-hover');
17257         
17258         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
17259         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
17260         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
17261         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
17262         
17263         this.on('monthchange', this.onMonthChange, this);
17264         
17265         this.update(new Date().clearTime());
17266     },
17267     
17268     resize : function() {
17269         var sz  = this.el.getSize();
17270         
17271         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
17272         this.el.select('.fc-day-content div',true).setHeight(34);
17273     },
17274     
17275     
17276     // private
17277     showPrevMonth : function(e){
17278         this.update(this.activeDate.add("mo", -1));
17279     },
17280     showToday : function(e){
17281         this.update(new Date().clearTime());
17282     },
17283     // private
17284     showNextMonth : function(e){
17285         this.update(this.activeDate.add("mo", 1));
17286     },
17287
17288     // private
17289     showPrevYear : function(){
17290         this.update(this.activeDate.add("y", -1));
17291     },
17292
17293     // private
17294     showNextYear : function(){
17295         this.update(this.activeDate.add("y", 1));
17296     },
17297
17298     
17299    // private
17300     update : function(date)
17301     {
17302         var vd = this.activeDate;
17303         this.activeDate = date;
17304 //        if(vd && this.el){
17305 //            var t = date.getTime();
17306 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
17307 //                Roo.log('using add remove');
17308 //                
17309 //                this.fireEvent('monthchange', this, date);
17310 //                
17311 //                this.cells.removeClass("fc-state-highlight");
17312 //                this.cells.each(function(c){
17313 //                   if(c.dateValue == t){
17314 //                       c.addClass("fc-state-highlight");
17315 //                       setTimeout(function(){
17316 //                            try{c.dom.firstChild.focus();}catch(e){}
17317 //                       }, 50);
17318 //                       return false;
17319 //                   }
17320 //                   return true;
17321 //                });
17322 //                return;
17323 //            }
17324 //        }
17325         
17326         var days = date.getDaysInMonth();
17327         
17328         var firstOfMonth = date.getFirstDateOfMonth();
17329         var startingPos = firstOfMonth.getDay()-this.startDay;
17330         
17331         if(startingPos < this.startDay){
17332             startingPos += 7;
17333         }
17334         
17335         var pm = date.add(Date.MONTH, -1);
17336         var prevStart = pm.getDaysInMonth()-startingPos;
17337 //        
17338         this.cells = this.el.select('.fc-day',true);
17339         this.textNodes = this.el.query('.fc-day-number');
17340         this.cells.addClassOnOver('fc-state-hover');
17341         
17342         var cells = this.cells.elements;
17343         var textEls = this.textNodes;
17344         
17345         Roo.each(cells, function(cell){
17346             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
17347         });
17348         
17349         days += startingPos;
17350
17351         // convert everything to numbers so it's fast
17352         var day = 86400000;
17353         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
17354         //Roo.log(d);
17355         //Roo.log(pm);
17356         //Roo.log(prevStart);
17357         
17358         var today = new Date().clearTime().getTime();
17359         var sel = date.clearTime().getTime();
17360         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
17361         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
17362         var ddMatch = this.disabledDatesRE;
17363         var ddText = this.disabledDatesText;
17364         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
17365         var ddaysText = this.disabledDaysText;
17366         var format = this.format;
17367         
17368         var setCellClass = function(cal, cell){
17369             cell.row = 0;
17370             cell.events = [];
17371             cell.more = [];
17372             //Roo.log('set Cell Class');
17373             cell.title = "";
17374             var t = d.getTime();
17375             
17376             //Roo.log(d);
17377             
17378             cell.dateValue = t;
17379             if(t == today){
17380                 cell.className += " fc-today";
17381                 cell.className += " fc-state-highlight";
17382                 cell.title = cal.todayText;
17383             }
17384             if(t == sel){
17385                 // disable highlight in other month..
17386                 //cell.className += " fc-state-highlight";
17387                 
17388             }
17389             // disabling
17390             if(t < min) {
17391                 cell.className = " fc-state-disabled";
17392                 cell.title = cal.minText;
17393                 return;
17394             }
17395             if(t > max) {
17396                 cell.className = " fc-state-disabled";
17397                 cell.title = cal.maxText;
17398                 return;
17399             }
17400             if(ddays){
17401                 if(ddays.indexOf(d.getDay()) != -1){
17402                     cell.title = ddaysText;
17403                     cell.className = " fc-state-disabled";
17404                 }
17405             }
17406             if(ddMatch && format){
17407                 var fvalue = d.dateFormat(format);
17408                 if(ddMatch.test(fvalue)){
17409                     cell.title = ddText.replace("%0", fvalue);
17410                     cell.className = " fc-state-disabled";
17411                 }
17412             }
17413             
17414             if (!cell.initialClassName) {
17415                 cell.initialClassName = cell.dom.className;
17416             }
17417             
17418             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
17419         };
17420
17421         var i = 0;
17422         
17423         for(; i < startingPos; i++) {
17424             textEls[i].innerHTML = (++prevStart);
17425             d.setDate(d.getDate()+1);
17426             
17427             cells[i].className = "fc-past fc-other-month";
17428             setCellClass(this, cells[i]);
17429         }
17430         
17431         var intDay = 0;
17432         
17433         for(; i < days; i++){
17434             intDay = i - startingPos + 1;
17435             textEls[i].innerHTML = (intDay);
17436             d.setDate(d.getDate()+1);
17437             
17438             cells[i].className = ''; // "x-date-active";
17439             setCellClass(this, cells[i]);
17440         }
17441         var extraDays = 0;
17442         
17443         for(; i < 42; i++) {
17444             textEls[i].innerHTML = (++extraDays);
17445             d.setDate(d.getDate()+1);
17446             
17447             cells[i].className = "fc-future fc-other-month";
17448             setCellClass(this, cells[i]);
17449         }
17450         
17451         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
17452         
17453         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
17454         
17455         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
17456         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
17457         
17458         if(totalRows != 6){
17459             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
17460             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
17461         }
17462         
17463         this.fireEvent('monthchange', this, date);
17464         
17465         
17466         /*
17467         if(!this.internalRender){
17468             var main = this.el.dom.firstChild;
17469             var w = main.offsetWidth;
17470             this.el.setWidth(w + this.el.getBorderWidth("lr"));
17471             Roo.fly(main).setWidth(w);
17472             this.internalRender = true;
17473             // opera does not respect the auto grow header center column
17474             // then, after it gets a width opera refuses to recalculate
17475             // without a second pass
17476             if(Roo.isOpera && !this.secondPass){
17477                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
17478                 this.secondPass = true;
17479                 this.update.defer(10, this, [date]);
17480             }
17481         }
17482         */
17483         
17484     },
17485     
17486     findCell : function(dt) {
17487         dt = dt.clearTime().getTime();
17488         var ret = false;
17489         this.cells.each(function(c){
17490             //Roo.log("check " +c.dateValue + '?=' + dt);
17491             if(c.dateValue == dt){
17492                 ret = c;
17493                 return false;
17494             }
17495             return true;
17496         });
17497         
17498         return ret;
17499     },
17500     
17501     findCells : function(ev) {
17502         var s = ev.start.clone().clearTime().getTime();
17503        // Roo.log(s);
17504         var e= ev.end.clone().clearTime().getTime();
17505        // Roo.log(e);
17506         var ret = [];
17507         this.cells.each(function(c){
17508              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
17509             
17510             if(c.dateValue > e){
17511                 return ;
17512             }
17513             if(c.dateValue < s){
17514                 return ;
17515             }
17516             ret.push(c);
17517         });
17518         
17519         return ret;    
17520     },
17521     
17522 //    findBestRow: function(cells)
17523 //    {
17524 //        var ret = 0;
17525 //        
17526 //        for (var i =0 ; i < cells.length;i++) {
17527 //            ret  = Math.max(cells[i].rows || 0,ret);
17528 //        }
17529 //        return ret;
17530 //        
17531 //    },
17532     
17533     
17534     addItem : function(ev)
17535     {
17536         // look for vertical location slot in
17537         var cells = this.findCells(ev);
17538         
17539 //        ev.row = this.findBestRow(cells);
17540         
17541         // work out the location.
17542         
17543         var crow = false;
17544         var rows = [];
17545         for(var i =0; i < cells.length; i++) {
17546             
17547             cells[i].row = cells[0].row;
17548             
17549             if(i == 0){
17550                 cells[i].row = cells[i].row + 1;
17551             }
17552             
17553             if (!crow) {
17554                 crow = {
17555                     start : cells[i],
17556                     end :  cells[i]
17557                 };
17558                 continue;
17559             }
17560             if (crow.start.getY() == cells[i].getY()) {
17561                 // on same row.
17562                 crow.end = cells[i];
17563                 continue;
17564             }
17565             // different row.
17566             rows.push(crow);
17567             crow = {
17568                 start: cells[i],
17569                 end : cells[i]
17570             };
17571             
17572         }
17573         
17574         rows.push(crow);
17575         ev.els = [];
17576         ev.rows = rows;
17577         ev.cells = cells;
17578         
17579         cells[0].events.push(ev);
17580         
17581         this.calevents.push(ev);
17582     },
17583     
17584     clearEvents: function() {
17585         
17586         if(!this.calevents){
17587             return;
17588         }
17589         
17590         Roo.each(this.cells.elements, function(c){
17591             c.row = 0;
17592             c.events = [];
17593             c.more = [];
17594         });
17595         
17596         Roo.each(this.calevents, function(e) {
17597             Roo.each(e.els, function(el) {
17598                 el.un('mouseenter' ,this.onEventEnter, this);
17599                 el.un('mouseleave' ,this.onEventLeave, this);
17600                 el.remove();
17601             },this);
17602         },this);
17603         
17604         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
17605             e.remove();
17606         });
17607         
17608     },
17609     
17610     renderEvents: function()
17611     {   
17612         var _this = this;
17613         
17614         this.cells.each(function(c) {
17615             
17616             if(c.row < 5){
17617                 return;
17618             }
17619             
17620             var ev = c.events;
17621             
17622             var r = 4;
17623             if(c.row != c.events.length){
17624                 r = 4 - (4 - (c.row - c.events.length));
17625             }
17626             
17627             c.events = ev.slice(0, r);
17628             c.more = ev.slice(r);
17629             
17630             if(c.more.length && c.more.length == 1){
17631                 c.events.push(c.more.pop());
17632             }
17633             
17634             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
17635             
17636         });
17637             
17638         this.cells.each(function(c) {
17639             
17640             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
17641             
17642             
17643             for (var e = 0; e < c.events.length; e++){
17644                 var ev = c.events[e];
17645                 var rows = ev.rows;
17646                 
17647                 for(var i = 0; i < rows.length; i++) {
17648                 
17649                     // how many rows should it span..
17650
17651                     var  cfg = {
17652                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
17653                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
17654
17655                         unselectable : "on",
17656                         cn : [
17657                             {
17658                                 cls: 'fc-event-inner',
17659                                 cn : [
17660     //                                {
17661     //                                  tag:'span',
17662     //                                  cls: 'fc-event-time',
17663     //                                  html : cells.length > 1 ? '' : ev.time
17664     //                                },
17665                                     {
17666                                       tag:'span',
17667                                       cls: 'fc-event-title',
17668                                       html : String.format('{0}', ev.title)
17669                                     }
17670
17671
17672                                 ]
17673                             },
17674                             {
17675                                 cls: 'ui-resizable-handle ui-resizable-e',
17676                                 html : '&nbsp;&nbsp;&nbsp'
17677                             }
17678
17679                         ]
17680                     };
17681
17682                     if (i == 0) {
17683                         cfg.cls += ' fc-event-start';
17684                     }
17685                     if ((i+1) == rows.length) {
17686                         cfg.cls += ' fc-event-end';
17687                     }
17688
17689                     var ctr = _this.el.select('.fc-event-container',true).first();
17690                     var cg = ctr.createChild(cfg);
17691
17692                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
17693                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
17694
17695                     var r = (c.more.length) ? 1 : 0;
17696                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
17697                     cg.setWidth(ebox.right - sbox.x -2);
17698
17699                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
17700                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
17701                     cg.on('click', _this.onEventClick, _this, ev);
17702
17703                     ev.els.push(cg);
17704                     
17705                 }
17706                 
17707             }
17708             
17709             
17710             if(c.more.length){
17711                 var  cfg = {
17712                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
17713                     style : 'position: absolute',
17714                     unselectable : "on",
17715                     cn : [
17716                         {
17717                             cls: 'fc-event-inner',
17718                             cn : [
17719                                 {
17720                                   tag:'span',
17721                                   cls: 'fc-event-title',
17722                                   html : 'More'
17723                                 }
17724
17725
17726                             ]
17727                         },
17728                         {
17729                             cls: 'ui-resizable-handle ui-resizable-e',
17730                             html : '&nbsp;&nbsp;&nbsp'
17731                         }
17732
17733                     ]
17734                 };
17735
17736                 var ctr = _this.el.select('.fc-event-container',true).first();
17737                 var cg = ctr.createChild(cfg);
17738
17739                 var sbox = c.select('.fc-day-content',true).first().getBox();
17740                 var ebox = c.select('.fc-day-content',true).first().getBox();
17741                 //Roo.log(cg);
17742                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
17743                 cg.setWidth(ebox.right - sbox.x -2);
17744
17745                 cg.on('click', _this.onMoreEventClick, _this, c.more);
17746                 
17747             }
17748             
17749         });
17750         
17751         
17752         
17753     },
17754     
17755     onEventEnter: function (e, el,event,d) {
17756         this.fireEvent('evententer', this, el, event);
17757     },
17758     
17759     onEventLeave: function (e, el,event,d) {
17760         this.fireEvent('eventleave', this, el, event);
17761     },
17762     
17763     onEventClick: function (e, el,event,d) {
17764         this.fireEvent('eventclick', this, el, event);
17765     },
17766     
17767     onMonthChange: function () {
17768         this.store.load();
17769     },
17770     
17771     onMoreEventClick: function(e, el, more)
17772     {
17773         var _this = this;
17774         
17775         this.calpopover.placement = 'right';
17776         this.calpopover.setTitle('More');
17777         
17778         this.calpopover.setContent('');
17779         
17780         var ctr = this.calpopover.el.select('.popover-content', true).first();
17781         
17782         Roo.each(more, function(m){
17783             var cfg = {
17784                 cls : 'fc-event-hori fc-event-draggable',
17785                 html : m.title
17786             };
17787             var cg = ctr.createChild(cfg);
17788             
17789             cg.on('click', _this.onEventClick, _this, m);
17790         });
17791         
17792         this.calpopover.show(el);
17793         
17794         
17795     },
17796     
17797     onLoad: function () 
17798     {   
17799         this.calevents = [];
17800         var cal = this;
17801         
17802         if(this.store.getCount() > 0){
17803             this.store.data.each(function(d){
17804                cal.addItem({
17805                     id : d.data.id,
17806                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
17807                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
17808                     time : d.data.start_time,
17809                     title : d.data.title,
17810                     description : d.data.description,
17811                     venue : d.data.venue
17812                 });
17813             });
17814         }
17815         
17816         this.renderEvents();
17817         
17818         if(this.calevents.length && this.loadMask){
17819             this.maskEl.hide();
17820         }
17821     },
17822     
17823     onBeforeLoad: function()
17824     {
17825         this.clearEvents();
17826         if(this.loadMask){
17827             this.maskEl.show();
17828         }
17829     }
17830 });
17831
17832  
17833  /*
17834  * - LGPL
17835  *
17836  * element
17837  * 
17838  */
17839
17840 /**
17841  * @class Roo.bootstrap.Popover
17842  * @extends Roo.bootstrap.Component
17843  * Bootstrap Popover class
17844  * @cfg {String} html contents of the popover   (or false to use children..)
17845  * @cfg {String} title of popover (or false to hide)
17846  * @cfg {String} placement how it is placed
17847  * @cfg {String} trigger click || hover (or false to trigger manually)
17848  * @cfg {String} over what (parent or false to trigger manually.)
17849  * @cfg {Number} delay - delay before showing
17850  
17851  * @constructor
17852  * Create a new Popover
17853  * @param {Object} config The config object
17854  */
17855
17856 Roo.bootstrap.Popover = function(config){
17857     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
17858     
17859     this.addEvents({
17860         // raw events
17861          /**
17862          * @event show
17863          * After the popover show
17864          * 
17865          * @param {Roo.bootstrap.Popover} this
17866          */
17867         "show" : true,
17868         /**
17869          * @event hide
17870          * After the popover hide
17871          * 
17872          * @param {Roo.bootstrap.Popover} this
17873          */
17874         "hide" : true
17875     });
17876 };
17877
17878 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
17879     
17880     title: 'Fill in a title',
17881     html: false,
17882     
17883     placement : 'right',
17884     trigger : 'hover', // hover
17885     
17886     delay : 0,
17887     
17888     over: 'parent',
17889     
17890     can_build_overlaid : false,
17891     
17892     getChildContainer : function()
17893     {
17894         return this.el.select('.popover-content',true).first();
17895     },
17896     
17897     getAutoCreate : function(){
17898          
17899         var cfg = {
17900            cls : 'popover roo-dynamic',
17901            style: 'display:block',
17902            cn : [
17903                 {
17904                     cls : 'arrow'
17905                 },
17906                 {
17907                     cls : 'popover-inner',
17908                     cn : [
17909                         {
17910                             tag: 'h3',
17911                             cls: 'popover-title popover-header',
17912                             html : this.title
17913                         },
17914                         {
17915                             cls : 'popover-content popover-body',
17916                             html : this.html
17917                         }
17918                     ]
17919                     
17920                 }
17921            ]
17922         };
17923         
17924         return cfg;
17925     },
17926     setTitle: function(str)
17927     {
17928         this.title = str;
17929         this.el.select('.popover-title',true).first().dom.innerHTML = str;
17930     },
17931     setContent: function(str)
17932     {
17933         this.html = str;
17934         this.el.select('.popover-content',true).first().dom.innerHTML = str;
17935     },
17936     // as it get's added to the bottom of the page.
17937     onRender : function(ct, position)
17938     {
17939         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
17940         if(!this.el){
17941             var cfg = Roo.apply({},  this.getAutoCreate());
17942             cfg.id = Roo.id();
17943             
17944             if (this.cls) {
17945                 cfg.cls += ' ' + this.cls;
17946             }
17947             if (this.style) {
17948                 cfg.style = this.style;
17949             }
17950             //Roo.log("adding to ");
17951             this.el = Roo.get(document.body).createChild(cfg, position);
17952 //            Roo.log(this.el);
17953         }
17954         this.initEvents();
17955     },
17956     
17957     initEvents : function()
17958     {
17959         this.el.select('.popover-title',true).setVisibilityMode(Roo.Element.DISPLAY);
17960         this.el.enableDisplayMode('block');
17961         this.el.hide();
17962         if (this.over === false) {
17963             return; 
17964         }
17965         if (this.triggers === false) {
17966             return;
17967         }
17968         var on_el = (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
17969         var triggers = this.trigger ? this.trigger.split(' ') : [];
17970         Roo.each(triggers, function(trigger) {
17971         
17972             if (trigger == 'click') {
17973                 on_el.on('click', this.toggle, this);
17974             } else if (trigger != 'manual') {
17975                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin';
17976                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout';
17977       
17978                 on_el.on(eventIn  ,this.enter, this);
17979                 on_el.on(eventOut, this.leave, this);
17980             }
17981         }, this);
17982         
17983     },
17984     
17985     
17986     // private
17987     timeout : null,
17988     hoverState : null,
17989     
17990     toggle : function () {
17991         this.hoverState == 'in' ? this.leave() : this.enter();
17992     },
17993     
17994     enter : function () {
17995         
17996         clearTimeout(this.timeout);
17997     
17998         this.hoverState = 'in';
17999     
18000         if (!this.delay || !this.delay.show) {
18001             this.show();
18002             return;
18003         }
18004         var _t = this;
18005         this.timeout = setTimeout(function () {
18006             if (_t.hoverState == 'in') {
18007                 _t.show();
18008             }
18009         }, this.delay.show)
18010     },
18011     
18012     leave : function() {
18013         clearTimeout(this.timeout);
18014     
18015         this.hoverState = 'out';
18016     
18017         if (!this.delay || !this.delay.hide) {
18018             this.hide();
18019             return;
18020         }
18021         var _t = this;
18022         this.timeout = setTimeout(function () {
18023             if (_t.hoverState == 'out') {
18024                 _t.hide();
18025             }
18026         }, this.delay.hide)
18027     },
18028     
18029     show : function (on_el)
18030     {
18031         if (!on_el) {
18032             on_el= (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
18033         }
18034         
18035         // set content.
18036         this.el.select('.popover-title',true).first().dom.innerHtml = this.title;
18037         if (this.html !== false) {
18038             this.el.select('.popover-content',true).first().dom.innerHtml = this.html;
18039         }
18040         this.el.removeClass([
18041             'fade','top','bottom', 'left', 'right','in',
18042             'bs-popover-top','bs-popover-bottom', 'bs-popover-left', 'bs-popover-right'
18043         ]);
18044         if (!this.title.length) {
18045             this.el.select('.popover-title',true).hide();
18046         }
18047         
18048         var placement = typeof this.placement == 'function' ?
18049             this.placement.call(this, this.el, on_el) :
18050             this.placement;
18051             
18052         var autoToken = /\s?auto?\s?/i;
18053         var autoPlace = autoToken.test(placement);
18054         if (autoPlace) {
18055             placement = placement.replace(autoToken, '') || 'top';
18056         }
18057         
18058         //this.el.detach()
18059         //this.el.setXY([0,0]);
18060         this.el.show();
18061         this.el.dom.style.display='block';
18062         this.el.addClass(placement);
18063         
18064         //this.el.appendTo(on_el);
18065         
18066         var p = this.getPosition();
18067         var box = this.el.getBox();
18068         
18069         if (autoPlace) {
18070             // fixme..
18071         }
18072         var align = Roo.bootstrap.Popover.alignment[placement];
18073         
18074 //        Roo.log(align);
18075         this.el.alignTo(on_el, align[0],align[1]);
18076         //var arrow = this.el.select('.arrow',true).first();
18077         //arrow.set(align[2], 
18078         
18079         this.el.addClass('in');
18080         
18081         
18082         if (this.el.hasClass('fade')) {
18083             // fade it?
18084         }
18085         
18086         this.hoverState = 'in';
18087         
18088         this.fireEvent('show', this);
18089         
18090     },
18091     hide : function()
18092     {
18093         this.el.setXY([0,0]);
18094         this.el.removeClass('in');
18095         this.el.hide();
18096         this.hoverState = null;
18097         
18098         this.fireEvent('hide', this);
18099     }
18100     
18101 });
18102
18103 Roo.bootstrap.Popover.alignment = {
18104     'left' : ['r-l', [-10,0], 'right bs-popover-right'],
18105     'right' : ['l-r', [10,0], 'left bs-popover-left'],
18106     'bottom' : ['t-b', [0,10], 'top bs-popover-top'],
18107     'top' : [ 'b-t', [0,-10], 'bottom bs-popover-bottom']
18108 };
18109
18110  /*
18111  * - LGPL
18112  *
18113  * Progress
18114  * 
18115  */
18116
18117 /**
18118  * @class Roo.bootstrap.Progress
18119  * @extends Roo.bootstrap.Component
18120  * Bootstrap Progress class
18121  * @cfg {Boolean} striped striped of the progress bar
18122  * @cfg {Boolean} active animated of the progress bar
18123  * 
18124  * 
18125  * @constructor
18126  * Create a new Progress
18127  * @param {Object} config The config object
18128  */
18129
18130 Roo.bootstrap.Progress = function(config){
18131     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
18132 };
18133
18134 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
18135     
18136     striped : false,
18137     active: false,
18138     
18139     getAutoCreate : function(){
18140         var cfg = {
18141             tag: 'div',
18142             cls: 'progress'
18143         };
18144         
18145         
18146         if(this.striped){
18147             cfg.cls += ' progress-striped';
18148         }
18149       
18150         if(this.active){
18151             cfg.cls += ' active';
18152         }
18153         
18154         
18155         return cfg;
18156     }
18157    
18158 });
18159
18160  
18161
18162  /*
18163  * - LGPL
18164  *
18165  * ProgressBar
18166  * 
18167  */
18168
18169 /**
18170  * @class Roo.bootstrap.ProgressBar
18171  * @extends Roo.bootstrap.Component
18172  * Bootstrap ProgressBar class
18173  * @cfg {Number} aria_valuenow aria-value now
18174  * @cfg {Number} aria_valuemin aria-value min
18175  * @cfg {Number} aria_valuemax aria-value max
18176  * @cfg {String} label label for the progress bar
18177  * @cfg {String} panel (success | info | warning | danger )
18178  * @cfg {String} role role of the progress bar
18179  * @cfg {String} sr_only text
18180  * 
18181  * 
18182  * @constructor
18183  * Create a new ProgressBar
18184  * @param {Object} config The config object
18185  */
18186
18187 Roo.bootstrap.ProgressBar = function(config){
18188     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
18189 };
18190
18191 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
18192     
18193     aria_valuenow : 0,
18194     aria_valuemin : 0,
18195     aria_valuemax : 100,
18196     label : false,
18197     panel : false,
18198     role : false,
18199     sr_only: false,
18200     
18201     getAutoCreate : function()
18202     {
18203         
18204         var cfg = {
18205             tag: 'div',
18206             cls: 'progress-bar',
18207             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
18208         };
18209         
18210         if(this.sr_only){
18211             cfg.cn = {
18212                 tag: 'span',
18213                 cls: 'sr-only',
18214                 html: this.sr_only
18215             }
18216         }
18217         
18218         if(this.role){
18219             cfg.role = this.role;
18220         }
18221         
18222         if(this.aria_valuenow){
18223             cfg['aria-valuenow'] = this.aria_valuenow;
18224         }
18225         
18226         if(this.aria_valuemin){
18227             cfg['aria-valuemin'] = this.aria_valuemin;
18228         }
18229         
18230         if(this.aria_valuemax){
18231             cfg['aria-valuemax'] = this.aria_valuemax;
18232         }
18233         
18234         if(this.label && !this.sr_only){
18235             cfg.html = this.label;
18236         }
18237         
18238         if(this.panel){
18239             cfg.cls += ' progress-bar-' + this.panel;
18240         }
18241         
18242         return cfg;
18243     },
18244     
18245     update : function(aria_valuenow)
18246     {
18247         this.aria_valuenow = aria_valuenow;
18248         
18249         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
18250     }
18251    
18252 });
18253
18254  
18255
18256  /*
18257  * - LGPL
18258  *
18259  * column
18260  * 
18261  */
18262
18263 /**
18264  * @class Roo.bootstrap.TabGroup
18265  * @extends Roo.bootstrap.Column
18266  * Bootstrap Column class
18267  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
18268  * @cfg {Boolean} carousel true to make the group behave like a carousel
18269  * @cfg {Boolean} bullets show bullets for the panels
18270  * @cfg {Boolean} autoslide (true|false) auto slide .. default false
18271  * @cfg {Number} timer auto slide timer .. default 0 millisecond
18272  * @cfg {Boolean} showarrow (true|false) show arrow default true
18273  * 
18274  * @constructor
18275  * Create a new TabGroup
18276  * @param {Object} config The config object
18277  */
18278
18279 Roo.bootstrap.TabGroup = function(config){
18280     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
18281     if (!this.navId) {
18282         this.navId = Roo.id();
18283     }
18284     this.tabs = [];
18285     Roo.bootstrap.TabGroup.register(this);
18286     
18287 };
18288
18289 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
18290     
18291     carousel : false,
18292     transition : false,
18293     bullets : 0,
18294     timer : 0,
18295     autoslide : false,
18296     slideFn : false,
18297     slideOnTouch : false,
18298     showarrow : true,
18299     
18300     getAutoCreate : function()
18301     {
18302         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
18303         
18304         cfg.cls += ' tab-content';
18305         
18306         if (this.carousel) {
18307             cfg.cls += ' carousel slide';
18308             
18309             cfg.cn = [{
18310                cls : 'carousel-inner',
18311                cn : []
18312             }];
18313         
18314             if(this.bullets  && !Roo.isTouch){
18315                 
18316                 var bullets = {
18317                     cls : 'carousel-bullets',
18318                     cn : []
18319                 };
18320                
18321                 if(this.bullets_cls){
18322                     bullets.cls = bullets.cls + ' ' + this.bullets_cls;
18323                 }
18324                 
18325                 bullets.cn.push({
18326                     cls : 'clear'
18327                 });
18328                 
18329                 cfg.cn[0].cn.push(bullets);
18330             }
18331             
18332             if(this.showarrow){
18333                 cfg.cn[0].cn.push({
18334                     tag : 'div',
18335                     class : 'carousel-arrow',
18336                     cn : [
18337                         {
18338                             tag : 'div',
18339                             class : 'carousel-prev',
18340                             cn : [
18341                                 {
18342                                     tag : 'i',
18343                                     class : 'fa fa-chevron-left'
18344                                 }
18345                             ]
18346                         },
18347                         {
18348                             tag : 'div',
18349                             class : 'carousel-next',
18350                             cn : [
18351                                 {
18352                                     tag : 'i',
18353                                     class : 'fa fa-chevron-right'
18354                                 }
18355                             ]
18356                         }
18357                     ]
18358                 });
18359             }
18360             
18361         }
18362         
18363         return cfg;
18364     },
18365     
18366     initEvents:  function()
18367     {
18368 //        if(Roo.isTouch && this.slideOnTouch && !this.showarrow){
18369 //            this.el.on("touchstart", this.onTouchStart, this);
18370 //        }
18371         
18372         if(this.autoslide){
18373             var _this = this;
18374             
18375             this.slideFn = window.setInterval(function() {
18376                 _this.showPanelNext();
18377             }, this.timer);
18378         }
18379         
18380         if(this.showarrow){
18381             this.el.select('.carousel-prev', true).first().on('click', this.showPanelPrev, this);
18382             this.el.select('.carousel-next', true).first().on('click', this.showPanelNext, this);
18383         }
18384         
18385         
18386     },
18387     
18388 //    onTouchStart : function(e, el, o)
18389 //    {
18390 //        if(!this.slideOnTouch || !Roo.isTouch || Roo.get(e.getTarget()).hasClass('roo-button-text')){
18391 //            return;
18392 //        }
18393 //        
18394 //        this.showPanelNext();
18395 //    },
18396     
18397     
18398     getChildContainer : function()
18399     {
18400         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
18401     },
18402     
18403     /**
18404     * register a Navigation item
18405     * @param {Roo.bootstrap.NavItem} the navitem to add
18406     */
18407     register : function(item)
18408     {
18409         this.tabs.push( item);
18410         item.navId = this.navId; // not really needed..
18411         this.addBullet();
18412     
18413     },
18414     
18415     getActivePanel : function()
18416     {
18417         var r = false;
18418         Roo.each(this.tabs, function(t) {
18419             if (t.active) {
18420                 r = t;
18421                 return false;
18422             }
18423             return null;
18424         });
18425         return r;
18426         
18427     },
18428     getPanelByName : function(n)
18429     {
18430         var r = false;
18431         Roo.each(this.tabs, function(t) {
18432             if (t.tabId == n) {
18433                 r = t;
18434                 return false;
18435             }
18436             return null;
18437         });
18438         return r;
18439     },
18440     indexOfPanel : function(p)
18441     {
18442         var r = false;
18443         Roo.each(this.tabs, function(t,i) {
18444             if (t.tabId == p.tabId) {
18445                 r = i;
18446                 return false;
18447             }
18448             return null;
18449         });
18450         return r;
18451     },
18452     /**
18453      * show a specific panel
18454      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
18455      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
18456      */
18457     showPanel : function (pan)
18458     {
18459         if(this.transition || typeof(pan) == 'undefined'){
18460             Roo.log("waiting for the transitionend");
18461             return false;
18462         }
18463         
18464         if (typeof(pan) == 'number') {
18465             pan = this.tabs[pan];
18466         }
18467         
18468         if (typeof(pan) == 'string') {
18469             pan = this.getPanelByName(pan);
18470         }
18471         
18472         var cur = this.getActivePanel();
18473         
18474         if(!pan || !cur){
18475             Roo.log('pan or acitve pan is undefined');
18476             return false;
18477         }
18478         
18479         if (pan.tabId == this.getActivePanel().tabId) {
18480             return true;
18481         }
18482         
18483         if (false === cur.fireEvent('beforedeactivate')) {
18484             return false;
18485         }
18486         
18487         if(this.bullets > 0 && !Roo.isTouch){
18488             this.setActiveBullet(this.indexOfPanel(pan));
18489         }
18490         
18491         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
18492             
18493             //class="carousel-item carousel-item-next carousel-item-left"
18494             
18495             this.transition = true;
18496             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
18497             var lr = dir == 'next' ? 'left' : 'right';
18498             pan.el.addClass(dir); // or prev
18499             pan.el.addClass('carousel-item-' + dir); // or prev
18500             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
18501             cur.el.addClass(lr); // or right
18502             pan.el.addClass(lr);
18503             cur.el.addClass('carousel-item-' +lr); // or right
18504             pan.el.addClass('carousel-item-' +lr);
18505             
18506             
18507             var _this = this;
18508             cur.el.on('transitionend', function() {
18509                 Roo.log("trans end?");
18510                 
18511                 pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
18512                 pan.setActive(true);
18513                 
18514                 cur.el.removeClass([lr, 'carousel-item-' + lr]);
18515                 cur.setActive(false);
18516                 
18517                 _this.transition = false;
18518                 
18519             }, this, { single:  true } );
18520             
18521             return true;
18522         }
18523         
18524         cur.setActive(false);
18525         pan.setActive(true);
18526         
18527         return true;
18528         
18529     },
18530     showPanelNext : function()
18531     {
18532         var i = this.indexOfPanel(this.getActivePanel());
18533         
18534         if (i >= this.tabs.length - 1 && !this.autoslide) {
18535             return;
18536         }
18537         
18538         if (i >= this.tabs.length - 1 && this.autoslide) {
18539             i = -1;
18540         }
18541         
18542         this.showPanel(this.tabs[i+1]);
18543     },
18544     
18545     showPanelPrev : function()
18546     {
18547         var i = this.indexOfPanel(this.getActivePanel());
18548         
18549         if (i  < 1 && !this.autoslide) {
18550             return;
18551         }
18552         
18553         if (i < 1 && this.autoslide) {
18554             i = this.tabs.length;
18555         }
18556         
18557         this.showPanel(this.tabs[i-1]);
18558     },
18559     
18560     
18561     addBullet: function()
18562     {
18563         if(!this.bullets || Roo.isTouch){
18564             return;
18565         }
18566         var ctr = this.el.select('.carousel-bullets',true).first();
18567         var i = this.el.select('.carousel-bullets .bullet',true).getCount() ;
18568         var bullet = ctr.createChild({
18569             cls : 'bullet bullet-' + i
18570         },ctr.dom.lastChild);
18571         
18572         
18573         var _this = this;
18574         
18575         bullet.on('click', (function(e, el, o, ii, t){
18576
18577             e.preventDefault();
18578
18579             this.showPanel(ii);
18580
18581             if(this.autoslide && this.slideFn){
18582                 clearInterval(this.slideFn);
18583                 this.slideFn = window.setInterval(function() {
18584                     _this.showPanelNext();
18585                 }, this.timer);
18586             }
18587
18588         }).createDelegate(this, [i, bullet], true));
18589                 
18590         
18591     },
18592      
18593     setActiveBullet : function(i)
18594     {
18595         if(Roo.isTouch){
18596             return;
18597         }
18598         
18599         Roo.each(this.el.select('.bullet', true).elements, function(el){
18600             el.removeClass('selected');
18601         });
18602
18603         var bullet = this.el.select('.bullet-' + i, true).first();
18604         
18605         if(!bullet){
18606             return;
18607         }
18608         
18609         bullet.addClass('selected');
18610     }
18611     
18612     
18613   
18614 });
18615
18616  
18617
18618  
18619  
18620 Roo.apply(Roo.bootstrap.TabGroup, {
18621     
18622     groups: {},
18623      /**
18624     * register a Navigation Group
18625     * @param {Roo.bootstrap.NavGroup} the navgroup to add
18626     */
18627     register : function(navgrp)
18628     {
18629         this.groups[navgrp.navId] = navgrp;
18630         
18631     },
18632     /**
18633     * fetch a Navigation Group based on the navigation ID
18634     * if one does not exist , it will get created.
18635     * @param {string} the navgroup to add
18636     * @returns {Roo.bootstrap.NavGroup} the navgroup 
18637     */
18638     get: function(navId) {
18639         if (typeof(this.groups[navId]) == 'undefined') {
18640             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
18641         }
18642         return this.groups[navId] ;
18643     }
18644     
18645     
18646     
18647 });
18648
18649  /*
18650  * - LGPL
18651  *
18652  * TabPanel
18653  * 
18654  */
18655
18656 /**
18657  * @class Roo.bootstrap.TabPanel
18658  * @extends Roo.bootstrap.Component
18659  * Bootstrap TabPanel class
18660  * @cfg {Boolean} active panel active
18661  * @cfg {String} html panel content
18662  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
18663  * @cfg {String} navId The Roo.bootstrap.NavGroup which triggers show hide ()
18664  * @cfg {String} href click to link..
18665  * 
18666  * 
18667  * @constructor
18668  * Create a new TabPanel
18669  * @param {Object} config The config object
18670  */
18671
18672 Roo.bootstrap.TabPanel = function(config){
18673     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
18674     this.addEvents({
18675         /**
18676              * @event changed
18677              * Fires when the active status changes
18678              * @param {Roo.bootstrap.TabPanel} this
18679              * @param {Boolean} state the new state
18680             
18681          */
18682         'changed': true,
18683         /**
18684              * @event beforedeactivate
18685              * Fires before a tab is de-activated - can be used to do validation on a form.
18686              * @param {Roo.bootstrap.TabPanel} this
18687              * @return {Boolean} false if there is an error
18688             
18689          */
18690         'beforedeactivate': true
18691      });
18692     
18693     this.tabId = this.tabId || Roo.id();
18694   
18695 };
18696
18697 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
18698     
18699     active: false,
18700     html: false,
18701     tabId: false,
18702     navId : false,
18703     href : '',
18704     
18705     getAutoCreate : function(){
18706         
18707         
18708         var cfg = {
18709             tag: 'div',
18710             // item is needed for carousel - not sure if it has any effect otherwise
18711             cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
18712             html: this.html || ''
18713         };
18714         
18715         if(this.active){
18716             cfg.cls += ' active';
18717         }
18718         
18719         if(this.tabId){
18720             cfg.tabId = this.tabId;
18721         }
18722         
18723         
18724         
18725         return cfg;
18726     },
18727     
18728     initEvents:  function()
18729     {
18730         var p = this.parent();
18731         
18732         this.navId = this.navId || p.navId;
18733         
18734         if (typeof(this.navId) != 'undefined') {
18735             // not really needed.. but just in case.. parent should be a NavGroup.
18736             var tg = Roo.bootstrap.TabGroup.get(this.navId);
18737             
18738             tg.register(this);
18739             
18740             var i = tg.tabs.length - 1;
18741             
18742             if(this.active && tg.bullets > 0 && i < tg.bullets){
18743                 tg.setActiveBullet(i);
18744             }
18745         }
18746         
18747         this.el.on('click', this.onClick, this);
18748         
18749         if(Roo.isTouch){
18750             this.el.on("touchstart", this.onTouchStart, this);
18751             this.el.on("touchmove", this.onTouchMove, this);
18752             this.el.on("touchend", this.onTouchEnd, this);
18753         }
18754         
18755     },
18756     
18757     onRender : function(ct, position)
18758     {
18759         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
18760     },
18761     
18762     setActive : function(state)
18763     {
18764         Roo.log("panel - set active " + this.tabId + "=" + state);
18765         
18766         this.active = state;
18767         if (!state) {
18768             this.el.removeClass('active');
18769             
18770         } else  if (!this.el.hasClass('active')) {
18771             this.el.addClass('active');
18772         }
18773         
18774         this.fireEvent('changed', this, state);
18775     },
18776     
18777     onClick : function(e)
18778     {
18779         e.preventDefault();
18780         
18781         if(!this.href.length){
18782             return;
18783         }
18784         
18785         window.location.href = this.href;
18786     },
18787     
18788     startX : 0,
18789     startY : 0,
18790     endX : 0,
18791     endY : 0,
18792     swiping : false,
18793     
18794     onTouchStart : function(e)
18795     {
18796         this.swiping = false;
18797         
18798         this.startX = e.browserEvent.touches[0].clientX;
18799         this.startY = e.browserEvent.touches[0].clientY;
18800     },
18801     
18802     onTouchMove : function(e)
18803     {
18804         this.swiping = true;
18805         
18806         this.endX = e.browserEvent.touches[0].clientX;
18807         this.endY = e.browserEvent.touches[0].clientY;
18808     },
18809     
18810     onTouchEnd : function(e)
18811     {
18812         if(!this.swiping){
18813             this.onClick(e);
18814             return;
18815         }
18816         
18817         var tabGroup = this.parent();
18818         
18819         if(this.endX > this.startX){ // swiping right
18820             tabGroup.showPanelPrev();
18821             return;
18822         }
18823         
18824         if(this.startX > this.endX){ // swiping left
18825             tabGroup.showPanelNext();
18826             return;
18827         }
18828     }
18829     
18830     
18831 });
18832  
18833
18834  
18835
18836  /*
18837  * - LGPL
18838  *
18839  * DateField
18840  * 
18841  */
18842
18843 /**
18844  * @class Roo.bootstrap.DateField
18845  * @extends Roo.bootstrap.Input
18846  * Bootstrap DateField class
18847  * @cfg {Number} weekStart default 0
18848  * @cfg {String} viewMode default empty, (months|years)
18849  * @cfg {String} minViewMode default empty, (months|years)
18850  * @cfg {Number} startDate default -Infinity
18851  * @cfg {Number} endDate default Infinity
18852  * @cfg {Boolean} todayHighlight default false
18853  * @cfg {Boolean} todayBtn default false
18854  * @cfg {Boolean} calendarWeeks default false
18855  * @cfg {Object} daysOfWeekDisabled default empty
18856  * @cfg {Boolean} singleMode default false (true | false)
18857  * 
18858  * @cfg {Boolean} keyboardNavigation default true
18859  * @cfg {String} language default en
18860  * 
18861  * @constructor
18862  * Create a new DateField
18863  * @param {Object} config The config object
18864  */
18865
18866 Roo.bootstrap.DateField = function(config){
18867     Roo.bootstrap.DateField.superclass.constructor.call(this, config);
18868      this.addEvents({
18869             /**
18870              * @event show
18871              * Fires when this field show.
18872              * @param {Roo.bootstrap.DateField} this
18873              * @param {Mixed} date The date value
18874              */
18875             show : true,
18876             /**
18877              * @event show
18878              * Fires when this field hide.
18879              * @param {Roo.bootstrap.DateField} this
18880              * @param {Mixed} date The date value
18881              */
18882             hide : true,
18883             /**
18884              * @event select
18885              * Fires when select a date.
18886              * @param {Roo.bootstrap.DateField} this
18887              * @param {Mixed} date The date value
18888              */
18889             select : true,
18890             /**
18891              * @event beforeselect
18892              * Fires when before select a date.
18893              * @param {Roo.bootstrap.DateField} this
18894              * @param {Mixed} date The date value
18895              */
18896             beforeselect : true
18897         });
18898 };
18899
18900 Roo.extend(Roo.bootstrap.DateField, Roo.bootstrap.Input,  {
18901     
18902     /**
18903      * @cfg {String} format
18904      * The default date format string which can be overriden for localization support.  The format must be
18905      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18906      */
18907     format : "m/d/y",
18908     /**
18909      * @cfg {String} altFormats
18910      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18911      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18912      */
18913     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
18914     
18915     weekStart : 0,
18916     
18917     viewMode : '',
18918     
18919     minViewMode : '',
18920     
18921     todayHighlight : false,
18922     
18923     todayBtn: false,
18924     
18925     language: 'en',
18926     
18927     keyboardNavigation: true,
18928     
18929     calendarWeeks: false,
18930     
18931     startDate: -Infinity,
18932     
18933     endDate: Infinity,
18934     
18935     daysOfWeekDisabled: [],
18936     
18937     _events: [],
18938     
18939     singleMode : false,
18940     
18941     UTCDate: function()
18942     {
18943         return new Date(Date.UTC.apply(Date, arguments));
18944     },
18945     
18946     UTCToday: function()
18947     {
18948         var today = new Date();
18949         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
18950     },
18951     
18952     getDate: function() {
18953             var d = this.getUTCDate();
18954             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
18955     },
18956     
18957     getUTCDate: function() {
18958             return this.date;
18959     },
18960     
18961     setDate: function(d) {
18962             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
18963     },
18964     
18965     setUTCDate: function(d) {
18966             this.date = d;
18967             this.setValue(this.formatDate(this.date));
18968     },
18969         
18970     onRender: function(ct, position)
18971     {
18972         
18973         Roo.bootstrap.DateField.superclass.onRender.call(this, ct, position);
18974         
18975         this.language = this.language || 'en';
18976         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : this.language.split('-')[0];
18977         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : "en";
18978         
18979         this.isRTL = Roo.bootstrap.DateField.dates[this.language].rtl || false;
18980         this.format = this.format || 'm/d/y';
18981         this.isInline = false;
18982         this.isInput = true;
18983         this.component = this.el.select('.add-on', true).first() || false;
18984         this.component = (this.component && this.component.length === 0) ? false : this.component;
18985         this.hasInput = this.component && this.inputEl().length;
18986         
18987         if (typeof(this.minViewMode === 'string')) {
18988             switch (this.minViewMode) {
18989                 case 'months':
18990                     this.minViewMode = 1;
18991                     break;
18992                 case 'years':
18993                     this.minViewMode = 2;
18994                     break;
18995                 default:
18996                     this.minViewMode = 0;
18997                     break;
18998             }
18999         }
19000         
19001         if (typeof(this.viewMode === 'string')) {
19002             switch (this.viewMode) {
19003                 case 'months':
19004                     this.viewMode = 1;
19005                     break;
19006                 case 'years':
19007                     this.viewMode = 2;
19008                     break;
19009                 default:
19010                     this.viewMode = 0;
19011                     break;
19012             }
19013         }
19014                 
19015         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.DateField.template);
19016         
19017 //        this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.DateField.template);
19018         
19019         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19020         
19021         this.picker().on('mousedown', this.onMousedown, this);
19022         this.picker().on('click', this.onClick, this);
19023         
19024         this.picker().addClass('datepicker-dropdown');
19025         
19026         this.startViewMode = this.viewMode;
19027         
19028         if(this.singleMode){
19029             Roo.each(this.picker().select('thead > tr > th', true).elements, function(v){
19030                 v.setVisibilityMode(Roo.Element.DISPLAY);
19031                 v.hide();
19032             });
19033             
19034             Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
19035                 v.setStyle('width', '189px');
19036             });
19037         }
19038         
19039         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
19040             if(!this.calendarWeeks){
19041                 v.remove();
19042                 return;
19043             }
19044             
19045             v.dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19046             v.attr('colspan', function(i, val){
19047                 return parseInt(val) + 1;
19048             });
19049         });
19050                         
19051         
19052         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
19053         
19054         this.setStartDate(this.startDate);
19055         this.setEndDate(this.endDate);
19056         
19057         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
19058         
19059         this.fillDow();
19060         this.fillMonths();
19061         this.update();
19062         this.showMode();
19063         
19064         if(this.isInline) {
19065             this.showPopup();
19066         }
19067     },
19068     
19069     picker : function()
19070     {
19071         return this.pickerEl;
19072 //        return this.el.select('.datepicker', true).first();
19073     },
19074     
19075     fillDow: function()
19076     {
19077         var dowCnt = this.weekStart;
19078         
19079         var dow = {
19080             tag: 'tr',
19081             cn: [
19082                 
19083             ]
19084         };
19085         
19086         if(this.calendarWeeks){
19087             dow.cn.push({
19088                 tag: 'th',
19089                 cls: 'cw',
19090                 html: '&nbsp;'
19091             })
19092         }
19093         
19094         while (dowCnt < this.weekStart + 7) {
19095             dow.cn.push({
19096                 tag: 'th',
19097                 cls: 'dow',
19098                 html: Roo.bootstrap.DateField.dates[this.language].daysMin[(dowCnt++)%7]
19099             });
19100         }
19101         
19102         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
19103     },
19104     
19105     fillMonths: function()
19106     {    
19107         var i = 0;
19108         var months = this.picker().select('>.datepicker-months td', true).first();
19109         
19110         months.dom.innerHTML = '';
19111         
19112         while (i < 12) {
19113             var month = {
19114                 tag: 'span',
19115                 cls: 'month',
19116                 html: Roo.bootstrap.DateField.dates[this.language].monthsShort[i++]
19117             };
19118             
19119             months.createChild(month);
19120         }
19121         
19122     },
19123     
19124     update: function()
19125     {
19126         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;
19127         
19128         if (this.date < this.startDate) {
19129             this.viewDate = new Date(this.startDate);
19130         } else if (this.date > this.endDate) {
19131             this.viewDate = new Date(this.endDate);
19132         } else {
19133             this.viewDate = new Date(this.date);
19134         }
19135         
19136         this.fill();
19137     },
19138     
19139     fill: function() 
19140     {
19141         var d = new Date(this.viewDate),
19142                 year = d.getUTCFullYear(),
19143                 month = d.getUTCMonth(),
19144                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
19145                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
19146                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
19147                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
19148                 currentDate = this.date && this.date.valueOf(),
19149                 today = this.UTCToday();
19150         
19151         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].months[month]+' '+year;
19152         
19153 //        this.picker().select('>tfoot th.today', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19154         
19155 //        this.picker.select('>tfoot th.today').
19156 //                                              .text(dates[this.language].today)
19157 //                                              .toggle(this.todayBtn !== false);
19158     
19159         this.updateNavArrows();
19160         this.fillMonths();
19161                                                 
19162         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
19163         
19164         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
19165          
19166         prevMonth.setUTCDate(day);
19167         
19168         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
19169         
19170         var nextMonth = new Date(prevMonth);
19171         
19172         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
19173         
19174         nextMonth = nextMonth.valueOf();
19175         
19176         var fillMonths = false;
19177         
19178         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
19179         
19180         while(prevMonth.valueOf() <= nextMonth) {
19181             var clsName = '';
19182             
19183             if (prevMonth.getUTCDay() === this.weekStart) {
19184                 if(fillMonths){
19185                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
19186                 }
19187                     
19188                 fillMonths = {
19189                     tag: 'tr',
19190                     cn: []
19191                 };
19192                 
19193                 if(this.calendarWeeks){
19194                     // ISO 8601: First week contains first thursday.
19195                     // ISO also states week starts on Monday, but we can be more abstract here.
19196                     var
19197                     // Start of current week: based on weekstart/current date
19198                     ws = new Date(+prevMonth + (this.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
19199                     // Thursday of this week
19200                     th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
19201                     // First Thursday of year, year from thursday
19202                     yth = new Date(+(yth = this.UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
19203                     // Calendar week: ms between thursdays, div ms per day, div 7 days
19204                     calWeek =  (th - yth) / 864e5 / 7 + 1;
19205                     
19206                     fillMonths.cn.push({
19207                         tag: 'td',
19208                         cls: 'cw',
19209                         html: calWeek
19210                     });
19211                 }
19212             }
19213             
19214             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
19215                 clsName += ' old';
19216             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
19217                 clsName += ' new';
19218             }
19219             if (this.todayHighlight &&
19220                 prevMonth.getUTCFullYear() == today.getFullYear() &&
19221                 prevMonth.getUTCMonth() == today.getMonth() &&
19222                 prevMonth.getUTCDate() == today.getDate()) {
19223                 clsName += ' today';
19224             }
19225             
19226             if (currentDate && prevMonth.valueOf() === currentDate) {
19227                 clsName += ' active';
19228             }
19229             
19230             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
19231                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
19232                     clsName += ' disabled';
19233             }
19234             
19235             fillMonths.cn.push({
19236                 tag: 'td',
19237                 cls: 'day ' + clsName,
19238                 html: prevMonth.getDate()
19239             });
19240             
19241             prevMonth.setDate(prevMonth.getDate()+1);
19242         }
19243           
19244         var currentYear = this.date && this.date.getUTCFullYear();
19245         var currentMonth = this.date && this.date.getUTCMonth();
19246         
19247         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
19248         
19249         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
19250             v.removeClass('active');
19251             
19252             if(currentYear === year && k === currentMonth){
19253                 v.addClass('active');
19254             }
19255             
19256             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
19257                 v.addClass('disabled');
19258             }
19259             
19260         });
19261         
19262         
19263         year = parseInt(year/10, 10) * 10;
19264         
19265         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
19266         
19267         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
19268         
19269         year -= 1;
19270         for (var i = -1; i < 11; i++) {
19271             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
19272                 tag: 'span',
19273                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
19274                 html: year
19275             });
19276             
19277             year += 1;
19278         }
19279     },
19280     
19281     showMode: function(dir) 
19282     {
19283         if (dir) {
19284             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
19285         }
19286         
19287         Roo.each(this.picker().select('>div',true).elements, function(v){
19288             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19289             v.hide();
19290         });
19291         this.picker().select('>.datepicker-'+Roo.bootstrap.DateField.modes[this.viewMode].clsName, true).first().show();
19292     },
19293     
19294     place: function()
19295     {
19296         if(this.isInline) {
19297             return;
19298         }
19299         
19300         this.picker().removeClass(['bottom', 'top']);
19301         
19302         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
19303             /*
19304              * place to the top of element!
19305              *
19306              */
19307             
19308             this.picker().addClass('top');
19309             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
19310             
19311             return;
19312         }
19313         
19314         this.picker().addClass('bottom');
19315         
19316         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
19317     },
19318     
19319     parseDate : function(value)
19320     {
19321         if(!value || value instanceof Date){
19322             return value;
19323         }
19324         var v = Date.parseDate(value, this.format);
19325         if (!v && (this.useIso || value.match(/^(\d{4})-0?(\d+)-0?(\d+)/))) {
19326             v = Date.parseDate(value, 'Y-m-d');
19327         }
19328         if(!v && this.altFormats){
19329             if(!this.altFormatsArray){
19330                 this.altFormatsArray = this.altFormats.split("|");
19331             }
19332             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
19333                 v = Date.parseDate(value, this.altFormatsArray[i]);
19334             }
19335         }
19336         return v;
19337     },
19338     
19339     formatDate : function(date, fmt)
19340     {   
19341         return (!date || !(date instanceof Date)) ?
19342         date : date.dateFormat(fmt || this.format);
19343     },
19344     
19345     onFocus : function()
19346     {
19347         Roo.bootstrap.DateField.superclass.onFocus.call(this);
19348         this.showPopup();
19349     },
19350     
19351     onBlur : function()
19352     {
19353         Roo.bootstrap.DateField.superclass.onBlur.call(this);
19354         
19355         var d = this.inputEl().getValue();
19356         
19357         this.setValue(d);
19358                 
19359         this.hidePopup();
19360     },
19361     
19362     showPopup : function()
19363     {
19364         this.picker().show();
19365         this.update();
19366         this.place();
19367         
19368         this.fireEvent('showpopup', this, this.date);
19369     },
19370     
19371     hidePopup : function()
19372     {
19373         if(this.isInline) {
19374             return;
19375         }
19376         this.picker().hide();
19377         this.viewMode = this.startViewMode;
19378         this.showMode();
19379         
19380         this.fireEvent('hidepopup', this, this.date);
19381         
19382     },
19383     
19384     onMousedown: function(e)
19385     {
19386         e.stopPropagation();
19387         e.preventDefault();
19388     },
19389     
19390     keyup: function(e)
19391     {
19392         Roo.bootstrap.DateField.superclass.keyup.call(this);
19393         this.update();
19394     },
19395
19396     setValue: function(v)
19397     {
19398         if(this.fireEvent('beforeselect', this, v) !== false){
19399             var d = new Date(this.parseDate(v) ).clearTime();
19400         
19401             if(isNaN(d.getTime())){
19402                 this.date = this.viewDate = '';
19403                 Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19404                 return;
19405             }
19406
19407             v = this.formatDate(d);
19408
19409             Roo.bootstrap.DateField.superclass.setValue.call(this, v);
19410
19411             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
19412
19413             this.update();
19414
19415             this.fireEvent('select', this, this.date);
19416         }
19417     },
19418     
19419     getValue: function()
19420     {
19421         return this.formatDate(this.date);
19422     },
19423     
19424     fireKey: function(e)
19425     {
19426         if (!this.picker().isVisible()){
19427             if (e.keyCode == 27) { // allow escape to hide and re-show picker
19428                 this.showPopup();
19429             }
19430             return;
19431         }
19432         
19433         var dateChanged = false,
19434         dir, day, month,
19435         newDate, newViewDate;
19436         
19437         switch(e.keyCode){
19438             case 27: // escape
19439                 this.hidePopup();
19440                 e.preventDefault();
19441                 break;
19442             case 37: // left
19443             case 39: // right
19444                 if (!this.keyboardNavigation) {
19445                     break;
19446                 }
19447                 dir = e.keyCode == 37 ? -1 : 1;
19448                 
19449                 if (e.ctrlKey){
19450                     newDate = this.moveYear(this.date, dir);
19451                     newViewDate = this.moveYear(this.viewDate, dir);
19452                 } else if (e.shiftKey){
19453                     newDate = this.moveMonth(this.date, dir);
19454                     newViewDate = this.moveMonth(this.viewDate, dir);
19455                 } else {
19456                     newDate = new Date(this.date);
19457                     newDate.setUTCDate(this.date.getUTCDate() + dir);
19458                     newViewDate = new Date(this.viewDate);
19459                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
19460                 }
19461                 if (this.dateWithinRange(newDate)){
19462                     this.date = newDate;
19463                     this.viewDate = newViewDate;
19464                     this.setValue(this.formatDate(this.date));
19465 //                    this.update();
19466                     e.preventDefault();
19467                     dateChanged = true;
19468                 }
19469                 break;
19470             case 38: // up
19471             case 40: // down
19472                 if (!this.keyboardNavigation) {
19473                     break;
19474                 }
19475                 dir = e.keyCode == 38 ? -1 : 1;
19476                 if (e.ctrlKey){
19477                     newDate = this.moveYear(this.date, dir);
19478                     newViewDate = this.moveYear(this.viewDate, dir);
19479                 } else if (e.shiftKey){
19480                     newDate = this.moveMonth(this.date, dir);
19481                     newViewDate = this.moveMonth(this.viewDate, dir);
19482                 } else {
19483                     newDate = new Date(this.date);
19484                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
19485                     newViewDate = new Date(this.viewDate);
19486                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
19487                 }
19488                 if (this.dateWithinRange(newDate)){
19489                     this.date = newDate;
19490                     this.viewDate = newViewDate;
19491                     this.setValue(this.formatDate(this.date));
19492 //                    this.update();
19493                     e.preventDefault();
19494                     dateChanged = true;
19495                 }
19496                 break;
19497             case 13: // enter
19498                 this.setValue(this.formatDate(this.date));
19499                 this.hidePopup();
19500                 e.preventDefault();
19501                 break;
19502             case 9: // tab
19503                 this.setValue(this.formatDate(this.date));
19504                 this.hidePopup();
19505                 break;
19506             case 16: // shift
19507             case 17: // ctrl
19508             case 18: // alt
19509                 break;
19510             default :
19511                 this.hidePopup();
19512                 
19513         }
19514     },
19515     
19516     
19517     onClick: function(e) 
19518     {
19519         e.stopPropagation();
19520         e.preventDefault();
19521         
19522         var target = e.getTarget();
19523         
19524         if(target.nodeName.toLowerCase() === 'i'){
19525             target = Roo.get(target).dom.parentNode;
19526         }
19527         
19528         var nodeName = target.nodeName;
19529         var className = target.className;
19530         var html = target.innerHTML;
19531         //Roo.log(nodeName);
19532         
19533         switch(nodeName.toLowerCase()) {
19534             case 'th':
19535                 switch(className) {
19536                     case 'switch':
19537                         this.showMode(1);
19538                         break;
19539                     case 'prev':
19540                     case 'next':
19541                         var dir = Roo.bootstrap.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
19542                         switch(this.viewMode){
19543                                 case 0:
19544                                         this.viewDate = this.moveMonth(this.viewDate, dir);
19545                                         break;
19546                                 case 1:
19547                                 case 2:
19548                                         this.viewDate = this.moveYear(this.viewDate, dir);
19549                                         break;
19550                         }
19551                         this.fill();
19552                         break;
19553                     case 'today':
19554                         var date = new Date();
19555                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
19556 //                        this.fill()
19557                         this.setValue(this.formatDate(this.date));
19558                         
19559                         this.hidePopup();
19560                         break;
19561                 }
19562                 break;
19563             case 'span':
19564                 if (className.indexOf('disabled') < 0) {
19565                     this.viewDate.setUTCDate(1);
19566                     if (className.indexOf('month') > -1) {
19567                         this.viewDate.setUTCMonth(Roo.bootstrap.DateField.dates[this.language].monthsShort.indexOf(html));
19568                     } else {
19569                         var year = parseInt(html, 10) || 0;
19570                         this.viewDate.setUTCFullYear(year);
19571                         
19572                     }
19573                     
19574                     if(this.singleMode){
19575                         this.setValue(this.formatDate(this.viewDate));
19576                         this.hidePopup();
19577                         return;
19578                     }
19579                     
19580                     this.showMode(-1);
19581                     this.fill();
19582                 }
19583                 break;
19584                 
19585             case 'td':
19586                 //Roo.log(className);
19587                 if (className.indexOf('day') > -1 && className.indexOf('disabled') < 0 ){
19588                     var day = parseInt(html, 10) || 1;
19589                     var year = this.viewDate.getUTCFullYear(),
19590                         month = this.viewDate.getUTCMonth();
19591
19592                     if (className.indexOf('old') > -1) {
19593                         if(month === 0 ){
19594                             month = 11;
19595                             year -= 1;
19596                         }else{
19597                             month -= 1;
19598                         }
19599                     } else if (className.indexOf('new') > -1) {
19600                         if (month == 11) {
19601                             month = 0;
19602                             year += 1;
19603                         } else {
19604                             month += 1;
19605                         }
19606                     }
19607                     //Roo.log([year,month,day]);
19608                     this.date = this.UTCDate(year, month, day,0,0,0,0);
19609                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
19610 //                    this.fill();
19611                     //Roo.log(this.formatDate(this.date));
19612                     this.setValue(this.formatDate(this.date));
19613                     this.hidePopup();
19614                 }
19615                 break;
19616         }
19617     },
19618     
19619     setStartDate: function(startDate)
19620     {
19621         this.startDate = startDate || -Infinity;
19622         if (this.startDate !== -Infinity) {
19623             this.startDate = this.parseDate(this.startDate);
19624         }
19625         this.update();
19626         this.updateNavArrows();
19627     },
19628
19629     setEndDate: function(endDate)
19630     {
19631         this.endDate = endDate || Infinity;
19632         if (this.endDate !== Infinity) {
19633             this.endDate = this.parseDate(this.endDate);
19634         }
19635         this.update();
19636         this.updateNavArrows();
19637     },
19638     
19639     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
19640     {
19641         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
19642         if (typeof(this.daysOfWeekDisabled) !== 'object') {
19643             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
19644         }
19645         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
19646             return parseInt(d, 10);
19647         });
19648         this.update();
19649         this.updateNavArrows();
19650     },
19651     
19652     updateNavArrows: function() 
19653     {
19654         if(this.singleMode){
19655             return;
19656         }
19657         
19658         var d = new Date(this.viewDate),
19659         year = d.getUTCFullYear(),
19660         month = d.getUTCMonth();
19661         
19662         Roo.each(this.picker().select('.prev', true).elements, function(v){
19663             v.show();
19664             switch (this.viewMode) {
19665                 case 0:
19666
19667                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
19668                         v.hide();
19669                     }
19670                     break;
19671                 case 1:
19672                 case 2:
19673                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
19674                         v.hide();
19675                     }
19676                     break;
19677             }
19678         });
19679         
19680         Roo.each(this.picker().select('.next', true).elements, function(v){
19681             v.show();
19682             switch (this.viewMode) {
19683                 case 0:
19684
19685                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
19686                         v.hide();
19687                     }
19688                     break;
19689                 case 1:
19690                 case 2:
19691                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
19692                         v.hide();
19693                     }
19694                     break;
19695             }
19696         })
19697     },
19698     
19699     moveMonth: function(date, dir)
19700     {
19701         if (!dir) {
19702             return date;
19703         }
19704         var new_date = new Date(date.valueOf()),
19705         day = new_date.getUTCDate(),
19706         month = new_date.getUTCMonth(),
19707         mag = Math.abs(dir),
19708         new_month, test;
19709         dir = dir > 0 ? 1 : -1;
19710         if (mag == 1){
19711             test = dir == -1
19712             // If going back one month, make sure month is not current month
19713             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
19714             ? function(){
19715                 return new_date.getUTCMonth() == month;
19716             }
19717             // If going forward one month, make sure month is as expected
19718             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
19719             : function(){
19720                 return new_date.getUTCMonth() != new_month;
19721             };
19722             new_month = month + dir;
19723             new_date.setUTCMonth(new_month);
19724             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
19725             if (new_month < 0 || new_month > 11) {
19726                 new_month = (new_month + 12) % 12;
19727             }
19728         } else {
19729             // For magnitudes >1, move one month at a time...
19730             for (var i=0; i<mag; i++) {
19731                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
19732                 new_date = this.moveMonth(new_date, dir);
19733             }
19734             // ...then reset the day, keeping it in the new month
19735             new_month = new_date.getUTCMonth();
19736             new_date.setUTCDate(day);
19737             test = function(){
19738                 return new_month != new_date.getUTCMonth();
19739             };
19740         }
19741         // Common date-resetting loop -- if date is beyond end of month, make it
19742         // end of month
19743         while (test()){
19744             new_date.setUTCDate(--day);
19745             new_date.setUTCMonth(new_month);
19746         }
19747         return new_date;
19748     },
19749
19750     moveYear: function(date, dir)
19751     {
19752         return this.moveMonth(date, dir*12);
19753     },
19754
19755     dateWithinRange: function(date)
19756     {
19757         return date >= this.startDate && date <= this.endDate;
19758     },
19759
19760     
19761     remove: function() 
19762     {
19763         this.picker().remove();
19764     },
19765     
19766     validateValue : function(value)
19767     {
19768         if(this.getVisibilityEl().hasClass('hidden')){
19769             return true;
19770         }
19771         
19772         if(value.length < 1)  {
19773             if(this.allowBlank){
19774                 return true;
19775             }
19776             return false;
19777         }
19778         
19779         if(value.length < this.minLength){
19780             return false;
19781         }
19782         if(value.length > this.maxLength){
19783             return false;
19784         }
19785         if(this.vtype){
19786             var vt = Roo.form.VTypes;
19787             if(!vt[this.vtype](value, this)){
19788                 return false;
19789             }
19790         }
19791         if(typeof this.validator == "function"){
19792             var msg = this.validator(value);
19793             if(msg !== true){
19794                 return false;
19795             }
19796         }
19797         
19798         if(this.regex && !this.regex.test(value)){
19799             return false;
19800         }
19801         
19802         if(typeof(this.parseDate(value)) == 'undefined'){
19803             return false;
19804         }
19805         
19806         if (this.endDate !== Infinity && this.parseDate(value).getTime() > this.endDate.getTime()) {
19807             return false;
19808         }      
19809         
19810         if (this.startDate !== -Infinity && this.parseDate(value).getTime() < this.startDate.getTime()) {
19811             return false;
19812         } 
19813         
19814         
19815         return true;
19816     },
19817     
19818     reset : function()
19819     {
19820         this.date = this.viewDate = '';
19821         
19822         Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19823     }
19824    
19825 });
19826
19827 Roo.apply(Roo.bootstrap.DateField,  {
19828     
19829     head : {
19830         tag: 'thead',
19831         cn: [
19832         {
19833             tag: 'tr',
19834             cn: [
19835             {
19836                 tag: 'th',
19837                 cls: 'prev',
19838                 html: '<i class="fa fa-arrow-left"/>'
19839             },
19840             {
19841                 tag: 'th',
19842                 cls: 'switch',
19843                 colspan: '5'
19844             },
19845             {
19846                 tag: 'th',
19847                 cls: 'next',
19848                 html: '<i class="fa fa-arrow-right"/>'
19849             }
19850
19851             ]
19852         }
19853         ]
19854     },
19855     
19856     content : {
19857         tag: 'tbody',
19858         cn: [
19859         {
19860             tag: 'tr',
19861             cn: [
19862             {
19863                 tag: 'td',
19864                 colspan: '7'
19865             }
19866             ]
19867         }
19868         ]
19869     },
19870     
19871     footer : {
19872         tag: 'tfoot',
19873         cn: [
19874         {
19875             tag: 'tr',
19876             cn: [
19877             {
19878                 tag: 'th',
19879                 colspan: '7',
19880                 cls: 'today'
19881             }
19882                     
19883             ]
19884         }
19885         ]
19886     },
19887     
19888     dates:{
19889         en: {
19890             days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
19891             daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
19892             daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
19893             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
19894             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
19895             today: "Today"
19896         }
19897     },
19898     
19899     modes: [
19900     {
19901         clsName: 'days',
19902         navFnc: 'Month',
19903         navStep: 1
19904     },
19905     {
19906         clsName: 'months',
19907         navFnc: 'FullYear',
19908         navStep: 1
19909     },
19910     {
19911         clsName: 'years',
19912         navFnc: 'FullYear',
19913         navStep: 10
19914     }]
19915 });
19916
19917 Roo.apply(Roo.bootstrap.DateField,  {
19918   
19919     template : {
19920         tag: 'div',
19921         cls: 'datepicker dropdown-menu roo-dynamic',
19922         cn: [
19923         {
19924             tag: 'div',
19925             cls: 'datepicker-days',
19926             cn: [
19927             {
19928                 tag: 'table',
19929                 cls: 'table-condensed',
19930                 cn:[
19931                 Roo.bootstrap.DateField.head,
19932                 {
19933                     tag: 'tbody'
19934                 },
19935                 Roo.bootstrap.DateField.footer
19936                 ]
19937             }
19938             ]
19939         },
19940         {
19941             tag: 'div',
19942             cls: 'datepicker-months',
19943             cn: [
19944             {
19945                 tag: 'table',
19946                 cls: 'table-condensed',
19947                 cn:[
19948                 Roo.bootstrap.DateField.head,
19949                 Roo.bootstrap.DateField.content,
19950                 Roo.bootstrap.DateField.footer
19951                 ]
19952             }
19953             ]
19954         },
19955         {
19956             tag: 'div',
19957             cls: 'datepicker-years',
19958             cn: [
19959             {
19960                 tag: 'table',
19961                 cls: 'table-condensed',
19962                 cn:[
19963                 Roo.bootstrap.DateField.head,
19964                 Roo.bootstrap.DateField.content,
19965                 Roo.bootstrap.DateField.footer
19966                 ]
19967             }
19968             ]
19969         }
19970         ]
19971     }
19972 });
19973
19974  
19975
19976  /*
19977  * - LGPL
19978  *
19979  * TimeField
19980  * 
19981  */
19982
19983 /**
19984  * @class Roo.bootstrap.TimeField
19985  * @extends Roo.bootstrap.Input
19986  * Bootstrap DateField class
19987  * 
19988  * 
19989  * @constructor
19990  * Create a new TimeField
19991  * @param {Object} config The config object
19992  */
19993
19994 Roo.bootstrap.TimeField = function(config){
19995     Roo.bootstrap.TimeField.superclass.constructor.call(this, config);
19996     this.addEvents({
19997             /**
19998              * @event show
19999              * Fires when this field show.
20000              * @param {Roo.bootstrap.DateField} thisthis
20001              * @param {Mixed} date The date value
20002              */
20003             show : true,
20004             /**
20005              * @event show
20006              * Fires when this field hide.
20007              * @param {Roo.bootstrap.DateField} this
20008              * @param {Mixed} date The date value
20009              */
20010             hide : true,
20011             /**
20012              * @event select
20013              * Fires when select a date.
20014              * @param {Roo.bootstrap.DateField} this
20015              * @param {Mixed} date The date value
20016              */
20017             select : true
20018         });
20019 };
20020
20021 Roo.extend(Roo.bootstrap.TimeField, Roo.bootstrap.Input,  {
20022     
20023     /**
20024      * @cfg {String} format
20025      * The default time format string which can be overriden for localization support.  The format must be
20026      * valid according to {@link Date#parseDate} (defaults to 'H:i').
20027      */
20028     format : "H:i",
20029        
20030     onRender: function(ct, position)
20031     {
20032         
20033         Roo.bootstrap.TimeField.superclass.onRender.call(this, ct, position);
20034                 
20035         this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.TimeField.template);
20036         
20037         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20038         
20039         this.pop = this.picker().select('>.datepicker-time',true).first();
20040         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20041         
20042         this.picker().on('mousedown', this.onMousedown, this);
20043         this.picker().on('click', this.onClick, this);
20044         
20045         this.picker().addClass('datepicker-dropdown');
20046     
20047         this.fillTime();
20048         this.update();
20049             
20050         this.pop.select('span.hours-up', true).first().on('click', this.onIncrementHours, this);
20051         this.pop.select('span.hours-down', true).first().on('click', this.onDecrementHours, this);
20052         this.pop.select('span.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
20053         this.pop.select('span.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
20054         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
20055         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
20056
20057     },
20058     
20059     fireKey: function(e){
20060         if (!this.picker().isVisible()){
20061             if (e.keyCode == 27) { // allow escape to hide and re-show picker
20062                 this.show();
20063             }
20064             return;
20065         }
20066
20067         e.preventDefault();
20068         
20069         switch(e.keyCode){
20070             case 27: // escape
20071                 this.hide();
20072                 break;
20073             case 37: // left
20074             case 39: // right
20075                 this.onTogglePeriod();
20076                 break;
20077             case 38: // up
20078                 this.onIncrementMinutes();
20079                 break;
20080             case 40: // down
20081                 this.onDecrementMinutes();
20082                 break;
20083             case 13: // enter
20084             case 9: // tab
20085                 this.setTime();
20086                 break;
20087         }
20088     },
20089     
20090     onClick: function(e) {
20091         e.stopPropagation();
20092         e.preventDefault();
20093     },
20094     
20095     picker : function()
20096     {
20097         return this.el.select('.datepicker', true).first();
20098     },
20099     
20100     fillTime: function()
20101     {    
20102         var time = this.pop.select('tbody', true).first();
20103         
20104         time.dom.innerHTML = '';
20105         
20106         time.createChild({
20107             tag: 'tr',
20108             cn: [
20109                 {
20110                     tag: 'td',
20111                     cn: [
20112                         {
20113                             tag: 'a',
20114                             href: '#',
20115                             cls: 'btn',
20116                             cn: [
20117                                 {
20118                                     tag: 'span',
20119                                     cls: 'hours-up glyphicon glyphicon-chevron-up'
20120                                 }
20121                             ]
20122                         } 
20123                     ]
20124                 },
20125                 {
20126                     tag: 'td',
20127                     cls: 'separator'
20128                 },
20129                 {
20130                     tag: 'td',
20131                     cn: [
20132                         {
20133                             tag: 'a',
20134                             href: '#',
20135                             cls: 'btn',
20136                             cn: [
20137                                 {
20138                                     tag: 'span',
20139                                     cls: 'minutes-up glyphicon glyphicon-chevron-up'
20140                                 }
20141                             ]
20142                         }
20143                     ]
20144                 },
20145                 {
20146                     tag: 'td',
20147                     cls: 'separator'
20148                 }
20149             ]
20150         });
20151         
20152         time.createChild({
20153             tag: 'tr',
20154             cn: [
20155                 {
20156                     tag: 'td',
20157                     cn: [
20158                         {
20159                             tag: 'span',
20160                             cls: 'timepicker-hour',
20161                             html: '00'
20162                         }  
20163                     ]
20164                 },
20165                 {
20166                     tag: 'td',
20167                     cls: 'separator',
20168                     html: ':'
20169                 },
20170                 {
20171                     tag: 'td',
20172                     cn: [
20173                         {
20174                             tag: 'span',
20175                             cls: 'timepicker-minute',
20176                             html: '00'
20177                         }  
20178                     ]
20179                 },
20180                 {
20181                     tag: 'td',
20182                     cls: 'separator'
20183                 },
20184                 {
20185                     tag: 'td',
20186                     cn: [
20187                         {
20188                             tag: 'button',
20189                             type: 'button',
20190                             cls: 'btn btn-primary period',
20191                             html: 'AM'
20192                             
20193                         }
20194                     ]
20195                 }
20196             ]
20197         });
20198         
20199         time.createChild({
20200             tag: 'tr',
20201             cn: [
20202                 {
20203                     tag: 'td',
20204                     cn: [
20205                         {
20206                             tag: 'a',
20207                             href: '#',
20208                             cls: 'btn',
20209                             cn: [
20210                                 {
20211                                     tag: 'span',
20212                                     cls: 'hours-down glyphicon glyphicon-chevron-down'
20213                                 }
20214                             ]
20215                         }
20216                     ]
20217                 },
20218                 {
20219                     tag: 'td',
20220                     cls: 'separator'
20221                 },
20222                 {
20223                     tag: 'td',
20224                     cn: [
20225                         {
20226                             tag: 'a',
20227                             href: '#',
20228                             cls: 'btn',
20229                             cn: [
20230                                 {
20231                                     tag: 'span',
20232                                     cls: 'minutes-down glyphicon glyphicon-chevron-down'
20233                                 }
20234                             ]
20235                         }
20236                     ]
20237                 },
20238                 {
20239                     tag: 'td',
20240                     cls: 'separator'
20241                 }
20242             ]
20243         });
20244         
20245     },
20246     
20247     update: function()
20248     {
20249         
20250         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
20251         
20252         this.fill();
20253     },
20254     
20255     fill: function() 
20256     {
20257         var hours = this.time.getHours();
20258         var minutes = this.time.getMinutes();
20259         var period = 'AM';
20260         
20261         if(hours > 11){
20262             period = 'PM';
20263         }
20264         
20265         if(hours == 0){
20266             hours = 12;
20267         }
20268         
20269         
20270         if(hours > 12){
20271             hours = hours - 12;
20272         }
20273         
20274         if(hours < 10){
20275             hours = '0' + hours;
20276         }
20277         
20278         if(minutes < 10){
20279             minutes = '0' + minutes;
20280         }
20281         
20282         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
20283         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
20284         this.pop.select('button', true).first().dom.innerHTML = period;
20285         
20286     },
20287     
20288     place: function()
20289     {   
20290         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
20291         
20292         var cls = ['bottom'];
20293         
20294         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
20295             cls.pop();
20296             cls.push('top');
20297         }
20298         
20299         cls.push('right');
20300         
20301         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
20302             cls.pop();
20303             cls.push('left');
20304         }
20305         
20306         this.picker().addClass(cls.join('-'));
20307         
20308         var _this = this;
20309         
20310         Roo.each(cls, function(c){
20311             if(c == 'bottom'){
20312                 _this.picker().setTop(_this.inputEl().getHeight());
20313                 return;
20314             }
20315             if(c == 'top'){
20316                 _this.picker().setTop(0 - _this.picker().getHeight());
20317                 return;
20318             }
20319             
20320             if(c == 'left'){
20321                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
20322                 return;
20323             }
20324             if(c == 'right'){
20325                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
20326                 return;
20327             }
20328         });
20329         
20330     },
20331   
20332     onFocus : function()
20333     {
20334         Roo.bootstrap.TimeField.superclass.onFocus.call(this);
20335         this.show();
20336     },
20337     
20338     onBlur : function()
20339     {
20340         Roo.bootstrap.TimeField.superclass.onBlur.call(this);
20341         this.hide();
20342     },
20343     
20344     show : function()
20345     {
20346         this.picker().show();
20347         this.pop.show();
20348         this.update();
20349         this.place();
20350         
20351         this.fireEvent('show', this, this.date);
20352     },
20353     
20354     hide : function()
20355     {
20356         this.picker().hide();
20357         this.pop.hide();
20358         
20359         this.fireEvent('hide', this, this.date);
20360     },
20361     
20362     setTime : function()
20363     {
20364         this.hide();
20365         this.setValue(this.time.format(this.format));
20366         
20367         this.fireEvent('select', this, this.date);
20368         
20369         
20370     },
20371     
20372     onMousedown: function(e){
20373         e.stopPropagation();
20374         e.preventDefault();
20375     },
20376     
20377     onIncrementHours: function()
20378     {
20379         Roo.log('onIncrementHours');
20380         this.time = this.time.add(Date.HOUR, 1);
20381         this.update();
20382         
20383     },
20384     
20385     onDecrementHours: function()
20386     {
20387         Roo.log('onDecrementHours');
20388         this.time = this.time.add(Date.HOUR, -1);
20389         this.update();
20390     },
20391     
20392     onIncrementMinutes: function()
20393     {
20394         Roo.log('onIncrementMinutes');
20395         this.time = this.time.add(Date.MINUTE, 1);
20396         this.update();
20397     },
20398     
20399     onDecrementMinutes: function()
20400     {
20401         Roo.log('onDecrementMinutes');
20402         this.time = this.time.add(Date.MINUTE, -1);
20403         this.update();
20404     },
20405     
20406     onTogglePeriod: function()
20407     {
20408         Roo.log('onTogglePeriod');
20409         this.time = this.time.add(Date.HOUR, 12);
20410         this.update();
20411     }
20412     
20413    
20414 });
20415
20416 Roo.apply(Roo.bootstrap.TimeField,  {
20417     
20418     content : {
20419         tag: 'tbody',
20420         cn: [
20421             {
20422                 tag: 'tr',
20423                 cn: [
20424                 {
20425                     tag: 'td',
20426                     colspan: '7'
20427                 }
20428                 ]
20429             }
20430         ]
20431     },
20432     
20433     footer : {
20434         tag: 'tfoot',
20435         cn: [
20436             {
20437                 tag: 'tr',
20438                 cn: [
20439                 {
20440                     tag: 'th',
20441                     colspan: '7',
20442                     cls: '',
20443                     cn: [
20444                         {
20445                             tag: 'button',
20446                             cls: 'btn btn-info ok',
20447                             html: 'OK'
20448                         }
20449                     ]
20450                 }
20451
20452                 ]
20453             }
20454         ]
20455     }
20456 });
20457
20458 Roo.apply(Roo.bootstrap.TimeField,  {
20459   
20460     template : {
20461         tag: 'div',
20462         cls: 'datepicker dropdown-menu',
20463         cn: [
20464             {
20465                 tag: 'div',
20466                 cls: 'datepicker-time',
20467                 cn: [
20468                 {
20469                     tag: 'table',
20470                     cls: 'table-condensed',
20471                     cn:[
20472                     Roo.bootstrap.TimeField.content,
20473                     Roo.bootstrap.TimeField.footer
20474                     ]
20475                 }
20476                 ]
20477             }
20478         ]
20479     }
20480 });
20481
20482  
20483
20484  /*
20485  * - LGPL
20486  *
20487  * MonthField
20488  * 
20489  */
20490
20491 /**
20492  * @class Roo.bootstrap.MonthField
20493  * @extends Roo.bootstrap.Input
20494  * Bootstrap MonthField class
20495  * 
20496  * @cfg {String} language default en
20497  * 
20498  * @constructor
20499  * Create a new MonthField
20500  * @param {Object} config The config object
20501  */
20502
20503 Roo.bootstrap.MonthField = function(config){
20504     Roo.bootstrap.MonthField.superclass.constructor.call(this, config);
20505     
20506     this.addEvents({
20507         /**
20508          * @event show
20509          * Fires when this field show.
20510          * @param {Roo.bootstrap.MonthField} this
20511          * @param {Mixed} date The date value
20512          */
20513         show : true,
20514         /**
20515          * @event show
20516          * Fires when this field hide.
20517          * @param {Roo.bootstrap.MonthField} this
20518          * @param {Mixed} date The date value
20519          */
20520         hide : true,
20521         /**
20522          * @event select
20523          * Fires when select a date.
20524          * @param {Roo.bootstrap.MonthField} this
20525          * @param {String} oldvalue The old value
20526          * @param {String} newvalue The new value
20527          */
20528         select : true
20529     });
20530 };
20531
20532 Roo.extend(Roo.bootstrap.MonthField, Roo.bootstrap.Input,  {
20533     
20534     onRender: function(ct, position)
20535     {
20536         
20537         Roo.bootstrap.MonthField.superclass.onRender.call(this, ct, position);
20538         
20539         this.language = this.language || 'en';
20540         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : this.language.split('-')[0];
20541         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : "en";
20542         
20543         this.isRTL = Roo.bootstrap.MonthField.dates[this.language].rtl || false;
20544         this.isInline = false;
20545         this.isInput = true;
20546         this.component = this.el.select('.add-on', true).first() || false;
20547         this.component = (this.component && this.component.length === 0) ? false : this.component;
20548         this.hasInput = this.component && this.inputEL().length;
20549         
20550         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.MonthField.template);
20551         
20552         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20553         
20554         this.picker().on('mousedown', this.onMousedown, this);
20555         this.picker().on('click', this.onClick, this);
20556         
20557         this.picker().addClass('datepicker-dropdown');
20558         
20559         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
20560             v.setStyle('width', '189px');
20561         });
20562         
20563         this.fillMonths();
20564         
20565         this.update();
20566         
20567         if(this.isInline) {
20568             this.show();
20569         }
20570         
20571     },
20572     
20573     setValue: function(v, suppressEvent)
20574     {   
20575         var o = this.getValue();
20576         
20577         Roo.bootstrap.MonthField.superclass.setValue.call(this, v);
20578         
20579         this.update();
20580
20581         if(suppressEvent !== true){
20582             this.fireEvent('select', this, o, v);
20583         }
20584         
20585     },
20586     
20587     getValue: function()
20588     {
20589         return this.value;
20590     },
20591     
20592     onClick: function(e) 
20593     {
20594         e.stopPropagation();
20595         e.preventDefault();
20596         
20597         var target = e.getTarget();
20598         
20599         if(target.nodeName.toLowerCase() === 'i'){
20600             target = Roo.get(target).dom.parentNode;
20601         }
20602         
20603         var nodeName = target.nodeName;
20604         var className = target.className;
20605         var html = target.innerHTML;
20606         
20607         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
20608             return;
20609         }
20610         
20611         this.vIndex = Roo.bootstrap.MonthField.dates[this.language].monthsShort.indexOf(html);
20612         
20613         this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20614         
20615         this.hide();
20616                         
20617     },
20618     
20619     picker : function()
20620     {
20621         return this.pickerEl;
20622     },
20623     
20624     fillMonths: function()
20625     {    
20626         var i = 0;
20627         var months = this.picker().select('>.datepicker-months td', true).first();
20628         
20629         months.dom.innerHTML = '';
20630         
20631         while (i < 12) {
20632             var month = {
20633                 tag: 'span',
20634                 cls: 'month',
20635                 html: Roo.bootstrap.MonthField.dates[this.language].monthsShort[i++]
20636             };
20637             
20638             months.createChild(month);
20639         }
20640         
20641     },
20642     
20643     update: function()
20644     {
20645         var _this = this;
20646         
20647         if(typeof(this.vIndex) == 'undefined' && this.value.length){
20648             this.vIndex = Roo.bootstrap.MonthField.dates[this.language].months.indexOf(this.value);
20649         }
20650         
20651         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
20652             e.removeClass('active');
20653             
20654             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
20655                 e.addClass('active');
20656             }
20657         })
20658     },
20659     
20660     place: function()
20661     {
20662         if(this.isInline) {
20663             return;
20664         }
20665         
20666         this.picker().removeClass(['bottom', 'top']);
20667         
20668         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
20669             /*
20670              * place to the top of element!
20671              *
20672              */
20673             
20674             this.picker().addClass('top');
20675             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
20676             
20677             return;
20678         }
20679         
20680         this.picker().addClass('bottom');
20681         
20682         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
20683     },
20684     
20685     onFocus : function()
20686     {
20687         Roo.bootstrap.MonthField.superclass.onFocus.call(this);
20688         this.show();
20689     },
20690     
20691     onBlur : function()
20692     {
20693         Roo.bootstrap.MonthField.superclass.onBlur.call(this);
20694         
20695         var d = this.inputEl().getValue();
20696         
20697         this.setValue(d);
20698                 
20699         this.hide();
20700     },
20701     
20702     show : function()
20703     {
20704         this.picker().show();
20705         this.picker().select('>.datepicker-months', true).first().show();
20706         this.update();
20707         this.place();
20708         
20709         this.fireEvent('show', this, this.date);
20710     },
20711     
20712     hide : function()
20713     {
20714         if(this.isInline) {
20715             return;
20716         }
20717         this.picker().hide();
20718         this.fireEvent('hide', this, this.date);
20719         
20720     },
20721     
20722     onMousedown: function(e)
20723     {
20724         e.stopPropagation();
20725         e.preventDefault();
20726     },
20727     
20728     keyup: function(e)
20729     {
20730         Roo.bootstrap.MonthField.superclass.keyup.call(this);
20731         this.update();
20732     },
20733
20734     fireKey: function(e)
20735     {
20736         if (!this.picker().isVisible()){
20737             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
20738                 this.show();
20739             }
20740             return;
20741         }
20742         
20743         var dir;
20744         
20745         switch(e.keyCode){
20746             case 27: // escape
20747                 this.hide();
20748                 e.preventDefault();
20749                 break;
20750             case 37: // left
20751             case 39: // right
20752                 dir = e.keyCode == 37 ? -1 : 1;
20753                 
20754                 this.vIndex = this.vIndex + dir;
20755                 
20756                 if(this.vIndex < 0){
20757                     this.vIndex = 0;
20758                 }
20759                 
20760                 if(this.vIndex > 11){
20761                     this.vIndex = 11;
20762                 }
20763                 
20764                 if(isNaN(this.vIndex)){
20765                     this.vIndex = 0;
20766                 }
20767                 
20768                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20769                 
20770                 break;
20771             case 38: // up
20772             case 40: // down
20773                 
20774                 dir = e.keyCode == 38 ? -1 : 1;
20775                 
20776                 this.vIndex = this.vIndex + dir * 4;
20777                 
20778                 if(this.vIndex < 0){
20779                     this.vIndex = 0;
20780                 }
20781                 
20782                 if(this.vIndex > 11){
20783                     this.vIndex = 11;
20784                 }
20785                 
20786                 if(isNaN(this.vIndex)){
20787                     this.vIndex = 0;
20788                 }
20789                 
20790                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20791                 break;
20792                 
20793             case 13: // enter
20794                 
20795                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20796                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20797                 }
20798                 
20799                 this.hide();
20800                 e.preventDefault();
20801                 break;
20802             case 9: // tab
20803                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20804                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20805                 }
20806                 this.hide();
20807                 break;
20808             case 16: // shift
20809             case 17: // ctrl
20810             case 18: // alt
20811                 break;
20812             default :
20813                 this.hide();
20814                 
20815         }
20816     },
20817     
20818     remove: function() 
20819     {
20820         this.picker().remove();
20821     }
20822    
20823 });
20824
20825 Roo.apply(Roo.bootstrap.MonthField,  {
20826     
20827     content : {
20828         tag: 'tbody',
20829         cn: [
20830         {
20831             tag: 'tr',
20832             cn: [
20833             {
20834                 tag: 'td',
20835                 colspan: '7'
20836             }
20837             ]
20838         }
20839         ]
20840     },
20841     
20842     dates:{
20843         en: {
20844             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
20845             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
20846         }
20847     }
20848 });
20849
20850 Roo.apply(Roo.bootstrap.MonthField,  {
20851   
20852     template : {
20853         tag: 'div',
20854         cls: 'datepicker dropdown-menu roo-dynamic',
20855         cn: [
20856             {
20857                 tag: 'div',
20858                 cls: 'datepicker-months',
20859                 cn: [
20860                 {
20861                     tag: 'table',
20862                     cls: 'table-condensed',
20863                     cn:[
20864                         Roo.bootstrap.DateField.content
20865                     ]
20866                 }
20867                 ]
20868             }
20869         ]
20870     }
20871 });
20872
20873  
20874
20875  
20876  /*
20877  * - LGPL
20878  *
20879  * CheckBox
20880  * 
20881  */
20882
20883 /**
20884  * @class Roo.bootstrap.CheckBox
20885  * @extends Roo.bootstrap.Input
20886  * Bootstrap CheckBox class
20887  * 
20888  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20889  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
20890  * @cfg {String} boxLabel The text that appears beside the checkbox
20891  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
20892  * @cfg {Boolean} checked initnal the element
20893  * @cfg {Boolean} inline inline the element (default false)
20894  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
20895  * @cfg {String} tooltip label tooltip
20896  * 
20897  * @constructor
20898  * Create a new CheckBox
20899  * @param {Object} config The config object
20900  */
20901
20902 Roo.bootstrap.CheckBox = function(config){
20903     Roo.bootstrap.CheckBox.superclass.constructor.call(this, config);
20904    
20905     this.addEvents({
20906         /**
20907         * @event check
20908         * Fires when the element is checked or unchecked.
20909         * @param {Roo.bootstrap.CheckBox} this This input
20910         * @param {Boolean} checked The new checked value
20911         */
20912        check : true,
20913        /**
20914         * @event click
20915         * Fires when the element is click.
20916         * @param {Roo.bootstrap.CheckBox} this This input
20917         */
20918        click : true
20919     });
20920     
20921 };
20922
20923 Roo.extend(Roo.bootstrap.CheckBox, Roo.bootstrap.Input,  {
20924   
20925     inputType: 'checkbox',
20926     inputValue: 1,
20927     valueOff: 0,
20928     boxLabel: false,
20929     checked: false,
20930     weight : false,
20931     inline: false,
20932     tooltip : '',
20933     
20934     // checkbox success does not make any sense really.. 
20935     invalidClass : "",
20936     validClass : "",
20937     
20938     
20939     getAutoCreate : function()
20940     {
20941         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
20942         
20943         var id = Roo.id();
20944         
20945         var cfg = {};
20946         
20947         cfg.cls = 'form-group ' + this.inputType; //input-group
20948         
20949         if(this.inline){
20950             cfg.cls += ' ' + this.inputType + '-inline';
20951         }
20952         
20953         var input =  {
20954             tag: 'input',
20955             id : id,
20956             type : this.inputType,
20957             value : this.inputValue,
20958             cls : 'roo-' + this.inputType, //'form-box',
20959             placeholder : this.placeholder || ''
20960             
20961         };
20962         
20963         if(this.inputType != 'radio'){
20964             var hidden =  {
20965                 tag: 'input',
20966                 type : 'hidden',
20967                 cls : 'roo-hidden-value',
20968                 value : this.checked ? this.inputValue : this.valueOff
20969             };
20970         }
20971         
20972             
20973         if (this.weight) { // Validity check?
20974             cfg.cls += " " + this.inputType + "-" + this.weight;
20975         }
20976         
20977         if (this.disabled) {
20978             input.disabled=true;
20979         }
20980         
20981         if(this.checked){
20982             input.checked = this.checked;
20983         }
20984         
20985         if (this.name) {
20986             
20987             input.name = this.name;
20988             
20989             if(this.inputType != 'radio'){
20990                 hidden.name = this.name;
20991                 input.name = '_hidden_' + this.name;
20992             }
20993         }
20994         
20995         if (this.size) {
20996             input.cls += ' input-' + this.size;
20997         }
20998         
20999         var settings=this;
21000         
21001         ['xs','sm','md','lg'].map(function(size){
21002             if (settings[size]) {
21003                 cfg.cls += ' col-' + size + '-' + settings[size];
21004             }
21005         });
21006         
21007         var inputblock = input;
21008          
21009         if (this.before || this.after) {
21010             
21011             inputblock = {
21012                 cls : 'input-group',
21013                 cn :  [] 
21014             };
21015             
21016             if (this.before) {
21017                 inputblock.cn.push({
21018                     tag :'span',
21019                     cls : 'input-group-addon',
21020                     html : this.before
21021                 });
21022             }
21023             
21024             inputblock.cn.push(input);
21025             
21026             if(this.inputType != 'radio'){
21027                 inputblock.cn.push(hidden);
21028             }
21029             
21030             if (this.after) {
21031                 inputblock.cn.push({
21032                     tag :'span',
21033                     cls : 'input-group-addon',
21034                     html : this.after
21035                 });
21036             }
21037             
21038         }
21039         var boxLabelCfg = false;
21040         
21041         if(this.boxLabel){
21042            
21043             boxLabelCfg = {
21044                 tag: 'label',
21045                 //'for': id, // box label is handled by onclick - so no for...
21046                 cls: 'box-label',
21047                 html: this.boxLabel
21048             };
21049             if(this.tooltip){
21050                 boxLabelCfg.tooltip = this.tooltip;
21051             }
21052              
21053         }
21054         
21055         
21056         if (align ==='left' && this.fieldLabel.length) {
21057 //                Roo.log("left and has label");
21058             cfg.cn = [
21059                 {
21060                     tag: 'label',
21061                     'for' :  id,
21062                     cls : 'control-label',
21063                     html : this.fieldLabel
21064                 },
21065                 {
21066                     cls : "", 
21067                     cn: [
21068                         inputblock
21069                     ]
21070                 }
21071             ];
21072             
21073             if (boxLabelCfg) {
21074                 cfg.cn[1].cn.push(boxLabelCfg);
21075             }
21076             
21077             if(this.labelWidth > 12){
21078                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
21079             }
21080             
21081             if(this.labelWidth < 13 && this.labelmd == 0){
21082                 this.labelmd = this.labelWidth;
21083             }
21084             
21085             if(this.labellg > 0){
21086                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
21087                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
21088             }
21089             
21090             if(this.labelmd > 0){
21091                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
21092                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
21093             }
21094             
21095             if(this.labelsm > 0){
21096                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
21097                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
21098             }
21099             
21100             if(this.labelxs > 0){
21101                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
21102                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
21103             }
21104             
21105         } else if ( this.fieldLabel.length) {
21106 //                Roo.log(" label");
21107                 cfg.cn = [
21108                    
21109                     {
21110                         tag: this.boxLabel ? 'span' : 'label',
21111                         'for': id,
21112                         cls: 'control-label box-input-label',
21113                         //cls : 'input-group-addon',
21114                         html : this.fieldLabel
21115                     },
21116                     
21117                     inputblock
21118                     
21119                 ];
21120                 if (boxLabelCfg) {
21121                     cfg.cn.push(boxLabelCfg);
21122                 }
21123
21124         } else {
21125             
21126 //                Roo.log(" no label && no align");
21127                 cfg.cn = [  inputblock ] ;
21128                 if (boxLabelCfg) {
21129                     cfg.cn.push(boxLabelCfg);
21130                 }
21131
21132                 
21133         }
21134         
21135        
21136         
21137         if(this.inputType != 'radio'){
21138             cfg.cn.push(hidden);
21139         }
21140         
21141         return cfg;
21142         
21143     },
21144     
21145     /**
21146      * return the real input element.
21147      */
21148     inputEl: function ()
21149     {
21150         return this.el.select('input.roo-' + this.inputType,true).first();
21151     },
21152     hiddenEl: function ()
21153     {
21154         return this.el.select('input.roo-hidden-value',true).first();
21155     },
21156     
21157     labelEl: function()
21158     {
21159         return this.el.select('label.control-label',true).first();
21160     },
21161     /* depricated... */
21162     
21163     label: function()
21164     {
21165         return this.labelEl();
21166     },
21167     
21168     boxLabelEl: function()
21169     {
21170         return this.el.select('label.box-label',true).first();
21171     },
21172     
21173     initEvents : function()
21174     {
21175 //        Roo.bootstrap.CheckBox.superclass.initEvents.call(this);
21176         
21177         this.inputEl().on('click', this.onClick,  this);
21178         
21179         if (this.boxLabel) { 
21180             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
21181         }
21182         
21183         this.startValue = this.getValue();
21184         
21185         if(this.groupId){
21186             Roo.bootstrap.CheckBox.register(this);
21187         }
21188     },
21189     
21190     onClick : function(e)
21191     {   
21192         if(this.fireEvent('click', this, e) !== false){
21193             this.setChecked(!this.checked);
21194         }
21195         
21196     },
21197     
21198     setChecked : function(state,suppressEvent)
21199     {
21200         this.startValue = this.getValue();
21201
21202         if(this.inputType == 'radio'){
21203             
21204             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21205                 e.dom.checked = false;
21206             });
21207             
21208             this.inputEl().dom.checked = true;
21209             
21210             this.inputEl().dom.value = this.inputValue;
21211             
21212             if(suppressEvent !== true){
21213                 this.fireEvent('check', this, true);
21214             }
21215             
21216             this.validate();
21217             
21218             return;
21219         }
21220         
21221         this.checked = state;
21222         
21223         this.inputEl().dom.checked = state;
21224         
21225         
21226         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
21227         
21228         if(suppressEvent !== true){
21229             this.fireEvent('check', this, state);
21230         }
21231         
21232         this.validate();
21233     },
21234     
21235     getValue : function()
21236     {
21237         if(this.inputType == 'radio'){
21238             return this.getGroupValue();
21239         }
21240         
21241         return this.hiddenEl().dom.value;
21242         
21243     },
21244     
21245     getGroupValue : function()
21246     {
21247         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
21248             return '';
21249         }
21250         
21251         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
21252     },
21253     
21254     setValue : function(v,suppressEvent)
21255     {
21256         if(this.inputType == 'radio'){
21257             this.setGroupValue(v, suppressEvent);
21258             return;
21259         }
21260         
21261         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
21262         
21263         this.validate();
21264     },
21265     
21266     setGroupValue : function(v, suppressEvent)
21267     {
21268         this.startValue = this.getValue();
21269         
21270         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21271             e.dom.checked = false;
21272             
21273             if(e.dom.value == v){
21274                 e.dom.checked = true;
21275             }
21276         });
21277         
21278         if(suppressEvent !== true){
21279             this.fireEvent('check', this, true);
21280         }
21281
21282         this.validate();
21283         
21284         return;
21285     },
21286     
21287     validate : function()
21288     {
21289         if(this.getVisibilityEl().hasClass('hidden')){
21290             return true;
21291         }
21292         
21293         if(
21294                 this.disabled || 
21295                 (this.inputType == 'radio' && this.validateRadio()) ||
21296                 (this.inputType == 'checkbox' && this.validateCheckbox())
21297         ){
21298             this.markValid();
21299             return true;
21300         }
21301         
21302         this.markInvalid();
21303         return false;
21304     },
21305     
21306     validateRadio : function()
21307     {
21308         if(this.getVisibilityEl().hasClass('hidden')){
21309             return true;
21310         }
21311         
21312         if(this.allowBlank){
21313             return true;
21314         }
21315         
21316         var valid = false;
21317         
21318         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21319             if(!e.dom.checked){
21320                 return;
21321             }
21322             
21323             valid = true;
21324             
21325             return false;
21326         });
21327         
21328         return valid;
21329     },
21330     
21331     validateCheckbox : function()
21332     {
21333         if(!this.groupId){
21334             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
21335             //return (this.getValue() == this.inputValue) ? true : false;
21336         }
21337         
21338         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21339         
21340         if(!group){
21341             return false;
21342         }
21343         
21344         var r = false;
21345         
21346         for(var i in group){
21347             if(group[i].el.isVisible(true)){
21348                 r = false;
21349                 break;
21350             }
21351             
21352             r = true;
21353         }
21354         
21355         for(var i in group){
21356             if(r){
21357                 break;
21358             }
21359             
21360             r = (group[i].getValue() == group[i].inputValue) ? true : false;
21361         }
21362         
21363         return r;
21364     },
21365     
21366     /**
21367      * Mark this field as valid
21368      */
21369     markValid : function()
21370     {
21371         var _this = this;
21372         
21373         this.fireEvent('valid', this);
21374         
21375         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21376         
21377         if(this.groupId){
21378             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21379         }
21380         
21381         if(label){
21382             label.markValid();
21383         }
21384
21385         if(this.inputType == 'radio'){
21386             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21387                 var fg = e.findParent('.form-group', false, true);
21388                 if (Roo.bootstrap.version == 3) {
21389                     fg.removeClass([_this.invalidClass, _this.validClass]);
21390                     fg.addClass(_this.validClass);
21391                 } else {
21392                     fg.removeClass(['is-valid', 'is-invalid']);
21393                     fg.addClass('is-valid');
21394                 }
21395             });
21396             
21397             return;
21398         }
21399
21400         if(!this.groupId){
21401             var fg = this.el.findParent('.form-group', false, true);
21402             if (Roo.bootstrap.version == 3) {
21403                 fg.removeClass([this.invalidClass, this.validClass]);
21404                 fg.addClass(this.validClass);
21405             } else {
21406                 fg.removeClass(['is-valid', 'is-invalid']);
21407                 fg.addClass('is-valid');
21408             }
21409             return;
21410         }
21411         
21412         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21413         
21414         if(!group){
21415             return;
21416         }
21417         
21418         for(var i in group){
21419             var fg = group[i].el.findParent('.form-group', false, true);
21420             if (Roo.bootstrap.version == 3) {
21421                 fg.removeClass([this.invalidClass, this.validClass]);
21422                 fg.addClass(this.validClass);
21423             } else {
21424                 fg.removeClass(['is-valid', 'is-invalid']);
21425                 fg.addClass('is-valid');
21426             }
21427         }
21428     },
21429     
21430      /**
21431      * Mark this field as invalid
21432      * @param {String} msg The validation message
21433      */
21434     markInvalid : function(msg)
21435     {
21436         if(this.allowBlank){
21437             return;
21438         }
21439         
21440         var _this = this;
21441         
21442         this.fireEvent('invalid', this, msg);
21443         
21444         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21445         
21446         if(this.groupId){
21447             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21448         }
21449         
21450         if(label){
21451             label.markInvalid();
21452         }
21453             
21454         if(this.inputType == 'radio'){
21455             
21456             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21457                 var fg = e.findParent('.form-group', false, true);
21458                 if (Roo.bootstrap.version == 3) {
21459                     fg.removeClass([_this.invalidClass, _this.validClass]);
21460                     fg.addClass(_this.invalidClass);
21461                 } else {
21462                     fg.removeClass(['is-invalid', 'is-valid']);
21463                     fg.addClass('is-invalid');
21464                 }
21465             });
21466             
21467             return;
21468         }
21469         
21470         if(!this.groupId){
21471             var fg = this.el.findParent('.form-group', false, true);
21472             if (Roo.bootstrap.version == 3) {
21473                 fg.removeClass([_this.invalidClass, _this.validClass]);
21474                 fg.addClass(_this.invalidClass);
21475             } else {
21476                 fg.removeClass(['is-invalid', 'is-valid']);
21477                 fg.addClass('is-invalid');
21478             }
21479             return;
21480         }
21481         
21482         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21483         
21484         if(!group){
21485             return;
21486         }
21487         
21488         for(var i in group){
21489             var fg = group[i].el.findParent('.form-group', false, true);
21490             if (Roo.bootstrap.version == 3) {
21491                 fg.removeClass([_this.invalidClass, _this.validClass]);
21492                 fg.addClass(_this.invalidClass);
21493             } else {
21494                 fg.removeClass(['is-invalid', 'is-valid']);
21495                 fg.addClass('is-invalid');
21496             }
21497         }
21498         
21499     },
21500     
21501     clearInvalid : function()
21502     {
21503         Roo.bootstrap.Input.prototype.clearInvalid.call(this);
21504         
21505         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
21506         
21507         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21508         
21509         if (label && label.iconEl) {
21510             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
21511             label.iconEl.removeClass(['is-invalid', 'is-valid']);
21512         }
21513     },
21514     
21515     disable : function()
21516     {
21517         if(this.inputType != 'radio'){
21518             Roo.bootstrap.CheckBox.superclass.disable.call(this);
21519             return;
21520         }
21521         
21522         var _this = this;
21523         
21524         if(this.rendered){
21525             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21526                 _this.getActionEl().addClass(this.disabledClass);
21527                 e.dom.disabled = true;
21528             });
21529         }
21530         
21531         this.disabled = true;
21532         this.fireEvent("disable", this);
21533         return this;
21534     },
21535
21536     enable : function()
21537     {
21538         if(this.inputType != 'radio'){
21539             Roo.bootstrap.CheckBox.superclass.enable.call(this);
21540             return;
21541         }
21542         
21543         var _this = this;
21544         
21545         if(this.rendered){
21546             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21547                 _this.getActionEl().removeClass(this.disabledClass);
21548                 e.dom.disabled = false;
21549             });
21550         }
21551         
21552         this.disabled = false;
21553         this.fireEvent("enable", this);
21554         return this;
21555     },
21556     
21557     setBoxLabel : function(v)
21558     {
21559         this.boxLabel = v;
21560         
21561         if(this.rendered){
21562             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21563         }
21564     }
21565
21566 });
21567
21568 Roo.apply(Roo.bootstrap.CheckBox, {
21569     
21570     groups: {},
21571     
21572      /**
21573     * register a CheckBox Group
21574     * @param {Roo.bootstrap.CheckBox} the CheckBox to add
21575     */
21576     register : function(checkbox)
21577     {
21578         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
21579             this.groups[checkbox.groupId] = {};
21580         }
21581         
21582         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
21583             return;
21584         }
21585         
21586         this.groups[checkbox.groupId][checkbox.name] = checkbox;
21587         
21588     },
21589     /**
21590     * fetch a CheckBox Group based on the group ID
21591     * @param {string} the group ID
21592     * @returns {Roo.bootstrap.CheckBox} the CheckBox group
21593     */
21594     get: function(groupId) {
21595         if (typeof(this.groups[groupId]) == 'undefined') {
21596             return false;
21597         }
21598         
21599         return this.groups[groupId] ;
21600     }
21601     
21602     
21603 });
21604 /*
21605  * - LGPL
21606  *
21607  * RadioItem
21608  * 
21609  */
21610
21611 /**
21612  * @class Roo.bootstrap.Radio
21613  * @extends Roo.bootstrap.Component
21614  * Bootstrap Radio class
21615  * @cfg {String} boxLabel - the label associated
21616  * @cfg {String} value - the value of radio
21617  * 
21618  * @constructor
21619  * Create a new Radio
21620  * @param {Object} config The config object
21621  */
21622 Roo.bootstrap.Radio = function(config){
21623     Roo.bootstrap.Radio.superclass.constructor.call(this, config);
21624     
21625 };
21626
21627 Roo.extend(Roo.bootstrap.Radio, Roo.bootstrap.Component, {
21628     
21629     boxLabel : '',
21630     
21631     value : '',
21632     
21633     getAutoCreate : function()
21634     {
21635         var cfg = {
21636             tag : 'div',
21637             cls : 'form-group radio',
21638             cn : [
21639                 {
21640                     tag : 'label',
21641                     cls : 'box-label',
21642                     html : this.boxLabel
21643                 }
21644             ]
21645         };
21646         
21647         return cfg;
21648     },
21649     
21650     initEvents : function() 
21651     {
21652         this.parent().register(this);
21653         
21654         this.el.on('click', this.onClick, this);
21655         
21656     },
21657     
21658     onClick : function(e)
21659     {
21660         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
21661             this.setChecked(true);
21662         }
21663     },
21664     
21665     setChecked : function(state, suppressEvent)
21666     {
21667         this.parent().setValue(this.value, suppressEvent);
21668         
21669     },
21670     
21671     setBoxLabel : function(v)
21672     {
21673         this.boxLabel = v;
21674         
21675         if(this.rendered){
21676             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21677         }
21678     }
21679     
21680 });
21681  
21682
21683  /*
21684  * - LGPL
21685  *
21686  * Input
21687  * 
21688  */
21689
21690 /**
21691  * @class Roo.bootstrap.SecurePass
21692  * @extends Roo.bootstrap.Input
21693  * Bootstrap SecurePass class
21694  *
21695  * 
21696  * @constructor
21697  * Create a new SecurePass
21698  * @param {Object} config The config object
21699  */
21700  
21701 Roo.bootstrap.SecurePass = function (config) {
21702     // these go here, so the translation tool can replace them..
21703     this.errors = {
21704         PwdEmpty: "Please type a password, and then retype it to confirm.",
21705         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21706         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21707         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21708         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21709         FNInPwd: "Your password can't contain your first name. Please type a different password.",
21710         LNInPwd: "Your password can't contain your last name. Please type a different password.",
21711         TooWeak: "Your password is Too Weak."
21712     },
21713     this.meterLabel = "Password strength:";
21714     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
21715     this.meterClass = [
21716         "roo-password-meter-tooweak", 
21717         "roo-password-meter-weak", 
21718         "roo-password-meter-medium", 
21719         "roo-password-meter-strong", 
21720         "roo-password-meter-grey"
21721     ];
21722     
21723     this.errors = {};
21724     
21725     Roo.bootstrap.SecurePass.superclass.constructor.call(this, config);
21726 }
21727
21728 Roo.extend(Roo.bootstrap.SecurePass, Roo.bootstrap.Input, {
21729     /**
21730      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
21731      * {
21732      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
21733      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21734      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21735      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21736      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21737      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
21738      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
21739      * })
21740      */
21741     // private
21742     
21743     meterWidth: 300,
21744     errorMsg :'',    
21745     errors: false,
21746     imageRoot: '/',
21747     /**
21748      * @cfg {String/Object} Label for the strength meter (defaults to
21749      * 'Password strength:')
21750      */
21751     // private
21752     meterLabel: '',
21753     /**
21754      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
21755      * ['Weak', 'Medium', 'Strong'])
21756      */
21757     // private    
21758     pwdStrengths: false,    
21759     // private
21760     strength: 0,
21761     // private
21762     _lastPwd: null,
21763     // private
21764     kCapitalLetter: 0,
21765     kSmallLetter: 1,
21766     kDigit: 2,
21767     kPunctuation: 3,
21768     
21769     insecure: false,
21770     // private
21771     initEvents: function ()
21772     {
21773         Roo.bootstrap.SecurePass.superclass.initEvents.call(this);
21774
21775         if (this.el.is('input[type=password]') && Roo.isSafari) {
21776             this.el.on('keydown', this.SafariOnKeyDown, this);
21777         }
21778
21779         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
21780     },
21781     // private
21782     onRender: function (ct, position)
21783     {
21784         Roo.bootstrap.SecurePass.superclass.onRender.call(this, ct, position);
21785         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
21786         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
21787
21788         this.trigger.createChild({
21789                    cn: [
21790                     {
21791                     //id: 'PwdMeter',
21792                     tag: 'div',
21793                     cls: 'roo-password-meter-grey col-xs-12',
21794                     style: {
21795                         //width: 0,
21796                         //width: this.meterWidth + 'px'                                                
21797                         }
21798                     },
21799                     {                            
21800                          cls: 'roo-password-meter-text'                          
21801                     }
21802                 ]            
21803         });
21804
21805          
21806         if (this.hideTrigger) {
21807             this.trigger.setDisplayed(false);
21808         }
21809         this.setSize(this.width || '', this.height || '');
21810     },
21811     // private
21812     onDestroy: function ()
21813     {
21814         if (this.trigger) {
21815             this.trigger.removeAllListeners();
21816             this.trigger.remove();
21817         }
21818         if (this.wrap) {
21819             this.wrap.remove();
21820         }
21821         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
21822     },
21823     // private
21824     checkStrength: function ()
21825     {
21826         var pwd = this.inputEl().getValue();
21827         if (pwd == this._lastPwd) {
21828             return;
21829         }
21830
21831         var strength;
21832         if (this.ClientSideStrongPassword(pwd)) {
21833             strength = 3;
21834         } else if (this.ClientSideMediumPassword(pwd)) {
21835             strength = 2;
21836         } else if (this.ClientSideWeakPassword(pwd)) {
21837             strength = 1;
21838         } else {
21839             strength = 0;
21840         }
21841         
21842         Roo.log('strength1: ' + strength);
21843         
21844         //var pm = this.trigger.child('div/div/div').dom;
21845         var pm = this.trigger.child('div/div');
21846         pm.removeClass(this.meterClass);
21847         pm.addClass(this.meterClass[strength]);
21848                 
21849         
21850         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21851                 
21852         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21853         
21854         this._lastPwd = pwd;
21855     },
21856     reset: function ()
21857     {
21858         Roo.bootstrap.SecurePass.superclass.reset.call(this);
21859         
21860         this._lastPwd = '';
21861         
21862         var pm = this.trigger.child('div/div');
21863         pm.removeClass(this.meterClass);
21864         pm.addClass('roo-password-meter-grey');        
21865         
21866         
21867         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21868         
21869         pt.innerHTML = '';
21870         this.inputEl().dom.type='password';
21871     },
21872     // private
21873     validateValue: function (value)
21874     {
21875         
21876         if (!Roo.bootstrap.SecurePass.superclass.validateValue.call(this, value)) {
21877             return false;
21878         }
21879         if (value.length == 0) {
21880             if (this.allowBlank) {
21881                 this.clearInvalid();
21882                 return true;
21883             }
21884
21885             this.markInvalid(this.errors.PwdEmpty);
21886             this.errorMsg = this.errors.PwdEmpty;
21887             return false;
21888         }
21889         
21890         if(this.insecure){
21891             return true;
21892         }
21893         
21894         if ('[\x21-\x7e]*'.match(value)) {
21895             this.markInvalid(this.errors.PwdBadChar);
21896             this.errorMsg = this.errors.PwdBadChar;
21897             return false;
21898         }
21899         if (value.length < 6) {
21900             this.markInvalid(this.errors.PwdShort);
21901             this.errorMsg = this.errors.PwdShort;
21902             return false;
21903         }
21904         if (value.length > 16) {
21905             this.markInvalid(this.errors.PwdLong);
21906             this.errorMsg = this.errors.PwdLong;
21907             return false;
21908         }
21909         var strength;
21910         if (this.ClientSideStrongPassword(value)) {
21911             strength = 3;
21912         } else if (this.ClientSideMediumPassword(value)) {
21913             strength = 2;
21914         } else if (this.ClientSideWeakPassword(value)) {
21915             strength = 1;
21916         } else {
21917             strength = 0;
21918         }
21919
21920         
21921         if (strength < 2) {
21922             //this.markInvalid(this.errors.TooWeak);
21923             this.errorMsg = this.errors.TooWeak;
21924             //return false;
21925         }
21926         
21927         
21928         console.log('strength2: ' + strength);
21929         
21930         //var pm = this.trigger.child('div/div/div').dom;
21931         
21932         var pm = this.trigger.child('div/div');
21933         pm.removeClass(this.meterClass);
21934         pm.addClass(this.meterClass[strength]);
21935                 
21936         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21937                 
21938         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21939         
21940         this.errorMsg = ''; 
21941         return true;
21942     },
21943     // private
21944     CharacterSetChecks: function (type)
21945     {
21946         this.type = type;
21947         this.fResult = false;
21948     },
21949     // private
21950     isctype: function (character, type)
21951     {
21952         switch (type) {  
21953             case this.kCapitalLetter:
21954                 if (character >= 'A' && character <= 'Z') {
21955                     return true;
21956                 }
21957                 break;
21958             
21959             case this.kSmallLetter:
21960                 if (character >= 'a' && character <= 'z') {
21961                     return true;
21962                 }
21963                 break;
21964             
21965             case this.kDigit:
21966                 if (character >= '0' && character <= '9') {
21967                     return true;
21968                 }
21969                 break;
21970             
21971             case this.kPunctuation:
21972                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
21973                     return true;
21974                 }
21975                 break;
21976             
21977             default:
21978                 return false;
21979         }
21980
21981     },
21982     // private
21983     IsLongEnough: function (pwd, size)
21984     {
21985         return !(pwd == null || isNaN(size) || pwd.length < size);
21986     },
21987     // private
21988     SpansEnoughCharacterSets: function (word, nb)
21989     {
21990         if (!this.IsLongEnough(word, nb))
21991         {
21992             return false;
21993         }
21994
21995         var characterSetChecks = new Array(
21996             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
21997             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
21998         );
21999         
22000         for (var index = 0; index < word.length; ++index) {
22001             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
22002                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
22003                     characterSetChecks[nCharSet].fResult = true;
22004                     break;
22005                 }
22006             }
22007         }
22008
22009         var nCharSets = 0;
22010         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
22011             if (characterSetChecks[nCharSet].fResult) {
22012                 ++nCharSets;
22013             }
22014         }
22015
22016         if (nCharSets < nb) {
22017             return false;
22018         }
22019         return true;
22020     },
22021     // private
22022     ClientSideStrongPassword: function (pwd)
22023     {
22024         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
22025     },
22026     // private
22027     ClientSideMediumPassword: function (pwd)
22028     {
22029         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
22030     },
22031     // private
22032     ClientSideWeakPassword: function (pwd)
22033     {
22034         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
22035     }
22036           
22037 })//<script type="text/javascript">
22038
22039 /*
22040  * Based  Ext JS Library 1.1.1
22041  * Copyright(c) 2006-2007, Ext JS, LLC.
22042  * LGPL
22043  *
22044  */
22045  
22046 /**
22047  * @class Roo.HtmlEditorCore
22048  * @extends Roo.Component
22049  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
22050  *
22051  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22052  */
22053
22054 Roo.HtmlEditorCore = function(config){
22055     
22056     
22057     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
22058     
22059     
22060     this.addEvents({
22061         /**
22062          * @event initialize
22063          * Fires when the editor is fully initialized (including the iframe)
22064          * @param {Roo.HtmlEditorCore} this
22065          */
22066         initialize: true,
22067         /**
22068          * @event activate
22069          * Fires when the editor is first receives the focus. Any insertion must wait
22070          * until after this event.
22071          * @param {Roo.HtmlEditorCore} this
22072          */
22073         activate: true,
22074          /**
22075          * @event beforesync
22076          * Fires before the textarea is updated with content from the editor iframe. Return false
22077          * to cancel the sync.
22078          * @param {Roo.HtmlEditorCore} this
22079          * @param {String} html
22080          */
22081         beforesync: true,
22082          /**
22083          * @event beforepush
22084          * Fires before the iframe editor is updated with content from the textarea. Return false
22085          * to cancel the push.
22086          * @param {Roo.HtmlEditorCore} this
22087          * @param {String} html
22088          */
22089         beforepush: true,
22090          /**
22091          * @event sync
22092          * Fires when the textarea is updated with content from the editor iframe.
22093          * @param {Roo.HtmlEditorCore} this
22094          * @param {String} html
22095          */
22096         sync: true,
22097          /**
22098          * @event push
22099          * Fires when the iframe editor is updated with content from the textarea.
22100          * @param {Roo.HtmlEditorCore} this
22101          * @param {String} html
22102          */
22103         push: true,
22104         
22105         /**
22106          * @event editorevent
22107          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22108          * @param {Roo.HtmlEditorCore} this
22109          */
22110         editorevent: true
22111         
22112     });
22113     
22114     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
22115     
22116     // defaults : white / black...
22117     this.applyBlacklists();
22118     
22119     
22120     
22121 };
22122
22123
22124 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
22125
22126
22127      /**
22128      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
22129      */
22130     
22131     owner : false,
22132     
22133      /**
22134      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22135      *                        Roo.resizable.
22136      */
22137     resizable : false,
22138      /**
22139      * @cfg {Number} height (in pixels)
22140      */   
22141     height: 300,
22142    /**
22143      * @cfg {Number} width (in pixels)
22144      */   
22145     width: 500,
22146     
22147     /**
22148      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22149      * 
22150      */
22151     stylesheets: false,
22152     
22153     // id of frame..
22154     frameId: false,
22155     
22156     // private properties
22157     validationEvent : false,
22158     deferHeight: true,
22159     initialized : false,
22160     activated : false,
22161     sourceEditMode : false,
22162     onFocus : Roo.emptyFn,
22163     iframePad:3,
22164     hideMode:'offsets',
22165     
22166     clearUp: true,
22167     
22168     // blacklist + whitelisted elements..
22169     black: false,
22170     white: false,
22171      
22172     bodyCls : '',
22173
22174     /**
22175      * Protected method that will not generally be called directly. It
22176      * is called when the editor initializes the iframe with HTML contents. Override this method if you
22177      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
22178      */
22179     getDocMarkup : function(){
22180         // body styles..
22181         var st = '';
22182         
22183         // inherit styels from page...?? 
22184         if (this.stylesheets === false) {
22185             
22186             Roo.get(document.head).select('style').each(function(node) {
22187                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22188             });
22189             
22190             Roo.get(document.head).select('link').each(function(node) { 
22191                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22192             });
22193             
22194         } else if (!this.stylesheets.length) {
22195                 // simple..
22196                 st = '<style type="text/css">' +
22197                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22198                    '</style>';
22199         } else { 
22200             st = '<style type="text/css">' +
22201                     this.stylesheets +
22202                 '</style>';
22203         }
22204         
22205         st +=  '<style type="text/css">' +
22206             'IMG { cursor: pointer } ' +
22207         '</style>';
22208
22209         var cls = 'roo-htmleditor-body';
22210         
22211         if(this.bodyCls.length){
22212             cls += ' ' + this.bodyCls;
22213         }
22214         
22215         return '<html><head>' + st  +
22216             //<style type="text/css">' +
22217             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22218             //'</style>' +
22219             ' </head><body class="' +  cls + '"></body></html>';
22220     },
22221
22222     // private
22223     onRender : function(ct, position)
22224     {
22225         var _t = this;
22226         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
22227         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
22228         
22229         
22230         this.el.dom.style.border = '0 none';
22231         this.el.dom.setAttribute('tabIndex', -1);
22232         this.el.addClass('x-hidden hide');
22233         
22234         
22235         
22236         if(Roo.isIE){ // fix IE 1px bogus margin
22237             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
22238         }
22239        
22240         
22241         this.frameId = Roo.id();
22242         
22243          
22244         
22245         var iframe = this.owner.wrap.createChild({
22246             tag: 'iframe',
22247             cls: 'form-control', // bootstrap..
22248             id: this.frameId,
22249             name: this.frameId,
22250             frameBorder : 'no',
22251             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
22252         }, this.el
22253         );
22254         
22255         
22256         this.iframe = iframe.dom;
22257
22258          this.assignDocWin();
22259         
22260         this.doc.designMode = 'on';
22261        
22262         this.doc.open();
22263         this.doc.write(this.getDocMarkup());
22264         this.doc.close();
22265
22266         
22267         var task = { // must defer to wait for browser to be ready
22268             run : function(){
22269                 //console.log("run task?" + this.doc.readyState);
22270                 this.assignDocWin();
22271                 if(this.doc.body || this.doc.readyState == 'complete'){
22272                     try {
22273                         this.doc.designMode="on";
22274                     } catch (e) {
22275                         return;
22276                     }
22277                     Roo.TaskMgr.stop(task);
22278                     this.initEditor.defer(10, this);
22279                 }
22280             },
22281             interval : 10,
22282             duration: 10000,
22283             scope: this
22284         };
22285         Roo.TaskMgr.start(task);
22286
22287     },
22288
22289     // private
22290     onResize : function(w, h)
22291     {
22292          Roo.log('resize: ' +w + ',' + h );
22293         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
22294         if(!this.iframe){
22295             return;
22296         }
22297         if(typeof w == 'number'){
22298             
22299             this.iframe.style.width = w + 'px';
22300         }
22301         if(typeof h == 'number'){
22302             
22303             this.iframe.style.height = h + 'px';
22304             if(this.doc){
22305                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
22306             }
22307         }
22308         
22309     },
22310
22311     /**
22312      * Toggles the editor between standard and source edit mode.
22313      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22314      */
22315     toggleSourceEdit : function(sourceEditMode){
22316         
22317         this.sourceEditMode = sourceEditMode === true;
22318         
22319         if(this.sourceEditMode){
22320  
22321             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
22322             
22323         }else{
22324             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
22325             //this.iframe.className = '';
22326             this.deferFocus();
22327         }
22328         //this.setSize(this.owner.wrap.getSize());
22329         //this.fireEvent('editmodechange', this, this.sourceEditMode);
22330     },
22331
22332     
22333   
22334
22335     /**
22336      * Protected method that will not generally be called directly. If you need/want
22337      * custom HTML cleanup, this is the method you should override.
22338      * @param {String} html The HTML to be cleaned
22339      * return {String} The cleaned HTML
22340      */
22341     cleanHtml : function(html){
22342         html = String(html);
22343         if(html.length > 5){
22344             if(Roo.isSafari){ // strip safari nonsense
22345                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
22346             }
22347         }
22348         if(html == '&nbsp;'){
22349             html = '';
22350         }
22351         return html;
22352     },
22353
22354     /**
22355      * HTML Editor -> Textarea
22356      * Protected method that will not generally be called directly. Syncs the contents
22357      * of the editor iframe with the textarea.
22358      */
22359     syncValue : function(){
22360         if(this.initialized){
22361             var bd = (this.doc.body || this.doc.documentElement);
22362             //this.cleanUpPaste(); -- this is done else where and causes havoc..
22363             var html = bd.innerHTML;
22364             if(Roo.isSafari){
22365                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
22366                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
22367                 if(m && m[1]){
22368                     html = '<div style="'+m[0]+'">' + html + '</div>';
22369                 }
22370             }
22371             html = this.cleanHtml(html);
22372             // fix up the special chars.. normaly like back quotes in word...
22373             // however we do not want to do this with chinese..
22374             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
22375                 
22376                 var cc = match.charCodeAt();
22377
22378                 // Get the character value, handling surrogate pairs
22379                 if (match.length == 2) {
22380                     // It's a surrogate pair, calculate the Unicode code point
22381                     var high = match.charCodeAt(0) - 0xD800;
22382                     var low  = match.charCodeAt(1) - 0xDC00;
22383                     cc = (high * 0x400) + low + 0x10000;
22384                 }  else if (
22385                     (cc >= 0x4E00 && cc < 0xA000 ) ||
22386                     (cc >= 0x3400 && cc < 0x4E00 ) ||
22387                     (cc >= 0xf900 && cc < 0xfb00 )
22388                 ) {
22389                         return match;
22390                 }  
22391          
22392                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
22393                 return "&#" + cc + ";";
22394                 
22395                 
22396             });
22397             
22398             
22399              
22400             if(this.owner.fireEvent('beforesync', this, html) !== false){
22401                 this.el.dom.value = html;
22402                 this.owner.fireEvent('sync', this, html);
22403             }
22404         }
22405     },
22406
22407     /**
22408      * Protected method that will not generally be called directly. Pushes the value of the textarea
22409      * into the iframe editor.
22410      */
22411     pushValue : function(){
22412         if(this.initialized){
22413             var v = this.el.dom.value.trim();
22414             
22415 //            if(v.length < 1){
22416 //                v = '&#160;';
22417 //            }
22418             
22419             if(this.owner.fireEvent('beforepush', this, v) !== false){
22420                 var d = (this.doc.body || this.doc.documentElement);
22421                 d.innerHTML = v;
22422                 this.cleanUpPaste();
22423                 this.el.dom.value = d.innerHTML;
22424                 this.owner.fireEvent('push', this, v);
22425             }
22426         }
22427     },
22428
22429     // private
22430     deferFocus : function(){
22431         this.focus.defer(10, this);
22432     },
22433
22434     // doc'ed in Field
22435     focus : function(){
22436         if(this.win && !this.sourceEditMode){
22437             this.win.focus();
22438         }else{
22439             this.el.focus();
22440         }
22441     },
22442     
22443     assignDocWin: function()
22444     {
22445         var iframe = this.iframe;
22446         
22447          if(Roo.isIE){
22448             this.doc = iframe.contentWindow.document;
22449             this.win = iframe.contentWindow;
22450         } else {
22451 //            if (!Roo.get(this.frameId)) {
22452 //                return;
22453 //            }
22454 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22455 //            this.win = Roo.get(this.frameId).dom.contentWindow;
22456             
22457             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
22458                 return;
22459             }
22460             
22461             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22462             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
22463         }
22464     },
22465     
22466     // private
22467     initEditor : function(){
22468         //console.log("INIT EDITOR");
22469         this.assignDocWin();
22470         
22471         
22472         
22473         this.doc.designMode="on";
22474         this.doc.open();
22475         this.doc.write(this.getDocMarkup());
22476         this.doc.close();
22477         
22478         var dbody = (this.doc.body || this.doc.documentElement);
22479         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
22480         // this copies styles from the containing element into thsi one..
22481         // not sure why we need all of this..
22482         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
22483         
22484         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
22485         //ss['background-attachment'] = 'fixed'; // w3c
22486         dbody.bgProperties = 'fixed'; // ie
22487         //Roo.DomHelper.applyStyles(dbody, ss);
22488         Roo.EventManager.on(this.doc, {
22489             //'mousedown': this.onEditorEvent,
22490             'mouseup': this.onEditorEvent,
22491             'dblclick': this.onEditorEvent,
22492             'click': this.onEditorEvent,
22493             'keyup': this.onEditorEvent,
22494             buffer:100,
22495             scope: this
22496         });
22497         if(Roo.isGecko){
22498             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
22499         }
22500         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
22501             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
22502         }
22503         this.initialized = true;
22504
22505         this.owner.fireEvent('initialize', this);
22506         this.pushValue();
22507     },
22508
22509     // private
22510     onDestroy : function(){
22511         
22512         
22513         
22514         if(this.rendered){
22515             
22516             //for (var i =0; i < this.toolbars.length;i++) {
22517             //    // fixme - ask toolbars for heights?
22518             //    this.toolbars[i].onDestroy();
22519            // }
22520             
22521             //this.wrap.dom.innerHTML = '';
22522             //this.wrap.remove();
22523         }
22524     },
22525
22526     // private
22527     onFirstFocus : function(){
22528         
22529         this.assignDocWin();
22530         
22531         
22532         this.activated = true;
22533          
22534     
22535         if(Roo.isGecko){ // prevent silly gecko errors
22536             this.win.focus();
22537             var s = this.win.getSelection();
22538             if(!s.focusNode || s.focusNode.nodeType != 3){
22539                 var r = s.getRangeAt(0);
22540                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
22541                 r.collapse(true);
22542                 this.deferFocus();
22543             }
22544             try{
22545                 this.execCmd('useCSS', true);
22546                 this.execCmd('styleWithCSS', false);
22547             }catch(e){}
22548         }
22549         this.owner.fireEvent('activate', this);
22550     },
22551
22552     // private
22553     adjustFont: function(btn){
22554         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
22555         //if(Roo.isSafari){ // safari
22556         //    adjust *= 2;
22557        // }
22558         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
22559         if(Roo.isSafari){ // safari
22560             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
22561             v =  (v < 10) ? 10 : v;
22562             v =  (v > 48) ? 48 : v;
22563             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
22564             
22565         }
22566         
22567         
22568         v = Math.max(1, v+adjust);
22569         
22570         this.execCmd('FontSize', v  );
22571     },
22572
22573     onEditorEvent : function(e)
22574     {
22575         this.owner.fireEvent('editorevent', this, e);
22576       //  this.updateToolbar();
22577         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
22578     },
22579
22580     insertTag : function(tg)
22581     {
22582         // could be a bit smarter... -> wrap the current selected tRoo..
22583         if (tg.toLowerCase() == 'span' ||
22584             tg.toLowerCase() == 'code' ||
22585             tg.toLowerCase() == 'sup' ||
22586             tg.toLowerCase() == 'sub' 
22587             ) {
22588             
22589             range = this.createRange(this.getSelection());
22590             var wrappingNode = this.doc.createElement(tg.toLowerCase());
22591             wrappingNode.appendChild(range.extractContents());
22592             range.insertNode(wrappingNode);
22593
22594             return;
22595             
22596             
22597             
22598         }
22599         this.execCmd("formatblock",   tg);
22600         
22601     },
22602     
22603     insertText : function(txt)
22604     {
22605         
22606         
22607         var range = this.createRange();
22608         range.deleteContents();
22609                //alert(Sender.getAttribute('label'));
22610                
22611         range.insertNode(this.doc.createTextNode(txt));
22612     } ,
22613     
22614      
22615
22616     /**
22617      * Executes a Midas editor command on the editor document and performs necessary focus and
22618      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
22619      * @param {String} cmd The Midas command
22620      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22621      */
22622     relayCmd : function(cmd, value){
22623         this.win.focus();
22624         this.execCmd(cmd, value);
22625         this.owner.fireEvent('editorevent', this);
22626         //this.updateToolbar();
22627         this.owner.deferFocus();
22628     },
22629
22630     /**
22631      * Executes a Midas editor command directly on the editor document.
22632      * For visual commands, you should use {@link #relayCmd} instead.
22633      * <b>This should only be called after the editor is initialized.</b>
22634      * @param {String} cmd The Midas command
22635      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22636      */
22637     execCmd : function(cmd, value){
22638         this.doc.execCommand(cmd, false, value === undefined ? null : value);
22639         this.syncValue();
22640     },
22641  
22642  
22643    
22644     /**
22645      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
22646      * to insert tRoo.
22647      * @param {String} text | dom node.. 
22648      */
22649     insertAtCursor : function(text)
22650     {
22651         
22652         if(!this.activated){
22653             return;
22654         }
22655         /*
22656         if(Roo.isIE){
22657             this.win.focus();
22658             var r = this.doc.selection.createRange();
22659             if(r){
22660                 r.collapse(true);
22661                 r.pasteHTML(text);
22662                 this.syncValue();
22663                 this.deferFocus();
22664             
22665             }
22666             return;
22667         }
22668         */
22669         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
22670             this.win.focus();
22671             
22672             
22673             // from jquery ui (MIT licenced)
22674             var range, node;
22675             var win = this.win;
22676             
22677             if (win.getSelection && win.getSelection().getRangeAt) {
22678                 range = win.getSelection().getRangeAt(0);
22679                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
22680                 range.insertNode(node);
22681             } else if (win.document.selection && win.document.selection.createRange) {
22682                 // no firefox support
22683                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22684                 win.document.selection.createRange().pasteHTML(txt);
22685             } else {
22686                 // no firefox support
22687                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22688                 this.execCmd('InsertHTML', txt);
22689             } 
22690             
22691             this.syncValue();
22692             
22693             this.deferFocus();
22694         }
22695     },
22696  // private
22697     mozKeyPress : function(e){
22698         if(e.ctrlKey){
22699             var c = e.getCharCode(), cmd;
22700           
22701             if(c > 0){
22702                 c = String.fromCharCode(c).toLowerCase();
22703                 switch(c){
22704                     case 'b':
22705                         cmd = 'bold';
22706                         break;
22707                     case 'i':
22708                         cmd = 'italic';
22709                         break;
22710                     
22711                     case 'u':
22712                         cmd = 'underline';
22713                         break;
22714                     
22715                     case 'v':
22716                         this.cleanUpPaste.defer(100, this);
22717                         return;
22718                         
22719                 }
22720                 if(cmd){
22721                     this.win.focus();
22722                     this.execCmd(cmd);
22723                     this.deferFocus();
22724                     e.preventDefault();
22725                 }
22726                 
22727             }
22728         }
22729     },
22730
22731     // private
22732     fixKeys : function(){ // load time branching for fastest keydown performance
22733         if(Roo.isIE){
22734             return function(e){
22735                 var k = e.getKey(), r;
22736                 if(k == e.TAB){
22737                     e.stopEvent();
22738                     r = this.doc.selection.createRange();
22739                     if(r){
22740                         r.collapse(true);
22741                         r.pasteHTML('&#160;&#160;&#160;&#160;');
22742                         this.deferFocus();
22743                     }
22744                     return;
22745                 }
22746                 
22747                 if(k == e.ENTER){
22748                     r = this.doc.selection.createRange();
22749                     if(r){
22750                         var target = r.parentElement();
22751                         if(!target || target.tagName.toLowerCase() != 'li'){
22752                             e.stopEvent();
22753                             r.pasteHTML('<br />');
22754                             r.collapse(false);
22755                             r.select();
22756                         }
22757                     }
22758                 }
22759                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22760                     this.cleanUpPaste.defer(100, this);
22761                     return;
22762                 }
22763                 
22764                 
22765             };
22766         }else if(Roo.isOpera){
22767             return function(e){
22768                 var k = e.getKey();
22769                 if(k == e.TAB){
22770                     e.stopEvent();
22771                     this.win.focus();
22772                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
22773                     this.deferFocus();
22774                 }
22775                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22776                     this.cleanUpPaste.defer(100, this);
22777                     return;
22778                 }
22779                 
22780             };
22781         }else if(Roo.isSafari){
22782             return function(e){
22783                 var k = e.getKey();
22784                 
22785                 if(k == e.TAB){
22786                     e.stopEvent();
22787                     this.execCmd('InsertText','\t');
22788                     this.deferFocus();
22789                     return;
22790                 }
22791                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22792                     this.cleanUpPaste.defer(100, this);
22793                     return;
22794                 }
22795                 
22796              };
22797         }
22798     }(),
22799     
22800     getAllAncestors: function()
22801     {
22802         var p = this.getSelectedNode();
22803         var a = [];
22804         if (!p) {
22805             a.push(p); // push blank onto stack..
22806             p = this.getParentElement();
22807         }
22808         
22809         
22810         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
22811             a.push(p);
22812             p = p.parentNode;
22813         }
22814         a.push(this.doc.body);
22815         return a;
22816     },
22817     lastSel : false,
22818     lastSelNode : false,
22819     
22820     
22821     getSelection : function() 
22822     {
22823         this.assignDocWin();
22824         return Roo.isIE ? this.doc.selection : this.win.getSelection();
22825     },
22826     
22827     getSelectedNode: function() 
22828     {
22829         // this may only work on Gecko!!!
22830         
22831         // should we cache this!!!!
22832         
22833         
22834         
22835          
22836         var range = this.createRange(this.getSelection()).cloneRange();
22837         
22838         if (Roo.isIE) {
22839             var parent = range.parentElement();
22840             while (true) {
22841                 var testRange = range.duplicate();
22842                 testRange.moveToElementText(parent);
22843                 if (testRange.inRange(range)) {
22844                     break;
22845                 }
22846                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
22847                     break;
22848                 }
22849                 parent = parent.parentElement;
22850             }
22851             return parent;
22852         }
22853         
22854         // is ancestor a text element.
22855         var ac =  range.commonAncestorContainer;
22856         if (ac.nodeType == 3) {
22857             ac = ac.parentNode;
22858         }
22859         
22860         var ar = ac.childNodes;
22861          
22862         var nodes = [];
22863         var other_nodes = [];
22864         var has_other_nodes = false;
22865         for (var i=0;i<ar.length;i++) {
22866             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
22867                 continue;
22868             }
22869             // fullly contained node.
22870             
22871             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
22872                 nodes.push(ar[i]);
22873                 continue;
22874             }
22875             
22876             // probably selected..
22877             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
22878                 other_nodes.push(ar[i]);
22879                 continue;
22880             }
22881             // outer..
22882             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
22883                 continue;
22884             }
22885             
22886             
22887             has_other_nodes = true;
22888         }
22889         if (!nodes.length && other_nodes.length) {
22890             nodes= other_nodes;
22891         }
22892         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
22893             return false;
22894         }
22895         
22896         return nodes[0];
22897     },
22898     createRange: function(sel)
22899     {
22900         // this has strange effects when using with 
22901         // top toolbar - not sure if it's a great idea.
22902         //this.editor.contentWindow.focus();
22903         if (typeof sel != "undefined") {
22904             try {
22905                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
22906             } catch(e) {
22907                 return this.doc.createRange();
22908             }
22909         } else {
22910             return this.doc.createRange();
22911         }
22912     },
22913     getParentElement: function()
22914     {
22915         
22916         this.assignDocWin();
22917         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
22918         
22919         var range = this.createRange(sel);
22920          
22921         try {
22922             var p = range.commonAncestorContainer;
22923             while (p.nodeType == 3) { // text node
22924                 p = p.parentNode;
22925             }
22926             return p;
22927         } catch (e) {
22928             return null;
22929         }
22930     
22931     },
22932     /***
22933      *
22934      * Range intersection.. the hard stuff...
22935      *  '-1' = before
22936      *  '0' = hits..
22937      *  '1' = after.
22938      *         [ -- selected range --- ]
22939      *   [fail]                        [fail]
22940      *
22941      *    basically..
22942      *      if end is before start or  hits it. fail.
22943      *      if start is after end or hits it fail.
22944      *
22945      *   if either hits (but other is outside. - then it's not 
22946      *   
22947      *    
22948      **/
22949     
22950     
22951     // @see http://www.thismuchiknow.co.uk/?p=64.
22952     rangeIntersectsNode : function(range, node)
22953     {
22954         var nodeRange = node.ownerDocument.createRange();
22955         try {
22956             nodeRange.selectNode(node);
22957         } catch (e) {
22958             nodeRange.selectNodeContents(node);
22959         }
22960     
22961         var rangeStartRange = range.cloneRange();
22962         rangeStartRange.collapse(true);
22963     
22964         var rangeEndRange = range.cloneRange();
22965         rangeEndRange.collapse(false);
22966     
22967         var nodeStartRange = nodeRange.cloneRange();
22968         nodeStartRange.collapse(true);
22969     
22970         var nodeEndRange = nodeRange.cloneRange();
22971         nodeEndRange.collapse(false);
22972     
22973         return rangeStartRange.compareBoundaryPoints(
22974                  Range.START_TO_START, nodeEndRange) == -1 &&
22975                rangeEndRange.compareBoundaryPoints(
22976                  Range.START_TO_START, nodeStartRange) == 1;
22977         
22978          
22979     },
22980     rangeCompareNode : function(range, node)
22981     {
22982         var nodeRange = node.ownerDocument.createRange();
22983         try {
22984             nodeRange.selectNode(node);
22985         } catch (e) {
22986             nodeRange.selectNodeContents(node);
22987         }
22988         
22989         
22990         range.collapse(true);
22991     
22992         nodeRange.collapse(true);
22993      
22994         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
22995         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
22996          
22997         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
22998         
22999         var nodeIsBefore   =  ss == 1;
23000         var nodeIsAfter    = ee == -1;
23001         
23002         if (nodeIsBefore && nodeIsAfter) {
23003             return 0; // outer
23004         }
23005         if (!nodeIsBefore && nodeIsAfter) {
23006             return 1; //right trailed.
23007         }
23008         
23009         if (nodeIsBefore && !nodeIsAfter) {
23010             return 2;  // left trailed.
23011         }
23012         // fully contined.
23013         return 3;
23014     },
23015
23016     // private? - in a new class?
23017     cleanUpPaste :  function()
23018     {
23019         // cleans up the whole document..
23020         Roo.log('cleanuppaste');
23021         
23022         this.cleanUpChildren(this.doc.body);
23023         var clean = this.cleanWordChars(this.doc.body.innerHTML);
23024         if (clean != this.doc.body.innerHTML) {
23025             this.doc.body.innerHTML = clean;
23026         }
23027         
23028     },
23029     
23030     cleanWordChars : function(input) {// change the chars to hex code
23031         var he = Roo.HtmlEditorCore;
23032         
23033         var output = input;
23034         Roo.each(he.swapCodes, function(sw) { 
23035             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
23036             
23037             output = output.replace(swapper, sw[1]);
23038         });
23039         
23040         return output;
23041     },
23042     
23043     
23044     cleanUpChildren : function (n)
23045     {
23046         if (!n.childNodes.length) {
23047             return;
23048         }
23049         for (var i = n.childNodes.length-1; i > -1 ; i--) {
23050            this.cleanUpChild(n.childNodes[i]);
23051         }
23052     },
23053     
23054     
23055         
23056     
23057     cleanUpChild : function (node)
23058     {
23059         var ed = this;
23060         //console.log(node);
23061         if (node.nodeName == "#text") {
23062             // clean up silly Windows -- stuff?
23063             return; 
23064         }
23065         if (node.nodeName == "#comment") {
23066             node.parentNode.removeChild(node);
23067             // clean up silly Windows -- stuff?
23068             return; 
23069         }
23070         var lcname = node.tagName.toLowerCase();
23071         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
23072         // whitelist of tags..
23073         
23074         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
23075             // remove node.
23076             node.parentNode.removeChild(node);
23077             return;
23078             
23079         }
23080         
23081         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
23082         
23083         // spans with no attributes - just remove them..
23084         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
23085             remove_keep_children = true;
23086         }
23087         
23088         // remove <a name=....> as rendering on yahoo mailer is borked with this.
23089         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
23090         
23091         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
23092         //    remove_keep_children = true;
23093         //}
23094         
23095         if (remove_keep_children) {
23096             this.cleanUpChildren(node);
23097             // inserts everything just before this node...
23098             while (node.childNodes.length) {
23099                 var cn = node.childNodes[0];
23100                 node.removeChild(cn);
23101                 node.parentNode.insertBefore(cn, node);
23102             }
23103             node.parentNode.removeChild(node);
23104             return;
23105         }
23106         
23107         if (!node.attributes || !node.attributes.length) {
23108             
23109           
23110             
23111             
23112             this.cleanUpChildren(node);
23113             return;
23114         }
23115         
23116         function cleanAttr(n,v)
23117         {
23118             
23119             if (v.match(/^\./) || v.match(/^\//)) {
23120                 return;
23121             }
23122             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
23123                 return;
23124             }
23125             if (v.match(/^#/)) {
23126                 return;
23127             }
23128 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
23129             node.removeAttribute(n);
23130             
23131         }
23132         
23133         var cwhite = this.cwhite;
23134         var cblack = this.cblack;
23135             
23136         function cleanStyle(n,v)
23137         {
23138             if (v.match(/expression/)) { //XSS?? should we even bother..
23139                 node.removeAttribute(n);
23140                 return;
23141             }
23142             
23143             var parts = v.split(/;/);
23144             var clean = [];
23145             
23146             Roo.each(parts, function(p) {
23147                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
23148                 if (!p.length) {
23149                     return true;
23150                 }
23151                 var l = p.split(':').shift().replace(/\s+/g,'');
23152                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
23153                 
23154                 if ( cwhite.length && cblack.indexOf(l) > -1) {
23155 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23156                     //node.removeAttribute(n);
23157                     return true;
23158                 }
23159                 //Roo.log()
23160                 // only allow 'c whitelisted system attributes'
23161                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
23162 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23163                     //node.removeAttribute(n);
23164                     return true;
23165                 }
23166                 
23167                 
23168                  
23169                 
23170                 clean.push(p);
23171                 return true;
23172             });
23173             if (clean.length) { 
23174                 node.setAttribute(n, clean.join(';'));
23175             } else {
23176                 node.removeAttribute(n);
23177             }
23178             
23179         }
23180         
23181         
23182         for (var i = node.attributes.length-1; i > -1 ; i--) {
23183             var a = node.attributes[i];
23184             //console.log(a);
23185             
23186             if (a.name.toLowerCase().substr(0,2)=='on')  {
23187                 node.removeAttribute(a.name);
23188                 continue;
23189             }
23190             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
23191                 node.removeAttribute(a.name);
23192                 continue;
23193             }
23194             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
23195                 cleanAttr(a.name,a.value); // fixme..
23196                 continue;
23197             }
23198             if (a.name == 'style') {
23199                 cleanStyle(a.name,a.value);
23200                 continue;
23201             }
23202             /// clean up MS crap..
23203             // tecnically this should be a list of valid class'es..
23204             
23205             
23206             if (a.name == 'class') {
23207                 if (a.value.match(/^Mso/)) {
23208                     node.removeAttribute('class');
23209                 }
23210                 
23211                 if (a.value.match(/^body$/)) {
23212                     node.removeAttribute('class');
23213                 }
23214                 continue;
23215             }
23216             
23217             // style cleanup!?
23218             // class cleanup?
23219             
23220         }
23221         
23222         
23223         this.cleanUpChildren(node);
23224         
23225         
23226     },
23227     
23228     /**
23229      * Clean up MS wordisms...
23230      */
23231     cleanWord : function(node)
23232     {
23233         if (!node) {
23234             this.cleanWord(this.doc.body);
23235             return;
23236         }
23237         
23238         if(
23239                 node.nodeName == 'SPAN' &&
23240                 !node.hasAttributes() &&
23241                 node.childNodes.length == 1 &&
23242                 node.firstChild.nodeName == "#text"  
23243         ) {
23244             var textNode = node.firstChild;
23245             node.removeChild(textNode);
23246             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23247                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
23248             }
23249             node.parentNode.insertBefore(textNode, node);
23250             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23251                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
23252             }
23253             node.parentNode.removeChild(node);
23254         }
23255         
23256         if (node.nodeName == "#text") {
23257             // clean up silly Windows -- stuff?
23258             return; 
23259         }
23260         if (node.nodeName == "#comment") {
23261             node.parentNode.removeChild(node);
23262             // clean up silly Windows -- stuff?
23263             return; 
23264         }
23265         
23266         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
23267             node.parentNode.removeChild(node);
23268             return;
23269         }
23270         //Roo.log(node.tagName);
23271         // remove - but keep children..
23272         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
23273             //Roo.log('-- removed');
23274             while (node.childNodes.length) {
23275                 var cn = node.childNodes[0];
23276                 node.removeChild(cn);
23277                 node.parentNode.insertBefore(cn, node);
23278                 // move node to parent - and clean it..
23279                 this.cleanWord(cn);
23280             }
23281             node.parentNode.removeChild(node);
23282             /// no need to iterate chidlren = it's got none..
23283             //this.iterateChildren(node, this.cleanWord);
23284             return;
23285         }
23286         // clean styles
23287         if (node.className.length) {
23288             
23289             var cn = node.className.split(/\W+/);
23290             var cna = [];
23291             Roo.each(cn, function(cls) {
23292                 if (cls.match(/Mso[a-zA-Z]+/)) {
23293                     return;
23294                 }
23295                 cna.push(cls);
23296             });
23297             node.className = cna.length ? cna.join(' ') : '';
23298             if (!cna.length) {
23299                 node.removeAttribute("class");
23300             }
23301         }
23302         
23303         if (node.hasAttribute("lang")) {
23304             node.removeAttribute("lang");
23305         }
23306         
23307         if (node.hasAttribute("style")) {
23308             
23309             var styles = node.getAttribute("style").split(";");
23310             var nstyle = [];
23311             Roo.each(styles, function(s) {
23312                 if (!s.match(/:/)) {
23313                     return;
23314                 }
23315                 var kv = s.split(":");
23316                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
23317                     return;
23318                 }
23319                 // what ever is left... we allow.
23320                 nstyle.push(s);
23321             });
23322             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23323             if (!nstyle.length) {
23324                 node.removeAttribute('style');
23325             }
23326         }
23327         this.iterateChildren(node, this.cleanWord);
23328         
23329         
23330         
23331     },
23332     /**
23333      * iterateChildren of a Node, calling fn each time, using this as the scole..
23334      * @param {DomNode} node node to iterate children of.
23335      * @param {Function} fn method of this class to call on each item.
23336      */
23337     iterateChildren : function(node, fn)
23338     {
23339         if (!node.childNodes.length) {
23340                 return;
23341         }
23342         for (var i = node.childNodes.length-1; i > -1 ; i--) {
23343            fn.call(this, node.childNodes[i])
23344         }
23345     },
23346     
23347     
23348     /**
23349      * cleanTableWidths.
23350      *
23351      * Quite often pasting from word etc.. results in tables with column and widths.
23352      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
23353      *
23354      */
23355     cleanTableWidths : function(node)
23356     {
23357          
23358          
23359         if (!node) {
23360             this.cleanTableWidths(this.doc.body);
23361             return;
23362         }
23363         
23364         // ignore list...
23365         if (node.nodeName == "#text" || node.nodeName == "#comment") {
23366             return; 
23367         }
23368         Roo.log(node.tagName);
23369         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
23370             this.iterateChildren(node, this.cleanTableWidths);
23371             return;
23372         }
23373         if (node.hasAttribute('width')) {
23374             node.removeAttribute('width');
23375         }
23376         
23377          
23378         if (node.hasAttribute("style")) {
23379             // pretty basic...
23380             
23381             var styles = node.getAttribute("style").split(";");
23382             var nstyle = [];
23383             Roo.each(styles, function(s) {
23384                 if (!s.match(/:/)) {
23385                     return;
23386                 }
23387                 var kv = s.split(":");
23388                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
23389                     return;
23390                 }
23391                 // what ever is left... we allow.
23392                 nstyle.push(s);
23393             });
23394             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23395             if (!nstyle.length) {
23396                 node.removeAttribute('style');
23397             }
23398         }
23399         
23400         this.iterateChildren(node, this.cleanTableWidths);
23401         
23402         
23403     },
23404     
23405     
23406     
23407     
23408     domToHTML : function(currentElement, depth, nopadtext) {
23409         
23410         depth = depth || 0;
23411         nopadtext = nopadtext || false;
23412     
23413         if (!currentElement) {
23414             return this.domToHTML(this.doc.body);
23415         }
23416         
23417         //Roo.log(currentElement);
23418         var j;
23419         var allText = false;
23420         var nodeName = currentElement.nodeName;
23421         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
23422         
23423         if  (nodeName == '#text') {
23424             
23425             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
23426         }
23427         
23428         
23429         var ret = '';
23430         if (nodeName != 'BODY') {
23431              
23432             var i = 0;
23433             // Prints the node tagName, such as <A>, <IMG>, etc
23434             if (tagName) {
23435                 var attr = [];
23436                 for(i = 0; i < currentElement.attributes.length;i++) {
23437                     // quoting?
23438                     var aname = currentElement.attributes.item(i).name;
23439                     if (!currentElement.attributes.item(i).value.length) {
23440                         continue;
23441                     }
23442                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
23443                 }
23444                 
23445                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
23446             } 
23447             else {
23448                 
23449                 // eack
23450             }
23451         } else {
23452             tagName = false;
23453         }
23454         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
23455             return ret;
23456         }
23457         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
23458             nopadtext = true;
23459         }
23460         
23461         
23462         // Traverse the tree
23463         i = 0;
23464         var currentElementChild = currentElement.childNodes.item(i);
23465         var allText = true;
23466         var innerHTML  = '';
23467         lastnode = '';
23468         while (currentElementChild) {
23469             // Formatting code (indent the tree so it looks nice on the screen)
23470             var nopad = nopadtext;
23471             if (lastnode == 'SPAN') {
23472                 nopad  = true;
23473             }
23474             // text
23475             if  (currentElementChild.nodeName == '#text') {
23476                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
23477                 toadd = nopadtext ? toadd : toadd.trim();
23478                 if (!nopad && toadd.length > 80) {
23479                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
23480                 }
23481                 innerHTML  += toadd;
23482                 
23483                 i++;
23484                 currentElementChild = currentElement.childNodes.item(i);
23485                 lastNode = '';
23486                 continue;
23487             }
23488             allText = false;
23489             
23490             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
23491                 
23492             // Recursively traverse the tree structure of the child node
23493             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
23494             lastnode = currentElementChild.nodeName;
23495             i++;
23496             currentElementChild=currentElement.childNodes.item(i);
23497         }
23498         
23499         ret += innerHTML;
23500         
23501         if (!allText) {
23502                 // The remaining code is mostly for formatting the tree
23503             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
23504         }
23505         
23506         
23507         if (tagName) {
23508             ret+= "</"+tagName+">";
23509         }
23510         return ret;
23511         
23512     },
23513         
23514     applyBlacklists : function()
23515     {
23516         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
23517         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
23518         
23519         this.white = [];
23520         this.black = [];
23521         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
23522             if (b.indexOf(tag) > -1) {
23523                 return;
23524             }
23525             this.white.push(tag);
23526             
23527         }, this);
23528         
23529         Roo.each(w, function(tag) {
23530             if (b.indexOf(tag) > -1) {
23531                 return;
23532             }
23533             if (this.white.indexOf(tag) > -1) {
23534                 return;
23535             }
23536             this.white.push(tag);
23537             
23538         }, this);
23539         
23540         
23541         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
23542             if (w.indexOf(tag) > -1) {
23543                 return;
23544             }
23545             this.black.push(tag);
23546             
23547         }, this);
23548         
23549         Roo.each(b, function(tag) {
23550             if (w.indexOf(tag) > -1) {
23551                 return;
23552             }
23553             if (this.black.indexOf(tag) > -1) {
23554                 return;
23555             }
23556             this.black.push(tag);
23557             
23558         }, this);
23559         
23560         
23561         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
23562         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
23563         
23564         this.cwhite = [];
23565         this.cblack = [];
23566         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
23567             if (b.indexOf(tag) > -1) {
23568                 return;
23569             }
23570             this.cwhite.push(tag);
23571             
23572         }, this);
23573         
23574         Roo.each(w, function(tag) {
23575             if (b.indexOf(tag) > -1) {
23576                 return;
23577             }
23578             if (this.cwhite.indexOf(tag) > -1) {
23579                 return;
23580             }
23581             this.cwhite.push(tag);
23582             
23583         }, this);
23584         
23585         
23586         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
23587             if (w.indexOf(tag) > -1) {
23588                 return;
23589             }
23590             this.cblack.push(tag);
23591             
23592         }, this);
23593         
23594         Roo.each(b, function(tag) {
23595             if (w.indexOf(tag) > -1) {
23596                 return;
23597             }
23598             if (this.cblack.indexOf(tag) > -1) {
23599                 return;
23600             }
23601             this.cblack.push(tag);
23602             
23603         }, this);
23604     },
23605     
23606     setStylesheets : function(stylesheets)
23607     {
23608         if(typeof(stylesheets) == 'string'){
23609             Roo.get(this.iframe.contentDocument.head).createChild({
23610                 tag : 'link',
23611                 rel : 'stylesheet',
23612                 type : 'text/css',
23613                 href : stylesheets
23614             });
23615             
23616             return;
23617         }
23618         var _this = this;
23619      
23620         Roo.each(stylesheets, function(s) {
23621             if(!s.length){
23622                 return;
23623             }
23624             
23625             Roo.get(_this.iframe.contentDocument.head).createChild({
23626                 tag : 'link',
23627                 rel : 'stylesheet',
23628                 type : 'text/css',
23629                 href : s
23630             });
23631         });
23632
23633         
23634     },
23635     
23636     removeStylesheets : function()
23637     {
23638         var _this = this;
23639         
23640         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
23641             s.remove();
23642         });
23643     },
23644     
23645     setStyle : function(style)
23646     {
23647         Roo.get(this.iframe.contentDocument.head).createChild({
23648             tag : 'style',
23649             type : 'text/css',
23650             html : style
23651         });
23652
23653         return;
23654     }
23655     
23656     // hide stuff that is not compatible
23657     /**
23658      * @event blur
23659      * @hide
23660      */
23661     /**
23662      * @event change
23663      * @hide
23664      */
23665     /**
23666      * @event focus
23667      * @hide
23668      */
23669     /**
23670      * @event specialkey
23671      * @hide
23672      */
23673     /**
23674      * @cfg {String} fieldClass @hide
23675      */
23676     /**
23677      * @cfg {String} focusClass @hide
23678      */
23679     /**
23680      * @cfg {String} autoCreate @hide
23681      */
23682     /**
23683      * @cfg {String} inputType @hide
23684      */
23685     /**
23686      * @cfg {String} invalidClass @hide
23687      */
23688     /**
23689      * @cfg {String} invalidText @hide
23690      */
23691     /**
23692      * @cfg {String} msgFx @hide
23693      */
23694     /**
23695      * @cfg {String} validateOnBlur @hide
23696      */
23697 });
23698
23699 Roo.HtmlEditorCore.white = [
23700         'area', 'br', 'img', 'input', 'hr', 'wbr',
23701         
23702        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
23703        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
23704        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
23705        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
23706        'table',   'ul',         'xmp', 
23707        
23708        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
23709       'thead',   'tr', 
23710      
23711       'dir', 'menu', 'ol', 'ul', 'dl',
23712        
23713       'embed',  'object'
23714 ];
23715
23716
23717 Roo.HtmlEditorCore.black = [
23718     //    'embed',  'object', // enable - backend responsiblity to clean thiese
23719         'applet', // 
23720         'base',   'basefont', 'bgsound', 'blink',  'body', 
23721         'frame',  'frameset', 'head',    'html',   'ilayer', 
23722         'iframe', 'layer',  'link',     'meta',    'object',   
23723         'script', 'style' ,'title',  'xml' // clean later..
23724 ];
23725 Roo.HtmlEditorCore.clean = [
23726     'script', 'style', 'title', 'xml'
23727 ];
23728 Roo.HtmlEditorCore.remove = [
23729     'font'
23730 ];
23731 // attributes..
23732
23733 Roo.HtmlEditorCore.ablack = [
23734     'on'
23735 ];
23736     
23737 Roo.HtmlEditorCore.aclean = [ 
23738     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
23739 ];
23740
23741 // protocols..
23742 Roo.HtmlEditorCore.pwhite= [
23743         'http',  'https',  'mailto'
23744 ];
23745
23746 // white listed style attributes.
23747 Roo.HtmlEditorCore.cwhite= [
23748       //  'text-align', /// default is to allow most things..
23749       
23750          
23751 //        'font-size'//??
23752 ];
23753
23754 // black listed style attributes.
23755 Roo.HtmlEditorCore.cblack= [
23756       //  'font-size' -- this can be set by the project 
23757 ];
23758
23759
23760 Roo.HtmlEditorCore.swapCodes   =[ 
23761     [    8211, "--" ], 
23762     [    8212, "--" ], 
23763     [    8216,  "'" ],  
23764     [    8217, "'" ],  
23765     [    8220, '"' ],  
23766     [    8221, '"' ],  
23767     [    8226, "*" ],  
23768     [    8230, "..." ]
23769 ]; 
23770
23771     /*
23772  * - LGPL
23773  *
23774  * HtmlEditor
23775  * 
23776  */
23777
23778 /**
23779  * @class Roo.bootstrap.HtmlEditor
23780  * @extends Roo.bootstrap.TextArea
23781  * Bootstrap HtmlEditor class
23782
23783  * @constructor
23784  * Create a new HtmlEditor
23785  * @param {Object} config The config object
23786  */
23787
23788 Roo.bootstrap.HtmlEditor = function(config){
23789     Roo.bootstrap.HtmlEditor.superclass.constructor.call(this, config);
23790     if (!this.toolbars) {
23791         this.toolbars = [];
23792     }
23793     
23794     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
23795     this.addEvents({
23796             /**
23797              * @event initialize
23798              * Fires when the editor is fully initialized (including the iframe)
23799              * @param {HtmlEditor} this
23800              */
23801             initialize: true,
23802             /**
23803              * @event activate
23804              * Fires when the editor is first receives the focus. Any insertion must wait
23805              * until after this event.
23806              * @param {HtmlEditor} this
23807              */
23808             activate: true,
23809              /**
23810              * @event beforesync
23811              * Fires before the textarea is updated with content from the editor iframe. Return false
23812              * to cancel the sync.
23813              * @param {HtmlEditor} this
23814              * @param {String} html
23815              */
23816             beforesync: true,
23817              /**
23818              * @event beforepush
23819              * Fires before the iframe editor is updated with content from the textarea. Return false
23820              * to cancel the push.
23821              * @param {HtmlEditor} this
23822              * @param {String} html
23823              */
23824             beforepush: true,
23825              /**
23826              * @event sync
23827              * Fires when the textarea is updated with content from the editor iframe.
23828              * @param {HtmlEditor} this
23829              * @param {String} html
23830              */
23831             sync: true,
23832              /**
23833              * @event push
23834              * Fires when the iframe editor is updated with content from the textarea.
23835              * @param {HtmlEditor} this
23836              * @param {String} html
23837              */
23838             push: true,
23839              /**
23840              * @event editmodechange
23841              * Fires when the editor switches edit modes
23842              * @param {HtmlEditor} this
23843              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
23844              */
23845             editmodechange: true,
23846             /**
23847              * @event editorevent
23848              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
23849              * @param {HtmlEditor} this
23850              */
23851             editorevent: true,
23852             /**
23853              * @event firstfocus
23854              * Fires when on first focus - needed by toolbars..
23855              * @param {HtmlEditor} this
23856              */
23857             firstfocus: true,
23858             /**
23859              * @event autosave
23860              * Auto save the htmlEditor value as a file into Events
23861              * @param {HtmlEditor} this
23862              */
23863             autosave: true,
23864             /**
23865              * @event savedpreview
23866              * preview the saved version of htmlEditor
23867              * @param {HtmlEditor} this
23868              */
23869             savedpreview: true
23870         });
23871 };
23872
23873
23874 Roo.extend(Roo.bootstrap.HtmlEditor, Roo.bootstrap.TextArea,  {
23875     
23876     
23877       /**
23878      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
23879      */
23880     toolbars : false,
23881     
23882      /**
23883     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
23884     */
23885     btns : [],
23886    
23887      /**
23888      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
23889      *                        Roo.resizable.
23890      */
23891     resizable : false,
23892      /**
23893      * @cfg {Number} height (in pixels)
23894      */   
23895     height: 300,
23896    /**
23897      * @cfg {Number} width (in pixels)
23898      */   
23899     width: false,
23900     
23901     /**
23902      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
23903      * 
23904      */
23905     stylesheets: false,
23906     
23907     // id of frame..
23908     frameId: false,
23909     
23910     // private properties
23911     validationEvent : false,
23912     deferHeight: true,
23913     initialized : false,
23914     activated : false,
23915     
23916     onFocus : Roo.emptyFn,
23917     iframePad:3,
23918     hideMode:'offsets',
23919     
23920     tbContainer : false,
23921     
23922     bodyCls : '',
23923     
23924     toolbarContainer :function() {
23925         return this.wrap.select('.x-html-editor-tb',true).first();
23926     },
23927
23928     /**
23929      * Protected method that will not generally be called directly. It
23930      * is called when the editor creates its toolbar. Override this method if you need to
23931      * add custom toolbar buttons.
23932      * @param {HtmlEditor} editor
23933      */
23934     createToolbar : function(){
23935         Roo.log('renewing');
23936         Roo.log("create toolbars");
23937         
23938         this.toolbars = [ new Roo.bootstrap.htmleditor.ToolbarStandard({editor: this} ) ];
23939         this.toolbars[0].render(this.toolbarContainer());
23940         
23941         return;
23942         
23943 //        if (!editor.toolbars || !editor.toolbars.length) {
23944 //            editor.toolbars = [ new Roo.bootstrap.HtmlEditor.ToolbarStandard() ]; // can be empty?
23945 //        }
23946 //        
23947 //        for (var i =0 ; i < editor.toolbars.length;i++) {
23948 //            editor.toolbars[i] = Roo.factory(
23949 //                    typeof(editor.toolbars[i]) == 'string' ?
23950 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
23951 //                Roo.bootstrap.HtmlEditor);
23952 //            editor.toolbars[i].init(editor);
23953 //        }
23954     },
23955
23956      
23957     // private
23958     onRender : function(ct, position)
23959     {
23960        // Roo.log("Call onRender: " + this.xtype);
23961         var _t = this;
23962         Roo.bootstrap.HtmlEditor.superclass.onRender.call(this, ct, position);
23963       
23964         this.wrap = this.inputEl().wrap({
23965             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
23966         });
23967         
23968         this.editorcore.onRender(ct, position);
23969          
23970         if (this.resizable) {
23971             this.resizeEl = new Roo.Resizable(this.wrap, {
23972                 pinned : true,
23973                 wrap: true,
23974                 dynamic : true,
23975                 minHeight : this.height,
23976                 height: this.height,
23977                 handles : this.resizable,
23978                 width: this.width,
23979                 listeners : {
23980                     resize : function(r, w, h) {
23981                         _t.onResize(w,h); // -something
23982                     }
23983                 }
23984             });
23985             
23986         }
23987         this.createToolbar(this);
23988        
23989         
23990         if(!this.width && this.resizable){
23991             this.setSize(this.wrap.getSize());
23992         }
23993         if (this.resizeEl) {
23994             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
23995             // should trigger onReize..
23996         }
23997         
23998     },
23999
24000     // private
24001     onResize : function(w, h)
24002     {
24003         Roo.log('resize: ' +w + ',' + h );
24004         Roo.bootstrap.HtmlEditor.superclass.onResize.apply(this, arguments);
24005         var ew = false;
24006         var eh = false;
24007         
24008         if(this.inputEl() ){
24009             if(typeof w == 'number'){
24010                 var aw = w - this.wrap.getFrameWidth('lr');
24011                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
24012                 ew = aw;
24013             }
24014             if(typeof h == 'number'){
24015                  var tbh = -11;  // fixme it needs to tool bar size!
24016                 for (var i =0; i < this.toolbars.length;i++) {
24017                     // fixme - ask toolbars for heights?
24018                     tbh += this.toolbars[i].el.getHeight();
24019                     //if (this.toolbars[i].footer) {
24020                     //    tbh += this.toolbars[i].footer.el.getHeight();
24021                     //}
24022                 }
24023               
24024                 
24025                 
24026                 
24027                 
24028                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
24029                 ah -= 5; // knock a few pixes off for look..
24030                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
24031                 var eh = ah;
24032             }
24033         }
24034         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
24035         this.editorcore.onResize(ew,eh);
24036         
24037     },
24038
24039     /**
24040      * Toggles the editor between standard and source edit mode.
24041      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
24042      */
24043     toggleSourceEdit : function(sourceEditMode)
24044     {
24045         this.editorcore.toggleSourceEdit(sourceEditMode);
24046         
24047         if(this.editorcore.sourceEditMode){
24048             Roo.log('editor - showing textarea');
24049             
24050 //            Roo.log('in');
24051 //            Roo.log(this.syncValue());
24052             this.syncValue();
24053             this.inputEl().removeClass(['hide', 'x-hidden']);
24054             this.inputEl().dom.removeAttribute('tabIndex');
24055             this.inputEl().focus();
24056         }else{
24057             Roo.log('editor - hiding textarea');
24058 //            Roo.log('out')
24059 //            Roo.log(this.pushValue()); 
24060             this.pushValue();
24061             
24062             this.inputEl().addClass(['hide', 'x-hidden']);
24063             this.inputEl().dom.setAttribute('tabIndex', -1);
24064             //this.deferFocus();
24065         }
24066          
24067         if(this.resizable){
24068             this.setSize(this.wrap.getSize());
24069         }
24070         
24071         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
24072     },
24073  
24074     // private (for BoxComponent)
24075     adjustSize : Roo.BoxComponent.prototype.adjustSize,
24076
24077     // private (for BoxComponent)
24078     getResizeEl : function(){
24079         return this.wrap;
24080     },
24081
24082     // private (for BoxComponent)
24083     getPositionEl : function(){
24084         return this.wrap;
24085     },
24086
24087     // private
24088     initEvents : function(){
24089         this.originalValue = this.getValue();
24090     },
24091
24092 //    /**
24093 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24094 //     * @method
24095 //     */
24096 //    markInvalid : Roo.emptyFn,
24097 //    /**
24098 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24099 //     * @method
24100 //     */
24101 //    clearInvalid : Roo.emptyFn,
24102
24103     setValue : function(v){
24104         Roo.bootstrap.HtmlEditor.superclass.setValue.call(this, v);
24105         this.editorcore.pushValue();
24106     },
24107
24108      
24109     // private
24110     deferFocus : function(){
24111         this.focus.defer(10, this);
24112     },
24113
24114     // doc'ed in Field
24115     focus : function(){
24116         this.editorcore.focus();
24117         
24118     },
24119       
24120
24121     // private
24122     onDestroy : function(){
24123         
24124         
24125         
24126         if(this.rendered){
24127             
24128             for (var i =0; i < this.toolbars.length;i++) {
24129                 // fixme - ask toolbars for heights?
24130                 this.toolbars[i].onDestroy();
24131             }
24132             
24133             this.wrap.dom.innerHTML = '';
24134             this.wrap.remove();
24135         }
24136     },
24137
24138     // private
24139     onFirstFocus : function(){
24140         //Roo.log("onFirstFocus");
24141         this.editorcore.onFirstFocus();
24142          for (var i =0; i < this.toolbars.length;i++) {
24143             this.toolbars[i].onFirstFocus();
24144         }
24145         
24146     },
24147     
24148     // private
24149     syncValue : function()
24150     {   
24151         this.editorcore.syncValue();
24152     },
24153     
24154     pushValue : function()
24155     {   
24156         this.editorcore.pushValue();
24157     }
24158      
24159     
24160     // hide stuff that is not compatible
24161     /**
24162      * @event blur
24163      * @hide
24164      */
24165     /**
24166      * @event change
24167      * @hide
24168      */
24169     /**
24170      * @event focus
24171      * @hide
24172      */
24173     /**
24174      * @event specialkey
24175      * @hide
24176      */
24177     /**
24178      * @cfg {String} fieldClass @hide
24179      */
24180     /**
24181      * @cfg {String} focusClass @hide
24182      */
24183     /**
24184      * @cfg {String} autoCreate @hide
24185      */
24186     /**
24187      * @cfg {String} inputType @hide
24188      */
24189      
24190     /**
24191      * @cfg {String} invalidText @hide
24192      */
24193     /**
24194      * @cfg {String} msgFx @hide
24195      */
24196     /**
24197      * @cfg {String} validateOnBlur @hide
24198      */
24199 });
24200  
24201     
24202    
24203    
24204    
24205       
24206 Roo.namespace('Roo.bootstrap.htmleditor');
24207 /**
24208  * @class Roo.bootstrap.HtmlEditorToolbar1
24209  * Basic Toolbar
24210  * 
24211  * @example
24212  * Usage:
24213  *
24214  new Roo.bootstrap.HtmlEditor({
24215     ....
24216     toolbars : [
24217         new Roo.bootstrap.HtmlEditorToolbar1({
24218             disable : { fonts: 1 , format: 1, ..., ... , ...],
24219             btns : [ .... ]
24220         })
24221     }
24222      
24223  * 
24224  * @cfg {Object} disable List of elements to disable..
24225  * @cfg {Array} btns List of additional buttons.
24226  * 
24227  * 
24228  * NEEDS Extra CSS? 
24229  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
24230  */
24231  
24232 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
24233 {
24234     
24235     Roo.apply(this, config);
24236     
24237     // default disabled, based on 'good practice'..
24238     this.disable = this.disable || {};
24239     Roo.applyIf(this.disable, {
24240         fontSize : true,
24241         colors : true,
24242         specialElements : true
24243     });
24244     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
24245     
24246     this.editor = config.editor;
24247     this.editorcore = config.editor.editorcore;
24248     
24249     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
24250     
24251     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
24252     // dont call parent... till later.
24253 }
24254 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
24255      
24256     bar : true,
24257     
24258     editor : false,
24259     editorcore : false,
24260     
24261     
24262     formats : [
24263         "p" ,  
24264         "h1","h2","h3","h4","h5","h6", 
24265         "pre", "code", 
24266         "abbr", "acronym", "address", "cite", "samp", "var",
24267         'div','span'
24268     ],
24269     
24270     onRender : function(ct, position)
24271     {
24272        // Roo.log("Call onRender: " + this.xtype);
24273         
24274        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
24275        Roo.log(this.el);
24276        this.el.dom.style.marginBottom = '0';
24277        var _this = this;
24278        var editorcore = this.editorcore;
24279        var editor= this.editor;
24280        
24281        var children = [];
24282        var btn = function(id,cmd , toggle, handler, html){
24283        
24284             var  event = toggle ? 'toggle' : 'click';
24285        
24286             var a = {
24287                 size : 'sm',
24288                 xtype: 'Button',
24289                 xns: Roo.bootstrap,
24290                 //glyphicon : id,
24291                 fa: id,
24292                 cmd : id || cmd,
24293                 enableToggle:toggle !== false,
24294                 html : html || '',
24295                 pressed : toggle ? false : null,
24296                 listeners : {}
24297             };
24298             a.listeners[toggle ? 'toggle' : 'click'] = function() {
24299                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
24300             };
24301             children.push(a);
24302             return a;
24303        }
24304        
24305     //    var cb_box = function...
24306         
24307         var style = {
24308                 xtype: 'Button',
24309                 size : 'sm',
24310                 xns: Roo.bootstrap,
24311                 fa : 'font',
24312                 //html : 'submit'
24313                 menu : {
24314                     xtype: 'Menu',
24315                     xns: Roo.bootstrap,
24316                     items:  []
24317                 }
24318         };
24319         Roo.each(this.formats, function(f) {
24320             style.menu.items.push({
24321                 xtype :'MenuItem',
24322                 xns: Roo.bootstrap,
24323                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
24324                 tagname : f,
24325                 listeners : {
24326                     click : function()
24327                     {
24328                         editorcore.insertTag(this.tagname);
24329                         editor.focus();
24330                     }
24331                 }
24332                 
24333             });
24334         });
24335         children.push(style);   
24336         
24337         btn('bold',false,true);
24338         btn('italic',false,true);
24339         btn('align-left', 'justifyleft',true);
24340         btn('align-center', 'justifycenter',true);
24341         btn('align-right' , 'justifyright',true);
24342         btn('link', false, false, function(btn) {
24343             //Roo.log("create link?");
24344             var url = prompt(this.createLinkText, this.defaultLinkValue);
24345             if(url && url != 'http:/'+'/'){
24346                 this.editorcore.relayCmd('createlink', url);
24347             }
24348         }),
24349         btn('list','insertunorderedlist',true);
24350         btn('pencil', false,true, function(btn){
24351                 Roo.log(this);
24352                 this.toggleSourceEdit(btn.pressed);
24353         });
24354         
24355         if (this.editor.btns.length > 0) {
24356             for (var i = 0; i<this.editor.btns.length; i++) {
24357                 children.push(this.editor.btns[i]);
24358             }
24359         }
24360         
24361         /*
24362         var cog = {
24363                 xtype: 'Button',
24364                 size : 'sm',
24365                 xns: Roo.bootstrap,
24366                 glyphicon : 'cog',
24367                 //html : 'submit'
24368                 menu : {
24369                     xtype: 'Menu',
24370                     xns: Roo.bootstrap,
24371                     items:  []
24372                 }
24373         };
24374         
24375         cog.menu.items.push({
24376             xtype :'MenuItem',
24377             xns: Roo.bootstrap,
24378             html : Clean styles,
24379             tagname : f,
24380             listeners : {
24381                 click : function()
24382                 {
24383                     editorcore.insertTag(this.tagname);
24384                     editor.focus();
24385                 }
24386             }
24387             
24388         });
24389        */
24390         
24391          
24392        this.xtype = 'NavSimplebar';
24393         
24394         for(var i=0;i< children.length;i++) {
24395             
24396             this.buttons.add(this.addxtypeChild(children[i]));
24397             
24398         }
24399         
24400         editor.on('editorevent', this.updateToolbar, this);
24401     },
24402     onBtnClick : function(id)
24403     {
24404        this.editorcore.relayCmd(id);
24405        this.editorcore.focus();
24406     },
24407     
24408     /**
24409      * Protected method that will not generally be called directly. It triggers
24410      * a toolbar update by reading the markup state of the current selection in the editor.
24411      */
24412     updateToolbar: function(){
24413
24414         if(!this.editorcore.activated){
24415             this.editor.onFirstFocus(); // is this neeed?
24416             return;
24417         }
24418
24419         var btns = this.buttons; 
24420         var doc = this.editorcore.doc;
24421         btns.get('bold').setActive(doc.queryCommandState('bold'));
24422         btns.get('italic').setActive(doc.queryCommandState('italic'));
24423         //btns.get('underline').setActive(doc.queryCommandState('underline'));
24424         
24425         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
24426         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
24427         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
24428         
24429         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
24430         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
24431          /*
24432         
24433         var ans = this.editorcore.getAllAncestors();
24434         if (this.formatCombo) {
24435             
24436             
24437             var store = this.formatCombo.store;
24438             this.formatCombo.setValue("");
24439             for (var i =0; i < ans.length;i++) {
24440                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
24441                     // select it..
24442                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
24443                     break;
24444                 }
24445             }
24446         }
24447         
24448         
24449         
24450         // hides menus... - so this cant be on a menu...
24451         Roo.bootstrap.MenuMgr.hideAll();
24452         */
24453         Roo.bootstrap.MenuMgr.hideAll();
24454         //this.editorsyncValue();
24455     },
24456     onFirstFocus: function() {
24457         this.buttons.each(function(item){
24458            item.enable();
24459         });
24460     },
24461     toggleSourceEdit : function(sourceEditMode){
24462         
24463           
24464         if(sourceEditMode){
24465             Roo.log("disabling buttons");
24466            this.buttons.each( function(item){
24467                 if(item.cmd != 'pencil'){
24468                     item.disable();
24469                 }
24470             });
24471           
24472         }else{
24473             Roo.log("enabling buttons");
24474             if(this.editorcore.initialized){
24475                 this.buttons.each( function(item){
24476                     item.enable();
24477                 });
24478             }
24479             
24480         }
24481         Roo.log("calling toggole on editor");
24482         // tell the editor that it's been pressed..
24483         this.editor.toggleSourceEdit(sourceEditMode);
24484        
24485     }
24486 });
24487
24488
24489
24490
24491
24492 /**
24493  * @class Roo.bootstrap.Table.AbstractSelectionModel
24494  * @extends Roo.util.Observable
24495  * Abstract base class for grid SelectionModels.  It provides the interface that should be
24496  * implemented by descendant classes.  This class should not be directly instantiated.
24497  * @constructor
24498  */
24499 Roo.bootstrap.Table.AbstractSelectionModel = function(){
24500     this.locked = false;
24501     Roo.bootstrap.Table.AbstractSelectionModel.superclass.constructor.call(this);
24502 };
24503
24504
24505 Roo.extend(Roo.bootstrap.Table.AbstractSelectionModel, Roo.util.Observable,  {
24506     /** @ignore Called by the grid automatically. Do not call directly. */
24507     init : function(grid){
24508         this.grid = grid;
24509         this.initEvents();
24510     },
24511
24512     /**
24513      * Locks the selections.
24514      */
24515     lock : function(){
24516         this.locked = true;
24517     },
24518
24519     /**
24520      * Unlocks the selections.
24521      */
24522     unlock : function(){
24523         this.locked = false;
24524     },
24525
24526     /**
24527      * Returns true if the selections are locked.
24528      * @return {Boolean}
24529      */
24530     isLocked : function(){
24531         return this.locked;
24532     }
24533 });
24534 /**
24535  * @extends Roo.bootstrap.Table.AbstractSelectionModel
24536  * @class Roo.bootstrap.Table.RowSelectionModel
24537  * The default SelectionModel used by {@link Roo.bootstrap.Table}.
24538  * It supports multiple selections and keyboard selection/navigation. 
24539  * @constructor
24540  * @param {Object} config
24541  */
24542
24543 Roo.bootstrap.Table.RowSelectionModel = function(config){
24544     Roo.apply(this, config);
24545     this.selections = new Roo.util.MixedCollection(false, function(o){
24546         return o.id;
24547     });
24548
24549     this.last = false;
24550     this.lastActive = false;
24551
24552     this.addEvents({
24553         /**
24554              * @event selectionchange
24555              * Fires when the selection changes
24556              * @param {SelectionModel} this
24557              */
24558             "selectionchange" : true,
24559         /**
24560              * @event afterselectionchange
24561              * Fires after the selection changes (eg. by key press or clicking)
24562              * @param {SelectionModel} this
24563              */
24564             "afterselectionchange" : true,
24565         /**
24566              * @event beforerowselect
24567              * Fires when a row is selected being selected, return false to cancel.
24568              * @param {SelectionModel} this
24569              * @param {Number} rowIndex The selected index
24570              * @param {Boolean} keepExisting False if other selections will be cleared
24571              */
24572             "beforerowselect" : true,
24573         /**
24574              * @event rowselect
24575              * Fires when a row is selected.
24576              * @param {SelectionModel} this
24577              * @param {Number} rowIndex The selected index
24578              * @param {Roo.data.Record} r The record
24579              */
24580             "rowselect" : true,
24581         /**
24582              * @event rowdeselect
24583              * Fires when a row is deselected.
24584              * @param {SelectionModel} this
24585              * @param {Number} rowIndex The selected index
24586              */
24587         "rowdeselect" : true
24588     });
24589     Roo.bootstrap.Table.RowSelectionModel.superclass.constructor.call(this);
24590     this.locked = false;
24591  };
24592
24593 Roo.extend(Roo.bootstrap.Table.RowSelectionModel, Roo.bootstrap.Table.AbstractSelectionModel,  {
24594     /**
24595      * @cfg {Boolean} singleSelect
24596      * True to allow selection of only one row at a time (defaults to false)
24597      */
24598     singleSelect : false,
24599
24600     // private
24601     initEvents : function()
24602     {
24603
24604         //if(!this.grid.enableDragDrop && !this.grid.enableDrag){
24605         //    this.growclickrid.on("mousedown", this.handleMouseDown, this);
24606         //}else{ // allow click to work like normal
24607          //   this.grid.on("rowclick", this.handleDragableRowClick, this);
24608         //}
24609         //this.grid.on("rowdblclick", this.handleMouseDBClick, this);
24610         this.grid.on("rowclick", this.handleMouseDown, this);
24611         
24612         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
24613             "up" : function(e){
24614                 if(!e.shiftKey){
24615                     this.selectPrevious(e.shiftKey);
24616                 }else if(this.last !== false && this.lastActive !== false){
24617                     var last = this.last;
24618                     this.selectRange(this.last,  this.lastActive-1);
24619                     this.grid.getView().focusRow(this.lastActive);
24620                     if(last !== false){
24621                         this.last = last;
24622                     }
24623                 }else{
24624                     this.selectFirstRow();
24625                 }
24626                 this.fireEvent("afterselectionchange", this);
24627             },
24628             "down" : function(e){
24629                 if(!e.shiftKey){
24630                     this.selectNext(e.shiftKey);
24631                 }else if(this.last !== false && this.lastActive !== false){
24632                     var last = this.last;
24633                     this.selectRange(this.last,  this.lastActive+1);
24634                     this.grid.getView().focusRow(this.lastActive);
24635                     if(last !== false){
24636                         this.last = last;
24637                     }
24638                 }else{
24639                     this.selectFirstRow();
24640                 }
24641                 this.fireEvent("afterselectionchange", this);
24642             },
24643             scope: this
24644         });
24645         this.grid.store.on('load', function(){
24646             this.selections.clear();
24647         },this);
24648         /*
24649         var view = this.grid.view;
24650         view.on("refresh", this.onRefresh, this);
24651         view.on("rowupdated", this.onRowUpdated, this);
24652         view.on("rowremoved", this.onRemove, this);
24653         */
24654     },
24655
24656     // private
24657     onRefresh : function()
24658     {
24659         var ds = this.grid.store, i, v = this.grid.view;
24660         var s = this.selections;
24661         s.each(function(r){
24662             if((i = ds.indexOfId(r.id)) != -1){
24663                 v.onRowSelect(i);
24664             }else{
24665                 s.remove(r);
24666             }
24667         });
24668     },
24669
24670     // private
24671     onRemove : function(v, index, r){
24672         this.selections.remove(r);
24673     },
24674
24675     // private
24676     onRowUpdated : function(v, index, r){
24677         if(this.isSelected(r)){
24678             v.onRowSelect(index);
24679         }
24680     },
24681
24682     /**
24683      * Select records.
24684      * @param {Array} records The records to select
24685      * @param {Boolean} keepExisting (optional) True to keep existing selections
24686      */
24687     selectRecords : function(records, keepExisting)
24688     {
24689         if(!keepExisting){
24690             this.clearSelections();
24691         }
24692             var ds = this.grid.store;
24693         for(var i = 0, len = records.length; i < len; i++){
24694             this.selectRow(ds.indexOf(records[i]), true);
24695         }
24696     },
24697
24698     /**
24699      * Gets the number of selected rows.
24700      * @return {Number}
24701      */
24702     getCount : function(){
24703         return this.selections.length;
24704     },
24705
24706     /**
24707      * Selects the first row in the grid.
24708      */
24709     selectFirstRow : function(){
24710         this.selectRow(0);
24711     },
24712
24713     /**
24714      * Select the last row.
24715      * @param {Boolean} keepExisting (optional) True to keep existing selections
24716      */
24717     selectLastRow : function(keepExisting){
24718         //this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
24719         this.selectRow(this.grid.store.getCount() - 1, keepExisting);
24720     },
24721
24722     /**
24723      * Selects the row immediately following the last selected row.
24724      * @param {Boolean} keepExisting (optional) True to keep existing selections
24725      */
24726     selectNext : function(keepExisting)
24727     {
24728             if(this.last !== false && (this.last+1) < this.grid.store.getCount()){
24729             this.selectRow(this.last+1, keepExisting);
24730             this.grid.getView().focusRow(this.last);
24731         }
24732     },
24733
24734     /**
24735      * Selects the row that precedes the last selected row.
24736      * @param {Boolean} keepExisting (optional) True to keep existing selections
24737      */
24738     selectPrevious : function(keepExisting){
24739         if(this.last){
24740             this.selectRow(this.last-1, keepExisting);
24741             this.grid.getView().focusRow(this.last);
24742         }
24743     },
24744
24745     /**
24746      * Returns the selected records
24747      * @return {Array} Array of selected records
24748      */
24749     getSelections : function(){
24750         return [].concat(this.selections.items);
24751     },
24752
24753     /**
24754      * Returns the first selected record.
24755      * @return {Record}
24756      */
24757     getSelected : function(){
24758         return this.selections.itemAt(0);
24759     },
24760
24761
24762     /**
24763      * Clears all selections.
24764      */
24765     clearSelections : function(fast)
24766     {
24767         if(this.locked) {
24768             return;
24769         }
24770         if(fast !== true){
24771                 var ds = this.grid.store;
24772             var s = this.selections;
24773             s.each(function(r){
24774                 this.deselectRow(ds.indexOfId(r.id));
24775             }, this);
24776             s.clear();
24777         }else{
24778             this.selections.clear();
24779         }
24780         this.last = false;
24781     },
24782
24783
24784     /**
24785      * Selects all rows.
24786      */
24787     selectAll : function(){
24788         if(this.locked) {
24789             return;
24790         }
24791         this.selections.clear();
24792         for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
24793             this.selectRow(i, true);
24794         }
24795     },
24796
24797     /**
24798      * Returns True if there is a selection.
24799      * @return {Boolean}
24800      */
24801     hasSelection : function(){
24802         return this.selections.length > 0;
24803     },
24804
24805     /**
24806      * Returns True if the specified row is selected.
24807      * @param {Number/Record} record The record or index of the record to check
24808      * @return {Boolean}
24809      */
24810     isSelected : function(index){
24811             var r = typeof index == "number" ? this.grid.store.getAt(index) : index;
24812         return (r && this.selections.key(r.id) ? true : false);
24813     },
24814
24815     /**
24816      * Returns True if the specified record id is selected.
24817      * @param {String} id The id of record to check
24818      * @return {Boolean}
24819      */
24820     isIdSelected : function(id){
24821         return (this.selections.key(id) ? true : false);
24822     },
24823
24824
24825     // private
24826     handleMouseDBClick : function(e, t){
24827         
24828     },
24829     // private
24830     handleMouseDown : function(e, t)
24831     {
24832             var rowIndex = this.grid.headerShow  ? t.dom.rowIndex - 1 : t.dom.rowIndex ; // first row is header???
24833         if(this.isLocked() || rowIndex < 0 ){
24834             return;
24835         };
24836         if(e.shiftKey && this.last !== false){
24837             var last = this.last;
24838             this.selectRange(last, rowIndex, e.ctrlKey);
24839             this.last = last; // reset the last
24840             t.focus();
24841     
24842         }else{
24843             var isSelected = this.isSelected(rowIndex);
24844             //Roo.log("select row:" + rowIndex);
24845             if(isSelected){
24846                 this.deselectRow(rowIndex);
24847             } else {
24848                         this.selectRow(rowIndex, true);
24849             }
24850     
24851             /*
24852                 if(e.button !== 0 && isSelected){
24853                 alert('rowIndex 2: ' + rowIndex);
24854                     view.focusRow(rowIndex);
24855                 }else if(e.ctrlKey && isSelected){
24856                     this.deselectRow(rowIndex);
24857                 }else if(!isSelected){
24858                     this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
24859                     view.focusRow(rowIndex);
24860                 }
24861             */
24862         }
24863         this.fireEvent("afterselectionchange", this);
24864     },
24865     // private
24866     handleDragableRowClick :  function(grid, rowIndex, e) 
24867     {
24868         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
24869             this.selectRow(rowIndex, false);
24870             grid.view.focusRow(rowIndex);
24871              this.fireEvent("afterselectionchange", this);
24872         }
24873     },
24874     
24875     /**
24876      * Selects multiple rows.
24877      * @param {Array} rows Array of the indexes of the row to select
24878      * @param {Boolean} keepExisting (optional) True to keep existing selections
24879      */
24880     selectRows : function(rows, keepExisting){
24881         if(!keepExisting){
24882             this.clearSelections();
24883         }
24884         for(var i = 0, len = rows.length; i < len; i++){
24885             this.selectRow(rows[i], true);
24886         }
24887     },
24888
24889     /**
24890      * Selects a range of rows. All rows in between startRow and endRow are also selected.
24891      * @param {Number} startRow The index of the first row in the range
24892      * @param {Number} endRow The index of the last row in the range
24893      * @param {Boolean} keepExisting (optional) True to retain existing selections
24894      */
24895     selectRange : function(startRow, endRow, keepExisting){
24896         if(this.locked) {
24897             return;
24898         }
24899         if(!keepExisting){
24900             this.clearSelections();
24901         }
24902         if(startRow <= endRow){
24903             for(var i = startRow; i <= endRow; i++){
24904                 this.selectRow(i, true);
24905             }
24906         }else{
24907             for(var i = startRow; i >= endRow; i--){
24908                 this.selectRow(i, true);
24909             }
24910         }
24911     },
24912
24913     /**
24914      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
24915      * @param {Number} startRow The index of the first row in the range
24916      * @param {Number} endRow The index of the last row in the range
24917      */
24918     deselectRange : function(startRow, endRow, preventViewNotify){
24919         if(this.locked) {
24920             return;
24921         }
24922         for(var i = startRow; i <= endRow; i++){
24923             this.deselectRow(i, preventViewNotify);
24924         }
24925     },
24926
24927     /**
24928      * Selects a row.
24929      * @param {Number} row The index of the row to select
24930      * @param {Boolean} keepExisting (optional) True to keep existing selections
24931      */
24932     selectRow : function(index, keepExisting, preventViewNotify)
24933     {
24934             if(this.locked || (index < 0 || index > this.grid.store.getCount())) {
24935             return;
24936         }
24937         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
24938             if(!keepExisting || this.singleSelect){
24939                 this.clearSelections();
24940             }
24941             
24942             var r = this.grid.store.getAt(index);
24943             //console.log('selectRow - record id :' + r.id);
24944             
24945             this.selections.add(r);
24946             this.last = this.lastActive = index;
24947             if(!preventViewNotify){
24948                 var proxy = new Roo.Element(
24949                                 this.grid.getRowDom(index)
24950                 );
24951                 proxy.addClass('bg-info info');
24952             }
24953             this.fireEvent("rowselect", this, index, r);
24954             this.fireEvent("selectionchange", this);
24955         }
24956     },
24957
24958     /**
24959      * Deselects a row.
24960      * @param {Number} row The index of the row to deselect
24961      */
24962     deselectRow : function(index, preventViewNotify)
24963     {
24964         if(this.locked) {
24965             return;
24966         }
24967         if(this.last == index){
24968             this.last = false;
24969         }
24970         if(this.lastActive == index){
24971             this.lastActive = false;
24972         }
24973         
24974         var r = this.grid.store.getAt(index);
24975         if (!r) {
24976             return;
24977         }
24978         
24979         this.selections.remove(r);
24980         //.console.log('deselectRow - record id :' + r.id);
24981         if(!preventViewNotify){
24982         
24983             var proxy = new Roo.Element(
24984                 this.grid.getRowDom(index)
24985             );
24986             proxy.removeClass('bg-info info');
24987         }
24988         this.fireEvent("rowdeselect", this, index);
24989         this.fireEvent("selectionchange", this);
24990     },
24991
24992     // private
24993     restoreLast : function(){
24994         if(this._last){
24995             this.last = this._last;
24996         }
24997     },
24998
24999     // private
25000     acceptsNav : function(row, col, cm){
25001         return !cm.isHidden(col) && cm.isCellEditable(col, row);
25002     },
25003
25004     // private
25005     onEditorKey : function(field, e){
25006         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
25007         if(k == e.TAB){
25008             e.stopEvent();
25009             ed.completeEdit();
25010             if(e.shiftKey){
25011                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
25012             }else{
25013                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
25014             }
25015         }else if(k == e.ENTER && !e.ctrlKey){
25016             e.stopEvent();
25017             ed.completeEdit();
25018             if(e.shiftKey){
25019                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
25020             }else{
25021                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
25022             }
25023         }else if(k == e.ESC){
25024             ed.cancelEdit();
25025         }
25026         if(newCell){
25027             g.startEditing(newCell[0], newCell[1]);
25028         }
25029     }
25030 });
25031 /*
25032  * Based on:
25033  * Ext JS Library 1.1.1
25034  * Copyright(c) 2006-2007, Ext JS, LLC.
25035  *
25036  * Originally Released Under LGPL - original licence link has changed is not relivant.
25037  *
25038  * Fork - LGPL
25039  * <script type="text/javascript">
25040  */
25041  
25042 /**
25043  * @class Roo.bootstrap.PagingToolbar
25044  * @extends Roo.bootstrap.NavSimplebar
25045  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
25046  * @constructor
25047  * Create a new PagingToolbar
25048  * @param {Object} config The config object
25049  * @param {Roo.data.Store} store
25050  */
25051 Roo.bootstrap.PagingToolbar = function(config)
25052 {
25053     // old args format still supported... - xtype is prefered..
25054         // created from xtype...
25055     
25056     this.ds = config.dataSource;
25057     
25058     if (config.store && !this.ds) {
25059         this.store= Roo.factory(config.store, Roo.data);
25060         this.ds = this.store;
25061         this.ds.xmodule = this.xmodule || false;
25062     }
25063     
25064     this.toolbarItems = [];
25065     if (config.items) {
25066         this.toolbarItems = config.items;
25067     }
25068     
25069     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
25070     
25071     this.cursor = 0;
25072     
25073     if (this.ds) { 
25074         this.bind(this.ds);
25075     }
25076     
25077     if (Roo.bootstrap.version == 4) {
25078         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
25079     } else {
25080         this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
25081     }
25082     
25083 };
25084
25085 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
25086     /**
25087      * @cfg {Roo.data.Store} dataSource
25088      * The underlying data store providing the paged data
25089      */
25090     /**
25091      * @cfg {String/HTMLElement/Element} container
25092      * container The id or element that will contain the toolbar
25093      */
25094     /**
25095      * @cfg {Boolean} displayInfo
25096      * True to display the displayMsg (defaults to false)
25097      */
25098     /**
25099      * @cfg {Number} pageSize
25100      * The number of records to display per page (defaults to 20)
25101      */
25102     pageSize: 20,
25103     /**
25104      * @cfg {String} displayMsg
25105      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
25106      */
25107     displayMsg : 'Displaying {0} - {1} of {2}',
25108     /**
25109      * @cfg {String} emptyMsg
25110      * The message to display when no records are found (defaults to "No data to display")
25111      */
25112     emptyMsg : 'No data to display',
25113     /**
25114      * Customizable piece of the default paging text (defaults to "Page")
25115      * @type String
25116      */
25117     beforePageText : "Page",
25118     /**
25119      * Customizable piece of the default paging text (defaults to "of %0")
25120      * @type String
25121      */
25122     afterPageText : "of {0}",
25123     /**
25124      * Customizable piece of the default paging text (defaults to "First Page")
25125      * @type String
25126      */
25127     firstText : "First Page",
25128     /**
25129      * Customizable piece of the default paging text (defaults to "Previous Page")
25130      * @type String
25131      */
25132     prevText : "Previous Page",
25133     /**
25134      * Customizable piece of the default paging text (defaults to "Next Page")
25135      * @type String
25136      */
25137     nextText : "Next Page",
25138     /**
25139      * Customizable piece of the default paging text (defaults to "Last Page")
25140      * @type String
25141      */
25142     lastText : "Last Page",
25143     /**
25144      * Customizable piece of the default paging text (defaults to "Refresh")
25145      * @type String
25146      */
25147     refreshText : "Refresh",
25148
25149     buttons : false,
25150     // private
25151     onRender : function(ct, position) 
25152     {
25153         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
25154         this.navgroup.parentId = this.id;
25155         this.navgroup.onRender(this.el, null);
25156         // add the buttons to the navgroup
25157         
25158         if(this.displayInfo){
25159             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
25160             this.displayEl = this.el.select('.x-paging-info', true).first();
25161 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
25162 //            this.displayEl = navel.el.select('span',true).first();
25163         }
25164         
25165         var _this = this;
25166         
25167         if(this.buttons){
25168             Roo.each(_this.buttons, function(e){ // this might need to use render????
25169                Roo.factory(e).render(_this.el);
25170             });
25171         }
25172             
25173         Roo.each(_this.toolbarItems, function(e) {
25174             _this.navgroup.addItem(e);
25175         });
25176         
25177         
25178         this.first = this.navgroup.addItem({
25179             tooltip: this.firstText,
25180             cls: "prev btn-outline-secondary",
25181             html : ' <i class="fa fa-step-backward"></i>',
25182             disabled: true,
25183             preventDefault: true,
25184             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
25185         });
25186         
25187         this.prev =  this.navgroup.addItem({
25188             tooltip: this.prevText,
25189             cls: "prev btn-outline-secondary",
25190             html : ' <i class="fa fa-backward"></i>',
25191             disabled: true,
25192             preventDefault: true,
25193             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
25194         });
25195     //this.addSeparator();
25196         
25197         
25198         var field = this.navgroup.addItem( {
25199             tagtype : 'span',
25200             cls : 'x-paging-position  btn-outline-secondary',
25201              disabled: true,
25202             html : this.beforePageText  +
25203                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
25204                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
25205          } ); //?? escaped?
25206         
25207         this.field = field.el.select('input', true).first();
25208         this.field.on("keydown", this.onPagingKeydown, this);
25209         this.field.on("focus", function(){this.dom.select();});
25210     
25211     
25212         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
25213         //this.field.setHeight(18);
25214         //this.addSeparator();
25215         this.next = this.navgroup.addItem({
25216             tooltip: this.nextText,
25217             cls: "next btn-outline-secondary",
25218             html : ' <i class="fa fa-forward"></i>',
25219             disabled: true,
25220             preventDefault: true,
25221             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
25222         });
25223         this.last = this.navgroup.addItem({
25224             tooltip: this.lastText,
25225             html : ' <i class="fa fa-step-forward"></i>',
25226             cls: "next btn-outline-secondary",
25227             disabled: true,
25228             preventDefault: true,
25229             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
25230         });
25231     //this.addSeparator();
25232         this.loading = this.navgroup.addItem({
25233             tooltip: this.refreshText,
25234             cls: "btn-outline-secondary",
25235             html : ' <i class="fa fa-refresh"></i>',
25236             preventDefault: true,
25237             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
25238         });
25239         
25240     },
25241
25242     // private
25243     updateInfo : function(){
25244         if(this.displayEl){
25245             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
25246             var msg = count == 0 ?
25247                 this.emptyMsg :
25248                 String.format(
25249                     this.displayMsg,
25250                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
25251                 );
25252             this.displayEl.update(msg);
25253         }
25254     },
25255
25256     // private
25257     onLoad : function(ds, r, o)
25258     {
25259         this.cursor = o.params.start ? o.params.start : 0;
25260         
25261         var d = this.getPageData(),
25262             ap = d.activePage,
25263             ps = d.pages;
25264         
25265         
25266         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
25267         this.field.dom.value = ap;
25268         this.first.setDisabled(ap == 1);
25269         this.prev.setDisabled(ap == 1);
25270         this.next.setDisabled(ap == ps);
25271         this.last.setDisabled(ap == ps);
25272         this.loading.enable();
25273         this.updateInfo();
25274     },
25275
25276     // private
25277     getPageData : function(){
25278         var total = this.ds.getTotalCount();
25279         return {
25280             total : total,
25281             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
25282             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
25283         };
25284     },
25285
25286     // private
25287     onLoadError : function(){
25288         this.loading.enable();
25289     },
25290
25291     // private
25292     onPagingKeydown : function(e){
25293         var k = e.getKey();
25294         var d = this.getPageData();
25295         if(k == e.RETURN){
25296             var v = this.field.dom.value, pageNum;
25297             if(!v || isNaN(pageNum = parseInt(v, 10))){
25298                 this.field.dom.value = d.activePage;
25299                 return;
25300             }
25301             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
25302             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25303             e.stopEvent();
25304         }
25305         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))
25306         {
25307           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
25308           this.field.dom.value = pageNum;
25309           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
25310           e.stopEvent();
25311         }
25312         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
25313         {
25314           var v = this.field.dom.value, pageNum; 
25315           var increment = (e.shiftKey) ? 10 : 1;
25316           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
25317                 increment *= -1;
25318           }
25319           if(!v || isNaN(pageNum = parseInt(v, 10))) {
25320             this.field.dom.value = d.activePage;
25321             return;
25322           }
25323           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
25324           {
25325             this.field.dom.value = parseInt(v, 10) + increment;
25326             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
25327             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25328           }
25329           e.stopEvent();
25330         }
25331     },
25332
25333     // private
25334     beforeLoad : function(){
25335         if(this.loading){
25336             this.loading.disable();
25337         }
25338     },
25339
25340     // private
25341     onClick : function(which){
25342         
25343         var ds = this.ds;
25344         if (!ds) {
25345             return;
25346         }
25347         
25348         switch(which){
25349             case "first":
25350                 ds.load({params:{start: 0, limit: this.pageSize}});
25351             break;
25352             case "prev":
25353                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
25354             break;
25355             case "next":
25356                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
25357             break;
25358             case "last":
25359                 var total = ds.getTotalCount();
25360                 var extra = total % this.pageSize;
25361                 var lastStart = extra ? (total - extra) : total-this.pageSize;
25362                 ds.load({params:{start: lastStart, limit: this.pageSize}});
25363             break;
25364             case "refresh":
25365                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
25366             break;
25367         }
25368     },
25369
25370     /**
25371      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
25372      * @param {Roo.data.Store} store The data store to unbind
25373      */
25374     unbind : function(ds){
25375         ds.un("beforeload", this.beforeLoad, this);
25376         ds.un("load", this.onLoad, this);
25377         ds.un("loadexception", this.onLoadError, this);
25378         ds.un("remove", this.updateInfo, this);
25379         ds.un("add", this.updateInfo, this);
25380         this.ds = undefined;
25381     },
25382
25383     /**
25384      * Binds the paging toolbar to the specified {@link Roo.data.Store}
25385      * @param {Roo.data.Store} store The data store to bind
25386      */
25387     bind : function(ds){
25388         ds.on("beforeload", this.beforeLoad, this);
25389         ds.on("load", this.onLoad, this);
25390         ds.on("loadexception", this.onLoadError, this);
25391         ds.on("remove", this.updateInfo, this);
25392         ds.on("add", this.updateInfo, this);
25393         this.ds = ds;
25394     }
25395 });/*
25396  * - LGPL
25397  *
25398  * element
25399  * 
25400  */
25401
25402 /**
25403  * @class Roo.bootstrap.MessageBar
25404  * @extends Roo.bootstrap.Component
25405  * Bootstrap MessageBar class
25406  * @cfg {String} html contents of the MessageBar
25407  * @cfg {String} weight (info | success | warning | danger) default info
25408  * @cfg {String} beforeClass insert the bar before the given class
25409  * @cfg {Boolean} closable (true | false) default false
25410  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
25411  * 
25412  * @constructor
25413  * Create a new Element
25414  * @param {Object} config The config object
25415  */
25416
25417 Roo.bootstrap.MessageBar = function(config){
25418     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
25419 };
25420
25421 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
25422     
25423     html: '',
25424     weight: 'info',
25425     closable: false,
25426     fixed: false,
25427     beforeClass: 'bootstrap-sticky-wrap',
25428     
25429     getAutoCreate : function(){
25430         
25431         var cfg = {
25432             tag: 'div',
25433             cls: 'alert alert-dismissable alert-' + this.weight,
25434             cn: [
25435                 {
25436                     tag: 'span',
25437                     cls: 'message',
25438                     html: this.html || ''
25439                 }
25440             ]
25441         };
25442         
25443         if(this.fixed){
25444             cfg.cls += ' alert-messages-fixed';
25445         }
25446         
25447         if(this.closable){
25448             cfg.cn.push({
25449                 tag: 'button',
25450                 cls: 'close',
25451                 html: 'x'
25452             });
25453         }
25454         
25455         return cfg;
25456     },
25457     
25458     onRender : function(ct, position)
25459     {
25460         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
25461         
25462         if(!this.el){
25463             var cfg = Roo.apply({},  this.getAutoCreate());
25464             cfg.id = Roo.id();
25465             
25466             if (this.cls) {
25467                 cfg.cls += ' ' + this.cls;
25468             }
25469             if (this.style) {
25470                 cfg.style = this.style;
25471             }
25472             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
25473             
25474             this.el.setVisibilityMode(Roo.Element.DISPLAY);
25475         }
25476         
25477         this.el.select('>button.close').on('click', this.hide, this);
25478         
25479     },
25480     
25481     show : function()
25482     {
25483         if (!this.rendered) {
25484             this.render();
25485         }
25486         
25487         this.el.show();
25488         
25489         this.fireEvent('show', this);
25490         
25491     },
25492     
25493     hide : function()
25494     {
25495         if (!this.rendered) {
25496             this.render();
25497         }
25498         
25499         this.el.hide();
25500         
25501         this.fireEvent('hide', this);
25502     },
25503     
25504     update : function()
25505     {
25506 //        var e = this.el.dom.firstChild;
25507 //        
25508 //        if(this.closable){
25509 //            e = e.nextSibling;
25510 //        }
25511 //        
25512 //        e.data = this.html || '';
25513
25514         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
25515     }
25516    
25517 });
25518
25519  
25520
25521      /*
25522  * - LGPL
25523  *
25524  * Graph
25525  * 
25526  */
25527
25528
25529 /**
25530  * @class Roo.bootstrap.Graph
25531  * @extends Roo.bootstrap.Component
25532  * Bootstrap Graph class
25533 > Prameters
25534  -sm {number} sm 4
25535  -md {number} md 5
25536  @cfg {String} graphtype  bar | vbar | pie
25537  @cfg {number} g_x coodinator | centre x (pie)
25538  @cfg {number} g_y coodinator | centre y (pie)
25539  @cfg {number} g_r radius (pie)
25540  @cfg {number} g_height height of the chart (respected by all elements in the set)
25541  @cfg {number} g_width width of the chart (respected by all elements in the set)
25542  @cfg {Object} title The title of the chart
25543     
25544  -{Array}  values
25545  -opts (object) options for the chart 
25546      o {
25547      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
25548      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
25549      o vgutter (number)
25550      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.
25551      o stacked (boolean) whether or not to tread values as in a stacked bar chart
25552      o to
25553      o stretch (boolean)
25554      o }
25555  -opts (object) options for the pie
25556      o{
25557      o cut
25558      o startAngle (number)
25559      o endAngle (number)
25560      } 
25561  *
25562  * @constructor
25563  * Create a new Input
25564  * @param {Object} config The config object
25565  */
25566
25567 Roo.bootstrap.Graph = function(config){
25568     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
25569     
25570     this.addEvents({
25571         // img events
25572         /**
25573          * @event click
25574          * The img click event for the img.
25575          * @param {Roo.EventObject} e
25576          */
25577         "click" : true
25578     });
25579 };
25580
25581 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
25582     
25583     sm: 4,
25584     md: 5,
25585     graphtype: 'bar',
25586     g_height: 250,
25587     g_width: 400,
25588     g_x: 50,
25589     g_y: 50,
25590     g_r: 30,
25591     opts:{
25592         //g_colors: this.colors,
25593         g_type: 'soft',
25594         g_gutter: '20%'
25595
25596     },
25597     title : false,
25598
25599     getAutoCreate : function(){
25600         
25601         var cfg = {
25602             tag: 'div',
25603             html : null
25604         };
25605         
25606         
25607         return  cfg;
25608     },
25609
25610     onRender : function(ct,position){
25611         
25612         
25613         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
25614         
25615         if (typeof(Raphael) == 'undefined') {
25616             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
25617             return;
25618         }
25619         
25620         this.raphael = Raphael(this.el.dom);
25621         
25622                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25623                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25624                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25625                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
25626                 /*
25627                 r.text(160, 10, "Single Series Chart").attr(txtattr);
25628                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
25629                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
25630                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
25631                 
25632                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
25633                 r.barchart(330, 10, 300, 220, data1);
25634                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
25635                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
25636                 */
25637                 
25638                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25639                 // r.barchart(30, 30, 560, 250,  xdata, {
25640                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
25641                 //     axis : "0 0 1 1",
25642                 //     axisxlabels :  xdata
25643                 //     //yvalues : cols,
25644                    
25645                 // });
25646 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25647 //        
25648 //        this.load(null,xdata,{
25649 //                axis : "0 0 1 1",
25650 //                axisxlabels :  xdata
25651 //                });
25652
25653     },
25654
25655     load : function(graphtype,xdata,opts)
25656     {
25657         this.raphael.clear();
25658         if(!graphtype) {
25659             graphtype = this.graphtype;
25660         }
25661         if(!opts){
25662             opts = this.opts;
25663         }
25664         var r = this.raphael,
25665             fin = function () {
25666                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
25667             },
25668             fout = function () {
25669                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
25670             },
25671             pfin = function() {
25672                 this.sector.stop();
25673                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
25674
25675                 if (this.label) {
25676                     this.label[0].stop();
25677                     this.label[0].attr({ r: 7.5 });
25678                     this.label[1].attr({ "font-weight": 800 });
25679                 }
25680             },
25681             pfout = function() {
25682                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
25683
25684                 if (this.label) {
25685                     this.label[0].animate({ r: 5 }, 500, "bounce");
25686                     this.label[1].attr({ "font-weight": 400 });
25687                 }
25688             };
25689
25690         switch(graphtype){
25691             case 'bar':
25692                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25693                 break;
25694             case 'hbar':
25695                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25696                 break;
25697             case 'pie':
25698 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
25699 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
25700 //            
25701                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
25702                 
25703                 break;
25704
25705         }
25706         
25707         if(this.title){
25708             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
25709         }
25710         
25711     },
25712     
25713     setTitle: function(o)
25714     {
25715         this.title = o;
25716     },
25717     
25718     initEvents: function() {
25719         
25720         if(!this.href){
25721             this.el.on('click', this.onClick, this);
25722         }
25723     },
25724     
25725     onClick : function(e)
25726     {
25727         Roo.log('img onclick');
25728         this.fireEvent('click', this, e);
25729     }
25730    
25731 });
25732
25733  
25734 /*
25735  * - LGPL
25736  *
25737  * numberBox
25738  * 
25739  */
25740 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25741
25742 /**
25743  * @class Roo.bootstrap.dash.NumberBox
25744  * @extends Roo.bootstrap.Component
25745  * Bootstrap NumberBox class
25746  * @cfg {String} headline Box headline
25747  * @cfg {String} content Box content
25748  * @cfg {String} icon Box icon
25749  * @cfg {String} footer Footer text
25750  * @cfg {String} fhref Footer href
25751  * 
25752  * @constructor
25753  * Create a new NumberBox
25754  * @param {Object} config The config object
25755  */
25756
25757
25758 Roo.bootstrap.dash.NumberBox = function(config){
25759     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
25760     
25761 };
25762
25763 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
25764     
25765     headline : '',
25766     content : '',
25767     icon : '',
25768     footer : '',
25769     fhref : '',
25770     ficon : '',
25771     
25772     getAutoCreate : function(){
25773         
25774         var cfg = {
25775             tag : 'div',
25776             cls : 'small-box ',
25777             cn : [
25778                 {
25779                     tag : 'div',
25780                     cls : 'inner',
25781                     cn :[
25782                         {
25783                             tag : 'h3',
25784                             cls : 'roo-headline',
25785                             html : this.headline
25786                         },
25787                         {
25788                             tag : 'p',
25789                             cls : 'roo-content',
25790                             html : this.content
25791                         }
25792                     ]
25793                 }
25794             ]
25795         };
25796         
25797         if(this.icon){
25798             cfg.cn.push({
25799                 tag : 'div',
25800                 cls : 'icon',
25801                 cn :[
25802                     {
25803                         tag : 'i',
25804                         cls : 'ion ' + this.icon
25805                     }
25806                 ]
25807             });
25808         }
25809         
25810         if(this.footer){
25811             var footer = {
25812                 tag : 'a',
25813                 cls : 'small-box-footer',
25814                 href : this.fhref || '#',
25815                 html : this.footer
25816             };
25817             
25818             cfg.cn.push(footer);
25819             
25820         }
25821         
25822         return  cfg;
25823     },
25824
25825     onRender : function(ct,position){
25826         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
25827
25828
25829        
25830                 
25831     },
25832
25833     setHeadline: function (value)
25834     {
25835         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
25836     },
25837     
25838     setFooter: function (value, href)
25839     {
25840         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
25841         
25842         if(href){
25843             this.el.select('a.small-box-footer',true).first().attr('href', href);
25844         }
25845         
25846     },
25847
25848     setContent: function (value)
25849     {
25850         this.el.select('.roo-content',true).first().dom.innerHTML = value;
25851     },
25852
25853     initEvents: function() 
25854     {   
25855         
25856     }
25857     
25858 });
25859
25860  
25861 /*
25862  * - LGPL
25863  *
25864  * TabBox
25865  * 
25866  */
25867 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25868
25869 /**
25870  * @class Roo.bootstrap.dash.TabBox
25871  * @extends Roo.bootstrap.Component
25872  * Bootstrap TabBox class
25873  * @cfg {String} title Title of the TabBox
25874  * @cfg {String} icon Icon of the TabBox
25875  * @cfg {Boolean} showtabs (true|false) show the tabs default true
25876  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
25877  * 
25878  * @constructor
25879  * Create a new TabBox
25880  * @param {Object} config The config object
25881  */
25882
25883
25884 Roo.bootstrap.dash.TabBox = function(config){
25885     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
25886     this.addEvents({
25887         // raw events
25888         /**
25889          * @event addpane
25890          * When a pane is added
25891          * @param {Roo.bootstrap.dash.TabPane} pane
25892          */
25893         "addpane" : true,
25894         /**
25895          * @event activatepane
25896          * When a pane is activated
25897          * @param {Roo.bootstrap.dash.TabPane} pane
25898          */
25899         "activatepane" : true
25900         
25901          
25902     });
25903     
25904     this.panes = [];
25905 };
25906
25907 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
25908
25909     title : '',
25910     icon : false,
25911     showtabs : true,
25912     tabScrollable : false,
25913     
25914     getChildContainer : function()
25915     {
25916         return this.el.select('.tab-content', true).first();
25917     },
25918     
25919     getAutoCreate : function(){
25920         
25921         var header = {
25922             tag: 'li',
25923             cls: 'pull-left header',
25924             html: this.title,
25925             cn : []
25926         };
25927         
25928         if(this.icon){
25929             header.cn.push({
25930                 tag: 'i',
25931                 cls: 'fa ' + this.icon
25932             });
25933         }
25934         
25935         var h = {
25936             tag: 'ul',
25937             cls: 'nav nav-tabs pull-right',
25938             cn: [
25939                 header
25940             ]
25941         };
25942         
25943         if(this.tabScrollable){
25944             h = {
25945                 tag: 'div',
25946                 cls: 'tab-header',
25947                 cn: [
25948                     {
25949                         tag: 'ul',
25950                         cls: 'nav nav-tabs pull-right',
25951                         cn: [
25952                             header
25953                         ]
25954                     }
25955                 ]
25956             };
25957         }
25958         
25959         var cfg = {
25960             tag: 'div',
25961             cls: 'nav-tabs-custom',
25962             cn: [
25963                 h,
25964                 {
25965                     tag: 'div',
25966                     cls: 'tab-content no-padding',
25967                     cn: []
25968                 }
25969             ]
25970         };
25971
25972         return  cfg;
25973     },
25974     initEvents : function()
25975     {
25976         //Roo.log('add add pane handler');
25977         this.on('addpane', this.onAddPane, this);
25978     },
25979      /**
25980      * Updates the box title
25981      * @param {String} html to set the title to.
25982      */
25983     setTitle : function(value)
25984     {
25985         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
25986     },
25987     onAddPane : function(pane)
25988     {
25989         this.panes.push(pane);
25990         //Roo.log('addpane');
25991         //Roo.log(pane);
25992         // tabs are rendere left to right..
25993         if(!this.showtabs){
25994             return;
25995         }
25996         
25997         var ctr = this.el.select('.nav-tabs', true).first();
25998          
25999          
26000         var existing = ctr.select('.nav-tab',true);
26001         var qty = existing.getCount();;
26002         
26003         
26004         var tab = ctr.createChild({
26005             tag : 'li',
26006             cls : 'nav-tab' + (qty ? '' : ' active'),
26007             cn : [
26008                 {
26009                     tag : 'a',
26010                     href:'#',
26011                     html : pane.title
26012                 }
26013             ]
26014         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
26015         pane.tab = tab;
26016         
26017         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
26018         if (!qty) {
26019             pane.el.addClass('active');
26020         }
26021         
26022                 
26023     },
26024     onTabClick : function(ev,un,ob,pane)
26025     {
26026         //Roo.log('tab - prev default');
26027         ev.preventDefault();
26028         
26029         
26030         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
26031         pane.tab.addClass('active');
26032         //Roo.log(pane.title);
26033         this.getChildContainer().select('.tab-pane',true).removeClass('active');
26034         // technically we should have a deactivate event.. but maybe add later.
26035         // and it should not de-activate the selected tab...
26036         this.fireEvent('activatepane', pane);
26037         pane.el.addClass('active');
26038         pane.fireEvent('activate');
26039         
26040         
26041     },
26042     
26043     getActivePane : function()
26044     {
26045         var r = false;
26046         Roo.each(this.panes, function(p) {
26047             if(p.el.hasClass('active')){
26048                 r = p;
26049                 return false;
26050             }
26051             
26052             return;
26053         });
26054         
26055         return r;
26056     }
26057     
26058     
26059 });
26060
26061  
26062 /*
26063  * - LGPL
26064  *
26065  * Tab pane
26066  * 
26067  */
26068 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
26069 /**
26070  * @class Roo.bootstrap.TabPane
26071  * @extends Roo.bootstrap.Component
26072  * Bootstrap TabPane class
26073  * @cfg {Boolean} active (false | true) Default false
26074  * @cfg {String} title title of panel
26075
26076  * 
26077  * @constructor
26078  * Create a new TabPane
26079  * @param {Object} config The config object
26080  */
26081
26082 Roo.bootstrap.dash.TabPane = function(config){
26083     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
26084     
26085     this.addEvents({
26086         // raw events
26087         /**
26088          * @event activate
26089          * When a pane is activated
26090          * @param {Roo.bootstrap.dash.TabPane} pane
26091          */
26092         "activate" : true
26093          
26094     });
26095 };
26096
26097 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
26098     
26099     active : false,
26100     title : '',
26101     
26102     // the tabBox that this is attached to.
26103     tab : false,
26104      
26105     getAutoCreate : function() 
26106     {
26107         var cfg = {
26108             tag: 'div',
26109             cls: 'tab-pane'
26110         };
26111         
26112         if(this.active){
26113             cfg.cls += ' active';
26114         }
26115         
26116         return cfg;
26117     },
26118     initEvents  : function()
26119     {
26120         //Roo.log('trigger add pane handler');
26121         this.parent().fireEvent('addpane', this)
26122     },
26123     
26124      /**
26125      * Updates the tab title 
26126      * @param {String} html to set the title to.
26127      */
26128     setTitle: function(str)
26129     {
26130         if (!this.tab) {
26131             return;
26132         }
26133         this.title = str;
26134         this.tab.select('a', true).first().dom.innerHTML = str;
26135         
26136     }
26137     
26138     
26139     
26140 });
26141
26142  
26143
26144
26145  /*
26146  * - LGPL
26147  *
26148  * menu
26149  * 
26150  */
26151 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26152
26153 /**
26154  * @class Roo.bootstrap.menu.Menu
26155  * @extends Roo.bootstrap.Component
26156  * Bootstrap Menu class - container for Menu
26157  * @cfg {String} html Text of the menu
26158  * @cfg {String} weight (default | primary | success | info | warning | danger | inverse)
26159  * @cfg {String} icon Font awesome icon
26160  * @cfg {String} pos Menu align to (top | bottom) default bottom
26161  * 
26162  * 
26163  * @constructor
26164  * Create a new Menu
26165  * @param {Object} config The config object
26166  */
26167
26168
26169 Roo.bootstrap.menu.Menu = function(config){
26170     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
26171     
26172     this.addEvents({
26173         /**
26174          * @event beforeshow
26175          * Fires before this menu is displayed
26176          * @param {Roo.bootstrap.menu.Menu} this
26177          */
26178         beforeshow : true,
26179         /**
26180          * @event beforehide
26181          * Fires before this menu is hidden
26182          * @param {Roo.bootstrap.menu.Menu} this
26183          */
26184         beforehide : true,
26185         /**
26186          * @event show
26187          * Fires after this menu is displayed
26188          * @param {Roo.bootstrap.menu.Menu} this
26189          */
26190         show : true,
26191         /**
26192          * @event hide
26193          * Fires after this menu is hidden
26194          * @param {Roo.bootstrap.menu.Menu} this
26195          */
26196         hide : true,
26197         /**
26198          * @event click
26199          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
26200          * @param {Roo.bootstrap.menu.Menu} this
26201          * @param {Roo.EventObject} e
26202          */
26203         click : true
26204     });
26205     
26206 };
26207
26208 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
26209     
26210     submenu : false,
26211     html : '',
26212     weight : 'default',
26213     icon : false,
26214     pos : 'bottom',
26215     
26216     
26217     getChildContainer : function() {
26218         if(this.isSubMenu){
26219             return this.el;
26220         }
26221         
26222         return this.el.select('ul.dropdown-menu', true).first();  
26223     },
26224     
26225     getAutoCreate : function()
26226     {
26227         var text = [
26228             {
26229                 tag : 'span',
26230                 cls : 'roo-menu-text',
26231                 html : this.html
26232             }
26233         ];
26234         
26235         if(this.icon){
26236             text.unshift({
26237                 tag : 'i',
26238                 cls : 'fa ' + this.icon
26239             })
26240         }
26241         
26242         
26243         var cfg = {
26244             tag : 'div',
26245             cls : 'btn-group',
26246             cn : [
26247                 {
26248                     tag : 'button',
26249                     cls : 'dropdown-button btn btn-' + this.weight,
26250                     cn : text
26251                 },
26252                 {
26253                     tag : 'button',
26254                     cls : 'dropdown-toggle btn btn-' + this.weight,
26255                     cn : [
26256                         {
26257                             tag : 'span',
26258                             cls : 'caret'
26259                         }
26260                     ]
26261                 },
26262                 {
26263                     tag : 'ul',
26264                     cls : 'dropdown-menu'
26265                 }
26266             ]
26267             
26268         };
26269         
26270         if(this.pos == 'top'){
26271             cfg.cls += ' dropup';
26272         }
26273         
26274         if(this.isSubMenu){
26275             cfg = {
26276                 tag : 'ul',
26277                 cls : 'dropdown-menu'
26278             }
26279         }
26280         
26281         return cfg;
26282     },
26283     
26284     onRender : function(ct, position)
26285     {
26286         this.isSubMenu = ct.hasClass('dropdown-submenu');
26287         
26288         Roo.bootstrap.menu.Menu.superclass.onRender.call(this, ct, position);
26289     },
26290     
26291     initEvents : function() 
26292     {
26293         if(this.isSubMenu){
26294             return;
26295         }
26296         
26297         this.hidden = true;
26298         
26299         this.triggerEl = this.el.select('button.dropdown-toggle', true).first();
26300         this.triggerEl.on('click', this.onTriggerPress, this);
26301         
26302         this.buttonEl = this.el.select('button.dropdown-button', true).first();
26303         this.buttonEl.on('click', this.onClick, this);
26304         
26305     },
26306     
26307     list : function()
26308     {
26309         if(this.isSubMenu){
26310             return this.el;
26311         }
26312         
26313         return this.el.select('ul.dropdown-menu', true).first();
26314     },
26315     
26316     onClick : function(e)
26317     {
26318         this.fireEvent("click", this, e);
26319     },
26320     
26321     onTriggerPress  : function(e)
26322     {   
26323         if (this.isVisible()) {
26324             this.hide();
26325         } else {
26326             this.show();
26327         }
26328     },
26329     
26330     isVisible : function(){
26331         return !this.hidden;
26332     },
26333     
26334     show : function()
26335     {
26336         this.fireEvent("beforeshow", this);
26337         
26338         this.hidden = false;
26339         this.el.addClass('open');
26340         
26341         Roo.get(document).on("mouseup", this.onMouseUp, this);
26342         
26343         this.fireEvent("show", this);
26344         
26345         
26346     },
26347     
26348     hide : function()
26349     {
26350         this.fireEvent("beforehide", this);
26351         
26352         this.hidden = true;
26353         this.el.removeClass('open');
26354         
26355         Roo.get(document).un("mouseup", this.onMouseUp);
26356         
26357         this.fireEvent("hide", this);
26358     },
26359     
26360     onMouseUp : function()
26361     {
26362         this.hide();
26363     }
26364     
26365 });
26366
26367  
26368  /*
26369  * - LGPL
26370  *
26371  * menu item
26372  * 
26373  */
26374 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26375
26376 /**
26377  * @class Roo.bootstrap.menu.Item
26378  * @extends Roo.bootstrap.Component
26379  * Bootstrap MenuItem class
26380  * @cfg {Boolean} submenu (true | false) default false
26381  * @cfg {String} html text of the item
26382  * @cfg {String} href the link
26383  * @cfg {Boolean} disable (true | false) default false
26384  * @cfg {Boolean} preventDefault (true | false) default true
26385  * @cfg {String} icon Font awesome icon
26386  * @cfg {String} pos Submenu align to (left | right) default right 
26387  * 
26388  * 
26389  * @constructor
26390  * Create a new Item
26391  * @param {Object} config The config object
26392  */
26393
26394
26395 Roo.bootstrap.menu.Item = function(config){
26396     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
26397     this.addEvents({
26398         /**
26399          * @event mouseover
26400          * Fires when the mouse is hovering over this menu
26401          * @param {Roo.bootstrap.menu.Item} this
26402          * @param {Roo.EventObject} e
26403          */
26404         mouseover : true,
26405         /**
26406          * @event mouseout
26407          * Fires when the mouse exits this menu
26408          * @param {Roo.bootstrap.menu.Item} this
26409          * @param {Roo.EventObject} e
26410          */
26411         mouseout : true,
26412         // raw events
26413         /**
26414          * @event click
26415          * The raw click event for the entire grid.
26416          * @param {Roo.EventObject} e
26417          */
26418         click : true
26419     });
26420 };
26421
26422 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
26423     
26424     submenu : false,
26425     href : '',
26426     html : '',
26427     preventDefault: true,
26428     disable : false,
26429     icon : false,
26430     pos : 'right',
26431     
26432     getAutoCreate : function()
26433     {
26434         var text = [
26435             {
26436                 tag : 'span',
26437                 cls : 'roo-menu-item-text',
26438                 html : this.html
26439             }
26440         ];
26441         
26442         if(this.icon){
26443             text.unshift({
26444                 tag : 'i',
26445                 cls : 'fa ' + this.icon
26446             })
26447         }
26448         
26449         var cfg = {
26450             tag : 'li',
26451             cn : [
26452                 {
26453                     tag : 'a',
26454                     href : this.href || '#',
26455                     cn : text
26456                 }
26457             ]
26458         };
26459         
26460         if(this.disable){
26461             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'disabled' : (cfg.cls + ' disabled');
26462         }
26463         
26464         if(this.submenu){
26465             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'dropdown-submenu' : (cfg.cls + ' dropdown-submenu');
26466             
26467             if(this.pos == 'left'){
26468                 cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'pull-left' : (cfg.cls + ' pull-left');
26469             }
26470         }
26471         
26472         return cfg;
26473     },
26474     
26475     initEvents : function() 
26476     {
26477         this.el.on('mouseover', this.onMouseOver, this);
26478         this.el.on('mouseout', this.onMouseOut, this);
26479         
26480         this.el.select('a', true).first().on('click', this.onClick, this);
26481         
26482     },
26483     
26484     onClick : function(e)
26485     {
26486         if(this.preventDefault){
26487             e.preventDefault();
26488         }
26489         
26490         this.fireEvent("click", this, e);
26491     },
26492     
26493     onMouseOver : function(e)
26494     {
26495         if(this.submenu && this.pos == 'left'){
26496             this.el.select('ul.dropdown-menu', true).first().setLeft(this.el.select('ul.dropdown-menu', true).first().getWidth() * -1);
26497         }
26498         
26499         this.fireEvent("mouseover", this, e);
26500     },
26501     
26502     onMouseOut : function(e)
26503     {
26504         this.fireEvent("mouseout", this, e);
26505     }
26506 });
26507
26508  
26509
26510  /*
26511  * - LGPL
26512  *
26513  * menu separator
26514  * 
26515  */
26516 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26517
26518 /**
26519  * @class Roo.bootstrap.menu.Separator
26520  * @extends Roo.bootstrap.Component
26521  * Bootstrap Separator class
26522  * 
26523  * @constructor
26524  * Create a new Separator
26525  * @param {Object} config The config object
26526  */
26527
26528
26529 Roo.bootstrap.menu.Separator = function(config){
26530     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
26531 };
26532
26533 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
26534     
26535     getAutoCreate : function(){
26536         var cfg = {
26537             tag : 'li',
26538             cls: 'divider'
26539         };
26540         
26541         return cfg;
26542     }
26543    
26544 });
26545
26546  
26547
26548  /*
26549  * - LGPL
26550  *
26551  * Tooltip
26552  * 
26553  */
26554
26555 /**
26556  * @class Roo.bootstrap.Tooltip
26557  * Bootstrap Tooltip class
26558  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
26559  * to determine which dom element triggers the tooltip.
26560  * 
26561  * It needs to add support for additional attributes like tooltip-position
26562  * 
26563  * @constructor
26564  * Create a new Toolti
26565  * @param {Object} config The config object
26566  */
26567
26568 Roo.bootstrap.Tooltip = function(config){
26569     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
26570     
26571     this.alignment = Roo.bootstrap.Tooltip.alignment;
26572     
26573     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
26574         this.alignment = config.alignment;
26575     }
26576     
26577 };
26578
26579 Roo.apply(Roo.bootstrap.Tooltip, {
26580     /**
26581      * @function init initialize tooltip monitoring.
26582      * @static
26583      */
26584     currentEl : false,
26585     currentTip : false,
26586     currentRegion : false,
26587     
26588     //  init : delay?
26589     
26590     init : function()
26591     {
26592         Roo.get(document).on('mouseover', this.enter ,this);
26593         Roo.get(document).on('mouseout', this.leave, this);
26594          
26595         
26596         this.currentTip = new Roo.bootstrap.Tooltip();
26597     },
26598     
26599     enter : function(ev)
26600     {
26601         var dom = ev.getTarget();
26602         
26603         //Roo.log(['enter',dom]);
26604         var el = Roo.fly(dom);
26605         if (this.currentEl) {
26606             //Roo.log(dom);
26607             //Roo.log(this.currentEl);
26608             //Roo.log(this.currentEl.contains(dom));
26609             if (this.currentEl == el) {
26610                 return;
26611             }
26612             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
26613                 return;
26614             }
26615
26616         }
26617         
26618         if (this.currentTip.el) {
26619             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
26620         }    
26621         //Roo.log(ev);
26622         
26623         if(!el || el.dom == document){
26624             return;
26625         }
26626         
26627         var bindEl = el;
26628         
26629         // you can not look for children, as if el is the body.. then everythign is the child..
26630         if (!el.attr('tooltip')) { //
26631             if (!el.select("[tooltip]").elements.length) {
26632                 return;
26633             }
26634             // is the mouse over this child...?
26635             bindEl = el.select("[tooltip]").first();
26636             var xy = ev.getXY();
26637             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
26638                 //Roo.log("not in region.");
26639                 return;
26640             }
26641             //Roo.log("child element over..");
26642             
26643         }
26644         this.currentEl = bindEl;
26645         this.currentTip.bind(bindEl);
26646         this.currentRegion = Roo.lib.Region.getRegion(dom);
26647         this.currentTip.enter();
26648         
26649     },
26650     leave : function(ev)
26651     {
26652         var dom = ev.getTarget();
26653         //Roo.log(['leave',dom]);
26654         if (!this.currentEl) {
26655             return;
26656         }
26657         
26658         
26659         if (dom != this.currentEl.dom) {
26660             return;
26661         }
26662         var xy = ev.getXY();
26663         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
26664             return;
26665         }
26666         // only activate leave if mouse cursor is outside... bounding box..
26667         
26668         
26669         
26670         
26671         if (this.currentTip) {
26672             this.currentTip.leave();
26673         }
26674         //Roo.log('clear currentEl');
26675         this.currentEl = false;
26676         
26677         
26678     },
26679     alignment : {
26680         'left' : ['r-l', [-2,0], 'right'],
26681         'right' : ['l-r', [2,0], 'left'],
26682         'bottom' : ['t-b', [0,2], 'top'],
26683         'top' : [ 'b-t', [0,-2], 'bottom']
26684     }
26685     
26686 });
26687
26688
26689 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
26690     
26691     
26692     bindEl : false,
26693     
26694     delay : null, // can be { show : 300 , hide: 500}
26695     
26696     timeout : null,
26697     
26698     hoverState : null, //???
26699     
26700     placement : 'bottom', 
26701     
26702     alignment : false,
26703     
26704     getAutoCreate : function(){
26705     
26706         var cfg = {
26707            cls : 'tooltip',
26708            role : 'tooltip',
26709            cn : [
26710                 {
26711                     cls : 'tooltip-arrow'
26712                 },
26713                 {
26714                     cls : 'tooltip-inner'
26715                 }
26716            ]
26717         };
26718         
26719         return cfg;
26720     },
26721     bind : function(el)
26722     {
26723         this.bindEl = el;
26724     },
26725       
26726     
26727     enter : function () {
26728        
26729         if (this.timeout != null) {
26730             clearTimeout(this.timeout);
26731         }
26732         
26733         this.hoverState = 'in';
26734          //Roo.log("enter - show");
26735         if (!this.delay || !this.delay.show) {
26736             this.show();
26737             return;
26738         }
26739         var _t = this;
26740         this.timeout = setTimeout(function () {
26741             if (_t.hoverState == 'in') {
26742                 _t.show();
26743             }
26744         }, this.delay.show);
26745     },
26746     leave : function()
26747     {
26748         clearTimeout(this.timeout);
26749     
26750         this.hoverState = 'out';
26751          if (!this.delay || !this.delay.hide) {
26752             this.hide();
26753             return;
26754         }
26755        
26756         var _t = this;
26757         this.timeout = setTimeout(function () {
26758             //Roo.log("leave - timeout");
26759             
26760             if (_t.hoverState == 'out') {
26761                 _t.hide();
26762                 Roo.bootstrap.Tooltip.currentEl = false;
26763             }
26764         }, delay);
26765     },
26766     
26767     show : function (msg)
26768     {
26769         if (!this.el) {
26770             this.render(document.body);
26771         }
26772         // set content.
26773         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
26774         
26775         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
26776         
26777         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
26778         
26779         this.el.removeClass(['fade','top','bottom', 'left', 'right','in']);
26780         
26781         var placement = typeof this.placement == 'function' ?
26782             this.placement.call(this, this.el, on_el) :
26783             this.placement;
26784             
26785         var autoToken = /\s?auto?\s?/i;
26786         var autoPlace = autoToken.test(placement);
26787         if (autoPlace) {
26788             placement = placement.replace(autoToken, '') || 'top';
26789         }
26790         
26791         //this.el.detach()
26792         //this.el.setXY([0,0]);
26793         this.el.show();
26794         //this.el.dom.style.display='block';
26795         
26796         //this.el.appendTo(on_el);
26797         
26798         var p = this.getPosition();
26799         var box = this.el.getBox();
26800         
26801         if (autoPlace) {
26802             // fixme..
26803         }
26804         
26805         var align = this.alignment[placement];
26806         
26807         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
26808         
26809         if(placement == 'top' || placement == 'bottom'){
26810             if(xy[0] < 0){
26811                 placement = 'right';
26812             }
26813             
26814             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
26815                 placement = 'left';
26816             }
26817             
26818             var scroll = Roo.select('body', true).first().getScroll();
26819             
26820             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
26821                 placement = 'top';
26822             }
26823             
26824             align = this.alignment[placement];
26825         }
26826         
26827         this.el.alignTo(this.bindEl, align[0],align[1]);
26828         //var arrow = this.el.select('.arrow',true).first();
26829         //arrow.set(align[2], 
26830         
26831         this.el.addClass(placement);
26832         
26833         this.el.addClass('in fade');
26834         
26835         this.hoverState = null;
26836         
26837         if (this.el.hasClass('fade')) {
26838             // fade it?
26839         }
26840         
26841     },
26842     hide : function()
26843     {
26844          
26845         if (!this.el) {
26846             return;
26847         }
26848         //this.el.setXY([0,0]);
26849         this.el.removeClass('in');
26850         //this.el.hide();
26851         
26852     }
26853     
26854 });
26855  
26856
26857  /*
26858  * - LGPL
26859  *
26860  * Location Picker
26861  * 
26862  */
26863
26864 /**
26865  * @class Roo.bootstrap.LocationPicker
26866  * @extends Roo.bootstrap.Component
26867  * Bootstrap LocationPicker class
26868  * @cfg {Number} latitude Position when init default 0
26869  * @cfg {Number} longitude Position when init default 0
26870  * @cfg {Number} zoom default 15
26871  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
26872  * @cfg {Boolean} mapTypeControl default false
26873  * @cfg {Boolean} disableDoubleClickZoom default false
26874  * @cfg {Boolean} scrollwheel default true
26875  * @cfg {Boolean} streetViewControl default false
26876  * @cfg {Number} radius default 0
26877  * @cfg {String} locationName
26878  * @cfg {Boolean} draggable default true
26879  * @cfg {Boolean} enableAutocomplete default false
26880  * @cfg {Boolean} enableReverseGeocode default true
26881  * @cfg {String} markerTitle
26882  * 
26883  * @constructor
26884  * Create a new LocationPicker
26885  * @param {Object} config The config object
26886  */
26887
26888
26889 Roo.bootstrap.LocationPicker = function(config){
26890     
26891     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
26892     
26893     this.addEvents({
26894         /**
26895          * @event initial
26896          * Fires when the picker initialized.
26897          * @param {Roo.bootstrap.LocationPicker} this
26898          * @param {Google Location} location
26899          */
26900         initial : true,
26901         /**
26902          * @event positionchanged
26903          * Fires when the picker position changed.
26904          * @param {Roo.bootstrap.LocationPicker} this
26905          * @param {Google Location} location
26906          */
26907         positionchanged : true,
26908         /**
26909          * @event resize
26910          * Fires when the map resize.
26911          * @param {Roo.bootstrap.LocationPicker} this
26912          */
26913         resize : true,
26914         /**
26915          * @event show
26916          * Fires when the map show.
26917          * @param {Roo.bootstrap.LocationPicker} this
26918          */
26919         show : true,
26920         /**
26921          * @event hide
26922          * Fires when the map hide.
26923          * @param {Roo.bootstrap.LocationPicker} this
26924          */
26925         hide : true,
26926         /**
26927          * @event mapClick
26928          * Fires when click the map.
26929          * @param {Roo.bootstrap.LocationPicker} this
26930          * @param {Map event} e
26931          */
26932         mapClick : true,
26933         /**
26934          * @event mapRightClick
26935          * Fires when right click the map.
26936          * @param {Roo.bootstrap.LocationPicker} this
26937          * @param {Map event} e
26938          */
26939         mapRightClick : true,
26940         /**
26941          * @event markerClick
26942          * Fires when click the marker.
26943          * @param {Roo.bootstrap.LocationPicker} this
26944          * @param {Map event} e
26945          */
26946         markerClick : true,
26947         /**
26948          * @event markerRightClick
26949          * Fires when right click the marker.
26950          * @param {Roo.bootstrap.LocationPicker} this
26951          * @param {Map event} e
26952          */
26953         markerRightClick : true,
26954         /**
26955          * @event OverlayViewDraw
26956          * Fires when OverlayView Draw
26957          * @param {Roo.bootstrap.LocationPicker} this
26958          */
26959         OverlayViewDraw : true,
26960         /**
26961          * @event OverlayViewOnAdd
26962          * Fires when OverlayView Draw
26963          * @param {Roo.bootstrap.LocationPicker} this
26964          */
26965         OverlayViewOnAdd : true,
26966         /**
26967          * @event OverlayViewOnRemove
26968          * Fires when OverlayView Draw
26969          * @param {Roo.bootstrap.LocationPicker} this
26970          */
26971         OverlayViewOnRemove : true,
26972         /**
26973          * @event OverlayViewShow
26974          * Fires when OverlayView Draw
26975          * @param {Roo.bootstrap.LocationPicker} this
26976          * @param {Pixel} cpx
26977          */
26978         OverlayViewShow : true,
26979         /**
26980          * @event OverlayViewHide
26981          * Fires when OverlayView Draw
26982          * @param {Roo.bootstrap.LocationPicker} this
26983          */
26984         OverlayViewHide : true,
26985         /**
26986          * @event loadexception
26987          * Fires when load google lib failed.
26988          * @param {Roo.bootstrap.LocationPicker} this
26989          */
26990         loadexception : true
26991     });
26992         
26993 };
26994
26995 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
26996     
26997     gMapContext: false,
26998     
26999     latitude: 0,
27000     longitude: 0,
27001     zoom: 15,
27002     mapTypeId: false,
27003     mapTypeControl: false,
27004     disableDoubleClickZoom: false,
27005     scrollwheel: true,
27006     streetViewControl: false,
27007     radius: 0,
27008     locationName: '',
27009     draggable: true,
27010     enableAutocomplete: false,
27011     enableReverseGeocode: true,
27012     markerTitle: '',
27013     
27014     getAutoCreate: function()
27015     {
27016
27017         var cfg = {
27018             tag: 'div',
27019             cls: 'roo-location-picker'
27020         };
27021         
27022         return cfg
27023     },
27024     
27025     initEvents: function(ct, position)
27026     {       
27027         if(!this.el.getWidth() || this.isApplied()){
27028             return;
27029         }
27030         
27031         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27032         
27033         this.initial();
27034     },
27035     
27036     initial: function()
27037     {
27038         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
27039             this.fireEvent('loadexception', this);
27040             return;
27041         }
27042         
27043         if(!this.mapTypeId){
27044             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
27045         }
27046         
27047         this.gMapContext = this.GMapContext();
27048         
27049         this.initOverlayView();
27050         
27051         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
27052         
27053         var _this = this;
27054                 
27055         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
27056             _this.setPosition(_this.gMapContext.marker.position);
27057         });
27058         
27059         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
27060             _this.fireEvent('mapClick', this, event);
27061             
27062         });
27063
27064         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
27065             _this.fireEvent('mapRightClick', this, event);
27066             
27067         });
27068         
27069         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
27070             _this.fireEvent('markerClick', this, event);
27071             
27072         });
27073
27074         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
27075             _this.fireEvent('markerRightClick', this, event);
27076             
27077         });
27078         
27079         this.setPosition(this.gMapContext.location);
27080         
27081         this.fireEvent('initial', this, this.gMapContext.location);
27082     },
27083     
27084     initOverlayView: function()
27085     {
27086         var _this = this;
27087         
27088         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
27089             
27090             draw: function()
27091             {
27092                 _this.fireEvent('OverlayViewDraw', _this);
27093             },
27094             
27095             onAdd: function()
27096             {
27097                 _this.fireEvent('OverlayViewOnAdd', _this);
27098             },
27099             
27100             onRemove: function()
27101             {
27102                 _this.fireEvent('OverlayViewOnRemove', _this);
27103             },
27104             
27105             show: function(cpx)
27106             {
27107                 _this.fireEvent('OverlayViewShow', _this, cpx);
27108             },
27109             
27110             hide: function()
27111             {
27112                 _this.fireEvent('OverlayViewHide', _this);
27113             }
27114             
27115         });
27116     },
27117     
27118     fromLatLngToContainerPixel: function(event)
27119     {
27120         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
27121     },
27122     
27123     isApplied: function() 
27124     {
27125         return this.getGmapContext() == false ? false : true;
27126     },
27127     
27128     getGmapContext: function() 
27129     {
27130         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
27131     },
27132     
27133     GMapContext: function() 
27134     {
27135         var position = new google.maps.LatLng(this.latitude, this.longitude);
27136         
27137         var _map = new google.maps.Map(this.el.dom, {
27138             center: position,
27139             zoom: this.zoom,
27140             mapTypeId: this.mapTypeId,
27141             mapTypeControl: this.mapTypeControl,
27142             disableDoubleClickZoom: this.disableDoubleClickZoom,
27143             scrollwheel: this.scrollwheel,
27144             streetViewControl: this.streetViewControl,
27145             locationName: this.locationName,
27146             draggable: this.draggable,
27147             enableAutocomplete: this.enableAutocomplete,
27148             enableReverseGeocode: this.enableReverseGeocode
27149         });
27150         
27151         var _marker = new google.maps.Marker({
27152             position: position,
27153             map: _map,
27154             title: this.markerTitle,
27155             draggable: this.draggable
27156         });
27157         
27158         return {
27159             map: _map,
27160             marker: _marker,
27161             circle: null,
27162             location: position,
27163             radius: this.radius,
27164             locationName: this.locationName,
27165             addressComponents: {
27166                 formatted_address: null,
27167                 addressLine1: null,
27168                 addressLine2: null,
27169                 streetName: null,
27170                 streetNumber: null,
27171                 city: null,
27172                 district: null,
27173                 state: null,
27174                 stateOrProvince: null
27175             },
27176             settings: this,
27177             domContainer: this.el.dom,
27178             geodecoder: new google.maps.Geocoder()
27179         };
27180     },
27181     
27182     drawCircle: function(center, radius, options) 
27183     {
27184         if (this.gMapContext.circle != null) {
27185             this.gMapContext.circle.setMap(null);
27186         }
27187         if (radius > 0) {
27188             radius *= 1;
27189             options = Roo.apply({}, options, {
27190                 strokeColor: "#0000FF",
27191                 strokeOpacity: .35,
27192                 strokeWeight: 2,
27193                 fillColor: "#0000FF",
27194                 fillOpacity: .2
27195             });
27196             
27197             options.map = this.gMapContext.map;
27198             options.radius = radius;
27199             options.center = center;
27200             this.gMapContext.circle = new google.maps.Circle(options);
27201             return this.gMapContext.circle;
27202         }
27203         
27204         return null;
27205     },
27206     
27207     setPosition: function(location) 
27208     {
27209         this.gMapContext.location = location;
27210         this.gMapContext.marker.setPosition(location);
27211         this.gMapContext.map.panTo(location);
27212         this.drawCircle(location, this.gMapContext.radius, {});
27213         
27214         var _this = this;
27215         
27216         if (this.gMapContext.settings.enableReverseGeocode) {
27217             this.gMapContext.geodecoder.geocode({
27218                 latLng: this.gMapContext.location
27219             }, function(results, status) {
27220                 
27221                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
27222                     _this.gMapContext.locationName = results[0].formatted_address;
27223                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
27224                     
27225                     _this.fireEvent('positionchanged', this, location);
27226                 }
27227             });
27228             
27229             return;
27230         }
27231         
27232         this.fireEvent('positionchanged', this, location);
27233     },
27234     
27235     resize: function()
27236     {
27237         google.maps.event.trigger(this.gMapContext.map, "resize");
27238         
27239         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
27240         
27241         this.fireEvent('resize', this);
27242     },
27243     
27244     setPositionByLatLng: function(latitude, longitude)
27245     {
27246         this.setPosition(new google.maps.LatLng(latitude, longitude));
27247     },
27248     
27249     getCurrentPosition: function() 
27250     {
27251         return {
27252             latitude: this.gMapContext.location.lat(),
27253             longitude: this.gMapContext.location.lng()
27254         };
27255     },
27256     
27257     getAddressName: function() 
27258     {
27259         return this.gMapContext.locationName;
27260     },
27261     
27262     getAddressComponents: function() 
27263     {
27264         return this.gMapContext.addressComponents;
27265     },
27266     
27267     address_component_from_google_geocode: function(address_components) 
27268     {
27269         var result = {};
27270         
27271         for (var i = 0; i < address_components.length; i++) {
27272             var component = address_components[i];
27273             if (component.types.indexOf("postal_code") >= 0) {
27274                 result.postalCode = component.short_name;
27275             } else if (component.types.indexOf("street_number") >= 0) {
27276                 result.streetNumber = component.short_name;
27277             } else if (component.types.indexOf("route") >= 0) {
27278                 result.streetName = component.short_name;
27279             } else if (component.types.indexOf("neighborhood") >= 0) {
27280                 result.city = component.short_name;
27281             } else if (component.types.indexOf("locality") >= 0) {
27282                 result.city = component.short_name;
27283             } else if (component.types.indexOf("sublocality") >= 0) {
27284                 result.district = component.short_name;
27285             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
27286                 result.stateOrProvince = component.short_name;
27287             } else if (component.types.indexOf("country") >= 0) {
27288                 result.country = component.short_name;
27289             }
27290         }
27291         
27292         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
27293         result.addressLine2 = "";
27294         return result;
27295     },
27296     
27297     setZoomLevel: function(zoom)
27298     {
27299         this.gMapContext.map.setZoom(zoom);
27300     },
27301     
27302     show: function()
27303     {
27304         if(!this.el){
27305             return;
27306         }
27307         
27308         this.el.show();
27309         
27310         this.resize();
27311         
27312         this.fireEvent('show', this);
27313     },
27314     
27315     hide: function()
27316     {
27317         if(!this.el){
27318             return;
27319         }
27320         
27321         this.el.hide();
27322         
27323         this.fireEvent('hide', this);
27324     }
27325     
27326 });
27327
27328 Roo.apply(Roo.bootstrap.LocationPicker, {
27329     
27330     OverlayView : function(map, options)
27331     {
27332         options = options || {};
27333         
27334         this.setMap(map);
27335     }
27336     
27337     
27338 });/**
27339  * @class Roo.bootstrap.Alert
27340  * @extends Roo.bootstrap.Component
27341  * Bootstrap Alert class - shows an alert area box
27342  * eg
27343  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
27344   Enter a valid email address
27345 </div>
27346  * @licence LGPL
27347  * @cfg {String} title The title of alert
27348  * @cfg {String} html The content of alert
27349  * @cfg {String} weight (  success | info | warning | danger )
27350  * @cfg {String} faicon font-awesomeicon
27351  * 
27352  * @constructor
27353  * Create a new alert
27354  * @param {Object} config The config object
27355  */
27356
27357
27358 Roo.bootstrap.Alert = function(config){
27359     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
27360     
27361 };
27362
27363 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
27364     
27365     title: '',
27366     html: '',
27367     weight: false,
27368     faicon: false,
27369     
27370     getAutoCreate : function()
27371     {
27372         
27373         var cfg = {
27374             tag : 'div',
27375             cls : 'alert',
27376             cn : [
27377                 {
27378                     tag : 'i',
27379                     cls : 'roo-alert-icon'
27380                     
27381                 },
27382                 {
27383                     tag : 'b',
27384                     cls : 'roo-alert-title',
27385                     html : this.title
27386                 },
27387                 {
27388                     tag : 'span',
27389                     cls : 'roo-alert-text',
27390                     html : this.html
27391                 }
27392             ]
27393         };
27394         
27395         if(this.faicon){
27396             cfg.cn[0].cls += ' fa ' + this.faicon;
27397         }
27398         
27399         if(this.weight){
27400             cfg.cls += ' alert-' + this.weight;
27401         }
27402         
27403         return cfg;
27404     },
27405     
27406     initEvents: function() 
27407     {
27408         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27409     },
27410     
27411     setTitle : function(str)
27412     {
27413         this.el.select('.roo-alert-title',true).first().dom.innerHTML = str;
27414     },
27415     
27416     setText : function(str)
27417     {
27418         this.el.select('.roo-alert-text',true).first().dom.innerHTML = str;
27419     },
27420     
27421     setWeight : function(weight)
27422     {
27423         if(this.weight){
27424             this.el.select('.alert',true).first().removeClass('alert-' + this.weight);
27425         }
27426         
27427         this.weight = weight;
27428         
27429         this.el.select('.alert',true).first().addClass('alert-' + this.weight);
27430     },
27431     
27432     setIcon : function(icon)
27433     {
27434         if(this.faicon){
27435             this.el.select('.roo-alert-icon',true).first().removeClass(['fa', 'fa-' + this.faicon]);
27436         }
27437         
27438         this.faicon = icon;
27439         
27440         this.el.select('.roo-alert-icon',true).first().addClass(['fa', 'fa-' + this.faicon]);
27441     },
27442     
27443     hide: function() 
27444     {
27445         this.el.hide();   
27446     },
27447     
27448     show: function() 
27449     {  
27450         this.el.show();   
27451     }
27452     
27453 });
27454
27455  
27456 /*
27457 * Licence: LGPL
27458 */
27459
27460 /**
27461  * @class Roo.bootstrap.UploadCropbox
27462  * @extends Roo.bootstrap.Component
27463  * Bootstrap UploadCropbox class
27464  * @cfg {String} emptyText show when image has been loaded
27465  * @cfg {String} rotateNotify show when image too small to rotate
27466  * @cfg {Number} errorTimeout default 3000
27467  * @cfg {Number} minWidth default 300
27468  * @cfg {Number} minHeight default 300
27469  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
27470  * @cfg {Boolean} isDocument (true|false) default false
27471  * @cfg {String} url action url
27472  * @cfg {String} paramName default 'imageUpload'
27473  * @cfg {String} method default POST
27474  * @cfg {Boolean} loadMask (true|false) default true
27475  * @cfg {Boolean} loadingText default 'Loading...'
27476  * 
27477  * @constructor
27478  * Create a new UploadCropbox
27479  * @param {Object} config The config object
27480  */
27481
27482 Roo.bootstrap.UploadCropbox = function(config){
27483     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
27484     
27485     this.addEvents({
27486         /**
27487          * @event beforeselectfile
27488          * Fire before select file
27489          * @param {Roo.bootstrap.UploadCropbox} this
27490          */
27491         "beforeselectfile" : true,
27492         /**
27493          * @event initial
27494          * Fire after initEvent
27495          * @param {Roo.bootstrap.UploadCropbox} this
27496          */
27497         "initial" : true,
27498         /**
27499          * @event crop
27500          * Fire after initEvent
27501          * @param {Roo.bootstrap.UploadCropbox} this
27502          * @param {String} data
27503          */
27504         "crop" : true,
27505         /**
27506          * @event prepare
27507          * Fire when preparing the file data
27508          * @param {Roo.bootstrap.UploadCropbox} this
27509          * @param {Object} file
27510          */
27511         "prepare" : true,
27512         /**
27513          * @event exception
27514          * Fire when get exception
27515          * @param {Roo.bootstrap.UploadCropbox} this
27516          * @param {XMLHttpRequest} xhr
27517          */
27518         "exception" : true,
27519         /**
27520          * @event beforeloadcanvas
27521          * Fire before load the canvas
27522          * @param {Roo.bootstrap.UploadCropbox} this
27523          * @param {String} src
27524          */
27525         "beforeloadcanvas" : true,
27526         /**
27527          * @event trash
27528          * Fire when trash image
27529          * @param {Roo.bootstrap.UploadCropbox} this
27530          */
27531         "trash" : true,
27532         /**
27533          * @event download
27534          * Fire when download the image
27535          * @param {Roo.bootstrap.UploadCropbox} this
27536          */
27537         "download" : true,
27538         /**
27539          * @event footerbuttonclick
27540          * Fire when footerbuttonclick
27541          * @param {Roo.bootstrap.UploadCropbox} this
27542          * @param {String} type
27543          */
27544         "footerbuttonclick" : true,
27545         /**
27546          * @event resize
27547          * Fire when resize
27548          * @param {Roo.bootstrap.UploadCropbox} this
27549          */
27550         "resize" : true,
27551         /**
27552          * @event rotate
27553          * Fire when rotate the image
27554          * @param {Roo.bootstrap.UploadCropbox} this
27555          * @param {String} pos
27556          */
27557         "rotate" : true,
27558         /**
27559          * @event inspect
27560          * Fire when inspect the file
27561          * @param {Roo.bootstrap.UploadCropbox} this
27562          * @param {Object} file
27563          */
27564         "inspect" : true,
27565         /**
27566          * @event upload
27567          * Fire when xhr upload the file
27568          * @param {Roo.bootstrap.UploadCropbox} this
27569          * @param {Object} data
27570          */
27571         "upload" : true,
27572         /**
27573          * @event arrange
27574          * Fire when arrange the file data
27575          * @param {Roo.bootstrap.UploadCropbox} this
27576          * @param {Object} formData
27577          */
27578         "arrange" : true
27579     });
27580     
27581     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
27582 };
27583
27584 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
27585     
27586     emptyText : 'Click to upload image',
27587     rotateNotify : 'Image is too small to rotate',
27588     errorTimeout : 3000,
27589     scale : 0,
27590     baseScale : 1,
27591     rotate : 0,
27592     dragable : false,
27593     pinching : false,
27594     mouseX : 0,
27595     mouseY : 0,
27596     cropData : false,
27597     minWidth : 300,
27598     minHeight : 300,
27599     file : false,
27600     exif : {},
27601     baseRotate : 1,
27602     cropType : 'image/jpeg',
27603     buttons : false,
27604     canvasLoaded : false,
27605     isDocument : false,
27606     method : 'POST',
27607     paramName : 'imageUpload',
27608     loadMask : true,
27609     loadingText : 'Loading...',
27610     maskEl : false,
27611     
27612     getAutoCreate : function()
27613     {
27614         var cfg = {
27615             tag : 'div',
27616             cls : 'roo-upload-cropbox',
27617             cn : [
27618                 {
27619                     tag : 'input',
27620                     cls : 'roo-upload-cropbox-selector',
27621                     type : 'file'
27622                 },
27623                 {
27624                     tag : 'div',
27625                     cls : 'roo-upload-cropbox-body',
27626                     style : 'cursor:pointer',
27627                     cn : [
27628                         {
27629                             tag : 'div',
27630                             cls : 'roo-upload-cropbox-preview'
27631                         },
27632                         {
27633                             tag : 'div',
27634                             cls : 'roo-upload-cropbox-thumb'
27635                         },
27636                         {
27637                             tag : 'div',
27638                             cls : 'roo-upload-cropbox-empty-notify',
27639                             html : this.emptyText
27640                         },
27641                         {
27642                             tag : 'div',
27643                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
27644                             html : this.rotateNotify
27645                         }
27646                     ]
27647                 },
27648                 {
27649                     tag : 'div',
27650                     cls : 'roo-upload-cropbox-footer',
27651                     cn : {
27652                         tag : 'div',
27653                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
27654                         cn : []
27655                     }
27656                 }
27657             ]
27658         };
27659         
27660         return cfg;
27661     },
27662     
27663     onRender : function(ct, position)
27664     {
27665         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
27666         
27667         if (this.buttons.length) {
27668             
27669             Roo.each(this.buttons, function(bb) {
27670                 
27671                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
27672                 
27673                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
27674                 
27675             }, this);
27676         }
27677         
27678         if(this.loadMask){
27679             this.maskEl = this.el;
27680         }
27681     },
27682     
27683     initEvents : function()
27684     {
27685         this.urlAPI = (window.createObjectURL && window) || 
27686                                 (window.URL && URL.revokeObjectURL && URL) || 
27687                                 (window.webkitURL && webkitURL);
27688                         
27689         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
27690         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27691         
27692         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
27693         this.selectorEl.hide();
27694         
27695         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
27696         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27697         
27698         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
27699         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27700         this.thumbEl.hide();
27701         
27702         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
27703         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27704         
27705         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
27706         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27707         this.errorEl.hide();
27708         
27709         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
27710         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27711         this.footerEl.hide();
27712         
27713         this.setThumbBoxSize();
27714         
27715         this.bind();
27716         
27717         this.resize();
27718         
27719         this.fireEvent('initial', this);
27720     },
27721
27722     bind : function()
27723     {
27724         var _this = this;
27725         
27726         window.addEventListener("resize", function() { _this.resize(); } );
27727         
27728         this.bodyEl.on('click', this.beforeSelectFile, this);
27729         
27730         if(Roo.isTouch){
27731             this.bodyEl.on('touchstart', this.onTouchStart, this);
27732             this.bodyEl.on('touchmove', this.onTouchMove, this);
27733             this.bodyEl.on('touchend', this.onTouchEnd, this);
27734         }
27735         
27736         if(!Roo.isTouch){
27737             this.bodyEl.on('mousedown', this.onMouseDown, this);
27738             this.bodyEl.on('mousemove', this.onMouseMove, this);
27739             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
27740             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
27741             Roo.get(document).on('mouseup', this.onMouseUp, this);
27742         }
27743         
27744         this.selectorEl.on('change', this.onFileSelected, this);
27745     },
27746     
27747     reset : function()
27748     {    
27749         this.scale = 0;
27750         this.baseScale = 1;
27751         this.rotate = 0;
27752         this.baseRotate = 1;
27753         this.dragable = false;
27754         this.pinching = false;
27755         this.mouseX = 0;
27756         this.mouseY = 0;
27757         this.cropData = false;
27758         this.notifyEl.dom.innerHTML = this.emptyText;
27759         
27760         this.selectorEl.dom.value = '';
27761         
27762     },
27763     
27764     resize : function()
27765     {
27766         if(this.fireEvent('resize', this) != false){
27767             this.setThumbBoxPosition();
27768             this.setCanvasPosition();
27769         }
27770     },
27771     
27772     onFooterButtonClick : function(e, el, o, type)
27773     {
27774         switch (type) {
27775             case 'rotate-left' :
27776                 this.onRotateLeft(e);
27777                 break;
27778             case 'rotate-right' :
27779                 this.onRotateRight(e);
27780                 break;
27781             case 'picture' :
27782                 this.beforeSelectFile(e);
27783                 break;
27784             case 'trash' :
27785                 this.trash(e);
27786                 break;
27787             case 'crop' :
27788                 this.crop(e);
27789                 break;
27790             case 'download' :
27791                 this.download(e);
27792                 break;
27793             default :
27794                 break;
27795         }
27796         
27797         this.fireEvent('footerbuttonclick', this, type);
27798     },
27799     
27800     beforeSelectFile : function(e)
27801     {
27802         e.preventDefault();
27803         
27804         if(this.fireEvent('beforeselectfile', this) != false){
27805             this.selectorEl.dom.click();
27806         }
27807     },
27808     
27809     onFileSelected : function(e)
27810     {
27811         e.preventDefault();
27812         
27813         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
27814             return;
27815         }
27816         
27817         var file = this.selectorEl.dom.files[0];
27818         
27819         if(this.fireEvent('inspect', this, file) != false){
27820             this.prepare(file);
27821         }
27822         
27823     },
27824     
27825     trash : function(e)
27826     {
27827         this.fireEvent('trash', this);
27828     },
27829     
27830     download : function(e)
27831     {
27832         this.fireEvent('download', this);
27833     },
27834     
27835     loadCanvas : function(src)
27836     {   
27837         if(this.fireEvent('beforeloadcanvas', this, src) != false){
27838             
27839             this.reset();
27840             
27841             this.imageEl = document.createElement('img');
27842             
27843             var _this = this;
27844             
27845             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
27846             
27847             this.imageEl.src = src;
27848         }
27849     },
27850     
27851     onLoadCanvas : function()
27852     {   
27853         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
27854         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
27855         
27856         this.bodyEl.un('click', this.beforeSelectFile, this);
27857         
27858         this.notifyEl.hide();
27859         this.thumbEl.show();
27860         this.footerEl.show();
27861         
27862         this.baseRotateLevel();
27863         
27864         if(this.isDocument){
27865             this.setThumbBoxSize();
27866         }
27867         
27868         this.setThumbBoxPosition();
27869         
27870         this.baseScaleLevel();
27871         
27872         this.draw();
27873         
27874         this.resize();
27875         
27876         this.canvasLoaded = true;
27877         
27878         if(this.loadMask){
27879             this.maskEl.unmask();
27880         }
27881         
27882     },
27883     
27884     setCanvasPosition : function()
27885     {   
27886         if(!this.canvasEl){
27887             return;
27888         }
27889         
27890         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
27891         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
27892         
27893         this.previewEl.setLeft(pw);
27894         this.previewEl.setTop(ph);
27895         
27896     },
27897     
27898     onMouseDown : function(e)
27899     {   
27900         e.stopEvent();
27901         
27902         this.dragable = true;
27903         this.pinching = false;
27904         
27905         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
27906             this.dragable = false;
27907             return;
27908         }
27909         
27910         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27911         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27912         
27913     },
27914     
27915     onMouseMove : function(e)
27916     {   
27917         e.stopEvent();
27918         
27919         if(!this.canvasLoaded){
27920             return;
27921         }
27922         
27923         if (!this.dragable){
27924             return;
27925         }
27926         
27927         var minX = Math.ceil(this.thumbEl.getLeft(true));
27928         var minY = Math.ceil(this.thumbEl.getTop(true));
27929         
27930         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
27931         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
27932         
27933         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27934         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27935         
27936         x = x - this.mouseX;
27937         y = y - this.mouseY;
27938         
27939         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
27940         var bgY = Math.ceil(y + this.previewEl.getTop(true));
27941         
27942         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
27943         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
27944         
27945         this.previewEl.setLeft(bgX);
27946         this.previewEl.setTop(bgY);
27947         
27948         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27949         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27950     },
27951     
27952     onMouseUp : function(e)
27953     {   
27954         e.stopEvent();
27955         
27956         this.dragable = false;
27957     },
27958     
27959     onMouseWheel : function(e)
27960     {   
27961         e.stopEvent();
27962         
27963         this.startScale = this.scale;
27964         
27965         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
27966         
27967         if(!this.zoomable()){
27968             this.scale = this.startScale;
27969             return;
27970         }
27971         
27972         this.draw();
27973         
27974         return;
27975     },
27976     
27977     zoomable : function()
27978     {
27979         var minScale = this.thumbEl.getWidth() / this.minWidth;
27980         
27981         if(this.minWidth < this.minHeight){
27982             minScale = this.thumbEl.getHeight() / this.minHeight;
27983         }
27984         
27985         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
27986         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
27987         
27988         if(
27989                 this.isDocument &&
27990                 (this.rotate == 0 || this.rotate == 180) && 
27991                 (
27992                     width > this.imageEl.OriginWidth || 
27993                     height > this.imageEl.OriginHeight ||
27994                     (width < this.minWidth && height < this.minHeight)
27995                 )
27996         ){
27997             return false;
27998         }
27999         
28000         if(
28001                 this.isDocument &&
28002                 (this.rotate == 90 || this.rotate == 270) && 
28003                 (
28004                     width > this.imageEl.OriginWidth || 
28005                     height > this.imageEl.OriginHeight ||
28006                     (width < this.minHeight && height < this.minWidth)
28007                 )
28008         ){
28009             return false;
28010         }
28011         
28012         if(
28013                 !this.isDocument &&
28014                 (this.rotate == 0 || this.rotate == 180) && 
28015                 (
28016                     width < this.minWidth || 
28017                     width > this.imageEl.OriginWidth || 
28018                     height < this.minHeight || 
28019                     height > this.imageEl.OriginHeight
28020                 )
28021         ){
28022             return false;
28023         }
28024         
28025         if(
28026                 !this.isDocument &&
28027                 (this.rotate == 90 || this.rotate == 270) && 
28028                 (
28029                     width < this.minHeight || 
28030                     width > this.imageEl.OriginWidth || 
28031                     height < this.minWidth || 
28032                     height > this.imageEl.OriginHeight
28033                 )
28034         ){
28035             return false;
28036         }
28037         
28038         return true;
28039         
28040     },
28041     
28042     onRotateLeft : function(e)
28043     {   
28044         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28045             
28046             var minScale = this.thumbEl.getWidth() / this.minWidth;
28047             
28048             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28049             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28050             
28051             this.startScale = this.scale;
28052             
28053             while (this.getScaleLevel() < minScale){
28054             
28055                 this.scale = this.scale + 1;
28056                 
28057                 if(!this.zoomable()){
28058                     break;
28059                 }
28060                 
28061                 if(
28062                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28063                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28064                 ){
28065                     continue;
28066                 }
28067                 
28068                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28069
28070                 this.draw();
28071                 
28072                 return;
28073             }
28074             
28075             this.scale = this.startScale;
28076             
28077             this.onRotateFail();
28078             
28079             return false;
28080         }
28081         
28082         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28083
28084         if(this.isDocument){
28085             this.setThumbBoxSize();
28086             this.setThumbBoxPosition();
28087             this.setCanvasPosition();
28088         }
28089         
28090         this.draw();
28091         
28092         this.fireEvent('rotate', this, 'left');
28093         
28094     },
28095     
28096     onRotateRight : function(e)
28097     {
28098         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28099             
28100             var minScale = this.thumbEl.getWidth() / this.minWidth;
28101         
28102             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28103             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28104             
28105             this.startScale = this.scale;
28106             
28107             while (this.getScaleLevel() < minScale){
28108             
28109                 this.scale = this.scale + 1;
28110                 
28111                 if(!this.zoomable()){
28112                     break;
28113                 }
28114                 
28115                 if(
28116                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28117                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28118                 ){
28119                     continue;
28120                 }
28121                 
28122                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28123
28124                 this.draw();
28125                 
28126                 return;
28127             }
28128             
28129             this.scale = this.startScale;
28130             
28131             this.onRotateFail();
28132             
28133             return false;
28134         }
28135         
28136         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28137
28138         if(this.isDocument){
28139             this.setThumbBoxSize();
28140             this.setThumbBoxPosition();
28141             this.setCanvasPosition();
28142         }
28143         
28144         this.draw();
28145         
28146         this.fireEvent('rotate', this, 'right');
28147     },
28148     
28149     onRotateFail : function()
28150     {
28151         this.errorEl.show(true);
28152         
28153         var _this = this;
28154         
28155         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
28156     },
28157     
28158     draw : function()
28159     {
28160         this.previewEl.dom.innerHTML = '';
28161         
28162         var canvasEl = document.createElement("canvas");
28163         
28164         var contextEl = canvasEl.getContext("2d");
28165         
28166         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28167         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28168         var center = this.imageEl.OriginWidth / 2;
28169         
28170         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
28171             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28172             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28173             center = this.imageEl.OriginHeight / 2;
28174         }
28175         
28176         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
28177         
28178         contextEl.translate(center, center);
28179         contextEl.rotate(this.rotate * Math.PI / 180);
28180
28181         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28182         
28183         this.canvasEl = document.createElement("canvas");
28184         
28185         this.contextEl = this.canvasEl.getContext("2d");
28186         
28187         switch (this.rotate) {
28188             case 0 :
28189                 
28190                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28191                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28192                 
28193                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28194                 
28195                 break;
28196             case 90 : 
28197                 
28198                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28199                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28200                 
28201                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28202                     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);
28203                     break;
28204                 }
28205                 
28206                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28207                 
28208                 break;
28209             case 180 :
28210                 
28211                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28212                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28213                 
28214                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28215                     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);
28216                     break;
28217                 }
28218                 
28219                 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);
28220                 
28221                 break;
28222             case 270 :
28223                 
28224                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28225                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28226         
28227                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28228                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28229                     break;
28230                 }
28231                 
28232                 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);
28233                 
28234                 break;
28235             default : 
28236                 break;
28237         }
28238         
28239         this.previewEl.appendChild(this.canvasEl);
28240         
28241         this.setCanvasPosition();
28242     },
28243     
28244     crop : function()
28245     {
28246         if(!this.canvasLoaded){
28247             return;
28248         }
28249         
28250         var imageCanvas = document.createElement("canvas");
28251         
28252         var imageContext = imageCanvas.getContext("2d");
28253         
28254         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28255         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28256         
28257         var center = imageCanvas.width / 2;
28258         
28259         imageContext.translate(center, center);
28260         
28261         imageContext.rotate(this.rotate * Math.PI / 180);
28262         
28263         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28264         
28265         var canvas = document.createElement("canvas");
28266         
28267         var context = canvas.getContext("2d");
28268                 
28269         canvas.width = this.minWidth;
28270         canvas.height = this.minHeight;
28271
28272         switch (this.rotate) {
28273             case 0 :
28274                 
28275                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28276                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28277                 
28278                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28279                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28280                 
28281                 var targetWidth = this.minWidth - 2 * x;
28282                 var targetHeight = this.minHeight - 2 * y;
28283                 
28284                 var scale = 1;
28285                 
28286                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28287                     scale = targetWidth / width;
28288                 }
28289                 
28290                 if(x > 0 && y == 0){
28291                     scale = targetHeight / height;
28292                 }
28293                 
28294                 if(x > 0 && y > 0){
28295                     scale = targetWidth / width;
28296                     
28297                     if(width < height){
28298                         scale = targetHeight / height;
28299                     }
28300                 }
28301                 
28302                 context.scale(scale, scale);
28303                 
28304                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28305                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28306
28307                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28308                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28309
28310                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28311                 
28312                 break;
28313             case 90 : 
28314                 
28315                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28316                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28317                 
28318                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28319                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28320                 
28321                 var targetWidth = this.minWidth - 2 * x;
28322                 var targetHeight = this.minHeight - 2 * y;
28323                 
28324                 var scale = 1;
28325                 
28326                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28327                     scale = targetWidth / width;
28328                 }
28329                 
28330                 if(x > 0 && y == 0){
28331                     scale = targetHeight / height;
28332                 }
28333                 
28334                 if(x > 0 && y > 0){
28335                     scale = targetWidth / width;
28336                     
28337                     if(width < height){
28338                         scale = targetHeight / height;
28339                     }
28340                 }
28341                 
28342                 context.scale(scale, scale);
28343                 
28344                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28345                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28346
28347                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28348                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28349                 
28350                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28351                 
28352                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28353                 
28354                 break;
28355             case 180 :
28356                 
28357                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28358                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28359                 
28360                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28361                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28362                 
28363                 var targetWidth = this.minWidth - 2 * x;
28364                 var targetHeight = this.minHeight - 2 * y;
28365                 
28366                 var scale = 1;
28367                 
28368                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28369                     scale = targetWidth / width;
28370                 }
28371                 
28372                 if(x > 0 && y == 0){
28373                     scale = targetHeight / height;
28374                 }
28375                 
28376                 if(x > 0 && y > 0){
28377                     scale = targetWidth / width;
28378                     
28379                     if(width < height){
28380                         scale = targetHeight / height;
28381                     }
28382                 }
28383                 
28384                 context.scale(scale, scale);
28385                 
28386                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28387                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28388
28389                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28390                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28391
28392                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28393                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28394                 
28395                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28396                 
28397                 break;
28398             case 270 :
28399                 
28400                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28401                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28402                 
28403                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28404                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28405                 
28406                 var targetWidth = this.minWidth - 2 * x;
28407                 var targetHeight = this.minHeight - 2 * y;
28408                 
28409                 var scale = 1;
28410                 
28411                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28412                     scale = targetWidth / width;
28413                 }
28414                 
28415                 if(x > 0 && y == 0){
28416                     scale = targetHeight / height;
28417                 }
28418                 
28419                 if(x > 0 && y > 0){
28420                     scale = targetWidth / width;
28421                     
28422                     if(width < height){
28423                         scale = targetHeight / height;
28424                     }
28425                 }
28426                 
28427                 context.scale(scale, scale);
28428                 
28429                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28430                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28431
28432                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28433                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28434                 
28435                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28436                 
28437                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28438                 
28439                 break;
28440             default : 
28441                 break;
28442         }
28443         
28444         this.cropData = canvas.toDataURL(this.cropType);
28445         
28446         if(this.fireEvent('crop', this, this.cropData) !== false){
28447             this.process(this.file, this.cropData);
28448         }
28449         
28450         return;
28451         
28452     },
28453     
28454     setThumbBoxSize : function()
28455     {
28456         var width, height;
28457         
28458         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
28459             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
28460             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
28461             
28462             this.minWidth = width;
28463             this.minHeight = height;
28464             
28465             if(this.rotate == 90 || this.rotate == 270){
28466                 this.minWidth = height;
28467                 this.minHeight = width;
28468             }
28469         }
28470         
28471         height = 300;
28472         width = Math.ceil(this.minWidth * height / this.minHeight);
28473         
28474         if(this.minWidth > this.minHeight){
28475             width = 300;
28476             height = Math.ceil(this.minHeight * width / this.minWidth);
28477         }
28478         
28479         this.thumbEl.setStyle({
28480             width : width + 'px',
28481             height : height + 'px'
28482         });
28483
28484         return;
28485             
28486     },
28487     
28488     setThumbBoxPosition : function()
28489     {
28490         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
28491         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
28492         
28493         this.thumbEl.setLeft(x);
28494         this.thumbEl.setTop(y);
28495         
28496     },
28497     
28498     baseRotateLevel : function()
28499     {
28500         this.baseRotate = 1;
28501         
28502         if(
28503                 typeof(this.exif) != 'undefined' &&
28504                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
28505                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
28506         ){
28507             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
28508         }
28509         
28510         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
28511         
28512     },
28513     
28514     baseScaleLevel : function()
28515     {
28516         var width, height;
28517         
28518         if(this.isDocument){
28519             
28520             if(this.baseRotate == 6 || this.baseRotate == 8){
28521             
28522                 height = this.thumbEl.getHeight();
28523                 this.baseScale = height / this.imageEl.OriginWidth;
28524
28525                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
28526                     width = this.thumbEl.getWidth();
28527                     this.baseScale = width / this.imageEl.OriginHeight;
28528                 }
28529
28530                 return;
28531             }
28532
28533             height = this.thumbEl.getHeight();
28534             this.baseScale = height / this.imageEl.OriginHeight;
28535
28536             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
28537                 width = this.thumbEl.getWidth();
28538                 this.baseScale = width / this.imageEl.OriginWidth;
28539             }
28540
28541             return;
28542         }
28543         
28544         if(this.baseRotate == 6 || this.baseRotate == 8){
28545             
28546             width = this.thumbEl.getHeight();
28547             this.baseScale = width / this.imageEl.OriginHeight;
28548             
28549             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
28550                 height = this.thumbEl.getWidth();
28551                 this.baseScale = height / this.imageEl.OriginHeight;
28552             }
28553             
28554             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28555                 height = this.thumbEl.getWidth();
28556                 this.baseScale = height / this.imageEl.OriginHeight;
28557                 
28558                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
28559                     width = this.thumbEl.getHeight();
28560                     this.baseScale = width / this.imageEl.OriginWidth;
28561                 }
28562             }
28563             
28564             return;
28565         }
28566         
28567         width = this.thumbEl.getWidth();
28568         this.baseScale = width / this.imageEl.OriginWidth;
28569         
28570         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
28571             height = this.thumbEl.getHeight();
28572             this.baseScale = height / this.imageEl.OriginHeight;
28573         }
28574         
28575         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28576             
28577             height = this.thumbEl.getHeight();
28578             this.baseScale = height / this.imageEl.OriginHeight;
28579             
28580             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
28581                 width = this.thumbEl.getWidth();
28582                 this.baseScale = width / this.imageEl.OriginWidth;
28583             }
28584             
28585         }
28586         
28587         return;
28588     },
28589     
28590     getScaleLevel : function()
28591     {
28592         return this.baseScale * Math.pow(1.1, this.scale);
28593     },
28594     
28595     onTouchStart : function(e)
28596     {
28597         if(!this.canvasLoaded){
28598             this.beforeSelectFile(e);
28599             return;
28600         }
28601         
28602         var touches = e.browserEvent.touches;
28603         
28604         if(!touches){
28605             return;
28606         }
28607         
28608         if(touches.length == 1){
28609             this.onMouseDown(e);
28610             return;
28611         }
28612         
28613         if(touches.length != 2){
28614             return;
28615         }
28616         
28617         var coords = [];
28618         
28619         for(var i = 0, finger; finger = touches[i]; i++){
28620             coords.push(finger.pageX, finger.pageY);
28621         }
28622         
28623         var x = Math.pow(coords[0] - coords[2], 2);
28624         var y = Math.pow(coords[1] - coords[3], 2);
28625         
28626         this.startDistance = Math.sqrt(x + y);
28627         
28628         this.startScale = this.scale;
28629         
28630         this.pinching = true;
28631         this.dragable = false;
28632         
28633     },
28634     
28635     onTouchMove : function(e)
28636     {
28637         if(!this.pinching && !this.dragable){
28638             return;
28639         }
28640         
28641         var touches = e.browserEvent.touches;
28642         
28643         if(!touches){
28644             return;
28645         }
28646         
28647         if(this.dragable){
28648             this.onMouseMove(e);
28649             return;
28650         }
28651         
28652         var coords = [];
28653         
28654         for(var i = 0, finger; finger = touches[i]; i++){
28655             coords.push(finger.pageX, finger.pageY);
28656         }
28657         
28658         var x = Math.pow(coords[0] - coords[2], 2);
28659         var y = Math.pow(coords[1] - coords[3], 2);
28660         
28661         this.endDistance = Math.sqrt(x + y);
28662         
28663         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
28664         
28665         if(!this.zoomable()){
28666             this.scale = this.startScale;
28667             return;
28668         }
28669         
28670         this.draw();
28671         
28672     },
28673     
28674     onTouchEnd : function(e)
28675     {
28676         this.pinching = false;
28677         this.dragable = false;
28678         
28679     },
28680     
28681     process : function(file, crop)
28682     {
28683         if(this.loadMask){
28684             this.maskEl.mask(this.loadingText);
28685         }
28686         
28687         this.xhr = new XMLHttpRequest();
28688         
28689         file.xhr = this.xhr;
28690
28691         this.xhr.open(this.method, this.url, true);
28692         
28693         var headers = {
28694             "Accept": "application/json",
28695             "Cache-Control": "no-cache",
28696             "X-Requested-With": "XMLHttpRequest"
28697         };
28698         
28699         for (var headerName in headers) {
28700             var headerValue = headers[headerName];
28701             if (headerValue) {
28702                 this.xhr.setRequestHeader(headerName, headerValue);
28703             }
28704         }
28705         
28706         var _this = this;
28707         
28708         this.xhr.onload = function()
28709         {
28710             _this.xhrOnLoad(_this.xhr);
28711         }
28712         
28713         this.xhr.onerror = function()
28714         {
28715             _this.xhrOnError(_this.xhr);
28716         }
28717         
28718         var formData = new FormData();
28719
28720         formData.append('returnHTML', 'NO');
28721         
28722         if(crop){
28723             formData.append('crop', crop);
28724         }
28725         
28726         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
28727             formData.append(this.paramName, file, file.name);
28728         }
28729         
28730         if(typeof(file.filename) != 'undefined'){
28731             formData.append('filename', file.filename);
28732         }
28733         
28734         if(typeof(file.mimetype) != 'undefined'){
28735             formData.append('mimetype', file.mimetype);
28736         }
28737         
28738         if(this.fireEvent('arrange', this, formData) != false){
28739             this.xhr.send(formData);
28740         };
28741     },
28742     
28743     xhrOnLoad : function(xhr)
28744     {
28745         if(this.loadMask){
28746             this.maskEl.unmask();
28747         }
28748         
28749         if (xhr.readyState !== 4) {
28750             this.fireEvent('exception', this, xhr);
28751             return;
28752         }
28753
28754         var response = Roo.decode(xhr.responseText);
28755         
28756         if(!response.success){
28757             this.fireEvent('exception', this, xhr);
28758             return;
28759         }
28760         
28761         var response = Roo.decode(xhr.responseText);
28762         
28763         this.fireEvent('upload', this, response);
28764         
28765     },
28766     
28767     xhrOnError : function()
28768     {
28769         if(this.loadMask){
28770             this.maskEl.unmask();
28771         }
28772         
28773         Roo.log('xhr on error');
28774         
28775         var response = Roo.decode(xhr.responseText);
28776           
28777         Roo.log(response);
28778         
28779     },
28780     
28781     prepare : function(file)
28782     {   
28783         if(this.loadMask){
28784             this.maskEl.mask(this.loadingText);
28785         }
28786         
28787         this.file = false;
28788         this.exif = {};
28789         
28790         if(typeof(file) === 'string'){
28791             this.loadCanvas(file);
28792             return;
28793         }
28794         
28795         if(!file || !this.urlAPI){
28796             return;
28797         }
28798         
28799         this.file = file;
28800         this.cropType = file.type;
28801         
28802         var _this = this;
28803         
28804         if(this.fireEvent('prepare', this, this.file) != false){
28805             
28806             var reader = new FileReader();
28807             
28808             reader.onload = function (e) {
28809                 if (e.target.error) {
28810                     Roo.log(e.target.error);
28811                     return;
28812                 }
28813                 
28814                 var buffer = e.target.result,
28815                     dataView = new DataView(buffer),
28816                     offset = 2,
28817                     maxOffset = dataView.byteLength - 4,
28818                     markerBytes,
28819                     markerLength;
28820                 
28821                 if (dataView.getUint16(0) === 0xffd8) {
28822                     while (offset < maxOffset) {
28823                         markerBytes = dataView.getUint16(offset);
28824                         
28825                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
28826                             markerLength = dataView.getUint16(offset + 2) + 2;
28827                             if (offset + markerLength > dataView.byteLength) {
28828                                 Roo.log('Invalid meta data: Invalid segment size.');
28829                                 break;
28830                             }
28831                             
28832                             if(markerBytes == 0xffe1){
28833                                 _this.parseExifData(
28834                                     dataView,
28835                                     offset,
28836                                     markerLength
28837                                 );
28838                             }
28839                             
28840                             offset += markerLength;
28841                             
28842                             continue;
28843                         }
28844                         
28845                         break;
28846                     }
28847                     
28848                 }
28849                 
28850                 var url = _this.urlAPI.createObjectURL(_this.file);
28851                 
28852                 _this.loadCanvas(url);
28853                 
28854                 return;
28855             }
28856             
28857             reader.readAsArrayBuffer(this.file);
28858             
28859         }
28860         
28861     },
28862     
28863     parseExifData : function(dataView, offset, length)
28864     {
28865         var tiffOffset = offset + 10,
28866             littleEndian,
28867             dirOffset;
28868     
28869         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28870             // No Exif data, might be XMP data instead
28871             return;
28872         }
28873         
28874         // Check for the ASCII code for "Exif" (0x45786966):
28875         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28876             // No Exif data, might be XMP data instead
28877             return;
28878         }
28879         if (tiffOffset + 8 > dataView.byteLength) {
28880             Roo.log('Invalid Exif data: Invalid segment size.');
28881             return;
28882         }
28883         // Check for the two null bytes:
28884         if (dataView.getUint16(offset + 8) !== 0x0000) {
28885             Roo.log('Invalid Exif data: Missing byte alignment offset.');
28886             return;
28887         }
28888         // Check the byte alignment:
28889         switch (dataView.getUint16(tiffOffset)) {
28890         case 0x4949:
28891             littleEndian = true;
28892             break;
28893         case 0x4D4D:
28894             littleEndian = false;
28895             break;
28896         default:
28897             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
28898             return;
28899         }
28900         // Check for the TIFF tag marker (0x002A):
28901         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
28902             Roo.log('Invalid Exif data: Missing TIFF marker.');
28903             return;
28904         }
28905         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
28906         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
28907         
28908         this.parseExifTags(
28909             dataView,
28910             tiffOffset,
28911             tiffOffset + dirOffset,
28912             littleEndian
28913         );
28914     },
28915     
28916     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
28917     {
28918         var tagsNumber,
28919             dirEndOffset,
28920             i;
28921         if (dirOffset + 6 > dataView.byteLength) {
28922             Roo.log('Invalid Exif data: Invalid directory offset.');
28923             return;
28924         }
28925         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
28926         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
28927         if (dirEndOffset + 4 > dataView.byteLength) {
28928             Roo.log('Invalid Exif data: Invalid directory size.');
28929             return;
28930         }
28931         for (i = 0; i < tagsNumber; i += 1) {
28932             this.parseExifTag(
28933                 dataView,
28934                 tiffOffset,
28935                 dirOffset + 2 + 12 * i, // tag offset
28936                 littleEndian
28937             );
28938         }
28939         // Return the offset to the next directory:
28940         return dataView.getUint32(dirEndOffset, littleEndian);
28941     },
28942     
28943     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
28944     {
28945         var tag = dataView.getUint16(offset, littleEndian);
28946         
28947         this.exif[tag] = this.getExifValue(
28948             dataView,
28949             tiffOffset,
28950             offset,
28951             dataView.getUint16(offset + 2, littleEndian), // tag type
28952             dataView.getUint32(offset + 4, littleEndian), // tag length
28953             littleEndian
28954         );
28955     },
28956     
28957     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
28958     {
28959         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
28960             tagSize,
28961             dataOffset,
28962             values,
28963             i,
28964             str,
28965             c;
28966     
28967         if (!tagType) {
28968             Roo.log('Invalid Exif data: Invalid tag type.');
28969             return;
28970         }
28971         
28972         tagSize = tagType.size * length;
28973         // Determine if the value is contained in the dataOffset bytes,
28974         // or if the value at the dataOffset is a pointer to the actual data:
28975         dataOffset = tagSize > 4 ?
28976                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
28977         if (dataOffset + tagSize > dataView.byteLength) {
28978             Roo.log('Invalid Exif data: Invalid data offset.');
28979             return;
28980         }
28981         if (length === 1) {
28982             return tagType.getValue(dataView, dataOffset, littleEndian);
28983         }
28984         values = [];
28985         for (i = 0; i < length; i += 1) {
28986             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
28987         }
28988         
28989         if (tagType.ascii) {
28990             str = '';
28991             // Concatenate the chars:
28992             for (i = 0; i < values.length; i += 1) {
28993                 c = values[i];
28994                 // Ignore the terminating NULL byte(s):
28995                 if (c === '\u0000') {
28996                     break;
28997                 }
28998                 str += c;
28999             }
29000             return str;
29001         }
29002         return values;
29003     }
29004     
29005 });
29006
29007 Roo.apply(Roo.bootstrap.UploadCropbox, {
29008     tags : {
29009         'Orientation': 0x0112
29010     },
29011     
29012     Orientation: {
29013             1: 0, //'top-left',
29014 //            2: 'top-right',
29015             3: 180, //'bottom-right',
29016 //            4: 'bottom-left',
29017 //            5: 'left-top',
29018             6: 90, //'right-top',
29019 //            7: 'right-bottom',
29020             8: 270 //'left-bottom'
29021     },
29022     
29023     exifTagTypes : {
29024         // byte, 8-bit unsigned int:
29025         1: {
29026             getValue: function (dataView, dataOffset) {
29027                 return dataView.getUint8(dataOffset);
29028             },
29029             size: 1
29030         },
29031         // ascii, 8-bit byte:
29032         2: {
29033             getValue: function (dataView, dataOffset) {
29034                 return String.fromCharCode(dataView.getUint8(dataOffset));
29035             },
29036             size: 1,
29037             ascii: true
29038         },
29039         // short, 16 bit int:
29040         3: {
29041             getValue: function (dataView, dataOffset, littleEndian) {
29042                 return dataView.getUint16(dataOffset, littleEndian);
29043             },
29044             size: 2
29045         },
29046         // long, 32 bit int:
29047         4: {
29048             getValue: function (dataView, dataOffset, littleEndian) {
29049                 return dataView.getUint32(dataOffset, littleEndian);
29050             },
29051             size: 4
29052         },
29053         // rational = two long values, first is numerator, second is denominator:
29054         5: {
29055             getValue: function (dataView, dataOffset, littleEndian) {
29056                 return dataView.getUint32(dataOffset, littleEndian) /
29057                     dataView.getUint32(dataOffset + 4, littleEndian);
29058             },
29059             size: 8
29060         },
29061         // slong, 32 bit signed int:
29062         9: {
29063             getValue: function (dataView, dataOffset, littleEndian) {
29064                 return dataView.getInt32(dataOffset, littleEndian);
29065             },
29066             size: 4
29067         },
29068         // srational, two slongs, first is numerator, second is denominator:
29069         10: {
29070             getValue: function (dataView, dataOffset, littleEndian) {
29071                 return dataView.getInt32(dataOffset, littleEndian) /
29072                     dataView.getInt32(dataOffset + 4, littleEndian);
29073             },
29074             size: 8
29075         }
29076     },
29077     
29078     footer : {
29079         STANDARD : [
29080             {
29081                 tag : 'div',
29082                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29083                 action : 'rotate-left',
29084                 cn : [
29085                     {
29086                         tag : 'button',
29087                         cls : 'btn btn-default',
29088                         html : '<i class="fa fa-undo"></i>'
29089                     }
29090                 ]
29091             },
29092             {
29093                 tag : 'div',
29094                 cls : 'btn-group roo-upload-cropbox-picture',
29095                 action : 'picture',
29096                 cn : [
29097                     {
29098                         tag : 'button',
29099                         cls : 'btn btn-default',
29100                         html : '<i class="fa fa-picture-o"></i>'
29101                     }
29102                 ]
29103             },
29104             {
29105                 tag : 'div',
29106                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29107                 action : 'rotate-right',
29108                 cn : [
29109                     {
29110                         tag : 'button',
29111                         cls : 'btn btn-default',
29112                         html : '<i class="fa fa-repeat"></i>'
29113                     }
29114                 ]
29115             }
29116         ],
29117         DOCUMENT : [
29118             {
29119                 tag : 'div',
29120                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29121                 action : 'rotate-left',
29122                 cn : [
29123                     {
29124                         tag : 'button',
29125                         cls : 'btn btn-default',
29126                         html : '<i class="fa fa-undo"></i>'
29127                     }
29128                 ]
29129             },
29130             {
29131                 tag : 'div',
29132                 cls : 'btn-group roo-upload-cropbox-download',
29133                 action : 'download',
29134                 cn : [
29135                     {
29136                         tag : 'button',
29137                         cls : 'btn btn-default',
29138                         html : '<i class="fa fa-download"></i>'
29139                     }
29140                 ]
29141             },
29142             {
29143                 tag : 'div',
29144                 cls : 'btn-group roo-upload-cropbox-crop',
29145                 action : 'crop',
29146                 cn : [
29147                     {
29148                         tag : 'button',
29149                         cls : 'btn btn-default',
29150                         html : '<i class="fa fa-crop"></i>'
29151                     }
29152                 ]
29153             },
29154             {
29155                 tag : 'div',
29156                 cls : 'btn-group roo-upload-cropbox-trash',
29157                 action : 'trash',
29158                 cn : [
29159                     {
29160                         tag : 'button',
29161                         cls : 'btn btn-default',
29162                         html : '<i class="fa fa-trash"></i>'
29163                     }
29164                 ]
29165             },
29166             {
29167                 tag : 'div',
29168                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29169                 action : 'rotate-right',
29170                 cn : [
29171                     {
29172                         tag : 'button',
29173                         cls : 'btn btn-default',
29174                         html : '<i class="fa fa-repeat"></i>'
29175                     }
29176                 ]
29177             }
29178         ],
29179         ROTATOR : [
29180             {
29181                 tag : 'div',
29182                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29183                 action : 'rotate-left',
29184                 cn : [
29185                     {
29186                         tag : 'button',
29187                         cls : 'btn btn-default',
29188                         html : '<i class="fa fa-undo"></i>'
29189                     }
29190                 ]
29191             },
29192             {
29193                 tag : 'div',
29194                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29195                 action : 'rotate-right',
29196                 cn : [
29197                     {
29198                         tag : 'button',
29199                         cls : 'btn btn-default',
29200                         html : '<i class="fa fa-repeat"></i>'
29201                     }
29202                 ]
29203             }
29204         ]
29205     }
29206 });
29207
29208 /*
29209 * Licence: LGPL
29210 */
29211
29212 /**
29213  * @class Roo.bootstrap.DocumentManager
29214  * @extends Roo.bootstrap.Component
29215  * Bootstrap DocumentManager class
29216  * @cfg {String} paramName default 'imageUpload'
29217  * @cfg {String} toolTipName default 'filename'
29218  * @cfg {String} method default POST
29219  * @cfg {String} url action url
29220  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
29221  * @cfg {Boolean} multiple multiple upload default true
29222  * @cfg {Number} thumbSize default 300
29223  * @cfg {String} fieldLabel
29224  * @cfg {Number} labelWidth default 4
29225  * @cfg {String} labelAlign (left|top) default left
29226  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
29227 * @cfg {Number} labellg set the width of label (1-12)
29228  * @cfg {Number} labelmd set the width of label (1-12)
29229  * @cfg {Number} labelsm set the width of label (1-12)
29230  * @cfg {Number} labelxs set the width of label (1-12)
29231  * 
29232  * @constructor
29233  * Create a new DocumentManager
29234  * @param {Object} config The config object
29235  */
29236
29237 Roo.bootstrap.DocumentManager = function(config){
29238     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
29239     
29240     this.files = [];
29241     this.delegates = [];
29242     
29243     this.addEvents({
29244         /**
29245          * @event initial
29246          * Fire when initial the DocumentManager
29247          * @param {Roo.bootstrap.DocumentManager} this
29248          */
29249         "initial" : true,
29250         /**
29251          * @event inspect
29252          * inspect selected file
29253          * @param {Roo.bootstrap.DocumentManager} this
29254          * @param {File} file
29255          */
29256         "inspect" : true,
29257         /**
29258          * @event exception
29259          * Fire when xhr load exception
29260          * @param {Roo.bootstrap.DocumentManager} this
29261          * @param {XMLHttpRequest} xhr
29262          */
29263         "exception" : true,
29264         /**
29265          * @event afterupload
29266          * Fire when xhr load exception
29267          * @param {Roo.bootstrap.DocumentManager} this
29268          * @param {XMLHttpRequest} xhr
29269          */
29270         "afterupload" : true,
29271         /**
29272          * @event prepare
29273          * prepare the form data
29274          * @param {Roo.bootstrap.DocumentManager} this
29275          * @param {Object} formData
29276          */
29277         "prepare" : true,
29278         /**
29279          * @event remove
29280          * Fire when remove the file
29281          * @param {Roo.bootstrap.DocumentManager} this
29282          * @param {Object} file
29283          */
29284         "remove" : true,
29285         /**
29286          * @event refresh
29287          * Fire after refresh the file
29288          * @param {Roo.bootstrap.DocumentManager} this
29289          */
29290         "refresh" : true,
29291         /**
29292          * @event click
29293          * Fire after click the image
29294          * @param {Roo.bootstrap.DocumentManager} this
29295          * @param {Object} file
29296          */
29297         "click" : true,
29298         /**
29299          * @event edit
29300          * Fire when upload a image and editable set to true
29301          * @param {Roo.bootstrap.DocumentManager} this
29302          * @param {Object} file
29303          */
29304         "edit" : true,
29305         /**
29306          * @event beforeselectfile
29307          * Fire before select file
29308          * @param {Roo.bootstrap.DocumentManager} this
29309          */
29310         "beforeselectfile" : true,
29311         /**
29312          * @event process
29313          * Fire before process file
29314          * @param {Roo.bootstrap.DocumentManager} this
29315          * @param {Object} file
29316          */
29317         "process" : true,
29318         /**
29319          * @event previewrendered
29320          * Fire when preview rendered
29321          * @param {Roo.bootstrap.DocumentManager} this
29322          * @param {Object} file
29323          */
29324         "previewrendered" : true,
29325         /**
29326          */
29327         "previewResize" : true
29328         
29329     });
29330 };
29331
29332 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
29333     
29334     boxes : 0,
29335     inputName : '',
29336     thumbSize : 300,
29337     multiple : true,
29338     files : false,
29339     method : 'POST',
29340     url : '',
29341     paramName : 'imageUpload',
29342     toolTipName : 'filename',
29343     fieldLabel : '',
29344     labelWidth : 4,
29345     labelAlign : 'left',
29346     editable : true,
29347     delegates : false,
29348     xhr : false, 
29349     
29350     labellg : 0,
29351     labelmd : 0,
29352     labelsm : 0,
29353     labelxs : 0,
29354     
29355     getAutoCreate : function()
29356     {   
29357         var managerWidget = {
29358             tag : 'div',
29359             cls : 'roo-document-manager',
29360             cn : [
29361                 {
29362                     tag : 'input',
29363                     cls : 'roo-document-manager-selector',
29364                     type : 'file'
29365                 },
29366                 {
29367                     tag : 'div',
29368                     cls : 'roo-document-manager-uploader',
29369                     cn : [
29370                         {
29371                             tag : 'div',
29372                             cls : 'roo-document-manager-upload-btn',
29373                             html : '<i class="fa fa-plus"></i>'
29374                         }
29375                     ]
29376                     
29377                 }
29378             ]
29379         };
29380         
29381         var content = [
29382             {
29383                 tag : 'div',
29384                 cls : 'column col-md-12',
29385                 cn : managerWidget
29386             }
29387         ];
29388         
29389         if(this.fieldLabel.length){
29390             
29391             content = [
29392                 {
29393                     tag : 'div',
29394                     cls : 'column col-md-12',
29395                     html : this.fieldLabel
29396                 },
29397                 {
29398                     tag : 'div',
29399                     cls : 'column col-md-12',
29400                     cn : managerWidget
29401                 }
29402             ];
29403
29404             if(this.labelAlign == 'left'){
29405                 content = [
29406                     {
29407                         tag : 'div',
29408                         cls : 'column',
29409                         html : this.fieldLabel
29410                     },
29411                     {
29412                         tag : 'div',
29413                         cls : 'column',
29414                         cn : managerWidget
29415                     }
29416                 ];
29417                 
29418                 if(this.labelWidth > 12){
29419                     content[0].style = "width: " + this.labelWidth + 'px';
29420                 }
29421
29422                 if(this.labelWidth < 13 && this.labelmd == 0){
29423                     this.labelmd = this.labelWidth;
29424                 }
29425
29426                 if(this.labellg > 0){
29427                     content[0].cls += ' col-lg-' + this.labellg;
29428                     content[1].cls += ' col-lg-' + (12 - this.labellg);
29429                 }
29430
29431                 if(this.labelmd > 0){
29432                     content[0].cls += ' col-md-' + this.labelmd;
29433                     content[1].cls += ' col-md-' + (12 - this.labelmd);
29434                 }
29435
29436                 if(this.labelsm > 0){
29437                     content[0].cls += ' col-sm-' + this.labelsm;
29438                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
29439                 }
29440
29441                 if(this.labelxs > 0){
29442                     content[0].cls += ' col-xs-' + this.labelxs;
29443                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
29444                 }
29445                 
29446             }
29447         }
29448         
29449         var cfg = {
29450             tag : 'div',
29451             cls : 'row clearfix',
29452             cn : content
29453         };
29454         
29455         return cfg;
29456         
29457     },
29458     
29459     initEvents : function()
29460     {
29461         this.managerEl = this.el.select('.roo-document-manager', true).first();
29462         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29463         
29464         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
29465         this.selectorEl.hide();
29466         
29467         if(this.multiple){
29468             this.selectorEl.attr('multiple', 'multiple');
29469         }
29470         
29471         this.selectorEl.on('change', this.onFileSelected, this);
29472         
29473         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
29474         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29475         
29476         this.uploader.on('click', this.onUploaderClick, this);
29477         
29478         this.renderProgressDialog();
29479         
29480         var _this = this;
29481         
29482         window.addEventListener("resize", function() { _this.refresh(); } );
29483         
29484         this.fireEvent('initial', this);
29485     },
29486     
29487     renderProgressDialog : function()
29488     {
29489         var _this = this;
29490         
29491         this.progressDialog = new Roo.bootstrap.Modal({
29492             cls : 'roo-document-manager-progress-dialog',
29493             allow_close : false,
29494             animate : false,
29495             title : '',
29496             buttons : [
29497                 {
29498                     name  :'cancel',
29499                     weight : 'danger',
29500                     html : 'Cancel'
29501                 }
29502             ], 
29503             listeners : { 
29504                 btnclick : function() {
29505                     _this.uploadCancel();
29506                     this.hide();
29507                 }
29508             }
29509         });
29510          
29511         this.progressDialog.render(Roo.get(document.body));
29512          
29513         this.progress = new Roo.bootstrap.Progress({
29514             cls : 'roo-document-manager-progress',
29515             active : true,
29516             striped : true
29517         });
29518         
29519         this.progress.render(this.progressDialog.getChildContainer());
29520         
29521         this.progressBar = new Roo.bootstrap.ProgressBar({
29522             cls : 'roo-document-manager-progress-bar',
29523             aria_valuenow : 0,
29524             aria_valuemin : 0,
29525             aria_valuemax : 12,
29526             panel : 'success'
29527         });
29528         
29529         this.progressBar.render(this.progress.getChildContainer());
29530     },
29531     
29532     onUploaderClick : function(e)
29533     {
29534         e.preventDefault();
29535      
29536         if(this.fireEvent('beforeselectfile', this) != false){
29537             this.selectorEl.dom.click();
29538         }
29539         
29540     },
29541     
29542     onFileSelected : function(e)
29543     {
29544         e.preventDefault();
29545         
29546         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
29547             return;
29548         }
29549         
29550         Roo.each(this.selectorEl.dom.files, function(file){
29551             if(this.fireEvent('inspect', this, file) != false){
29552                 this.files.push(file);
29553             }
29554         }, this);
29555         
29556         this.queue();
29557         
29558     },
29559     
29560     queue : function()
29561     {
29562         this.selectorEl.dom.value = '';
29563         
29564         if(!this.files || !this.files.length){
29565             return;
29566         }
29567         
29568         if(this.boxes > 0 && this.files.length > this.boxes){
29569             this.files = this.files.slice(0, this.boxes);
29570         }
29571         
29572         this.uploader.show();
29573         
29574         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29575             this.uploader.hide();
29576         }
29577         
29578         var _this = this;
29579         
29580         var files = [];
29581         
29582         var docs = [];
29583         
29584         Roo.each(this.files, function(file){
29585             
29586             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29587                 var f = this.renderPreview(file);
29588                 files.push(f);
29589                 return;
29590             }
29591             
29592             if(file.type.indexOf('image') != -1){
29593                 this.delegates.push(
29594                     (function(){
29595                         _this.process(file);
29596                     }).createDelegate(this)
29597                 );
29598         
29599                 return;
29600             }
29601             
29602             docs.push(
29603                 (function(){
29604                     _this.process(file);
29605                 }).createDelegate(this)
29606             );
29607             
29608         }, this);
29609         
29610         this.files = files;
29611         
29612         this.delegates = this.delegates.concat(docs);
29613         
29614         if(!this.delegates.length){
29615             this.refresh();
29616             return;
29617         }
29618         
29619         this.progressBar.aria_valuemax = this.delegates.length;
29620         
29621         this.arrange();
29622         
29623         return;
29624     },
29625     
29626     arrange : function()
29627     {
29628         if(!this.delegates.length){
29629             this.progressDialog.hide();
29630             this.refresh();
29631             return;
29632         }
29633         
29634         var delegate = this.delegates.shift();
29635         
29636         this.progressDialog.show();
29637         
29638         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
29639         
29640         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
29641         
29642         delegate();
29643     },
29644     
29645     refresh : function()
29646     {
29647         this.uploader.show();
29648         
29649         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29650             this.uploader.hide();
29651         }
29652         
29653         Roo.isTouch ? this.closable(false) : this.closable(true);
29654         
29655         this.fireEvent('refresh', this);
29656     },
29657     
29658     onRemove : function(e, el, o)
29659     {
29660         e.preventDefault();
29661         
29662         this.fireEvent('remove', this, o);
29663         
29664     },
29665     
29666     remove : function(o)
29667     {
29668         var files = [];
29669         
29670         Roo.each(this.files, function(file){
29671             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
29672                 files.push(file);
29673                 return;
29674             }
29675
29676             o.target.remove();
29677
29678         }, this);
29679         
29680         this.files = files;
29681         
29682         this.refresh();
29683     },
29684     
29685     clear : function()
29686     {
29687         Roo.each(this.files, function(file){
29688             if(!file.target){
29689                 return;
29690             }
29691             
29692             file.target.remove();
29693
29694         }, this);
29695         
29696         this.files = [];
29697         
29698         this.refresh();
29699     },
29700     
29701     onClick : function(e, el, o)
29702     {
29703         e.preventDefault();
29704         
29705         this.fireEvent('click', this, o);
29706         
29707     },
29708     
29709     closable : function(closable)
29710     {
29711         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
29712             
29713             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29714             
29715             if(closable){
29716                 el.show();
29717                 return;
29718             }
29719             
29720             el.hide();
29721             
29722         }, this);
29723     },
29724     
29725     xhrOnLoad : function(xhr)
29726     {
29727         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29728             el.remove();
29729         }, this);
29730         
29731         if (xhr.readyState !== 4) {
29732             this.arrange();
29733             this.fireEvent('exception', this, xhr);
29734             return;
29735         }
29736
29737         var response = Roo.decode(xhr.responseText);
29738         
29739         if(!response.success){
29740             this.arrange();
29741             this.fireEvent('exception', this, xhr);
29742             return;
29743         }
29744         
29745         var file = this.renderPreview(response.data);
29746         
29747         this.files.push(file);
29748         
29749         this.arrange();
29750         
29751         this.fireEvent('afterupload', this, xhr);
29752         
29753     },
29754     
29755     xhrOnError : function(xhr)
29756     {
29757         Roo.log('xhr on error');
29758         
29759         var response = Roo.decode(xhr.responseText);
29760           
29761         Roo.log(response);
29762         
29763         this.arrange();
29764     },
29765     
29766     process : function(file)
29767     {
29768         if(this.fireEvent('process', this, file) !== false){
29769             if(this.editable && file.type.indexOf('image') != -1){
29770                 this.fireEvent('edit', this, file);
29771                 return;
29772             }
29773
29774             this.uploadStart(file, false);
29775
29776             return;
29777         }
29778         
29779     },
29780     
29781     uploadStart : function(file, crop)
29782     {
29783         this.xhr = new XMLHttpRequest();
29784         
29785         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29786             this.arrange();
29787             return;
29788         }
29789         
29790         file.xhr = this.xhr;
29791             
29792         this.managerEl.createChild({
29793             tag : 'div',
29794             cls : 'roo-document-manager-loading',
29795             cn : [
29796                 {
29797                     tag : 'div',
29798                     tooltip : file.name,
29799                     cls : 'roo-document-manager-thumb',
29800                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29801                 }
29802             ]
29803
29804         });
29805
29806         this.xhr.open(this.method, this.url, true);
29807         
29808         var headers = {
29809             "Accept": "application/json",
29810             "Cache-Control": "no-cache",
29811             "X-Requested-With": "XMLHttpRequest"
29812         };
29813         
29814         for (var headerName in headers) {
29815             var headerValue = headers[headerName];
29816             if (headerValue) {
29817                 this.xhr.setRequestHeader(headerName, headerValue);
29818             }
29819         }
29820         
29821         var _this = this;
29822         
29823         this.xhr.onload = function()
29824         {
29825             _this.xhrOnLoad(_this.xhr);
29826         }
29827         
29828         this.xhr.onerror = function()
29829         {
29830             _this.xhrOnError(_this.xhr);
29831         }
29832         
29833         var formData = new FormData();
29834
29835         formData.append('returnHTML', 'NO');
29836         
29837         if(crop){
29838             formData.append('crop', crop);
29839         }
29840         
29841         formData.append(this.paramName, file, file.name);
29842         
29843         var options = {
29844             file : file, 
29845             manually : false
29846         };
29847         
29848         if(this.fireEvent('prepare', this, formData, options) != false){
29849             
29850             if(options.manually){
29851                 return;
29852             }
29853             
29854             this.xhr.send(formData);
29855             return;
29856         };
29857         
29858         this.uploadCancel();
29859     },
29860     
29861     uploadCancel : function()
29862     {
29863         if (this.xhr) {
29864             this.xhr.abort();
29865         }
29866         
29867         this.delegates = [];
29868         
29869         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29870             el.remove();
29871         }, this);
29872         
29873         this.arrange();
29874     },
29875     
29876     renderPreview : function(file)
29877     {
29878         if(typeof(file.target) != 'undefined' && file.target){
29879             return file;
29880         }
29881         
29882         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
29883         
29884         var previewEl = this.managerEl.createChild({
29885             tag : 'div',
29886             cls : 'roo-document-manager-preview',
29887             cn : [
29888                 {
29889                     tag : 'div',
29890                     tooltip : file[this.toolTipName],
29891                     cls : 'roo-document-manager-thumb',
29892                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
29893                 },
29894                 {
29895                     tag : 'button',
29896                     cls : 'close',
29897                     html : '<i class="fa fa-times-circle"></i>'
29898                 }
29899             ]
29900         });
29901
29902         var close = previewEl.select('button.close', true).first();
29903
29904         close.on('click', this.onRemove, this, file);
29905
29906         file.target = previewEl;
29907
29908         var image = previewEl.select('img', true).first();
29909         
29910         var _this = this;
29911         
29912         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
29913         
29914         image.on('click', this.onClick, this, file);
29915         
29916         this.fireEvent('previewrendered', this, file);
29917         
29918         return file;
29919         
29920     },
29921     
29922     onPreviewLoad : function(file, image)
29923     {
29924         if(typeof(file.target) == 'undefined' || !file.target){
29925             return;
29926         }
29927         
29928         var width = image.dom.naturalWidth || image.dom.width;
29929         var height = image.dom.naturalHeight || image.dom.height;
29930         
29931         if(!this.previewResize) {
29932             return;
29933         }
29934         
29935         if(width > height){
29936             file.target.addClass('wide');
29937             return;
29938         }
29939         
29940         file.target.addClass('tall');
29941         return;
29942         
29943     },
29944     
29945     uploadFromSource : function(file, crop)
29946     {
29947         this.xhr = new XMLHttpRequest();
29948         
29949         this.managerEl.createChild({
29950             tag : 'div',
29951             cls : 'roo-document-manager-loading',
29952             cn : [
29953                 {
29954                     tag : 'div',
29955                     tooltip : file.name,
29956                     cls : 'roo-document-manager-thumb',
29957                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29958                 }
29959             ]
29960
29961         });
29962
29963         this.xhr.open(this.method, this.url, true);
29964         
29965         var headers = {
29966             "Accept": "application/json",
29967             "Cache-Control": "no-cache",
29968             "X-Requested-With": "XMLHttpRequest"
29969         };
29970         
29971         for (var headerName in headers) {
29972             var headerValue = headers[headerName];
29973             if (headerValue) {
29974                 this.xhr.setRequestHeader(headerName, headerValue);
29975             }
29976         }
29977         
29978         var _this = this;
29979         
29980         this.xhr.onload = function()
29981         {
29982             _this.xhrOnLoad(_this.xhr);
29983         }
29984         
29985         this.xhr.onerror = function()
29986         {
29987             _this.xhrOnError(_this.xhr);
29988         }
29989         
29990         var formData = new FormData();
29991
29992         formData.append('returnHTML', 'NO');
29993         
29994         formData.append('crop', crop);
29995         
29996         if(typeof(file.filename) != 'undefined'){
29997             formData.append('filename', file.filename);
29998         }
29999         
30000         if(typeof(file.mimetype) != 'undefined'){
30001             formData.append('mimetype', file.mimetype);
30002         }
30003         
30004         Roo.log(formData);
30005         
30006         if(this.fireEvent('prepare', this, formData) != false){
30007             this.xhr.send(formData);
30008         };
30009     }
30010 });
30011
30012 /*
30013 * Licence: LGPL
30014 */
30015
30016 /**
30017  * @class Roo.bootstrap.DocumentViewer
30018  * @extends Roo.bootstrap.Component
30019  * Bootstrap DocumentViewer class
30020  * @cfg {Boolean} showDownload (true|false) show download button (default true)
30021  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
30022  * 
30023  * @constructor
30024  * Create a new DocumentViewer
30025  * @param {Object} config The config object
30026  */
30027
30028 Roo.bootstrap.DocumentViewer = function(config){
30029     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
30030     
30031     this.addEvents({
30032         /**
30033          * @event initial
30034          * Fire after initEvent
30035          * @param {Roo.bootstrap.DocumentViewer} this
30036          */
30037         "initial" : true,
30038         /**
30039          * @event click
30040          * Fire after click
30041          * @param {Roo.bootstrap.DocumentViewer} this
30042          */
30043         "click" : true,
30044         /**
30045          * @event download
30046          * Fire after download button
30047          * @param {Roo.bootstrap.DocumentViewer} this
30048          */
30049         "download" : true,
30050         /**
30051          * @event trash
30052          * Fire after trash button
30053          * @param {Roo.bootstrap.DocumentViewer} this
30054          */
30055         "trash" : true
30056         
30057     });
30058 };
30059
30060 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
30061     
30062     showDownload : true,
30063     
30064     showTrash : true,
30065     
30066     getAutoCreate : function()
30067     {
30068         var cfg = {
30069             tag : 'div',
30070             cls : 'roo-document-viewer',
30071             cn : [
30072                 {
30073                     tag : 'div',
30074                     cls : 'roo-document-viewer-body',
30075                     cn : [
30076                         {
30077                             tag : 'div',
30078                             cls : 'roo-document-viewer-thumb',
30079                             cn : [
30080                                 {
30081                                     tag : 'img',
30082                                     cls : 'roo-document-viewer-image'
30083                                 }
30084                             ]
30085                         }
30086                     ]
30087                 },
30088                 {
30089                     tag : 'div',
30090                     cls : 'roo-document-viewer-footer',
30091                     cn : {
30092                         tag : 'div',
30093                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
30094                         cn : [
30095                             {
30096                                 tag : 'div',
30097                                 cls : 'btn-group roo-document-viewer-download',
30098                                 cn : [
30099                                     {
30100                                         tag : 'button',
30101                                         cls : 'btn btn-default',
30102                                         html : '<i class="fa fa-download"></i>'
30103                                     }
30104                                 ]
30105                             },
30106                             {
30107                                 tag : 'div',
30108                                 cls : 'btn-group roo-document-viewer-trash',
30109                                 cn : [
30110                                     {
30111                                         tag : 'button',
30112                                         cls : 'btn btn-default',
30113                                         html : '<i class="fa fa-trash"></i>'
30114                                     }
30115                                 ]
30116                             }
30117                         ]
30118                     }
30119                 }
30120             ]
30121         };
30122         
30123         return cfg;
30124     },
30125     
30126     initEvents : function()
30127     {
30128         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
30129         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
30130         
30131         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
30132         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
30133         
30134         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
30135         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
30136         
30137         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
30138         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
30139         
30140         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
30141         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
30142         
30143         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
30144         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
30145         
30146         this.bodyEl.on('click', this.onClick, this);
30147         this.downloadBtn.on('click', this.onDownload, this);
30148         this.trashBtn.on('click', this.onTrash, this);
30149         
30150         this.downloadBtn.hide();
30151         this.trashBtn.hide();
30152         
30153         if(this.showDownload){
30154             this.downloadBtn.show();
30155         }
30156         
30157         if(this.showTrash){
30158             this.trashBtn.show();
30159         }
30160         
30161         if(!this.showDownload && !this.showTrash) {
30162             this.footerEl.hide();
30163         }
30164         
30165     },
30166     
30167     initial : function()
30168     {
30169         this.fireEvent('initial', this);
30170         
30171     },
30172     
30173     onClick : function(e)
30174     {
30175         e.preventDefault();
30176         
30177         this.fireEvent('click', this);
30178     },
30179     
30180     onDownload : function(e)
30181     {
30182         e.preventDefault();
30183         
30184         this.fireEvent('download', this);
30185     },
30186     
30187     onTrash : function(e)
30188     {
30189         e.preventDefault();
30190         
30191         this.fireEvent('trash', this);
30192     }
30193     
30194 });
30195 /*
30196  * - LGPL
30197  *
30198  * nav progress bar
30199  * 
30200  */
30201
30202 /**
30203  * @class Roo.bootstrap.NavProgressBar
30204  * @extends Roo.bootstrap.Component
30205  * Bootstrap NavProgressBar class
30206  * 
30207  * @constructor
30208  * Create a new nav progress bar
30209  * @param {Object} config The config object
30210  */
30211
30212 Roo.bootstrap.NavProgressBar = function(config){
30213     Roo.bootstrap.NavProgressBar.superclass.constructor.call(this, config);
30214
30215     this.bullets = this.bullets || [];
30216    
30217 //    Roo.bootstrap.NavProgressBar.register(this);
30218      this.addEvents({
30219         /**
30220              * @event changed
30221              * Fires when the active item changes
30222              * @param {Roo.bootstrap.NavProgressBar} this
30223              * @param {Roo.bootstrap.NavProgressItem} selected The item selected
30224              * @param {Roo.bootstrap.NavProgressItem} prev The previously selected item 
30225          */
30226         'changed': true
30227      });
30228     
30229 };
30230
30231 Roo.extend(Roo.bootstrap.NavProgressBar, Roo.bootstrap.Component,  {
30232     
30233     bullets : [],
30234     barItems : [],
30235     
30236     getAutoCreate : function()
30237     {
30238         var cfg = Roo.apply({}, Roo.bootstrap.NavProgressBar.superclass.getAutoCreate.call(this));
30239         
30240         cfg = {
30241             tag : 'div',
30242             cls : 'roo-navigation-bar-group',
30243             cn : [
30244                 {
30245                     tag : 'div',
30246                     cls : 'roo-navigation-top-bar'
30247                 },
30248                 {
30249                     tag : 'div',
30250                     cls : 'roo-navigation-bullets-bar',
30251                     cn : [
30252                         {
30253                             tag : 'ul',
30254                             cls : 'roo-navigation-bar'
30255                         }
30256                     ]
30257                 },
30258                 
30259                 {
30260                     tag : 'div',
30261                     cls : 'roo-navigation-bottom-bar'
30262                 }
30263             ]
30264             
30265         };
30266         
30267         return cfg;
30268         
30269     },
30270     
30271     initEvents: function() 
30272     {
30273         
30274     },
30275     
30276     onRender : function(ct, position) 
30277     {
30278         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30279         
30280         if(this.bullets.length){
30281             Roo.each(this.bullets, function(b){
30282                this.addItem(b);
30283             }, this);
30284         }
30285         
30286         this.format();
30287         
30288     },
30289     
30290     addItem : function(cfg)
30291     {
30292         var item = new Roo.bootstrap.NavProgressItem(cfg);
30293         
30294         item.parentId = this.id;
30295         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
30296         
30297         if(cfg.html){
30298             var top = new Roo.bootstrap.Element({
30299                 tag : 'div',
30300                 cls : 'roo-navigation-bar-text'
30301             });
30302             
30303             var bottom = new Roo.bootstrap.Element({
30304                 tag : 'div',
30305                 cls : 'roo-navigation-bar-text'
30306             });
30307             
30308             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
30309             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
30310             
30311             var topText = new Roo.bootstrap.Element({
30312                 tag : 'span',
30313                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
30314             });
30315             
30316             var bottomText = new Roo.bootstrap.Element({
30317                 tag : 'span',
30318                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
30319             });
30320             
30321             topText.onRender(top.el, null);
30322             bottomText.onRender(bottom.el, null);
30323             
30324             item.topEl = top;
30325             item.bottomEl = bottom;
30326         }
30327         
30328         this.barItems.push(item);
30329         
30330         return item;
30331     },
30332     
30333     getActive : function()
30334     {
30335         var active = false;
30336         
30337         Roo.each(this.barItems, function(v){
30338             
30339             if (!v.isActive()) {
30340                 return;
30341             }
30342             
30343             active = v;
30344             return false;
30345             
30346         });
30347         
30348         return active;
30349     },
30350     
30351     setActiveItem : function(item)
30352     {
30353         var prev = false;
30354         
30355         Roo.each(this.barItems, function(v){
30356             if (v.rid == item.rid) {
30357                 return ;
30358             }
30359             
30360             if (v.isActive()) {
30361                 v.setActive(false);
30362                 prev = v;
30363             }
30364         });
30365
30366         item.setActive(true);
30367         
30368         this.fireEvent('changed', this, item, prev);
30369     },
30370     
30371     getBarItem: function(rid)
30372     {
30373         var ret = false;
30374         
30375         Roo.each(this.barItems, function(e) {
30376             if (e.rid != rid) {
30377                 return;
30378             }
30379             
30380             ret =  e;
30381             return false;
30382         });
30383         
30384         return ret;
30385     },
30386     
30387     indexOfItem : function(item)
30388     {
30389         var index = false;
30390         
30391         Roo.each(this.barItems, function(v, i){
30392             
30393             if (v.rid != item.rid) {
30394                 return;
30395             }
30396             
30397             index = i;
30398             return false
30399         });
30400         
30401         return index;
30402     },
30403     
30404     setActiveNext : function()
30405     {
30406         var i = this.indexOfItem(this.getActive());
30407         
30408         if (i > this.barItems.length) {
30409             return;
30410         }
30411         
30412         this.setActiveItem(this.barItems[i+1]);
30413     },
30414     
30415     setActivePrev : function()
30416     {
30417         var i = this.indexOfItem(this.getActive());
30418         
30419         if (i  < 1) {
30420             return;
30421         }
30422         
30423         this.setActiveItem(this.barItems[i-1]);
30424     },
30425     
30426     format : function()
30427     {
30428         if(!this.barItems.length){
30429             return;
30430         }
30431      
30432         var width = 100 / this.barItems.length;
30433         
30434         Roo.each(this.barItems, function(i){
30435             i.el.setStyle('width', width + '%');
30436             i.topEl.el.setStyle('width', width + '%');
30437             i.bottomEl.el.setStyle('width', width + '%');
30438         }, this);
30439         
30440     }
30441     
30442 });
30443 /*
30444  * - LGPL
30445  *
30446  * Nav Progress Item
30447  * 
30448  */
30449
30450 /**
30451  * @class Roo.bootstrap.NavProgressItem
30452  * @extends Roo.bootstrap.Component
30453  * Bootstrap NavProgressItem class
30454  * @cfg {String} rid the reference id
30455  * @cfg {Boolean} active (true|false) Is item active default false
30456  * @cfg {Boolean} disabled (true|false) Is item active default false
30457  * @cfg {String} html
30458  * @cfg {String} position (top|bottom) text position default bottom
30459  * @cfg {String} icon show icon instead of number
30460  * 
30461  * @constructor
30462  * Create a new NavProgressItem
30463  * @param {Object} config The config object
30464  */
30465 Roo.bootstrap.NavProgressItem = function(config){
30466     Roo.bootstrap.NavProgressItem.superclass.constructor.call(this, config);
30467     this.addEvents({
30468         // raw events
30469         /**
30470          * @event click
30471          * The raw click event for the entire grid.
30472          * @param {Roo.bootstrap.NavProgressItem} this
30473          * @param {Roo.EventObject} e
30474          */
30475         "click" : true
30476     });
30477    
30478 };
30479
30480 Roo.extend(Roo.bootstrap.NavProgressItem, Roo.bootstrap.Component,  {
30481     
30482     rid : '',
30483     active : false,
30484     disabled : false,
30485     html : '',
30486     position : 'bottom',
30487     icon : false,
30488     
30489     getAutoCreate : function()
30490     {
30491         var iconCls = 'roo-navigation-bar-item-icon';
30492         
30493         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
30494         
30495         var cfg = {
30496             tag: 'li',
30497             cls: 'roo-navigation-bar-item',
30498             cn : [
30499                 {
30500                     tag : 'i',
30501                     cls : iconCls
30502                 }
30503             ]
30504         };
30505         
30506         if(this.active){
30507             cfg.cls += ' active';
30508         }
30509         if(this.disabled){
30510             cfg.cls += ' disabled';
30511         }
30512         
30513         return cfg;
30514     },
30515     
30516     disable : function()
30517     {
30518         this.setDisabled(true);
30519     },
30520     
30521     enable : function()
30522     {
30523         this.setDisabled(false);
30524     },
30525     
30526     initEvents: function() 
30527     {
30528         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
30529         
30530         this.iconEl.on('click', this.onClick, this);
30531     },
30532     
30533     onClick : function(e)
30534     {
30535         e.preventDefault();
30536         
30537         if(this.disabled){
30538             return;
30539         }
30540         
30541         if(this.fireEvent('click', this, e) === false){
30542             return;
30543         };
30544         
30545         this.parent().setActiveItem(this);
30546     },
30547     
30548     isActive: function () 
30549     {
30550         return this.active;
30551     },
30552     
30553     setActive : function(state)
30554     {
30555         if(this.active == state){
30556             return;
30557         }
30558         
30559         this.active = state;
30560         
30561         if (state) {
30562             this.el.addClass('active');
30563             return;
30564         }
30565         
30566         this.el.removeClass('active');
30567         
30568         return;
30569     },
30570     
30571     setDisabled : function(state)
30572     {
30573         if(this.disabled == state){
30574             return;
30575         }
30576         
30577         this.disabled = state;
30578         
30579         if (state) {
30580             this.el.addClass('disabled');
30581             return;
30582         }
30583         
30584         this.el.removeClass('disabled');
30585     },
30586     
30587     tooltipEl : function()
30588     {
30589         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
30590     }
30591 });
30592  
30593
30594  /*
30595  * - LGPL
30596  *
30597  * FieldLabel
30598  * 
30599  */
30600
30601 /**
30602  * @class Roo.bootstrap.FieldLabel
30603  * @extends Roo.bootstrap.Component
30604  * Bootstrap FieldLabel class
30605  * @cfg {String} html contents of the element
30606  * @cfg {String} tag tag of the element default label
30607  * @cfg {String} cls class of the element
30608  * @cfg {String} target label target 
30609  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
30610  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
30611  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
30612  * @cfg {String} iconTooltip default "This field is required"
30613  * @cfg {String} indicatorpos (left|right) default left
30614  * 
30615  * @constructor
30616  * Create a new FieldLabel
30617  * @param {Object} config The config object
30618  */
30619
30620 Roo.bootstrap.FieldLabel = function(config){
30621     Roo.bootstrap.Element.superclass.constructor.call(this, config);
30622     
30623     this.addEvents({
30624             /**
30625              * @event invalid
30626              * Fires after the field has been marked as invalid.
30627              * @param {Roo.form.FieldLabel} this
30628              * @param {String} msg The validation message
30629              */
30630             invalid : true,
30631             /**
30632              * @event valid
30633              * Fires after the field has been validated with no errors.
30634              * @param {Roo.form.FieldLabel} this
30635              */
30636             valid : true
30637         });
30638 };
30639
30640 Roo.extend(Roo.bootstrap.FieldLabel, Roo.bootstrap.Component,  {
30641     
30642     tag: 'label',
30643     cls: '',
30644     html: '',
30645     target: '',
30646     allowBlank : true,
30647     invalidClass : 'has-warning',
30648     validClass : 'has-success',
30649     iconTooltip : 'This field is required',
30650     indicatorpos : 'left',
30651     
30652     getAutoCreate : function(){
30653         
30654         var cls = "";
30655         if (!this.allowBlank) {
30656             cls  = "visible";
30657         }
30658         
30659         var cfg = {
30660             tag : this.tag,
30661             cls : 'roo-bootstrap-field-label ' + this.cls,
30662             for : this.target,
30663             cn : [
30664                 {
30665                     tag : 'i',
30666                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
30667                     tooltip : this.iconTooltip
30668                 },
30669                 {
30670                     tag : 'span',
30671                     html : this.html
30672                 }
30673             ] 
30674         };
30675         
30676         if(this.indicatorpos == 'right'){
30677             var cfg = {
30678                 tag : this.tag,
30679                 cls : 'roo-bootstrap-field-label ' + this.cls,
30680                 for : this.target,
30681                 cn : [
30682                     {
30683                         tag : 'span',
30684                         html : this.html
30685                     },
30686                     {
30687                         tag : 'i',
30688                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
30689                         tooltip : this.iconTooltip
30690                     }
30691                 ] 
30692             };
30693         }
30694         
30695         return cfg;
30696     },
30697     
30698     initEvents: function() 
30699     {
30700         Roo.bootstrap.Element.superclass.initEvents.call(this);
30701         
30702         this.indicator = this.indicatorEl();
30703         
30704         if(this.indicator){
30705             this.indicator.removeClass('visible');
30706             this.indicator.addClass('invisible');
30707         }
30708         
30709         Roo.bootstrap.FieldLabel.register(this);
30710     },
30711     
30712     indicatorEl : function()
30713     {
30714         var indicator = this.el.select('i.roo-required-indicator',true).first();
30715         
30716         if(!indicator){
30717             return false;
30718         }
30719         
30720         return indicator;
30721         
30722     },
30723     
30724     /**
30725      * Mark this field as valid
30726      */
30727     markValid : function()
30728     {
30729         if(this.indicator){
30730             this.indicator.removeClass('visible');
30731             this.indicator.addClass('invisible');
30732         }
30733         if (Roo.bootstrap.version == 3) {
30734             this.el.removeClass(this.invalidClass);
30735             this.el.addClass(this.validClass);
30736         } else {
30737             this.el.removeClass('is-invalid');
30738             this.el.addClass('is-valid');
30739         }
30740         
30741         
30742         this.fireEvent('valid', this);
30743     },
30744     
30745     /**
30746      * Mark this field as invalid
30747      * @param {String} msg The validation message
30748      */
30749     markInvalid : function(msg)
30750     {
30751         if(this.indicator){
30752             this.indicator.removeClass('invisible');
30753             this.indicator.addClass('visible');
30754         }
30755           if (Roo.bootstrap.version == 3) {
30756             this.el.removeClass(this.validClass);
30757             this.el.addClass(this.invalidClass);
30758         } else {
30759             this.el.removeClass('is-valid');
30760             this.el.addClass('is-invalid');
30761         }
30762         
30763         
30764         this.fireEvent('invalid', this, msg);
30765     }
30766     
30767    
30768 });
30769
30770 Roo.apply(Roo.bootstrap.FieldLabel, {
30771     
30772     groups: {},
30773     
30774      /**
30775     * register a FieldLabel Group
30776     * @param {Roo.bootstrap.FieldLabel} the FieldLabel to add
30777     */
30778     register : function(label)
30779     {
30780         if(this.groups.hasOwnProperty(label.target)){
30781             return;
30782         }
30783      
30784         this.groups[label.target] = label;
30785         
30786     },
30787     /**
30788     * fetch a FieldLabel Group based on the target
30789     * @param {string} target
30790     * @returns {Roo.bootstrap.FieldLabel} the CheckBox group
30791     */
30792     get: function(target) {
30793         if (typeof(this.groups[target]) == 'undefined') {
30794             return false;
30795         }
30796         
30797         return this.groups[target] ;
30798     }
30799 });
30800
30801  
30802
30803  /*
30804  * - LGPL
30805  *
30806  * page DateSplitField.
30807  * 
30808  */
30809
30810
30811 /**
30812  * @class Roo.bootstrap.DateSplitField
30813  * @extends Roo.bootstrap.Component
30814  * Bootstrap DateSplitField class
30815  * @cfg {string} fieldLabel - the label associated
30816  * @cfg {Number} labelWidth set the width of label (0-12)
30817  * @cfg {String} labelAlign (top|left)
30818  * @cfg {Boolean} dayAllowBlank (true|false) default false
30819  * @cfg {Boolean} monthAllowBlank (true|false) default false
30820  * @cfg {Boolean} yearAllowBlank (true|false) default false
30821  * @cfg {string} dayPlaceholder 
30822  * @cfg {string} monthPlaceholder
30823  * @cfg {string} yearPlaceholder
30824  * @cfg {string} dayFormat default 'd'
30825  * @cfg {string} monthFormat default 'm'
30826  * @cfg {string} yearFormat default 'Y'
30827  * @cfg {Number} labellg set the width of label (1-12)
30828  * @cfg {Number} labelmd set the width of label (1-12)
30829  * @cfg {Number} labelsm set the width of label (1-12)
30830  * @cfg {Number} labelxs set the width of label (1-12)
30831
30832  *     
30833  * @constructor
30834  * Create a new DateSplitField
30835  * @param {Object} config The config object
30836  */
30837
30838 Roo.bootstrap.DateSplitField = function(config){
30839     Roo.bootstrap.DateSplitField.superclass.constructor.call(this, config);
30840     
30841     this.addEvents({
30842         // raw events
30843          /**
30844          * @event years
30845          * getting the data of years
30846          * @param {Roo.bootstrap.DateSplitField} this
30847          * @param {Object} years
30848          */
30849         "years" : true,
30850         /**
30851          * @event days
30852          * getting the data of days
30853          * @param {Roo.bootstrap.DateSplitField} this
30854          * @param {Object} days
30855          */
30856         "days" : true,
30857         /**
30858          * @event invalid
30859          * Fires after the field has been marked as invalid.
30860          * @param {Roo.form.Field} this
30861          * @param {String} msg The validation message
30862          */
30863         invalid : true,
30864        /**
30865          * @event valid
30866          * Fires after the field has been validated with no errors.
30867          * @param {Roo.form.Field} this
30868          */
30869         valid : true
30870     });
30871 };
30872
30873 Roo.extend(Roo.bootstrap.DateSplitField, Roo.bootstrap.Component,  {
30874     
30875     fieldLabel : '',
30876     labelAlign : 'top',
30877     labelWidth : 3,
30878     dayAllowBlank : false,
30879     monthAllowBlank : false,
30880     yearAllowBlank : false,
30881     dayPlaceholder : '',
30882     monthPlaceholder : '',
30883     yearPlaceholder : '',
30884     dayFormat : 'd',
30885     monthFormat : 'm',
30886     yearFormat : 'Y',
30887     isFormField : true,
30888     labellg : 0,
30889     labelmd : 0,
30890     labelsm : 0,
30891     labelxs : 0,
30892     
30893     getAutoCreate : function()
30894     {
30895         var cfg = {
30896             tag : 'div',
30897             cls : 'row roo-date-split-field-group',
30898             cn : [
30899                 {
30900                     tag : 'input',
30901                     type : 'hidden',
30902                     cls : 'form-hidden-field roo-date-split-field-group-value',
30903                     name : this.name
30904                 }
30905             ]
30906         };
30907         
30908         var labelCls = 'col-md-12';
30909         var contentCls = 'col-md-4';
30910         
30911         if(this.fieldLabel){
30912             
30913             var label = {
30914                 tag : 'div',
30915                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
30916                 cn : [
30917                     {
30918                         tag : 'label',
30919                         html : this.fieldLabel
30920                     }
30921                 ]
30922             };
30923             
30924             if(this.labelAlign == 'left'){
30925             
30926                 if(this.labelWidth > 12){
30927                     label.style = "width: " + this.labelWidth + 'px';
30928                 }
30929
30930                 if(this.labelWidth < 13 && this.labelmd == 0){
30931                     this.labelmd = this.labelWidth;
30932                 }
30933
30934                 if(this.labellg > 0){
30935                     labelCls = ' col-lg-' + this.labellg;
30936                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
30937                 }
30938
30939                 if(this.labelmd > 0){
30940                     labelCls = ' col-md-' + this.labelmd;
30941                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
30942                 }
30943
30944                 if(this.labelsm > 0){
30945                     labelCls = ' col-sm-' + this.labelsm;
30946                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
30947                 }
30948
30949                 if(this.labelxs > 0){
30950                     labelCls = ' col-xs-' + this.labelxs;
30951                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
30952                 }
30953             }
30954             
30955             label.cls += ' ' + labelCls;
30956             
30957             cfg.cn.push(label);
30958         }
30959         
30960         Roo.each(['day', 'month', 'year'], function(t){
30961             cfg.cn.push({
30962                 tag : 'div',
30963                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
30964             });
30965         }, this);
30966         
30967         return cfg;
30968     },
30969     
30970     inputEl: function ()
30971     {
30972         return this.el.select('.roo-date-split-field-group-value', true).first();
30973     },
30974     
30975     onRender : function(ct, position) 
30976     {
30977         var _this = this;
30978         
30979         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30980         
30981         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
30982         
30983         this.dayField = new Roo.bootstrap.ComboBox({
30984             allowBlank : this.dayAllowBlank,
30985             alwaysQuery : true,
30986             displayField : 'value',
30987             editable : false,
30988             fieldLabel : '',
30989             forceSelection : true,
30990             mode : 'local',
30991             placeholder : this.dayPlaceholder,
30992             selectOnFocus : true,
30993             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30994             triggerAction : 'all',
30995             typeAhead : true,
30996             valueField : 'value',
30997             store : new Roo.data.SimpleStore({
30998                 data : (function() {    
30999                     var days = [];
31000                     _this.fireEvent('days', _this, days);
31001                     return days;
31002                 })(),
31003                 fields : [ 'value' ]
31004             }),
31005             listeners : {
31006                 select : function (_self, record, index)
31007                 {
31008                     _this.setValue(_this.getValue());
31009                 }
31010             }
31011         });
31012
31013         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
31014         
31015         this.monthField = new Roo.bootstrap.MonthField({
31016             after : '<i class=\"fa fa-calendar\"></i>',
31017             allowBlank : this.monthAllowBlank,
31018             placeholder : this.monthPlaceholder,
31019             readOnly : true,
31020             listeners : {
31021                 render : function (_self)
31022                 {
31023                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
31024                         e.preventDefault();
31025                         _self.focus();
31026                     });
31027                 },
31028                 select : function (_self, oldvalue, newvalue)
31029                 {
31030                     _this.setValue(_this.getValue());
31031                 }
31032             }
31033         });
31034         
31035         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
31036         
31037         this.yearField = new Roo.bootstrap.ComboBox({
31038             allowBlank : this.yearAllowBlank,
31039             alwaysQuery : true,
31040             displayField : 'value',
31041             editable : false,
31042             fieldLabel : '',
31043             forceSelection : true,
31044             mode : 'local',
31045             placeholder : this.yearPlaceholder,
31046             selectOnFocus : true,
31047             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
31048             triggerAction : 'all',
31049             typeAhead : true,
31050             valueField : 'value',
31051             store : new Roo.data.SimpleStore({
31052                 data : (function() {
31053                     var years = [];
31054                     _this.fireEvent('years', _this, years);
31055                     return years;
31056                 })(),
31057                 fields : [ 'value' ]
31058             }),
31059             listeners : {
31060                 select : function (_self, record, index)
31061                 {
31062                     _this.setValue(_this.getValue());
31063                 }
31064             }
31065         });
31066
31067         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
31068     },
31069     
31070     setValue : function(v, format)
31071     {
31072         this.inputEl.dom.value = v;
31073         
31074         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
31075         
31076         var d = Date.parseDate(v, f);
31077         
31078         if(!d){
31079             this.validate();
31080             return;
31081         }
31082         
31083         this.setDay(d.format(this.dayFormat));
31084         this.setMonth(d.format(this.monthFormat));
31085         this.setYear(d.format(this.yearFormat));
31086         
31087         this.validate();
31088         
31089         return;
31090     },
31091     
31092     setDay : function(v)
31093     {
31094         this.dayField.setValue(v);
31095         this.inputEl.dom.value = this.getValue();
31096         this.validate();
31097         return;
31098     },
31099     
31100     setMonth : function(v)
31101     {
31102         this.monthField.setValue(v, true);
31103         this.inputEl.dom.value = this.getValue();
31104         this.validate();
31105         return;
31106     },
31107     
31108     setYear : function(v)
31109     {
31110         this.yearField.setValue(v);
31111         this.inputEl.dom.value = this.getValue();
31112         this.validate();
31113         return;
31114     },
31115     
31116     getDay : function()
31117     {
31118         return this.dayField.getValue();
31119     },
31120     
31121     getMonth : function()
31122     {
31123         return this.monthField.getValue();
31124     },
31125     
31126     getYear : function()
31127     {
31128         return this.yearField.getValue();
31129     },
31130     
31131     getValue : function()
31132     {
31133         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
31134         
31135         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
31136         
31137         return date;
31138     },
31139     
31140     reset : function()
31141     {
31142         this.setDay('');
31143         this.setMonth('');
31144         this.setYear('');
31145         this.inputEl.dom.value = '';
31146         this.validate();
31147         return;
31148     },
31149     
31150     validate : function()
31151     {
31152         var d = this.dayField.validate();
31153         var m = this.monthField.validate();
31154         var y = this.yearField.validate();
31155         
31156         var valid = true;
31157         
31158         if(
31159                 (!this.dayAllowBlank && !d) ||
31160                 (!this.monthAllowBlank && !m) ||
31161                 (!this.yearAllowBlank && !y)
31162         ){
31163             valid = false;
31164         }
31165         
31166         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
31167             return valid;
31168         }
31169         
31170         if(valid){
31171             this.markValid();
31172             return valid;
31173         }
31174         
31175         this.markInvalid();
31176         
31177         return valid;
31178     },
31179     
31180     markValid : function()
31181     {
31182         
31183         var label = this.el.select('label', true).first();
31184         var icon = this.el.select('i.fa-star', true).first();
31185
31186         if(label && icon){
31187             icon.remove();
31188         }
31189         
31190         this.fireEvent('valid', this);
31191     },
31192     
31193      /**
31194      * Mark this field as invalid
31195      * @param {String} msg The validation message
31196      */
31197     markInvalid : function(msg)
31198     {
31199         
31200         var label = this.el.select('label', true).first();
31201         var icon = this.el.select('i.fa-star', true).first();
31202
31203         if(label && !icon){
31204             this.el.select('.roo-date-split-field-label', true).createChild({
31205                 tag : 'i',
31206                 cls : 'text-danger fa fa-lg fa-star',
31207                 tooltip : 'This field is required',
31208                 style : 'margin-right:5px;'
31209             }, label, true);
31210         }
31211         
31212         this.fireEvent('invalid', this, msg);
31213     },
31214     
31215     clearInvalid : function()
31216     {
31217         var label = this.el.select('label', true).first();
31218         var icon = this.el.select('i.fa-star', true).first();
31219
31220         if(label && icon){
31221             icon.remove();
31222         }
31223         
31224         this.fireEvent('valid', this);
31225     },
31226     
31227     getName: function()
31228     {
31229         return this.name;
31230     }
31231     
31232 });
31233
31234  /**
31235  *
31236  * This is based on 
31237  * http://masonry.desandro.com
31238  *
31239  * The idea is to render all the bricks based on vertical width...
31240  *
31241  * The original code extends 'outlayer' - we might need to use that....
31242  * 
31243  */
31244
31245
31246 /**
31247  * @class Roo.bootstrap.LayoutMasonry
31248  * @extends Roo.bootstrap.Component
31249  * Bootstrap Layout Masonry class
31250  * 
31251  * @constructor
31252  * Create a new Element
31253  * @param {Object} config The config object
31254  */
31255
31256 Roo.bootstrap.LayoutMasonry = function(config){
31257     
31258     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
31259     
31260     this.bricks = [];
31261     
31262     Roo.bootstrap.LayoutMasonry.register(this);
31263     
31264     this.addEvents({
31265         // raw events
31266         /**
31267          * @event layout
31268          * Fire after layout the items
31269          * @param {Roo.bootstrap.LayoutMasonry} this
31270          * @param {Roo.EventObject} e
31271          */
31272         "layout" : true
31273     });
31274     
31275 };
31276
31277 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
31278     
31279     /**
31280      * @cfg {Boolean} isLayoutInstant = no animation?
31281      */   
31282     isLayoutInstant : false, // needed?
31283    
31284     /**
31285      * @cfg {Number} boxWidth  width of the columns
31286      */   
31287     boxWidth : 450,
31288     
31289       /**
31290      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
31291      */   
31292     boxHeight : 0,
31293     
31294     /**
31295      * @cfg {Number} padWidth padding below box..
31296      */   
31297     padWidth : 10, 
31298     
31299     /**
31300      * @cfg {Number} gutter gutter width..
31301      */   
31302     gutter : 10,
31303     
31304      /**
31305      * @cfg {Number} maxCols maximum number of columns
31306      */   
31307     
31308     maxCols: 0,
31309     
31310     /**
31311      * @cfg {Boolean} isAutoInitial defalut true
31312      */   
31313     isAutoInitial : true, 
31314     
31315     containerWidth: 0,
31316     
31317     /**
31318      * @cfg {Boolean} isHorizontal defalut false
31319      */   
31320     isHorizontal : false, 
31321
31322     currentSize : null,
31323     
31324     tag: 'div',
31325     
31326     cls: '',
31327     
31328     bricks: null, //CompositeElement
31329     
31330     cols : 1,
31331     
31332     _isLayoutInited : false,
31333     
31334 //    isAlternative : false, // only use for vertical layout...
31335     
31336     /**
31337      * @cfg {Number} alternativePadWidth padding below box..
31338      */   
31339     alternativePadWidth : 50,
31340     
31341     selectedBrick : [],
31342     
31343     getAutoCreate : function(){
31344         
31345         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
31346         
31347         var cfg = {
31348             tag: this.tag,
31349             cls: 'blog-masonary-wrapper ' + this.cls,
31350             cn : {
31351                 cls : 'mas-boxes masonary'
31352             }
31353         };
31354         
31355         return cfg;
31356     },
31357     
31358     getChildContainer: function( )
31359     {
31360         if (this.boxesEl) {
31361             return this.boxesEl;
31362         }
31363         
31364         this.boxesEl = this.el.select('.mas-boxes').first();
31365         
31366         return this.boxesEl;
31367     },
31368     
31369     
31370     initEvents : function()
31371     {
31372         var _this = this;
31373         
31374         if(this.isAutoInitial){
31375             Roo.log('hook children rendered');
31376             this.on('childrenrendered', function() {
31377                 Roo.log('children rendered');
31378                 _this.initial();
31379             } ,this);
31380         }
31381     },
31382     
31383     initial : function()
31384     {
31385         this.selectedBrick = [];
31386         
31387         this.currentSize = this.el.getBox(true);
31388         
31389         Roo.EventManager.onWindowResize(this.resize, this); 
31390
31391         if(!this.isAutoInitial){
31392             this.layout();
31393             return;
31394         }
31395         
31396         this.layout();
31397         
31398         return;
31399         //this.layout.defer(500,this);
31400         
31401     },
31402     
31403     resize : function()
31404     {
31405         var cs = this.el.getBox(true);
31406         
31407         if (
31408                 this.currentSize.width == cs.width && 
31409                 this.currentSize.x == cs.x && 
31410                 this.currentSize.height == cs.height && 
31411                 this.currentSize.y == cs.y 
31412         ) {
31413             Roo.log("no change in with or X or Y");
31414             return;
31415         }
31416         
31417         this.currentSize = cs;
31418         
31419         this.layout();
31420         
31421     },
31422     
31423     layout : function()
31424     {   
31425         this._resetLayout();
31426         
31427         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
31428         
31429         this.layoutItems( isInstant );
31430       
31431         this._isLayoutInited = true;
31432         
31433         this.fireEvent('layout', this);
31434         
31435     },
31436     
31437     _resetLayout : function()
31438     {
31439         if(this.isHorizontal){
31440             this.horizontalMeasureColumns();
31441             return;
31442         }
31443         
31444         this.verticalMeasureColumns();
31445         
31446     },
31447     
31448     verticalMeasureColumns : function()
31449     {
31450         this.getContainerWidth();
31451         
31452 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31453 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
31454 //            return;
31455 //        }
31456         
31457         var boxWidth = this.boxWidth + this.padWidth;
31458         
31459         if(this.containerWidth < this.boxWidth){
31460             boxWidth = this.containerWidth
31461         }
31462         
31463         var containerWidth = this.containerWidth;
31464         
31465         var cols = Math.floor(containerWidth / boxWidth);
31466         
31467         this.cols = Math.max( cols, 1 );
31468         
31469         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
31470         
31471         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
31472         
31473         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
31474         
31475         this.colWidth = boxWidth + avail - this.padWidth;
31476         
31477         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
31478         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
31479     },
31480     
31481     horizontalMeasureColumns : function()
31482     {
31483         this.getContainerWidth();
31484         
31485         var boxWidth = this.boxWidth;
31486         
31487         if(this.containerWidth < boxWidth){
31488             boxWidth = this.containerWidth;
31489         }
31490         
31491         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
31492         
31493         this.el.setHeight(boxWidth);
31494         
31495     },
31496     
31497     getContainerWidth : function()
31498     {
31499         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
31500     },
31501     
31502     layoutItems : function( isInstant )
31503     {
31504         Roo.log(this.bricks);
31505         
31506         var items = Roo.apply([], this.bricks);
31507         
31508         if(this.isHorizontal){
31509             this._horizontalLayoutItems( items , isInstant );
31510             return;
31511         }
31512         
31513 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31514 //            this._verticalAlternativeLayoutItems( items , isInstant );
31515 //            return;
31516 //        }
31517         
31518         this._verticalLayoutItems( items , isInstant );
31519         
31520     },
31521     
31522     _verticalLayoutItems : function ( items , isInstant)
31523     {
31524         if ( !items || !items.length ) {
31525             return;
31526         }
31527         
31528         var standard = [
31529             ['xs', 'xs', 'xs', 'tall'],
31530             ['xs', 'xs', 'tall'],
31531             ['xs', 'xs', 'sm'],
31532             ['xs', 'xs', 'xs'],
31533             ['xs', 'tall'],
31534             ['xs', 'sm'],
31535             ['xs', 'xs'],
31536             ['xs'],
31537             
31538             ['sm', 'xs', 'xs'],
31539             ['sm', 'xs'],
31540             ['sm'],
31541             
31542             ['tall', 'xs', 'xs', 'xs'],
31543             ['tall', 'xs', 'xs'],
31544             ['tall', 'xs'],
31545             ['tall']
31546             
31547         ];
31548         
31549         var queue = [];
31550         
31551         var boxes = [];
31552         
31553         var box = [];
31554         
31555         Roo.each(items, function(item, k){
31556             
31557             switch (item.size) {
31558                 // these layouts take up a full box,
31559                 case 'md' :
31560                 case 'md-left' :
31561                 case 'md-right' :
31562                 case 'wide' :
31563                     
31564                     if(box.length){
31565                         boxes.push(box);
31566                         box = [];
31567                     }
31568                     
31569                     boxes.push([item]);
31570                     
31571                     break;
31572                     
31573                 case 'xs' :
31574                 case 'sm' :
31575                 case 'tall' :
31576                     
31577                     box.push(item);
31578                     
31579                     break;
31580                 default :
31581                     break;
31582                     
31583             }
31584             
31585         }, this);
31586         
31587         if(box.length){
31588             boxes.push(box);
31589             box = [];
31590         }
31591         
31592         var filterPattern = function(box, length)
31593         {
31594             if(!box.length){
31595                 return;
31596             }
31597             
31598             var match = false;
31599             
31600             var pattern = box.slice(0, length);
31601             
31602             var format = [];
31603             
31604             Roo.each(pattern, function(i){
31605                 format.push(i.size);
31606             }, this);
31607             
31608             Roo.each(standard, function(s){
31609                 
31610                 if(String(s) != String(format)){
31611                     return;
31612                 }
31613                 
31614                 match = true;
31615                 return false;
31616                 
31617             }, this);
31618             
31619             if(!match && length == 1){
31620                 return;
31621             }
31622             
31623             if(!match){
31624                 filterPattern(box, length - 1);
31625                 return;
31626             }
31627                 
31628             queue.push(pattern);
31629
31630             box = box.slice(length, box.length);
31631
31632             filterPattern(box, 4);
31633
31634             return;
31635             
31636         }
31637         
31638         Roo.each(boxes, function(box, k){
31639             
31640             if(!box.length){
31641                 return;
31642             }
31643             
31644             if(box.length == 1){
31645                 queue.push(box);
31646                 return;
31647             }
31648             
31649             filterPattern(box, 4);
31650             
31651         }, this);
31652         
31653         this._processVerticalLayoutQueue( queue, isInstant );
31654         
31655     },
31656     
31657 //    _verticalAlternativeLayoutItems : function( items , isInstant )
31658 //    {
31659 //        if ( !items || !items.length ) {
31660 //            return;
31661 //        }
31662 //
31663 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
31664 //        
31665 //    },
31666     
31667     _horizontalLayoutItems : function ( items , isInstant)
31668     {
31669         if ( !items || !items.length || items.length < 3) {
31670             return;
31671         }
31672         
31673         items.reverse();
31674         
31675         var eItems = items.slice(0, 3);
31676         
31677         items = items.slice(3, items.length);
31678         
31679         var standard = [
31680             ['xs', 'xs', 'xs', 'wide'],
31681             ['xs', 'xs', 'wide'],
31682             ['xs', 'xs', 'sm'],
31683             ['xs', 'xs', 'xs'],
31684             ['xs', 'wide'],
31685             ['xs', 'sm'],
31686             ['xs', 'xs'],
31687             ['xs'],
31688             
31689             ['sm', 'xs', 'xs'],
31690             ['sm', 'xs'],
31691             ['sm'],
31692             
31693             ['wide', 'xs', 'xs', 'xs'],
31694             ['wide', 'xs', 'xs'],
31695             ['wide', 'xs'],
31696             ['wide'],
31697             
31698             ['wide-thin']
31699         ];
31700         
31701         var queue = [];
31702         
31703         var boxes = [];
31704         
31705         var box = [];
31706         
31707         Roo.each(items, function(item, k){
31708             
31709             switch (item.size) {
31710                 case 'md' :
31711                 case 'md-left' :
31712                 case 'md-right' :
31713                 case 'tall' :
31714                     
31715                     if(box.length){
31716                         boxes.push(box);
31717                         box = [];
31718                     }
31719                     
31720                     boxes.push([item]);
31721                     
31722                     break;
31723                     
31724                 case 'xs' :
31725                 case 'sm' :
31726                 case 'wide' :
31727                 case 'wide-thin' :
31728                     
31729                     box.push(item);
31730                     
31731                     break;
31732                 default :
31733                     break;
31734                     
31735             }
31736             
31737         }, this);
31738         
31739         if(box.length){
31740             boxes.push(box);
31741             box = [];
31742         }
31743         
31744         var filterPattern = function(box, length)
31745         {
31746             if(!box.length){
31747                 return;
31748             }
31749             
31750             var match = false;
31751             
31752             var pattern = box.slice(0, length);
31753             
31754             var format = [];
31755             
31756             Roo.each(pattern, function(i){
31757                 format.push(i.size);
31758             }, this);
31759             
31760             Roo.each(standard, function(s){
31761                 
31762                 if(String(s) != String(format)){
31763                     return;
31764                 }
31765                 
31766                 match = true;
31767                 return false;
31768                 
31769             }, this);
31770             
31771             if(!match && length == 1){
31772                 return;
31773             }
31774             
31775             if(!match){
31776                 filterPattern(box, length - 1);
31777                 return;
31778             }
31779                 
31780             queue.push(pattern);
31781
31782             box = box.slice(length, box.length);
31783
31784             filterPattern(box, 4);
31785
31786             return;
31787             
31788         }
31789         
31790         Roo.each(boxes, function(box, k){
31791             
31792             if(!box.length){
31793                 return;
31794             }
31795             
31796             if(box.length == 1){
31797                 queue.push(box);
31798                 return;
31799             }
31800             
31801             filterPattern(box, 4);
31802             
31803         }, this);
31804         
31805         
31806         var prune = [];
31807         
31808         var pos = this.el.getBox(true);
31809         
31810         var minX = pos.x;
31811         
31812         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31813         
31814         var hit_end = false;
31815         
31816         Roo.each(queue, function(box){
31817             
31818             if(hit_end){
31819                 
31820                 Roo.each(box, function(b){
31821                 
31822                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31823                     b.el.hide();
31824
31825                 }, this);
31826
31827                 return;
31828             }
31829             
31830             var mx = 0;
31831             
31832             Roo.each(box, function(b){
31833                 
31834                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
31835                 b.el.show();
31836
31837                 mx = Math.max(mx, b.x);
31838                 
31839             }, this);
31840             
31841             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
31842             
31843             if(maxX < minX){
31844                 
31845                 Roo.each(box, function(b){
31846                 
31847                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31848                     b.el.hide();
31849                     
31850                 }, this);
31851                 
31852                 hit_end = true;
31853                 
31854                 return;
31855             }
31856             
31857             prune.push(box);
31858             
31859         }, this);
31860         
31861         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
31862     },
31863     
31864     /** Sets position of item in DOM
31865     * @param {Element} item
31866     * @param {Number} x - horizontal position
31867     * @param {Number} y - vertical position
31868     * @param {Boolean} isInstant - disables transitions
31869     */
31870     _processVerticalLayoutQueue : function( queue, isInstant )
31871     {
31872         var pos = this.el.getBox(true);
31873         var x = pos.x;
31874         var y = pos.y;
31875         var maxY = [];
31876         
31877         for (var i = 0; i < this.cols; i++){
31878             maxY[i] = pos.y;
31879         }
31880         
31881         Roo.each(queue, function(box, k){
31882             
31883             var col = k % this.cols;
31884             
31885             Roo.each(box, function(b,kk){
31886                 
31887                 b.el.position('absolute');
31888                 
31889                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31890                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31891                 
31892                 if(b.size == 'md-left' || b.size == 'md-right'){
31893                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31894                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31895                 }
31896                 
31897                 b.el.setWidth(width);
31898                 b.el.setHeight(height);
31899                 // iframe?
31900                 b.el.select('iframe',true).setSize(width,height);
31901                 
31902             }, this);
31903             
31904             for (var i = 0; i < this.cols; i++){
31905                 
31906                 if(maxY[i] < maxY[col]){
31907                     col = i;
31908                     continue;
31909                 }
31910                 
31911                 col = Math.min(col, i);
31912                 
31913             }
31914             
31915             x = pos.x + col * (this.colWidth + this.padWidth);
31916             
31917             y = maxY[col];
31918             
31919             var positions = [];
31920             
31921             switch (box.length){
31922                 case 1 :
31923                     positions = this.getVerticalOneBoxColPositions(x, y, box);
31924                     break;
31925                 case 2 :
31926                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
31927                     break;
31928                 case 3 :
31929                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
31930                     break;
31931                 case 4 :
31932                     positions = this.getVerticalFourBoxColPositions(x, y, box);
31933                     break;
31934                 default :
31935                     break;
31936             }
31937             
31938             Roo.each(box, function(b,kk){
31939                 
31940                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31941                 
31942                 var sz = b.el.getSize();
31943                 
31944                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
31945                 
31946             }, this);
31947             
31948         }, this);
31949         
31950         var mY = 0;
31951         
31952         for (var i = 0; i < this.cols; i++){
31953             mY = Math.max(mY, maxY[i]);
31954         }
31955         
31956         this.el.setHeight(mY - pos.y);
31957         
31958     },
31959     
31960 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
31961 //    {
31962 //        var pos = this.el.getBox(true);
31963 //        var x = pos.x;
31964 //        var y = pos.y;
31965 //        var maxX = pos.right;
31966 //        
31967 //        var maxHeight = 0;
31968 //        
31969 //        Roo.each(items, function(item, k){
31970 //            
31971 //            var c = k % 2;
31972 //            
31973 //            item.el.position('absolute');
31974 //                
31975 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
31976 //
31977 //            item.el.setWidth(width);
31978 //
31979 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
31980 //
31981 //            item.el.setHeight(height);
31982 //            
31983 //            if(c == 0){
31984 //                item.el.setXY([x, y], isInstant ? false : true);
31985 //            } else {
31986 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
31987 //            }
31988 //            
31989 //            y = y + height + this.alternativePadWidth;
31990 //            
31991 //            maxHeight = maxHeight + height + this.alternativePadWidth;
31992 //            
31993 //        }, this);
31994 //        
31995 //        this.el.setHeight(maxHeight);
31996 //        
31997 //    },
31998     
31999     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
32000     {
32001         var pos = this.el.getBox(true);
32002         
32003         var minX = pos.x;
32004         var minY = pos.y;
32005         
32006         var maxX = pos.right;
32007         
32008         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
32009         
32010         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
32011         
32012         Roo.each(queue, function(box, k){
32013             
32014             Roo.each(box, function(b, kk){
32015                 
32016                 b.el.position('absolute');
32017                 
32018                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
32019                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
32020                 
32021                 if(b.size == 'md-left' || b.size == 'md-right'){
32022                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
32023                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
32024                 }
32025                 
32026                 b.el.setWidth(width);
32027                 b.el.setHeight(height);
32028                 
32029             }, this);
32030             
32031             if(!box.length){
32032                 return;
32033             }
32034             
32035             var positions = [];
32036             
32037             switch (box.length){
32038                 case 1 :
32039                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
32040                     break;
32041                 case 2 :
32042                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
32043                     break;
32044                 case 3 :
32045                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
32046                     break;
32047                 case 4 :
32048                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
32049                     break;
32050                 default :
32051                     break;
32052             }
32053             
32054             Roo.each(box, function(b,kk){
32055                 
32056                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
32057                 
32058                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
32059                 
32060             }, this);
32061             
32062         }, this);
32063         
32064     },
32065     
32066     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
32067     {
32068         Roo.each(eItems, function(b,k){
32069             
32070             b.size = (k == 0) ? 'sm' : 'xs';
32071             b.x = (k == 0) ? 2 : 1;
32072             b.y = (k == 0) ? 2 : 1;
32073             
32074             b.el.position('absolute');
32075             
32076             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
32077                 
32078             b.el.setWidth(width);
32079             
32080             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
32081             
32082             b.el.setHeight(height);
32083             
32084         }, this);
32085
32086         var positions = [];
32087         
32088         positions.push({
32089             x : maxX - this.unitWidth * 2 - this.gutter,
32090             y : minY
32091         });
32092         
32093         positions.push({
32094             x : maxX - this.unitWidth,
32095             y : minY + (this.unitWidth + this.gutter) * 2
32096         });
32097         
32098         positions.push({
32099             x : maxX - this.unitWidth * 3 - this.gutter * 2,
32100             y : minY
32101         });
32102         
32103         Roo.each(eItems, function(b,k){
32104             
32105             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
32106
32107         }, this);
32108         
32109     },
32110     
32111     getVerticalOneBoxColPositions : function(x, y, box)
32112     {
32113         var pos = [];
32114         
32115         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
32116         
32117         if(box[0].size == 'md-left'){
32118             rand = 0;
32119         }
32120         
32121         if(box[0].size == 'md-right'){
32122             rand = 1;
32123         }
32124         
32125         pos.push({
32126             x : x + (this.unitWidth + this.gutter) * rand,
32127             y : y
32128         });
32129         
32130         return pos;
32131     },
32132     
32133     getVerticalTwoBoxColPositions : function(x, y, box)
32134     {
32135         var pos = [];
32136         
32137         if(box[0].size == 'xs'){
32138             
32139             pos.push({
32140                 x : x,
32141                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
32142             });
32143
32144             pos.push({
32145                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
32146                 y : y
32147             });
32148             
32149             return pos;
32150             
32151         }
32152         
32153         pos.push({
32154             x : x,
32155             y : y
32156         });
32157
32158         pos.push({
32159             x : x + (this.unitWidth + this.gutter) * 2,
32160             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
32161         });
32162         
32163         return pos;
32164         
32165     },
32166     
32167     getVerticalThreeBoxColPositions : function(x, y, box)
32168     {
32169         var pos = [];
32170         
32171         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32172             
32173             pos.push({
32174                 x : x,
32175                 y : y
32176             });
32177
32178             pos.push({
32179                 x : x + (this.unitWidth + this.gutter) * 1,
32180                 y : y
32181             });
32182             
32183             pos.push({
32184                 x : x + (this.unitWidth + this.gutter) * 2,
32185                 y : y
32186             });
32187             
32188             return pos;
32189             
32190         }
32191         
32192         if(box[0].size == 'xs' && box[1].size == 'xs'){
32193             
32194             pos.push({
32195                 x : x,
32196                 y : y
32197             });
32198
32199             pos.push({
32200                 x : x,
32201                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
32202             });
32203             
32204             pos.push({
32205                 x : x + (this.unitWidth + this.gutter) * 1,
32206                 y : y
32207             });
32208             
32209             return pos;
32210             
32211         }
32212         
32213         pos.push({
32214             x : x,
32215             y : y
32216         });
32217
32218         pos.push({
32219             x : x + (this.unitWidth + this.gutter) * 2,
32220             y : y
32221         });
32222
32223         pos.push({
32224             x : x + (this.unitWidth + this.gutter) * 2,
32225             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
32226         });
32227             
32228         return pos;
32229         
32230     },
32231     
32232     getVerticalFourBoxColPositions : function(x, y, box)
32233     {
32234         var pos = [];
32235         
32236         if(box[0].size == 'xs'){
32237             
32238             pos.push({
32239                 x : x,
32240                 y : y
32241             });
32242
32243             pos.push({
32244                 x : x,
32245                 y : y + (this.unitHeight + this.gutter) * 1
32246             });
32247             
32248             pos.push({
32249                 x : x,
32250                 y : y + (this.unitHeight + this.gutter) * 2
32251             });
32252             
32253             pos.push({
32254                 x : x + (this.unitWidth + this.gutter) * 1,
32255                 y : y
32256             });
32257             
32258             return pos;
32259             
32260         }
32261         
32262         pos.push({
32263             x : x,
32264             y : y
32265         });
32266
32267         pos.push({
32268             x : x + (this.unitWidth + this.gutter) * 2,
32269             y : y
32270         });
32271
32272         pos.push({
32273             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
32274             y : y + (this.unitHeight + this.gutter) * 1
32275         });
32276
32277         pos.push({
32278             x : x + (this.unitWidth + this.gutter) * 2,
32279             y : y + (this.unitWidth + this.gutter) * 2
32280         });
32281
32282         return pos;
32283         
32284     },
32285     
32286     getHorizontalOneBoxColPositions : function(maxX, minY, box)
32287     {
32288         var pos = [];
32289         
32290         if(box[0].size == 'md-left'){
32291             pos.push({
32292                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32293                 y : minY
32294             });
32295             
32296             return pos;
32297         }
32298         
32299         if(box[0].size == 'md-right'){
32300             pos.push({
32301                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32302                 y : minY + (this.unitWidth + this.gutter) * 1
32303             });
32304             
32305             return pos;
32306         }
32307         
32308         var rand = Math.floor(Math.random() * (4 - box[0].y));
32309         
32310         pos.push({
32311             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32312             y : minY + (this.unitWidth + this.gutter) * rand
32313         });
32314         
32315         return pos;
32316         
32317     },
32318     
32319     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
32320     {
32321         var pos = [];
32322         
32323         if(box[0].size == 'xs'){
32324             
32325             pos.push({
32326                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32327                 y : minY
32328             });
32329
32330             pos.push({
32331                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32332                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
32333             });
32334             
32335             return pos;
32336             
32337         }
32338         
32339         pos.push({
32340             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32341             y : minY
32342         });
32343
32344         pos.push({
32345             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32346             y : minY + (this.unitWidth + this.gutter) * 2
32347         });
32348         
32349         return pos;
32350         
32351     },
32352     
32353     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
32354     {
32355         var pos = [];
32356         
32357         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32358             
32359             pos.push({
32360                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32361                 y : minY
32362             });
32363
32364             pos.push({
32365                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32366                 y : minY + (this.unitWidth + this.gutter) * 1
32367             });
32368             
32369             pos.push({
32370                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32371                 y : minY + (this.unitWidth + this.gutter) * 2
32372             });
32373             
32374             return pos;
32375             
32376         }
32377         
32378         if(box[0].size == 'xs' && box[1].size == 'xs'){
32379             
32380             pos.push({
32381                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32382                 y : minY
32383             });
32384
32385             pos.push({
32386                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32387                 y : minY
32388             });
32389             
32390             pos.push({
32391                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32392                 y : minY + (this.unitWidth + this.gutter) * 1
32393             });
32394             
32395             return pos;
32396             
32397         }
32398         
32399         pos.push({
32400             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32401             y : minY
32402         });
32403
32404         pos.push({
32405             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32406             y : minY + (this.unitWidth + this.gutter) * 2
32407         });
32408
32409         pos.push({
32410             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32411             y : minY + (this.unitWidth + this.gutter) * 2
32412         });
32413             
32414         return pos;
32415         
32416     },
32417     
32418     getHorizontalFourBoxColPositions : function(maxX, minY, box)
32419     {
32420         var pos = [];
32421         
32422         if(box[0].size == 'xs'){
32423             
32424             pos.push({
32425                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32426                 y : minY
32427             });
32428
32429             pos.push({
32430                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32431                 y : minY
32432             });
32433             
32434             pos.push({
32435                 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),
32436                 y : minY
32437             });
32438             
32439             pos.push({
32440                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
32441                 y : minY + (this.unitWidth + this.gutter) * 1
32442             });
32443             
32444             return pos;
32445             
32446         }
32447         
32448         pos.push({
32449             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32450             y : minY
32451         });
32452         
32453         pos.push({
32454             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32455             y : minY + (this.unitWidth + this.gutter) * 2
32456         });
32457         
32458         pos.push({
32459             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32460             y : minY + (this.unitWidth + this.gutter) * 2
32461         });
32462         
32463         pos.push({
32464             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),
32465             y : minY + (this.unitWidth + this.gutter) * 2
32466         });
32467
32468         return pos;
32469         
32470     },
32471     
32472     /**
32473     * remove a Masonry Brick
32474     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
32475     */
32476     removeBrick : function(brick_id)
32477     {
32478         if (!brick_id) {
32479             return;
32480         }
32481         
32482         for (var i = 0; i<this.bricks.length; i++) {
32483             if (this.bricks[i].id == brick_id) {
32484                 this.bricks.splice(i,1);
32485                 this.el.dom.removeChild(Roo.get(brick_id).dom);
32486                 this.initial();
32487             }
32488         }
32489     },
32490     
32491     /**
32492     * adds a Masonry Brick
32493     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32494     */
32495     addBrick : function(cfg)
32496     {
32497         var cn = new Roo.bootstrap.MasonryBrick(cfg);
32498         //this.register(cn);
32499         cn.parentId = this.id;
32500         cn.render(this.el);
32501         return cn;
32502     },
32503     
32504     /**
32505     * register a Masonry Brick
32506     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32507     */
32508     
32509     register : function(brick)
32510     {
32511         this.bricks.push(brick);
32512         brick.masonryId = this.id;
32513     },
32514     
32515     /**
32516     * clear all the Masonry Brick
32517     */
32518     clearAll : function()
32519     {
32520         this.bricks = [];
32521         //this.getChildContainer().dom.innerHTML = "";
32522         this.el.dom.innerHTML = '';
32523     },
32524     
32525     getSelected : function()
32526     {
32527         if (!this.selectedBrick) {
32528             return false;
32529         }
32530         
32531         return this.selectedBrick;
32532     }
32533 });
32534
32535 Roo.apply(Roo.bootstrap.LayoutMasonry, {
32536     
32537     groups: {},
32538      /**
32539     * register a Masonry Layout
32540     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
32541     */
32542     
32543     register : function(layout)
32544     {
32545         this.groups[layout.id] = layout;
32546     },
32547     /**
32548     * fetch a  Masonry Layout based on the masonry layout ID
32549     * @param {string} the masonry layout to add
32550     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
32551     */
32552     
32553     get: function(layout_id) {
32554         if (typeof(this.groups[layout_id]) == 'undefined') {
32555             return false;
32556         }
32557         return this.groups[layout_id] ;
32558     }
32559     
32560     
32561     
32562 });
32563
32564  
32565
32566  /**
32567  *
32568  * This is based on 
32569  * http://masonry.desandro.com
32570  *
32571  * The idea is to render all the bricks based on vertical width...
32572  *
32573  * The original code extends 'outlayer' - we might need to use that....
32574  * 
32575  */
32576
32577
32578 /**
32579  * @class Roo.bootstrap.LayoutMasonryAuto
32580  * @extends Roo.bootstrap.Component
32581  * Bootstrap Layout Masonry class
32582  * 
32583  * @constructor
32584  * Create a new Element
32585  * @param {Object} config The config object
32586  */
32587
32588 Roo.bootstrap.LayoutMasonryAuto = function(config){
32589     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
32590 };
32591
32592 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
32593     
32594       /**
32595      * @cfg {Boolean} isFitWidth  - resize the width..
32596      */   
32597     isFitWidth : false,  // options..
32598     /**
32599      * @cfg {Boolean} isOriginLeft = left align?
32600      */   
32601     isOriginLeft : true,
32602     /**
32603      * @cfg {Boolean} isOriginTop = top align?
32604      */   
32605     isOriginTop : false,
32606     /**
32607      * @cfg {Boolean} isLayoutInstant = no animation?
32608      */   
32609     isLayoutInstant : false, // needed?
32610     /**
32611      * @cfg {Boolean} isResizingContainer = not sure if this is used..
32612      */   
32613     isResizingContainer : true,
32614     /**
32615      * @cfg {Number} columnWidth  width of the columns 
32616      */   
32617     
32618     columnWidth : 0,
32619     
32620     /**
32621      * @cfg {Number} maxCols maximum number of columns
32622      */   
32623     
32624     maxCols: 0,
32625     /**
32626      * @cfg {Number} padHeight padding below box..
32627      */   
32628     
32629     padHeight : 10, 
32630     
32631     /**
32632      * @cfg {Boolean} isAutoInitial defalut true
32633      */   
32634     
32635     isAutoInitial : true, 
32636     
32637     // private?
32638     gutter : 0,
32639     
32640     containerWidth: 0,
32641     initialColumnWidth : 0,
32642     currentSize : null,
32643     
32644     colYs : null, // array.
32645     maxY : 0,
32646     padWidth: 10,
32647     
32648     
32649     tag: 'div',
32650     cls: '',
32651     bricks: null, //CompositeElement
32652     cols : 0, // array?
32653     // element : null, // wrapped now this.el
32654     _isLayoutInited : null, 
32655     
32656     
32657     getAutoCreate : function(){
32658         
32659         var cfg = {
32660             tag: this.tag,
32661             cls: 'blog-masonary-wrapper ' + this.cls,
32662             cn : {
32663                 cls : 'mas-boxes masonary'
32664             }
32665         };
32666         
32667         return cfg;
32668     },
32669     
32670     getChildContainer: function( )
32671     {
32672         if (this.boxesEl) {
32673             return this.boxesEl;
32674         }
32675         
32676         this.boxesEl = this.el.select('.mas-boxes').first();
32677         
32678         return this.boxesEl;
32679     },
32680     
32681     
32682     initEvents : function()
32683     {
32684         var _this = this;
32685         
32686         if(this.isAutoInitial){
32687             Roo.log('hook children rendered');
32688             this.on('childrenrendered', function() {
32689                 Roo.log('children rendered');
32690                 _this.initial();
32691             } ,this);
32692         }
32693         
32694     },
32695     
32696     initial : function()
32697     {
32698         this.reloadItems();
32699
32700         this.currentSize = this.el.getBox(true);
32701
32702         /// was window resize... - let's see if this works..
32703         Roo.EventManager.onWindowResize(this.resize, this); 
32704
32705         if(!this.isAutoInitial){
32706             this.layout();
32707             return;
32708         }
32709         
32710         this.layout.defer(500,this);
32711     },
32712     
32713     reloadItems: function()
32714     {
32715         this.bricks = this.el.select('.masonry-brick', true);
32716         
32717         this.bricks.each(function(b) {
32718             //Roo.log(b.getSize());
32719             if (!b.attr('originalwidth')) {
32720                 b.attr('originalwidth',  b.getSize().width);
32721             }
32722             
32723         });
32724         
32725         Roo.log(this.bricks.elements.length);
32726     },
32727     
32728     resize : function()
32729     {
32730         Roo.log('resize');
32731         var cs = this.el.getBox(true);
32732         
32733         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
32734             Roo.log("no change in with or X");
32735             return;
32736         }
32737         this.currentSize = cs;
32738         this.layout();
32739     },
32740     
32741     layout : function()
32742     {
32743          Roo.log('layout');
32744         this._resetLayout();
32745         //this._manageStamps();
32746       
32747         // don't animate first layout
32748         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
32749         this.layoutItems( isInstant );
32750       
32751         // flag for initalized
32752         this._isLayoutInited = true;
32753     },
32754     
32755     layoutItems : function( isInstant )
32756     {
32757         //var items = this._getItemsForLayout( this.items );
32758         // original code supports filtering layout items.. we just ignore it..
32759         
32760         this._layoutItems( this.bricks , isInstant );
32761       
32762         this._postLayout();
32763     },
32764     _layoutItems : function ( items , isInstant)
32765     {
32766        //this.fireEvent( 'layout', this, items );
32767     
32768
32769         if ( !items || !items.elements.length ) {
32770           // no items, emit event with empty array
32771             return;
32772         }
32773
32774         var queue = [];
32775         items.each(function(item) {
32776             Roo.log("layout item");
32777             Roo.log(item);
32778             // get x/y object from method
32779             var position = this._getItemLayoutPosition( item );
32780             // enqueue
32781             position.item = item;
32782             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
32783             queue.push( position );
32784         }, this);
32785       
32786         this._processLayoutQueue( queue );
32787     },
32788     /** Sets position of item in DOM
32789     * @param {Element} item
32790     * @param {Number} x - horizontal position
32791     * @param {Number} y - vertical position
32792     * @param {Boolean} isInstant - disables transitions
32793     */
32794     _processLayoutQueue : function( queue )
32795     {
32796         for ( var i=0, len = queue.length; i < len; i++ ) {
32797             var obj = queue[i];
32798             obj.item.position('absolute');
32799             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
32800         }
32801     },
32802       
32803     
32804     /**
32805     * Any logic you want to do after each layout,
32806     * i.e. size the container
32807     */
32808     _postLayout : function()
32809     {
32810         this.resizeContainer();
32811     },
32812     
32813     resizeContainer : function()
32814     {
32815         if ( !this.isResizingContainer ) {
32816             return;
32817         }
32818         var size = this._getContainerSize();
32819         if ( size ) {
32820             this.el.setSize(size.width,size.height);
32821             this.boxesEl.setSize(size.width,size.height);
32822         }
32823     },
32824     
32825     
32826     
32827     _resetLayout : function()
32828     {
32829         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
32830         this.colWidth = this.el.getWidth();
32831         //this.gutter = this.el.getWidth(); 
32832         
32833         this.measureColumns();
32834
32835         // reset column Y
32836         var i = this.cols;
32837         this.colYs = [];
32838         while (i--) {
32839             this.colYs.push( 0 );
32840         }
32841     
32842         this.maxY = 0;
32843     },
32844
32845     measureColumns : function()
32846     {
32847         this.getContainerWidth();
32848       // if columnWidth is 0, default to outerWidth of first item
32849         if ( !this.columnWidth ) {
32850             var firstItem = this.bricks.first();
32851             Roo.log(firstItem);
32852             this.columnWidth  = this.containerWidth;
32853             if (firstItem && firstItem.attr('originalwidth') ) {
32854                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
32855             }
32856             // columnWidth fall back to item of first element
32857             Roo.log("set column width?");
32858                         this.initialColumnWidth = this.columnWidth  ;
32859
32860             // if first elem has no width, default to size of container
32861             
32862         }
32863         
32864         
32865         if (this.initialColumnWidth) {
32866             this.columnWidth = this.initialColumnWidth;
32867         }
32868         
32869         
32870             
32871         // column width is fixed at the top - however if container width get's smaller we should
32872         // reduce it...
32873         
32874         // this bit calcs how man columns..
32875             
32876         var columnWidth = this.columnWidth += this.gutter;
32877       
32878         // calculate columns
32879         var containerWidth = this.containerWidth + this.gutter;
32880         
32881         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
32882         // fix rounding errors, typically with gutters
32883         var excess = columnWidth - containerWidth % columnWidth;
32884         
32885         
32886         // if overshoot is less than a pixel, round up, otherwise floor it
32887         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
32888         cols = Math[ mathMethod ]( cols );
32889         this.cols = Math.max( cols, 1 );
32890         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
32891         
32892          // padding positioning..
32893         var totalColWidth = this.cols * this.columnWidth;
32894         var padavail = this.containerWidth - totalColWidth;
32895         // so for 2 columns - we need 3 'pads'
32896         
32897         var padNeeded = (1+this.cols) * this.padWidth;
32898         
32899         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
32900         
32901         this.columnWidth += padExtra
32902         //this.padWidth = Math.floor(padavail /  ( this.cols));
32903         
32904         // adjust colum width so that padding is fixed??
32905         
32906         // we have 3 columns ... total = width * 3
32907         // we have X left over... that should be used by 
32908         
32909         //if (this.expandC) {
32910             
32911         //}
32912         
32913         
32914         
32915     },
32916     
32917     getContainerWidth : function()
32918     {
32919        /* // container is parent if fit width
32920         var container = this.isFitWidth ? this.element.parentNode : this.element;
32921         // check that this.size and size are there
32922         // IE8 triggers resize on body size change, so they might not be
32923         
32924         var size = getSize( container );  //FIXME
32925         this.containerWidth = size && size.innerWidth; //FIXME
32926         */
32927          
32928         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
32929         
32930     },
32931     
32932     _getItemLayoutPosition : function( item )  // what is item?
32933     {
32934         // we resize the item to our columnWidth..
32935       
32936         item.setWidth(this.columnWidth);
32937         item.autoBoxAdjust  = false;
32938         
32939         var sz = item.getSize();
32940  
32941         // how many columns does this brick span
32942         var remainder = this.containerWidth % this.columnWidth;
32943         
32944         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
32945         // round if off by 1 pixel, otherwise use ceil
32946         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
32947         colSpan = Math.min( colSpan, this.cols );
32948         
32949         // normally this should be '1' as we dont' currently allow multi width columns..
32950         
32951         var colGroup = this._getColGroup( colSpan );
32952         // get the minimum Y value from the columns
32953         var minimumY = Math.min.apply( Math, colGroup );
32954         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32955         
32956         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
32957          
32958         // position the brick
32959         var position = {
32960             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
32961             y: this.currentSize.y + minimumY + this.padHeight
32962         };
32963         
32964         Roo.log(position);
32965         // apply setHeight to necessary columns
32966         var setHeight = minimumY + sz.height + this.padHeight;
32967         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32968         
32969         var setSpan = this.cols + 1 - colGroup.length;
32970         for ( var i = 0; i < setSpan; i++ ) {
32971           this.colYs[ shortColIndex + i ] = setHeight ;
32972         }
32973       
32974         return position;
32975     },
32976     
32977     /**
32978      * @param {Number} colSpan - number of columns the element spans
32979      * @returns {Array} colGroup
32980      */
32981     _getColGroup : function( colSpan )
32982     {
32983         if ( colSpan < 2 ) {
32984           // if brick spans only one column, use all the column Ys
32985           return this.colYs;
32986         }
32987       
32988         var colGroup = [];
32989         // how many different places could this brick fit horizontally
32990         var groupCount = this.cols + 1 - colSpan;
32991         // for each group potential horizontal position
32992         for ( var i = 0; i < groupCount; i++ ) {
32993           // make an array of colY values for that one group
32994           var groupColYs = this.colYs.slice( i, i + colSpan );
32995           // and get the max value of the array
32996           colGroup[i] = Math.max.apply( Math, groupColYs );
32997         }
32998         return colGroup;
32999     },
33000     /*
33001     _manageStamp : function( stamp )
33002     {
33003         var stampSize =  stamp.getSize();
33004         var offset = stamp.getBox();
33005         // get the columns that this stamp affects
33006         var firstX = this.isOriginLeft ? offset.x : offset.right;
33007         var lastX = firstX + stampSize.width;
33008         var firstCol = Math.floor( firstX / this.columnWidth );
33009         firstCol = Math.max( 0, firstCol );
33010         
33011         var lastCol = Math.floor( lastX / this.columnWidth );
33012         // lastCol should not go over if multiple of columnWidth #425
33013         lastCol -= lastX % this.columnWidth ? 0 : 1;
33014         lastCol = Math.min( this.cols - 1, lastCol );
33015         
33016         // set colYs to bottom of the stamp
33017         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
33018             stampSize.height;
33019             
33020         for ( var i = firstCol; i <= lastCol; i++ ) {
33021           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
33022         }
33023     },
33024     */
33025     
33026     _getContainerSize : function()
33027     {
33028         this.maxY = Math.max.apply( Math, this.colYs );
33029         var size = {
33030             height: this.maxY
33031         };
33032       
33033         if ( this.isFitWidth ) {
33034             size.width = this._getContainerFitWidth();
33035         }
33036       
33037         return size;
33038     },
33039     
33040     _getContainerFitWidth : function()
33041     {
33042         var unusedCols = 0;
33043         // count unused columns
33044         var i = this.cols;
33045         while ( --i ) {
33046           if ( this.colYs[i] !== 0 ) {
33047             break;
33048           }
33049           unusedCols++;
33050         }
33051         // fit container to columns that have been used
33052         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
33053     },
33054     
33055     needsResizeLayout : function()
33056     {
33057         var previousWidth = this.containerWidth;
33058         this.getContainerWidth();
33059         return previousWidth !== this.containerWidth;
33060     }
33061  
33062 });
33063
33064  
33065
33066  /*
33067  * - LGPL
33068  *
33069  * element
33070  * 
33071  */
33072
33073 /**
33074  * @class Roo.bootstrap.MasonryBrick
33075  * @extends Roo.bootstrap.Component
33076  * Bootstrap MasonryBrick class
33077  * 
33078  * @constructor
33079  * Create a new MasonryBrick
33080  * @param {Object} config The config object
33081  */
33082
33083 Roo.bootstrap.MasonryBrick = function(config){
33084     
33085     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
33086     
33087     Roo.bootstrap.MasonryBrick.register(this);
33088     
33089     this.addEvents({
33090         // raw events
33091         /**
33092          * @event click
33093          * When a MasonryBrick is clcik
33094          * @param {Roo.bootstrap.MasonryBrick} this
33095          * @param {Roo.EventObject} e
33096          */
33097         "click" : true
33098     });
33099 };
33100
33101 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
33102     
33103     /**
33104      * @cfg {String} title
33105      */   
33106     title : '',
33107     /**
33108      * @cfg {String} html
33109      */   
33110     html : '',
33111     /**
33112      * @cfg {String} bgimage
33113      */   
33114     bgimage : '',
33115     /**
33116      * @cfg {String} videourl
33117      */   
33118     videourl : '',
33119     /**
33120      * @cfg {String} cls
33121      */   
33122     cls : '',
33123     /**
33124      * @cfg {String} href
33125      */   
33126     href : '',
33127     /**
33128      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
33129      */   
33130     size : 'xs',
33131     
33132     /**
33133      * @cfg {String} placetitle (center|bottom)
33134      */   
33135     placetitle : '',
33136     
33137     /**
33138      * @cfg {Boolean} isFitContainer defalut true
33139      */   
33140     isFitContainer : true, 
33141     
33142     /**
33143      * @cfg {Boolean} preventDefault defalut false
33144      */   
33145     preventDefault : false, 
33146     
33147     /**
33148      * @cfg {Boolean} inverse defalut false
33149      */   
33150     maskInverse : false, 
33151     
33152     getAutoCreate : function()
33153     {
33154         if(!this.isFitContainer){
33155             return this.getSplitAutoCreate();
33156         }
33157         
33158         var cls = 'masonry-brick masonry-brick-full';
33159         
33160         if(this.href.length){
33161             cls += ' masonry-brick-link';
33162         }
33163         
33164         if(this.bgimage.length){
33165             cls += ' masonry-brick-image';
33166         }
33167         
33168         if(this.maskInverse){
33169             cls += ' mask-inverse';
33170         }
33171         
33172         if(!this.html.length && !this.maskInverse && !this.videourl.length){
33173             cls += ' enable-mask';
33174         }
33175         
33176         if(this.size){
33177             cls += ' masonry-' + this.size + '-brick';
33178         }
33179         
33180         if(this.placetitle.length){
33181             
33182             switch (this.placetitle) {
33183                 case 'center' :
33184                     cls += ' masonry-center-title';
33185                     break;
33186                 case 'bottom' :
33187                     cls += ' masonry-bottom-title';
33188                     break;
33189                 default:
33190                     break;
33191             }
33192             
33193         } else {
33194             if(!this.html.length && !this.bgimage.length){
33195                 cls += ' masonry-center-title';
33196             }
33197
33198             if(!this.html.length && this.bgimage.length){
33199                 cls += ' masonry-bottom-title';
33200             }
33201         }
33202         
33203         if(this.cls){
33204             cls += ' ' + this.cls;
33205         }
33206         
33207         var cfg = {
33208             tag: (this.href.length) ? 'a' : 'div',
33209             cls: cls,
33210             cn: [
33211                 {
33212                     tag: 'div',
33213                     cls: 'masonry-brick-mask'
33214                 },
33215                 {
33216                     tag: 'div',
33217                     cls: 'masonry-brick-paragraph',
33218                     cn: []
33219                 }
33220             ]
33221         };
33222         
33223         if(this.href.length){
33224             cfg.href = this.href;
33225         }
33226         
33227         var cn = cfg.cn[1].cn;
33228         
33229         if(this.title.length){
33230             cn.push({
33231                 tag: 'h4',
33232                 cls: 'masonry-brick-title',
33233                 html: this.title
33234             });
33235         }
33236         
33237         if(this.html.length){
33238             cn.push({
33239                 tag: 'p',
33240                 cls: 'masonry-brick-text',
33241                 html: this.html
33242             });
33243         }
33244         
33245         if (!this.title.length && !this.html.length) {
33246             cfg.cn[1].cls += ' hide';
33247         }
33248         
33249         if(this.bgimage.length){
33250             cfg.cn.push({
33251                 tag: 'img',
33252                 cls: 'masonry-brick-image-view',
33253                 src: this.bgimage
33254             });
33255         }
33256         
33257         if(this.videourl.length){
33258             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33259             // youtube support only?
33260             cfg.cn.push({
33261                 tag: 'iframe',
33262                 cls: 'masonry-brick-image-view',
33263                 src: vurl,
33264                 frameborder : 0,
33265                 allowfullscreen : true
33266             });
33267         }
33268         
33269         return cfg;
33270         
33271     },
33272     
33273     getSplitAutoCreate : function()
33274     {
33275         var cls = 'masonry-brick masonry-brick-split';
33276         
33277         if(this.href.length){
33278             cls += ' masonry-brick-link';
33279         }
33280         
33281         if(this.bgimage.length){
33282             cls += ' masonry-brick-image';
33283         }
33284         
33285         if(this.size){
33286             cls += ' masonry-' + this.size + '-brick';
33287         }
33288         
33289         switch (this.placetitle) {
33290             case 'center' :
33291                 cls += ' masonry-center-title';
33292                 break;
33293             case 'bottom' :
33294                 cls += ' masonry-bottom-title';
33295                 break;
33296             default:
33297                 if(!this.bgimage.length){
33298                     cls += ' masonry-center-title';
33299                 }
33300
33301                 if(this.bgimage.length){
33302                     cls += ' masonry-bottom-title';
33303                 }
33304                 break;
33305         }
33306         
33307         if(this.cls){
33308             cls += ' ' + this.cls;
33309         }
33310         
33311         var cfg = {
33312             tag: (this.href.length) ? 'a' : 'div',
33313             cls: cls,
33314             cn: [
33315                 {
33316                     tag: 'div',
33317                     cls: 'masonry-brick-split-head',
33318                     cn: [
33319                         {
33320                             tag: 'div',
33321                             cls: 'masonry-brick-paragraph',
33322                             cn: []
33323                         }
33324                     ]
33325                 },
33326                 {
33327                     tag: 'div',
33328                     cls: 'masonry-brick-split-body',
33329                     cn: []
33330                 }
33331             ]
33332         };
33333         
33334         if(this.href.length){
33335             cfg.href = this.href;
33336         }
33337         
33338         if(this.title.length){
33339             cfg.cn[0].cn[0].cn.push({
33340                 tag: 'h4',
33341                 cls: 'masonry-brick-title',
33342                 html: this.title
33343             });
33344         }
33345         
33346         if(this.html.length){
33347             cfg.cn[1].cn.push({
33348                 tag: 'p',
33349                 cls: 'masonry-brick-text',
33350                 html: this.html
33351             });
33352         }
33353
33354         if(this.bgimage.length){
33355             cfg.cn[0].cn.push({
33356                 tag: 'img',
33357                 cls: 'masonry-brick-image-view',
33358                 src: this.bgimage
33359             });
33360         }
33361         
33362         if(this.videourl.length){
33363             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33364             // youtube support only?
33365             cfg.cn[0].cn.cn.push({
33366                 tag: 'iframe',
33367                 cls: 'masonry-brick-image-view',
33368                 src: vurl,
33369                 frameborder : 0,
33370                 allowfullscreen : true
33371             });
33372         }
33373         
33374         return cfg;
33375     },
33376     
33377     initEvents: function() 
33378     {
33379         switch (this.size) {
33380             case 'xs' :
33381                 this.x = 1;
33382                 this.y = 1;
33383                 break;
33384             case 'sm' :
33385                 this.x = 2;
33386                 this.y = 2;
33387                 break;
33388             case 'md' :
33389             case 'md-left' :
33390             case 'md-right' :
33391                 this.x = 3;
33392                 this.y = 3;
33393                 break;
33394             case 'tall' :
33395                 this.x = 2;
33396                 this.y = 3;
33397                 break;
33398             case 'wide' :
33399                 this.x = 3;
33400                 this.y = 2;
33401                 break;
33402             case 'wide-thin' :
33403                 this.x = 3;
33404                 this.y = 1;
33405                 break;
33406                         
33407             default :
33408                 break;
33409         }
33410         
33411         if(Roo.isTouch){
33412             this.el.on('touchstart', this.onTouchStart, this);
33413             this.el.on('touchmove', this.onTouchMove, this);
33414             this.el.on('touchend', this.onTouchEnd, this);
33415             this.el.on('contextmenu', this.onContextMenu, this);
33416         } else {
33417             this.el.on('mouseenter'  ,this.enter, this);
33418             this.el.on('mouseleave', this.leave, this);
33419             this.el.on('click', this.onClick, this);
33420         }
33421         
33422         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
33423             this.parent().bricks.push(this);   
33424         }
33425         
33426     },
33427     
33428     onClick: function(e, el)
33429     {
33430         var time = this.endTimer - this.startTimer;
33431         // Roo.log(e.preventDefault());
33432         if(Roo.isTouch){
33433             if(time > 1000){
33434                 e.preventDefault();
33435                 return;
33436             }
33437         }
33438         
33439         if(!this.preventDefault){
33440             return;
33441         }
33442         
33443         e.preventDefault();
33444         
33445         if (this.activeClass != '') {
33446             this.selectBrick();
33447         }
33448         
33449         this.fireEvent('click', this, e);
33450     },
33451     
33452     enter: function(e, el)
33453     {
33454         e.preventDefault();
33455         
33456         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
33457             return;
33458         }
33459         
33460         if(this.bgimage.length && this.html.length){
33461             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33462         }
33463     },
33464     
33465     leave: function(e, el)
33466     {
33467         e.preventDefault();
33468         
33469         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
33470             return;
33471         }
33472         
33473         if(this.bgimage.length && this.html.length){
33474             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33475         }
33476     },
33477     
33478     onTouchStart: function(e, el)
33479     {
33480 //        e.preventDefault();
33481         
33482         this.touchmoved = false;
33483         
33484         if(!this.isFitContainer){
33485             return;
33486         }
33487         
33488         if(!this.bgimage.length || !this.html.length){
33489             return;
33490         }
33491         
33492         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33493         
33494         this.timer = new Date().getTime();
33495         
33496     },
33497     
33498     onTouchMove: function(e, el)
33499     {
33500         this.touchmoved = true;
33501     },
33502     
33503     onContextMenu : function(e,el)
33504     {
33505         e.preventDefault();
33506         e.stopPropagation();
33507         return false;
33508     },
33509     
33510     onTouchEnd: function(e, el)
33511     {
33512 //        e.preventDefault();
33513         
33514         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
33515         
33516             this.leave(e,el);
33517             
33518             return;
33519         }
33520         
33521         if(!this.bgimage.length || !this.html.length){
33522             
33523             if(this.href.length){
33524                 window.location.href = this.href;
33525             }
33526             
33527             return;
33528         }
33529         
33530         if(!this.isFitContainer){
33531             return;
33532         }
33533         
33534         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33535         
33536         window.location.href = this.href;
33537     },
33538     
33539     //selection on single brick only
33540     selectBrick : function() {
33541         
33542         if (!this.parentId) {
33543             return;
33544         }
33545         
33546         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
33547         var index = m.selectedBrick.indexOf(this.id);
33548         
33549         if ( index > -1) {
33550             m.selectedBrick.splice(index,1);
33551             this.el.removeClass(this.activeClass);
33552             return;
33553         }
33554         
33555         for(var i = 0; i < m.selectedBrick.length; i++) {
33556             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
33557             b.el.removeClass(b.activeClass);
33558         }
33559         
33560         m.selectedBrick = [];
33561         
33562         m.selectedBrick.push(this.id);
33563         this.el.addClass(this.activeClass);
33564         return;
33565     },
33566     
33567     isSelected : function(){
33568         return this.el.hasClass(this.activeClass);
33569         
33570     }
33571 });
33572
33573 Roo.apply(Roo.bootstrap.MasonryBrick, {
33574     
33575     //groups: {},
33576     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
33577      /**
33578     * register a Masonry Brick
33579     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
33580     */
33581     
33582     register : function(brick)
33583     {
33584         //this.groups[brick.id] = brick;
33585         this.groups.add(brick.id, brick);
33586     },
33587     /**
33588     * fetch a  masonry brick based on the masonry brick ID
33589     * @param {string} the masonry brick to add
33590     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
33591     */
33592     
33593     get: function(brick_id) 
33594     {
33595         // if (typeof(this.groups[brick_id]) == 'undefined') {
33596         //     return false;
33597         // }
33598         // return this.groups[brick_id] ;
33599         
33600         if(this.groups.key(brick_id)) {
33601             return this.groups.key(brick_id);
33602         }
33603         
33604         return false;
33605     }
33606     
33607     
33608     
33609 });
33610
33611  /*
33612  * - LGPL
33613  *
33614  * element
33615  * 
33616  */
33617
33618 /**
33619  * @class Roo.bootstrap.Brick
33620  * @extends Roo.bootstrap.Component
33621  * Bootstrap Brick class
33622  * 
33623  * @constructor
33624  * Create a new Brick
33625  * @param {Object} config The config object
33626  */
33627
33628 Roo.bootstrap.Brick = function(config){
33629     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
33630     
33631     this.addEvents({
33632         // raw events
33633         /**
33634          * @event click
33635          * When a Brick is click
33636          * @param {Roo.bootstrap.Brick} this
33637          * @param {Roo.EventObject} e
33638          */
33639         "click" : true
33640     });
33641 };
33642
33643 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
33644     
33645     /**
33646      * @cfg {String} title
33647      */   
33648     title : '',
33649     /**
33650      * @cfg {String} html
33651      */   
33652     html : '',
33653     /**
33654      * @cfg {String} bgimage
33655      */   
33656     bgimage : '',
33657     /**
33658      * @cfg {String} cls
33659      */   
33660     cls : '',
33661     /**
33662      * @cfg {String} href
33663      */   
33664     href : '',
33665     /**
33666      * @cfg {String} video
33667      */   
33668     video : '',
33669     /**
33670      * @cfg {Boolean} square
33671      */   
33672     square : true,
33673     
33674     getAutoCreate : function()
33675     {
33676         var cls = 'roo-brick';
33677         
33678         if(this.href.length){
33679             cls += ' roo-brick-link';
33680         }
33681         
33682         if(this.bgimage.length){
33683             cls += ' roo-brick-image';
33684         }
33685         
33686         if(!this.html.length && !this.bgimage.length){
33687             cls += ' roo-brick-center-title';
33688         }
33689         
33690         if(!this.html.length && this.bgimage.length){
33691             cls += ' roo-brick-bottom-title';
33692         }
33693         
33694         if(this.cls){
33695             cls += ' ' + this.cls;
33696         }
33697         
33698         var cfg = {
33699             tag: (this.href.length) ? 'a' : 'div',
33700             cls: cls,
33701             cn: [
33702                 {
33703                     tag: 'div',
33704                     cls: 'roo-brick-paragraph',
33705                     cn: []
33706                 }
33707             ]
33708         };
33709         
33710         if(this.href.length){
33711             cfg.href = this.href;
33712         }
33713         
33714         var cn = cfg.cn[0].cn;
33715         
33716         if(this.title.length){
33717             cn.push({
33718                 tag: 'h4',
33719                 cls: 'roo-brick-title',
33720                 html: this.title
33721             });
33722         }
33723         
33724         if(this.html.length){
33725             cn.push({
33726                 tag: 'p',
33727                 cls: 'roo-brick-text',
33728                 html: this.html
33729             });
33730         } else {
33731             cn.cls += ' hide';
33732         }
33733         
33734         if(this.bgimage.length){
33735             cfg.cn.push({
33736                 tag: 'img',
33737                 cls: 'roo-brick-image-view',
33738                 src: this.bgimage
33739             });
33740         }
33741         
33742         return cfg;
33743     },
33744     
33745     initEvents: function() 
33746     {
33747         if(this.title.length || this.html.length){
33748             this.el.on('mouseenter'  ,this.enter, this);
33749             this.el.on('mouseleave', this.leave, this);
33750         }
33751         
33752         Roo.EventManager.onWindowResize(this.resize, this); 
33753         
33754         if(this.bgimage.length){
33755             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
33756             this.imageEl.on('load', this.onImageLoad, this);
33757             return;
33758         }
33759         
33760         this.resize();
33761     },
33762     
33763     onImageLoad : function()
33764     {
33765         this.resize();
33766     },
33767     
33768     resize : function()
33769     {
33770         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
33771         
33772         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
33773         
33774         if(this.bgimage.length){
33775             var image = this.el.select('.roo-brick-image-view', true).first();
33776             
33777             image.setWidth(paragraph.getWidth());
33778             
33779             if(this.square){
33780                 image.setHeight(paragraph.getWidth());
33781             }
33782             
33783             this.el.setHeight(image.getHeight());
33784             paragraph.setHeight(image.getHeight());
33785             
33786         }
33787         
33788     },
33789     
33790     enter: function(e, el)
33791     {
33792         e.preventDefault();
33793         
33794         if(this.bgimage.length){
33795             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
33796             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
33797         }
33798     },
33799     
33800     leave: function(e, el)
33801     {
33802         e.preventDefault();
33803         
33804         if(this.bgimage.length){
33805             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
33806             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
33807         }
33808     }
33809     
33810 });
33811
33812  
33813
33814  /*
33815  * - LGPL
33816  *
33817  * Number field 
33818  */
33819
33820 /**
33821  * @class Roo.bootstrap.NumberField
33822  * @extends Roo.bootstrap.Input
33823  * Bootstrap NumberField class
33824  * 
33825  * 
33826  * 
33827  * 
33828  * @constructor
33829  * Create a new NumberField
33830  * @param {Object} config The config object
33831  */
33832
33833 Roo.bootstrap.NumberField = function(config){
33834     Roo.bootstrap.NumberField.superclass.constructor.call(this, config);
33835 };
33836
33837 Roo.extend(Roo.bootstrap.NumberField, Roo.bootstrap.Input, {
33838     
33839     /**
33840      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
33841      */
33842     allowDecimals : true,
33843     /**
33844      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
33845      */
33846     decimalSeparator : ".",
33847     /**
33848      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
33849      */
33850     decimalPrecision : 2,
33851     /**
33852      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
33853      */
33854     allowNegative : true,
33855     
33856     /**
33857      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
33858      */
33859     allowZero: true,
33860     /**
33861      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
33862      */
33863     minValue : Number.NEGATIVE_INFINITY,
33864     /**
33865      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
33866      */
33867     maxValue : Number.MAX_VALUE,
33868     /**
33869      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
33870      */
33871     minText : "The minimum value for this field is {0}",
33872     /**
33873      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
33874      */
33875     maxText : "The maximum value for this field is {0}",
33876     /**
33877      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
33878      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
33879      */
33880     nanText : "{0} is not a valid number",
33881     /**
33882      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
33883      */
33884     thousandsDelimiter : false,
33885     /**
33886      * @cfg {String} valueAlign alignment of value
33887      */
33888     valueAlign : "left",
33889
33890     getAutoCreate : function()
33891     {
33892         var hiddenInput = {
33893             tag: 'input',
33894             type: 'hidden',
33895             id: Roo.id(),
33896             cls: 'hidden-number-input'
33897         };
33898         
33899         if (this.name) {
33900             hiddenInput.name = this.name;
33901         }
33902         
33903         this.name = '';
33904         
33905         var cfg = Roo.bootstrap.NumberField.superclass.getAutoCreate.call(this);
33906         
33907         this.name = hiddenInput.name;
33908         
33909         if(cfg.cn.length > 0) {
33910             cfg.cn.push(hiddenInput);
33911         }
33912         
33913         return cfg;
33914     },
33915
33916     // private
33917     initEvents : function()
33918     {   
33919         Roo.bootstrap.NumberField.superclass.initEvents.call(this);
33920         
33921         var allowed = "0123456789";
33922         
33923         if(this.allowDecimals){
33924             allowed += this.decimalSeparator;
33925         }
33926         
33927         if(this.allowNegative){
33928             allowed += "-";
33929         }
33930         
33931         if(this.thousandsDelimiter) {
33932             allowed += ",";
33933         }
33934         
33935         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
33936         
33937         var keyPress = function(e){
33938             
33939             var k = e.getKey();
33940             
33941             var c = e.getCharCode();
33942             
33943             if(
33944                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
33945                     allowed.indexOf(String.fromCharCode(c)) === -1
33946             ){
33947                 e.stopEvent();
33948                 return;
33949             }
33950             
33951             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
33952                 return;
33953             }
33954             
33955             if(allowed.indexOf(String.fromCharCode(c)) === -1){
33956                 e.stopEvent();
33957             }
33958         };
33959         
33960         this.el.on("keypress", keyPress, this);
33961     },
33962     
33963     validateValue : function(value)
33964     {
33965         
33966         if(!Roo.bootstrap.NumberField.superclass.validateValue.call(this, value)){
33967             return false;
33968         }
33969         
33970         var num = this.parseValue(value);
33971         
33972         if(isNaN(num)){
33973             this.markInvalid(String.format(this.nanText, value));
33974             return false;
33975         }
33976         
33977         if(num < this.minValue){
33978             this.markInvalid(String.format(this.minText, this.minValue));
33979             return false;
33980         }
33981         
33982         if(num > this.maxValue){
33983             this.markInvalid(String.format(this.maxText, this.maxValue));
33984             return false;
33985         }
33986         
33987         return true;
33988     },
33989
33990     getValue : function()
33991     {
33992         var v = this.hiddenEl().getValue();
33993         
33994         return this.fixPrecision(this.parseValue(v));
33995     },
33996
33997     parseValue : function(value)
33998     {
33999         if(this.thousandsDelimiter) {
34000             value += "";
34001             r = new RegExp(",", "g");
34002             value = value.replace(r, "");
34003         }
34004         
34005         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
34006         return isNaN(value) ? '' : value;
34007     },
34008
34009     fixPrecision : function(value)
34010     {
34011         if(this.thousandsDelimiter) {
34012             value += "";
34013             r = new RegExp(",", "g");
34014             value = value.replace(r, "");
34015         }
34016         
34017         var nan = isNaN(value);
34018         
34019         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
34020             return nan ? '' : value;
34021         }
34022         return parseFloat(value).toFixed(this.decimalPrecision);
34023     },
34024
34025     setValue : function(v)
34026     {
34027         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
34028         
34029         this.value = v;
34030         
34031         if(this.rendered){
34032             
34033             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
34034             
34035             this.inputEl().dom.value = (v == '') ? '' :
34036                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
34037             
34038             if(!this.allowZero && v === '0') {
34039                 this.hiddenEl().dom.value = '';
34040                 this.inputEl().dom.value = '';
34041             }
34042             
34043             this.validate();
34044         }
34045     },
34046
34047     decimalPrecisionFcn : function(v)
34048     {
34049         return Math.floor(v);
34050     },
34051
34052     beforeBlur : function()
34053     {
34054         var v = this.parseValue(this.getRawValue());
34055         
34056         if(v || v === 0 || v === ''){
34057             this.setValue(v);
34058         }
34059     },
34060     
34061     hiddenEl : function()
34062     {
34063         return this.el.select('input.hidden-number-input',true).first();
34064     }
34065     
34066 });
34067
34068  
34069
34070 /*
34071 * Licence: LGPL
34072 */
34073
34074 /**
34075  * @class Roo.bootstrap.DocumentSlider
34076  * @extends Roo.bootstrap.Component
34077  * Bootstrap DocumentSlider class
34078  * 
34079  * @constructor
34080  * Create a new DocumentViewer
34081  * @param {Object} config The config object
34082  */
34083
34084 Roo.bootstrap.DocumentSlider = function(config){
34085     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
34086     
34087     this.files = [];
34088     
34089     this.addEvents({
34090         /**
34091          * @event initial
34092          * Fire after initEvent
34093          * @param {Roo.bootstrap.DocumentSlider} this
34094          */
34095         "initial" : true,
34096         /**
34097          * @event update
34098          * Fire after update
34099          * @param {Roo.bootstrap.DocumentSlider} this
34100          */
34101         "update" : true,
34102         /**
34103          * @event click
34104          * Fire after click
34105          * @param {Roo.bootstrap.DocumentSlider} this
34106          */
34107         "click" : true
34108     });
34109 };
34110
34111 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
34112     
34113     files : false,
34114     
34115     indicator : 0,
34116     
34117     getAutoCreate : function()
34118     {
34119         var cfg = {
34120             tag : 'div',
34121             cls : 'roo-document-slider',
34122             cn : [
34123                 {
34124                     tag : 'div',
34125                     cls : 'roo-document-slider-header',
34126                     cn : [
34127                         {
34128                             tag : 'div',
34129                             cls : 'roo-document-slider-header-title'
34130                         }
34131                     ]
34132                 },
34133                 {
34134                     tag : 'div',
34135                     cls : 'roo-document-slider-body',
34136                     cn : [
34137                         {
34138                             tag : 'div',
34139                             cls : 'roo-document-slider-prev',
34140                             cn : [
34141                                 {
34142                                     tag : 'i',
34143                                     cls : 'fa fa-chevron-left'
34144                                 }
34145                             ]
34146                         },
34147                         {
34148                             tag : 'div',
34149                             cls : 'roo-document-slider-thumb',
34150                             cn : [
34151                                 {
34152                                     tag : 'img',
34153                                     cls : 'roo-document-slider-image'
34154                                 }
34155                             ]
34156                         },
34157                         {
34158                             tag : 'div',
34159                             cls : 'roo-document-slider-next',
34160                             cn : [
34161                                 {
34162                                     tag : 'i',
34163                                     cls : 'fa fa-chevron-right'
34164                                 }
34165                             ]
34166                         }
34167                     ]
34168                 }
34169             ]
34170         };
34171         
34172         return cfg;
34173     },
34174     
34175     initEvents : function()
34176     {
34177         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
34178         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
34179         
34180         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
34181         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
34182         
34183         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
34184         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
34185         
34186         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
34187         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
34188         
34189         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
34190         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
34191         
34192         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
34193         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34194         
34195         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
34196         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34197         
34198         this.thumbEl.on('click', this.onClick, this);
34199         
34200         this.prevIndicator.on('click', this.prev, this);
34201         
34202         this.nextIndicator.on('click', this.next, this);
34203         
34204     },
34205     
34206     initial : function()
34207     {
34208         if(this.files.length){
34209             this.indicator = 1;
34210             this.update()
34211         }
34212         
34213         this.fireEvent('initial', this);
34214     },
34215     
34216     update : function()
34217     {
34218         this.imageEl.attr('src', this.files[this.indicator - 1]);
34219         
34220         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
34221         
34222         this.prevIndicator.show();
34223         
34224         if(this.indicator == 1){
34225             this.prevIndicator.hide();
34226         }
34227         
34228         this.nextIndicator.show();
34229         
34230         if(this.indicator == this.files.length){
34231             this.nextIndicator.hide();
34232         }
34233         
34234         this.thumbEl.scrollTo('top');
34235         
34236         this.fireEvent('update', this);
34237     },
34238     
34239     onClick : function(e)
34240     {
34241         e.preventDefault();
34242         
34243         this.fireEvent('click', this);
34244     },
34245     
34246     prev : function(e)
34247     {
34248         e.preventDefault();
34249         
34250         this.indicator = Math.max(1, this.indicator - 1);
34251         
34252         this.update();
34253     },
34254     
34255     next : function(e)
34256     {
34257         e.preventDefault();
34258         
34259         this.indicator = Math.min(this.files.length, this.indicator + 1);
34260         
34261         this.update();
34262     }
34263 });
34264 /*
34265  * - LGPL
34266  *
34267  * RadioSet
34268  *
34269  *
34270  */
34271
34272 /**
34273  * @class Roo.bootstrap.RadioSet
34274  * @extends Roo.bootstrap.Input
34275  * Bootstrap RadioSet class
34276  * @cfg {String} indicatorpos (left|right) default left
34277  * @cfg {Boolean} inline (true|false) inline the element (default true)
34278  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
34279  * @constructor
34280  * Create a new RadioSet
34281  * @param {Object} config The config object
34282  */
34283
34284 Roo.bootstrap.RadioSet = function(config){
34285     
34286     Roo.bootstrap.RadioSet.superclass.constructor.call(this, config);
34287     
34288     this.radioes = [];
34289     
34290     Roo.bootstrap.RadioSet.register(this);
34291     
34292     this.addEvents({
34293         /**
34294         * @event check
34295         * Fires when the element is checked or unchecked.
34296         * @param {Roo.bootstrap.RadioSet} this This radio
34297         * @param {Roo.bootstrap.Radio} item The checked item
34298         */
34299        check : true,
34300        /**
34301         * @event click
34302         * Fires when the element is click.
34303         * @param {Roo.bootstrap.RadioSet} this This radio set
34304         * @param {Roo.bootstrap.Radio} item The checked item
34305         * @param {Roo.EventObject} e The event object
34306         */
34307        click : true
34308     });
34309     
34310 };
34311
34312 Roo.extend(Roo.bootstrap.RadioSet, Roo.bootstrap.Input,  {
34313
34314     radioes : false,
34315     
34316     inline : true,
34317     
34318     weight : '',
34319     
34320     indicatorpos : 'left',
34321     
34322     getAutoCreate : function()
34323     {
34324         var label = {
34325             tag : 'label',
34326             cls : 'roo-radio-set-label',
34327             cn : [
34328                 {
34329                     tag : 'span',
34330                     html : this.fieldLabel
34331                 }
34332             ]
34333         };
34334         if (Roo.bootstrap.version == 3) {
34335             
34336             
34337             if(this.indicatorpos == 'left'){
34338                 label.cn.unshift({
34339                     tag : 'i',
34340                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
34341                     tooltip : 'This field is required'
34342                 });
34343             } else {
34344                 label.cn.push({
34345                     tag : 'i',
34346                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
34347                     tooltip : 'This field is required'
34348                 });
34349             }
34350         }
34351         var items = {
34352             tag : 'div',
34353             cls : 'roo-radio-set-items'
34354         };
34355         
34356         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
34357         
34358         if (align === 'left' && this.fieldLabel.length) {
34359             
34360             items = {
34361                 cls : "roo-radio-set-right", 
34362                 cn: [
34363                     items
34364                 ]
34365             };
34366             
34367             if(this.labelWidth > 12){
34368                 label.style = "width: " + this.labelWidth + 'px';
34369             }
34370             
34371             if(this.labelWidth < 13 && this.labelmd == 0){
34372                 this.labelmd = this.labelWidth;
34373             }
34374             
34375             if(this.labellg > 0){
34376                 label.cls += ' col-lg-' + this.labellg;
34377                 items.cls += ' col-lg-' + (12 - this.labellg);
34378             }
34379             
34380             if(this.labelmd > 0){
34381                 label.cls += ' col-md-' + this.labelmd;
34382                 items.cls += ' col-md-' + (12 - this.labelmd);
34383             }
34384             
34385             if(this.labelsm > 0){
34386                 label.cls += ' col-sm-' + this.labelsm;
34387                 items.cls += ' col-sm-' + (12 - this.labelsm);
34388             }
34389             
34390             if(this.labelxs > 0){
34391                 label.cls += ' col-xs-' + this.labelxs;
34392                 items.cls += ' col-xs-' + (12 - this.labelxs);
34393             }
34394         }
34395         
34396         var cfg = {
34397             tag : 'div',
34398             cls : 'roo-radio-set',
34399             cn : [
34400                 {
34401                     tag : 'input',
34402                     cls : 'roo-radio-set-input',
34403                     type : 'hidden',
34404                     name : this.name,
34405                     value : this.value ? this.value :  ''
34406                 },
34407                 label,
34408                 items
34409             ]
34410         };
34411         
34412         if(this.weight.length){
34413             cfg.cls += ' roo-radio-' + this.weight;
34414         }
34415         
34416         if(this.inline) {
34417             cfg.cls += ' roo-radio-set-inline';
34418         }
34419         
34420         var settings=this;
34421         ['xs','sm','md','lg'].map(function(size){
34422             if (settings[size]) {
34423                 cfg.cls += ' col-' + size + '-' + settings[size];
34424             }
34425         });
34426         
34427         return cfg;
34428         
34429     },
34430
34431     initEvents : function()
34432     {
34433         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
34434         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
34435         
34436         if(!this.fieldLabel.length){
34437             this.labelEl.hide();
34438         }
34439         
34440         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
34441         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
34442         
34443         this.indicator = this.indicatorEl();
34444         
34445         if(this.indicator){
34446             this.indicator.addClass('invisible');
34447         }
34448         
34449         this.originalValue = this.getValue();
34450         
34451     },
34452     
34453     inputEl: function ()
34454     {
34455         return this.el.select('.roo-radio-set-input', true).first();
34456     },
34457     
34458     getChildContainer : function()
34459     {
34460         return this.itemsEl;
34461     },
34462     
34463     register : function(item)
34464     {
34465         this.radioes.push(item);
34466         
34467     },
34468     
34469     validate : function()
34470     {   
34471         if(this.getVisibilityEl().hasClass('hidden')){
34472             return true;
34473         }
34474         
34475         var valid = false;
34476         
34477         Roo.each(this.radioes, function(i){
34478             if(!i.checked){
34479                 return;
34480             }
34481             
34482             valid = true;
34483             return false;
34484         });
34485         
34486         if(this.allowBlank) {
34487             return true;
34488         }
34489         
34490         if(this.disabled || valid){
34491             this.markValid();
34492             return true;
34493         }
34494         
34495         this.markInvalid();
34496         return false;
34497         
34498     },
34499     
34500     markValid : function()
34501     {
34502         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34503             this.indicatorEl().removeClass('visible');
34504             this.indicatorEl().addClass('invisible');
34505         }
34506         
34507         
34508         if (Roo.bootstrap.version == 3) {
34509             this.el.removeClass([this.invalidClass, this.validClass]);
34510             this.el.addClass(this.validClass);
34511         } else {
34512             this.el.removeClass(['is-invalid','is-valid']);
34513             this.el.addClass(['is-valid']);
34514         }
34515         this.fireEvent('valid', this);
34516     },
34517     
34518     markInvalid : function(msg)
34519     {
34520         if(this.allowBlank || this.disabled){
34521             return;
34522         }
34523         
34524         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34525             this.indicatorEl().removeClass('invisible');
34526             this.indicatorEl().addClass('visible');
34527         }
34528         if (Roo.bootstrap.version == 3) {
34529             this.el.removeClass([this.invalidClass, this.validClass]);
34530             this.el.addClass(this.invalidClass);
34531         } else {
34532             this.el.removeClass(['is-invalid','is-valid']);
34533             this.el.addClass(['is-invalid']);
34534         }
34535         
34536         this.fireEvent('invalid', this, msg);
34537         
34538     },
34539     
34540     setValue : function(v, suppressEvent)
34541     {   
34542         if(this.value === v){
34543             return;
34544         }
34545         
34546         this.value = v;
34547         
34548         if(this.rendered){
34549             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
34550         }
34551         
34552         Roo.each(this.radioes, function(i){
34553             i.checked = false;
34554             i.el.removeClass('checked');
34555         });
34556         
34557         Roo.each(this.radioes, function(i){
34558             
34559             if(i.value === v || i.value.toString() === v.toString()){
34560                 i.checked = true;
34561                 i.el.addClass('checked');
34562                 
34563                 if(suppressEvent !== true){
34564                     this.fireEvent('check', this, i);
34565                 }
34566                 
34567                 return false;
34568             }
34569             
34570         }, this);
34571         
34572         this.validate();
34573     },
34574     
34575     clearInvalid : function(){
34576         
34577         if(!this.el || this.preventMark){
34578             return;
34579         }
34580         
34581         this.el.removeClass([this.invalidClass]);
34582         
34583         this.fireEvent('valid', this);
34584     }
34585     
34586 });
34587
34588 Roo.apply(Roo.bootstrap.RadioSet, {
34589     
34590     groups: {},
34591     
34592     register : function(set)
34593     {
34594         this.groups[set.name] = set;
34595     },
34596     
34597     get: function(name) 
34598     {
34599         if (typeof(this.groups[name]) == 'undefined') {
34600             return false;
34601         }
34602         
34603         return this.groups[name] ;
34604     }
34605     
34606 });
34607 /*
34608  * Based on:
34609  * Ext JS Library 1.1.1
34610  * Copyright(c) 2006-2007, Ext JS, LLC.
34611  *
34612  * Originally Released Under LGPL - original licence link has changed is not relivant.
34613  *
34614  * Fork - LGPL
34615  * <script type="text/javascript">
34616  */
34617
34618
34619 /**
34620  * @class Roo.bootstrap.SplitBar
34621  * @extends Roo.util.Observable
34622  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
34623  * <br><br>
34624  * Usage:
34625  * <pre><code>
34626 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
34627                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
34628 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
34629 split.minSize = 100;
34630 split.maxSize = 600;
34631 split.animate = true;
34632 split.on('moved', splitterMoved);
34633 </code></pre>
34634  * @constructor
34635  * Create a new SplitBar
34636  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
34637  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
34638  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34639  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
34640                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
34641                         position of the SplitBar).
34642  */
34643 Roo.bootstrap.SplitBar = function(cfg){
34644     
34645     /** @private */
34646     
34647     //{
34648     //  dragElement : elm
34649     //  resizingElement: el,
34650         // optional..
34651     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
34652     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
34653         // existingProxy ???
34654     //}
34655     
34656     this.el = Roo.get(cfg.dragElement, true);
34657     this.el.dom.unselectable = "on";
34658     /** @private */
34659     this.resizingEl = Roo.get(cfg.resizingElement, true);
34660
34661     /**
34662      * @private
34663      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34664      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
34665      * @type Number
34666      */
34667     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
34668     
34669     /**
34670      * The minimum size of the resizing element. (Defaults to 0)
34671      * @type Number
34672      */
34673     this.minSize = 0;
34674     
34675     /**
34676      * The maximum size of the resizing element. (Defaults to 2000)
34677      * @type Number
34678      */
34679     this.maxSize = 2000;
34680     
34681     /**
34682      * Whether to animate the transition to the new size
34683      * @type Boolean
34684      */
34685     this.animate = false;
34686     
34687     /**
34688      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
34689      * @type Boolean
34690      */
34691     this.useShim = false;
34692     
34693     /** @private */
34694     this.shim = null;
34695     
34696     if(!cfg.existingProxy){
34697         /** @private */
34698         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
34699     }else{
34700         this.proxy = Roo.get(cfg.existingProxy).dom;
34701     }
34702     /** @private */
34703     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
34704     
34705     /** @private */
34706     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
34707     
34708     /** @private */
34709     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
34710     
34711     /** @private */
34712     this.dragSpecs = {};
34713     
34714     /**
34715      * @private The adapter to use to positon and resize elements
34716      */
34717     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34718     this.adapter.init(this);
34719     
34720     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34721         /** @private */
34722         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
34723         this.el.addClass("roo-splitbar-h");
34724     }else{
34725         /** @private */
34726         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
34727         this.el.addClass("roo-splitbar-v");
34728     }
34729     
34730     this.addEvents({
34731         /**
34732          * @event resize
34733          * Fires when the splitter is moved (alias for {@link #event-moved})
34734          * @param {Roo.bootstrap.SplitBar} this
34735          * @param {Number} newSize the new width or height
34736          */
34737         "resize" : true,
34738         /**
34739          * @event moved
34740          * Fires when the splitter is moved
34741          * @param {Roo.bootstrap.SplitBar} this
34742          * @param {Number} newSize the new width or height
34743          */
34744         "moved" : true,
34745         /**
34746          * @event beforeresize
34747          * Fires before the splitter is dragged
34748          * @param {Roo.bootstrap.SplitBar} this
34749          */
34750         "beforeresize" : true,
34751
34752         "beforeapply" : true
34753     });
34754
34755     Roo.util.Observable.call(this);
34756 };
34757
34758 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
34759     onStartProxyDrag : function(x, y){
34760         this.fireEvent("beforeresize", this);
34761         if(!this.overlay){
34762             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
34763             o.unselectable();
34764             o.enableDisplayMode("block");
34765             // all splitbars share the same overlay
34766             Roo.bootstrap.SplitBar.prototype.overlay = o;
34767         }
34768         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34769         this.overlay.show();
34770         Roo.get(this.proxy).setDisplayed("block");
34771         var size = this.adapter.getElementSize(this);
34772         this.activeMinSize = this.getMinimumSize();;
34773         this.activeMaxSize = this.getMaximumSize();;
34774         var c1 = size - this.activeMinSize;
34775         var c2 = Math.max(this.activeMaxSize - size, 0);
34776         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34777             this.dd.resetConstraints();
34778             this.dd.setXConstraint(
34779                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
34780                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
34781             );
34782             this.dd.setYConstraint(0, 0);
34783         }else{
34784             this.dd.resetConstraints();
34785             this.dd.setXConstraint(0, 0);
34786             this.dd.setYConstraint(
34787                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
34788                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
34789             );
34790          }
34791         this.dragSpecs.startSize = size;
34792         this.dragSpecs.startPoint = [x, y];
34793         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
34794     },
34795     
34796     /** 
34797      * @private Called after the drag operation by the DDProxy
34798      */
34799     onEndProxyDrag : function(e){
34800         Roo.get(this.proxy).setDisplayed(false);
34801         var endPoint = Roo.lib.Event.getXY(e);
34802         if(this.overlay){
34803             this.overlay.hide();
34804         }
34805         var newSize;
34806         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34807             newSize = this.dragSpecs.startSize + 
34808                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
34809                     endPoint[0] - this.dragSpecs.startPoint[0] :
34810                     this.dragSpecs.startPoint[0] - endPoint[0]
34811                 );
34812         }else{
34813             newSize = this.dragSpecs.startSize + 
34814                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
34815                     endPoint[1] - this.dragSpecs.startPoint[1] :
34816                     this.dragSpecs.startPoint[1] - endPoint[1]
34817                 );
34818         }
34819         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
34820         if(newSize != this.dragSpecs.startSize){
34821             if(this.fireEvent('beforeapply', this, newSize) !== false){
34822                 this.adapter.setElementSize(this, newSize);
34823                 this.fireEvent("moved", this, newSize);
34824                 this.fireEvent("resize", this, newSize);
34825             }
34826         }
34827     },
34828     
34829     /**
34830      * Get the adapter this SplitBar uses
34831      * @return The adapter object
34832      */
34833     getAdapter : function(){
34834         return this.adapter;
34835     },
34836     
34837     /**
34838      * Set the adapter this SplitBar uses
34839      * @param {Object} adapter A SplitBar adapter object
34840      */
34841     setAdapter : function(adapter){
34842         this.adapter = adapter;
34843         this.adapter.init(this);
34844     },
34845     
34846     /**
34847      * Gets the minimum size for the resizing element
34848      * @return {Number} The minimum size
34849      */
34850     getMinimumSize : function(){
34851         return this.minSize;
34852     },
34853     
34854     /**
34855      * Sets the minimum size for the resizing element
34856      * @param {Number} minSize The minimum size
34857      */
34858     setMinimumSize : function(minSize){
34859         this.minSize = minSize;
34860     },
34861     
34862     /**
34863      * Gets the maximum size for the resizing element
34864      * @return {Number} The maximum size
34865      */
34866     getMaximumSize : function(){
34867         return this.maxSize;
34868     },
34869     
34870     /**
34871      * Sets the maximum size for the resizing element
34872      * @param {Number} maxSize The maximum size
34873      */
34874     setMaximumSize : function(maxSize){
34875         this.maxSize = maxSize;
34876     },
34877     
34878     /**
34879      * Sets the initialize size for the resizing element
34880      * @param {Number} size The initial size
34881      */
34882     setCurrentSize : function(size){
34883         var oldAnimate = this.animate;
34884         this.animate = false;
34885         this.adapter.setElementSize(this, size);
34886         this.animate = oldAnimate;
34887     },
34888     
34889     /**
34890      * Destroy this splitbar. 
34891      * @param {Boolean} removeEl True to remove the element
34892      */
34893     destroy : function(removeEl){
34894         if(this.shim){
34895             this.shim.remove();
34896         }
34897         this.dd.unreg();
34898         this.proxy.parentNode.removeChild(this.proxy);
34899         if(removeEl){
34900             this.el.remove();
34901         }
34902     }
34903 });
34904
34905 /**
34906  * @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.
34907  */
34908 Roo.bootstrap.SplitBar.createProxy = function(dir){
34909     var proxy = new Roo.Element(document.createElement("div"));
34910     proxy.unselectable();
34911     var cls = 'roo-splitbar-proxy';
34912     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
34913     document.body.appendChild(proxy.dom);
34914     return proxy.dom;
34915 };
34916
34917 /** 
34918  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
34919  * Default Adapter. It assumes the splitter and resizing element are not positioned
34920  * elements and only gets/sets the width of the element. Generally used for table based layouts.
34921  */
34922 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
34923 };
34924
34925 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
34926     // do nothing for now
34927     init : function(s){
34928     
34929     },
34930     /**
34931      * Called before drag operations to get the current size of the resizing element. 
34932      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34933      */
34934      getElementSize : function(s){
34935         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34936             return s.resizingEl.getWidth();
34937         }else{
34938             return s.resizingEl.getHeight();
34939         }
34940     },
34941     
34942     /**
34943      * Called after drag operations to set the size of the resizing element.
34944      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34945      * @param {Number} newSize The new size to set
34946      * @param {Function} onComplete A function to be invoked when resizing is complete
34947      */
34948     setElementSize : function(s, newSize, onComplete){
34949         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34950             if(!s.animate){
34951                 s.resizingEl.setWidth(newSize);
34952                 if(onComplete){
34953                     onComplete(s, newSize);
34954                 }
34955             }else{
34956                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
34957             }
34958         }else{
34959             
34960             if(!s.animate){
34961                 s.resizingEl.setHeight(newSize);
34962                 if(onComplete){
34963                     onComplete(s, newSize);
34964                 }
34965             }else{
34966                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
34967             }
34968         }
34969     }
34970 };
34971
34972 /** 
34973  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
34974  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
34975  * Adapter that  moves the splitter element to align with the resized sizing element. 
34976  * Used with an absolute positioned SplitBar.
34977  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
34978  * document.body, make sure you assign an id to the body element.
34979  */
34980 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
34981     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34982     this.container = Roo.get(container);
34983 };
34984
34985 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
34986     init : function(s){
34987         this.basic.init(s);
34988     },
34989     
34990     getElementSize : function(s){
34991         return this.basic.getElementSize(s);
34992     },
34993     
34994     setElementSize : function(s, newSize, onComplete){
34995         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
34996     },
34997     
34998     moveSplitter : function(s){
34999         var yes = Roo.bootstrap.SplitBar;
35000         switch(s.placement){
35001             case yes.LEFT:
35002                 s.el.setX(s.resizingEl.getRight());
35003                 break;
35004             case yes.RIGHT:
35005                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
35006                 break;
35007             case yes.TOP:
35008                 s.el.setY(s.resizingEl.getBottom());
35009                 break;
35010             case yes.BOTTOM:
35011                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
35012                 break;
35013         }
35014     }
35015 };
35016
35017 /**
35018  * Orientation constant - Create a vertical SplitBar
35019  * @static
35020  * @type Number
35021  */
35022 Roo.bootstrap.SplitBar.VERTICAL = 1;
35023
35024 /**
35025  * Orientation constant - Create a horizontal SplitBar
35026  * @static
35027  * @type Number
35028  */
35029 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
35030
35031 /**
35032  * Placement constant - The resizing element is to the left of the splitter element
35033  * @static
35034  * @type Number
35035  */
35036 Roo.bootstrap.SplitBar.LEFT = 1;
35037
35038 /**
35039  * Placement constant - The resizing element is to the right of the splitter element
35040  * @static
35041  * @type Number
35042  */
35043 Roo.bootstrap.SplitBar.RIGHT = 2;
35044
35045 /**
35046  * Placement constant - The resizing element is positioned above the splitter element
35047  * @static
35048  * @type Number
35049  */
35050 Roo.bootstrap.SplitBar.TOP = 3;
35051
35052 /**
35053  * Placement constant - The resizing element is positioned under splitter element
35054  * @static
35055  * @type Number
35056  */
35057 Roo.bootstrap.SplitBar.BOTTOM = 4;
35058 Roo.namespace("Roo.bootstrap.layout");/*
35059  * Based on:
35060  * Ext JS Library 1.1.1
35061  * Copyright(c) 2006-2007, Ext JS, LLC.
35062  *
35063  * Originally Released Under LGPL - original licence link has changed is not relivant.
35064  *
35065  * Fork - LGPL
35066  * <script type="text/javascript">
35067  */
35068
35069 /**
35070  * @class Roo.bootstrap.layout.Manager
35071  * @extends Roo.bootstrap.Component
35072  * Base class for layout managers.
35073  */
35074 Roo.bootstrap.layout.Manager = function(config)
35075 {
35076     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
35077
35078
35079
35080
35081
35082     /** false to disable window resize monitoring @type Boolean */
35083     this.monitorWindowResize = true;
35084     this.regions = {};
35085     this.addEvents({
35086         /**
35087          * @event layout
35088          * Fires when a layout is performed.
35089          * @param {Roo.LayoutManager} this
35090          */
35091         "layout" : true,
35092         /**
35093          * @event regionresized
35094          * Fires when the user resizes a region.
35095          * @param {Roo.LayoutRegion} region The resized region
35096          * @param {Number} newSize The new size (width for east/west, height for north/south)
35097          */
35098         "regionresized" : true,
35099         /**
35100          * @event regioncollapsed
35101          * Fires when a region is collapsed.
35102          * @param {Roo.LayoutRegion} region The collapsed region
35103          */
35104         "regioncollapsed" : true,
35105         /**
35106          * @event regionexpanded
35107          * Fires when a region is expanded.
35108          * @param {Roo.LayoutRegion} region The expanded region
35109          */
35110         "regionexpanded" : true
35111     });
35112     this.updating = false;
35113
35114     if (config.el) {
35115         this.el = Roo.get(config.el);
35116         this.initEvents();
35117     }
35118
35119 };
35120
35121 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
35122
35123
35124     regions : null,
35125
35126     monitorWindowResize : true,
35127
35128
35129     updating : false,
35130
35131
35132     onRender : function(ct, position)
35133     {
35134         if(!this.el){
35135             this.el = Roo.get(ct);
35136             this.initEvents();
35137         }
35138         //this.fireEvent('render',this);
35139     },
35140
35141
35142     initEvents: function()
35143     {
35144
35145
35146         // ie scrollbar fix
35147         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
35148             document.body.scroll = "no";
35149         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
35150             this.el.position('relative');
35151         }
35152         this.id = this.el.id;
35153         this.el.addClass("roo-layout-container");
35154         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35155         if(this.el.dom != document.body ) {
35156             this.el.on('resize', this.layout,this);
35157             this.el.on('show', this.layout,this);
35158         }
35159
35160     },
35161
35162     /**
35163      * Returns true if this layout is currently being updated
35164      * @return {Boolean}
35165      */
35166     isUpdating : function(){
35167         return this.updating;
35168     },
35169
35170     /**
35171      * Suspend the LayoutManager from doing auto-layouts while
35172      * making multiple add or remove calls
35173      */
35174     beginUpdate : function(){
35175         this.updating = true;
35176     },
35177
35178     /**
35179      * Restore auto-layouts and optionally disable the manager from performing a layout
35180      * @param {Boolean} noLayout true to disable a layout update
35181      */
35182     endUpdate : function(noLayout){
35183         this.updating = false;
35184         if(!noLayout){
35185             this.layout();
35186         }
35187     },
35188
35189     layout: function(){
35190         // abstract...
35191     },
35192
35193     onRegionResized : function(region, newSize){
35194         this.fireEvent("regionresized", region, newSize);
35195         this.layout();
35196     },
35197
35198     onRegionCollapsed : function(region){
35199         this.fireEvent("regioncollapsed", region);
35200     },
35201
35202     onRegionExpanded : function(region){
35203         this.fireEvent("regionexpanded", region);
35204     },
35205
35206     /**
35207      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
35208      * performs box-model adjustments.
35209      * @return {Object} The size as an object {width: (the width), height: (the height)}
35210      */
35211     getViewSize : function()
35212     {
35213         var size;
35214         if(this.el.dom != document.body){
35215             size = this.el.getSize();
35216         }else{
35217             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
35218         }
35219         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
35220         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
35221         return size;
35222     },
35223
35224     /**
35225      * Returns the Element this layout is bound to.
35226      * @return {Roo.Element}
35227      */
35228     getEl : function(){
35229         return this.el;
35230     },
35231
35232     /**
35233      * Returns the specified region.
35234      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
35235      * @return {Roo.LayoutRegion}
35236      */
35237     getRegion : function(target){
35238         return this.regions[target.toLowerCase()];
35239     },
35240
35241     onWindowResize : function(){
35242         if(this.monitorWindowResize){
35243             this.layout();
35244         }
35245     }
35246 });
35247 /*
35248  * Based on:
35249  * Ext JS Library 1.1.1
35250  * Copyright(c) 2006-2007, Ext JS, LLC.
35251  *
35252  * Originally Released Under LGPL - original licence link has changed is not relivant.
35253  *
35254  * Fork - LGPL
35255  * <script type="text/javascript">
35256  */
35257 /**
35258  * @class Roo.bootstrap.layout.Border
35259  * @extends Roo.bootstrap.layout.Manager
35260  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
35261  * please see: examples/bootstrap/nested.html<br><br>
35262  
35263 <b>The container the layout is rendered into can be either the body element or any other element.
35264 If it is not the body element, the container needs to either be an absolute positioned element,
35265 or you will need to add "position:relative" to the css of the container.  You will also need to specify
35266 the container size if it is not the body element.</b>
35267
35268 * @constructor
35269 * Create a new Border
35270 * @param {Object} config Configuration options
35271  */
35272 Roo.bootstrap.layout.Border = function(config){
35273     config = config || {};
35274     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
35275     
35276     
35277     
35278     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35279         if(config[region]){
35280             config[region].region = region;
35281             this.addRegion(config[region]);
35282         }
35283     },this);
35284     
35285 };
35286
35287 Roo.bootstrap.layout.Border.regions =  ["north","south","east","west","center"];
35288
35289 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
35290     
35291     parent : false, // this might point to a 'nest' or a ???
35292     
35293     /**
35294      * Creates and adds a new region if it doesn't already exist.
35295      * @param {String} target The target region key (north, south, east, west or center).
35296      * @param {Object} config The regions config object
35297      * @return {BorderLayoutRegion} The new region
35298      */
35299     addRegion : function(config)
35300     {
35301         if(!this.regions[config.region]){
35302             var r = this.factory(config);
35303             this.bindRegion(r);
35304         }
35305         return this.regions[config.region];
35306     },
35307
35308     // private (kinda)
35309     bindRegion : function(r){
35310         this.regions[r.config.region] = r;
35311         
35312         r.on("visibilitychange",    this.layout, this);
35313         r.on("paneladded",          this.layout, this);
35314         r.on("panelremoved",        this.layout, this);
35315         r.on("invalidated",         this.layout, this);
35316         r.on("resized",             this.onRegionResized, this);
35317         r.on("collapsed",           this.onRegionCollapsed, this);
35318         r.on("expanded",            this.onRegionExpanded, this);
35319     },
35320
35321     /**
35322      * Performs a layout update.
35323      */
35324     layout : function()
35325     {
35326         if(this.updating) {
35327             return;
35328         }
35329         
35330         // render all the rebions if they have not been done alreayd?
35331         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35332             if(this.regions[region] && !this.regions[region].bodyEl){
35333                 this.regions[region].onRender(this.el)
35334             }
35335         },this);
35336         
35337         var size = this.getViewSize();
35338         var w = size.width;
35339         var h = size.height;
35340         var centerW = w;
35341         var centerH = h;
35342         var centerY = 0;
35343         var centerX = 0;
35344         //var x = 0, y = 0;
35345
35346         var rs = this.regions;
35347         var north = rs["north"];
35348         var south = rs["south"]; 
35349         var west = rs["west"];
35350         var east = rs["east"];
35351         var center = rs["center"];
35352         //if(this.hideOnLayout){ // not supported anymore
35353             //c.el.setStyle("display", "none");
35354         //}
35355         if(north && north.isVisible()){
35356             var b = north.getBox();
35357             var m = north.getMargins();
35358             b.width = w - (m.left+m.right);
35359             b.x = m.left;
35360             b.y = m.top;
35361             centerY = b.height + b.y + m.bottom;
35362             centerH -= centerY;
35363             north.updateBox(this.safeBox(b));
35364         }
35365         if(south && south.isVisible()){
35366             var b = south.getBox();
35367             var m = south.getMargins();
35368             b.width = w - (m.left+m.right);
35369             b.x = m.left;
35370             var totalHeight = (b.height + m.top + m.bottom);
35371             b.y = h - totalHeight + m.top;
35372             centerH -= totalHeight;
35373             south.updateBox(this.safeBox(b));
35374         }
35375         if(west && west.isVisible()){
35376             var b = west.getBox();
35377             var m = west.getMargins();
35378             b.height = centerH - (m.top+m.bottom);
35379             b.x = m.left;
35380             b.y = centerY + m.top;
35381             var totalWidth = (b.width + m.left + m.right);
35382             centerX += totalWidth;
35383             centerW -= totalWidth;
35384             west.updateBox(this.safeBox(b));
35385         }
35386         if(east && east.isVisible()){
35387             var b = east.getBox();
35388             var m = east.getMargins();
35389             b.height = centerH - (m.top+m.bottom);
35390             var totalWidth = (b.width + m.left + m.right);
35391             b.x = w - totalWidth + m.left;
35392             b.y = centerY + m.top;
35393             centerW -= totalWidth;
35394             east.updateBox(this.safeBox(b));
35395         }
35396         if(center){
35397             var m = center.getMargins();
35398             var centerBox = {
35399                 x: centerX + m.left,
35400                 y: centerY + m.top,
35401                 width: centerW - (m.left+m.right),
35402                 height: centerH - (m.top+m.bottom)
35403             };
35404             //if(this.hideOnLayout){
35405                 //center.el.setStyle("display", "block");
35406             //}
35407             center.updateBox(this.safeBox(centerBox));
35408         }
35409         this.el.repaint();
35410         this.fireEvent("layout", this);
35411     },
35412
35413     // private
35414     safeBox : function(box){
35415         box.width = Math.max(0, box.width);
35416         box.height = Math.max(0, box.height);
35417         return box;
35418     },
35419
35420     /**
35421      * Adds a ContentPanel (or subclass) to this layout.
35422      * @param {String} target The target region key (north, south, east, west or center).
35423      * @param {Roo.ContentPanel} panel The panel to add
35424      * @return {Roo.ContentPanel} The added panel
35425      */
35426     add : function(target, panel){
35427          
35428         target = target.toLowerCase();
35429         return this.regions[target].add(panel);
35430     },
35431
35432     /**
35433      * Remove a ContentPanel (or subclass) to this layout.
35434      * @param {String} target The target region key (north, south, east, west or center).
35435      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
35436      * @return {Roo.ContentPanel} The removed panel
35437      */
35438     remove : function(target, panel){
35439         target = target.toLowerCase();
35440         return this.regions[target].remove(panel);
35441     },
35442
35443     /**
35444      * Searches all regions for a panel with the specified id
35445      * @param {String} panelId
35446      * @return {Roo.ContentPanel} The panel or null if it wasn't found
35447      */
35448     findPanel : function(panelId){
35449         var rs = this.regions;
35450         for(var target in rs){
35451             if(typeof rs[target] != "function"){
35452                 var p = rs[target].getPanel(panelId);
35453                 if(p){
35454                     return p;
35455                 }
35456             }
35457         }
35458         return null;
35459     },
35460
35461     /**
35462      * Searches all regions for a panel with the specified id and activates (shows) it.
35463      * @param {String/ContentPanel} panelId The panels id or the panel itself
35464      * @return {Roo.ContentPanel} The shown panel or null
35465      */
35466     showPanel : function(panelId) {
35467       var rs = this.regions;
35468       for(var target in rs){
35469          var r = rs[target];
35470          if(typeof r != "function"){
35471             if(r.hasPanel(panelId)){
35472                return r.showPanel(panelId);
35473             }
35474          }
35475       }
35476       return null;
35477    },
35478
35479    /**
35480      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
35481      * @param {Roo.state.Provider} provider (optional) An alternate state provider
35482      */
35483    /*
35484     restoreState : function(provider){
35485         if(!provider){
35486             provider = Roo.state.Manager;
35487         }
35488         var sm = new Roo.LayoutStateManager();
35489         sm.init(this, provider);
35490     },
35491 */
35492  
35493  
35494     /**
35495      * Adds a xtype elements to the layout.
35496      * <pre><code>
35497
35498 layout.addxtype({
35499        xtype : 'ContentPanel',
35500        region: 'west',
35501        items: [ .... ]
35502    }
35503 );
35504
35505 layout.addxtype({
35506         xtype : 'NestedLayoutPanel',
35507         region: 'west',
35508         layout: {
35509            center: { },
35510            west: { }   
35511         },
35512         items : [ ... list of content panels or nested layout panels.. ]
35513    }
35514 );
35515 </code></pre>
35516      * @param {Object} cfg Xtype definition of item to add.
35517      */
35518     addxtype : function(cfg)
35519     {
35520         // basically accepts a pannel...
35521         // can accept a layout region..!?!?
35522         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
35523         
35524         
35525         // theory?  children can only be panels??
35526         
35527         //if (!cfg.xtype.match(/Panel$/)) {
35528         //    return false;
35529         //}
35530         var ret = false;
35531         
35532         if (typeof(cfg.region) == 'undefined') {
35533             Roo.log("Failed to add Panel, region was not set");
35534             Roo.log(cfg);
35535             return false;
35536         }
35537         var region = cfg.region;
35538         delete cfg.region;
35539         
35540           
35541         var xitems = [];
35542         if (cfg.items) {
35543             xitems = cfg.items;
35544             delete cfg.items;
35545         }
35546         var nb = false;
35547         
35548         if ( region == 'center') {
35549             Roo.log("Center: " + cfg.title);
35550         }
35551         
35552         
35553         switch(cfg.xtype) 
35554         {
35555             case 'Content':  // ContentPanel (el, cfg)
35556             case 'Scroll':  // ContentPanel (el, cfg)
35557             case 'View': 
35558                 cfg.autoCreate = cfg.autoCreate || true;
35559                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35560                 //} else {
35561                 //    var el = this.el.createChild();
35562                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
35563                 //}
35564                 
35565                 this.add(region, ret);
35566                 break;
35567             
35568             /*
35569             case 'TreePanel': // our new panel!
35570                 cfg.el = this.el.createChild();
35571                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35572                 this.add(region, ret);
35573                 break;
35574             */
35575             
35576             case 'Nest': 
35577                 // create a new Layout (which is  a Border Layout...
35578                 
35579                 var clayout = cfg.layout;
35580                 clayout.el  = this.el.createChild();
35581                 clayout.items   = clayout.items  || [];
35582                 
35583                 delete cfg.layout;
35584                 
35585                 // replace this exitems with the clayout ones..
35586                 xitems = clayout.items;
35587                  
35588                 // force background off if it's in center...
35589                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
35590                     cfg.background = false;
35591                 }
35592                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
35593                 
35594                 
35595                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35596                 //console.log('adding nested layout panel '  + cfg.toSource());
35597                 this.add(region, ret);
35598                 nb = {}; /// find first...
35599                 break;
35600             
35601             case 'Grid':
35602                 
35603                 // needs grid and region
35604                 
35605                 //var el = this.getRegion(region).el.createChild();
35606                 /*
35607                  *var el = this.el.createChild();
35608                 // create the grid first...
35609                 cfg.grid.container = el;
35610                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
35611                 */
35612                 
35613                 if (region == 'center' && this.active ) {
35614                     cfg.background = false;
35615                 }
35616                 
35617                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35618                 
35619                 this.add(region, ret);
35620                 /*
35621                 if (cfg.background) {
35622                     // render grid on panel activation (if panel background)
35623                     ret.on('activate', function(gp) {
35624                         if (!gp.grid.rendered) {
35625                     //        gp.grid.render(el);
35626                         }
35627                     });
35628                 } else {
35629                   //  cfg.grid.render(el);
35630                 }
35631                 */
35632                 break;
35633            
35634            
35635             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
35636                 // it was the old xcomponent building that caused this before.
35637                 // espeically if border is the top element in the tree.
35638                 ret = this;
35639                 break; 
35640                 
35641                     
35642                 
35643                 
35644                 
35645             default:
35646                 /*
35647                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
35648                     
35649                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35650                     this.add(region, ret);
35651                 } else {
35652                 */
35653                     Roo.log(cfg);
35654                     throw "Can not add '" + cfg.xtype + "' to Border";
35655                     return null;
35656              
35657                                 
35658              
35659         }
35660         this.beginUpdate();
35661         // add children..
35662         var region = '';
35663         var abn = {};
35664         Roo.each(xitems, function(i)  {
35665             region = nb && i.region ? i.region : false;
35666             
35667             var add = ret.addxtype(i);
35668            
35669             if (region) {
35670                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
35671                 if (!i.background) {
35672                     abn[region] = nb[region] ;
35673                 }
35674             }
35675             
35676         });
35677         this.endUpdate();
35678
35679         // make the last non-background panel active..
35680         //if (nb) { Roo.log(abn); }
35681         if (nb) {
35682             
35683             for(var r in abn) {
35684                 region = this.getRegion(r);
35685                 if (region) {
35686                     // tried using nb[r], but it does not work..
35687                      
35688                     region.showPanel(abn[r]);
35689                    
35690                 }
35691             }
35692         }
35693         return ret;
35694         
35695     },
35696     
35697     
35698 // private
35699     factory : function(cfg)
35700     {
35701         
35702         var validRegions = Roo.bootstrap.layout.Border.regions;
35703
35704         var target = cfg.region;
35705         cfg.mgr = this;
35706         
35707         var r = Roo.bootstrap.layout;
35708         Roo.log(target);
35709         switch(target){
35710             case "north":
35711                 return new r.North(cfg);
35712             case "south":
35713                 return new r.South(cfg);
35714             case "east":
35715                 return new r.East(cfg);
35716             case "west":
35717                 return new r.West(cfg);
35718             case "center":
35719                 return new r.Center(cfg);
35720         }
35721         throw 'Layout region "'+target+'" not supported.';
35722     }
35723     
35724     
35725 });
35726  /*
35727  * Based on:
35728  * Ext JS Library 1.1.1
35729  * Copyright(c) 2006-2007, Ext JS, LLC.
35730  *
35731  * Originally Released Under LGPL - original licence link has changed is not relivant.
35732  *
35733  * Fork - LGPL
35734  * <script type="text/javascript">
35735  */
35736  
35737 /**
35738  * @class Roo.bootstrap.layout.Basic
35739  * @extends Roo.util.Observable
35740  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
35741  * and does not have a titlebar, tabs or any other features. All it does is size and position 
35742  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
35743  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35744  * @cfg {string}   region  the region that it inhabits..
35745  * @cfg {bool}   skipConfig skip config?
35746  * 
35747
35748  */
35749 Roo.bootstrap.layout.Basic = function(config){
35750     
35751     this.mgr = config.mgr;
35752     
35753     this.position = config.region;
35754     
35755     var skipConfig = config.skipConfig;
35756     
35757     this.events = {
35758         /**
35759          * @scope Roo.BasicLayoutRegion
35760          */
35761         
35762         /**
35763          * @event beforeremove
35764          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
35765          * @param {Roo.LayoutRegion} this
35766          * @param {Roo.ContentPanel} panel The panel
35767          * @param {Object} e The cancel event object
35768          */
35769         "beforeremove" : true,
35770         /**
35771          * @event invalidated
35772          * Fires when the layout for this region is changed.
35773          * @param {Roo.LayoutRegion} this
35774          */
35775         "invalidated" : true,
35776         /**
35777          * @event visibilitychange
35778          * Fires when this region is shown or hidden 
35779          * @param {Roo.LayoutRegion} this
35780          * @param {Boolean} visibility true or false
35781          */
35782         "visibilitychange" : true,
35783         /**
35784          * @event paneladded
35785          * Fires when a panel is added. 
35786          * @param {Roo.LayoutRegion} this
35787          * @param {Roo.ContentPanel} panel The panel
35788          */
35789         "paneladded" : true,
35790         /**
35791          * @event panelremoved
35792          * Fires when a panel is removed. 
35793          * @param {Roo.LayoutRegion} this
35794          * @param {Roo.ContentPanel} panel The panel
35795          */
35796         "panelremoved" : true,
35797         /**
35798          * @event beforecollapse
35799          * Fires when this region before collapse.
35800          * @param {Roo.LayoutRegion} this
35801          */
35802         "beforecollapse" : true,
35803         /**
35804          * @event collapsed
35805          * Fires when this region is collapsed.
35806          * @param {Roo.LayoutRegion} this
35807          */
35808         "collapsed" : true,
35809         /**
35810          * @event expanded
35811          * Fires when this region is expanded.
35812          * @param {Roo.LayoutRegion} this
35813          */
35814         "expanded" : true,
35815         /**
35816          * @event slideshow
35817          * Fires when this region is slid into view.
35818          * @param {Roo.LayoutRegion} this
35819          */
35820         "slideshow" : true,
35821         /**
35822          * @event slidehide
35823          * Fires when this region slides out of view. 
35824          * @param {Roo.LayoutRegion} this
35825          */
35826         "slidehide" : true,
35827         /**
35828          * @event panelactivated
35829          * Fires when a panel is activated. 
35830          * @param {Roo.LayoutRegion} this
35831          * @param {Roo.ContentPanel} panel The activated panel
35832          */
35833         "panelactivated" : true,
35834         /**
35835          * @event resized
35836          * Fires when the user resizes this region. 
35837          * @param {Roo.LayoutRegion} this
35838          * @param {Number} newSize The new size (width for east/west, height for north/south)
35839          */
35840         "resized" : true
35841     };
35842     /** A collection of panels in this region. @type Roo.util.MixedCollection */
35843     this.panels = new Roo.util.MixedCollection();
35844     this.panels.getKey = this.getPanelId.createDelegate(this);
35845     this.box = null;
35846     this.activePanel = null;
35847     // ensure listeners are added...
35848     
35849     if (config.listeners || config.events) {
35850         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
35851             listeners : config.listeners || {},
35852             events : config.events || {}
35853         });
35854     }
35855     
35856     if(skipConfig !== true){
35857         this.applyConfig(config);
35858     }
35859 };
35860
35861 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
35862 {
35863     getPanelId : function(p){
35864         return p.getId();
35865     },
35866     
35867     applyConfig : function(config){
35868         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
35869         this.config = config;
35870         
35871     },
35872     
35873     /**
35874      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
35875      * the width, for horizontal (north, south) the height.
35876      * @param {Number} newSize The new width or height
35877      */
35878     resizeTo : function(newSize){
35879         var el = this.el ? this.el :
35880                  (this.activePanel ? this.activePanel.getEl() : null);
35881         if(el){
35882             switch(this.position){
35883                 case "east":
35884                 case "west":
35885                     el.setWidth(newSize);
35886                     this.fireEvent("resized", this, newSize);
35887                 break;
35888                 case "north":
35889                 case "south":
35890                     el.setHeight(newSize);
35891                     this.fireEvent("resized", this, newSize);
35892                 break;                
35893             }
35894         }
35895     },
35896     
35897     getBox : function(){
35898         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
35899     },
35900     
35901     getMargins : function(){
35902         return this.margins;
35903     },
35904     
35905     updateBox : function(box){
35906         this.box = box;
35907         var el = this.activePanel.getEl();
35908         el.dom.style.left = box.x + "px";
35909         el.dom.style.top = box.y + "px";
35910         this.activePanel.setSize(box.width, box.height);
35911     },
35912     
35913     /**
35914      * Returns the container element for this region.
35915      * @return {Roo.Element}
35916      */
35917     getEl : function(){
35918         return this.activePanel;
35919     },
35920     
35921     /**
35922      * Returns true if this region is currently visible.
35923      * @return {Boolean}
35924      */
35925     isVisible : function(){
35926         return this.activePanel ? true : false;
35927     },
35928     
35929     setActivePanel : function(panel){
35930         panel = this.getPanel(panel);
35931         if(this.activePanel && this.activePanel != panel){
35932             this.activePanel.setActiveState(false);
35933             this.activePanel.getEl().setLeftTop(-10000,-10000);
35934         }
35935         this.activePanel = panel;
35936         panel.setActiveState(true);
35937         if(this.box){
35938             panel.setSize(this.box.width, this.box.height);
35939         }
35940         this.fireEvent("panelactivated", this, panel);
35941         this.fireEvent("invalidated");
35942     },
35943     
35944     /**
35945      * Show the specified panel.
35946      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
35947      * @return {Roo.ContentPanel} The shown panel or null
35948      */
35949     showPanel : function(panel){
35950         panel = this.getPanel(panel);
35951         if(panel){
35952             this.setActivePanel(panel);
35953         }
35954         return panel;
35955     },
35956     
35957     /**
35958      * Get the active panel for this region.
35959      * @return {Roo.ContentPanel} The active panel or null
35960      */
35961     getActivePanel : function(){
35962         return this.activePanel;
35963     },
35964     
35965     /**
35966      * Add the passed ContentPanel(s)
35967      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
35968      * @return {Roo.ContentPanel} The panel added (if only one was added)
35969      */
35970     add : function(panel){
35971         if(arguments.length > 1){
35972             for(var i = 0, len = arguments.length; i < len; i++) {
35973                 this.add(arguments[i]);
35974             }
35975             return null;
35976         }
35977         if(this.hasPanel(panel)){
35978             this.showPanel(panel);
35979             return panel;
35980         }
35981         var el = panel.getEl();
35982         if(el.dom.parentNode != this.mgr.el.dom){
35983             this.mgr.el.dom.appendChild(el.dom);
35984         }
35985         if(panel.setRegion){
35986             panel.setRegion(this);
35987         }
35988         this.panels.add(panel);
35989         el.setStyle("position", "absolute");
35990         if(!panel.background){
35991             this.setActivePanel(panel);
35992             if(this.config.initialSize && this.panels.getCount()==1){
35993                 this.resizeTo(this.config.initialSize);
35994             }
35995         }
35996         this.fireEvent("paneladded", this, panel);
35997         return panel;
35998     },
35999     
36000     /**
36001      * Returns true if the panel is in this region.
36002      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
36003      * @return {Boolean}
36004      */
36005     hasPanel : function(panel){
36006         if(typeof panel == "object"){ // must be panel obj
36007             panel = panel.getId();
36008         }
36009         return this.getPanel(panel) ? true : false;
36010     },
36011     
36012     /**
36013      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36014      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
36015      * @param {Boolean} preservePanel Overrides the config preservePanel option
36016      * @return {Roo.ContentPanel} The panel that was removed
36017      */
36018     remove : function(panel, preservePanel){
36019         panel = this.getPanel(panel);
36020         if(!panel){
36021             return null;
36022         }
36023         var e = {};
36024         this.fireEvent("beforeremove", this, panel, e);
36025         if(e.cancel === true){
36026             return null;
36027         }
36028         var panelId = panel.getId();
36029         this.panels.removeKey(panelId);
36030         return panel;
36031     },
36032     
36033     /**
36034      * Returns the panel specified or null if it's not in this region.
36035      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
36036      * @return {Roo.ContentPanel}
36037      */
36038     getPanel : function(id){
36039         if(typeof id == "object"){ // must be panel obj
36040             return id;
36041         }
36042         return this.panels.get(id);
36043     },
36044     
36045     /**
36046      * Returns this regions position (north/south/east/west/center).
36047      * @return {String} 
36048      */
36049     getPosition: function(){
36050         return this.position;    
36051     }
36052 });/*
36053  * Based on:
36054  * Ext JS Library 1.1.1
36055  * Copyright(c) 2006-2007, Ext JS, LLC.
36056  *
36057  * Originally Released Under LGPL - original licence link has changed is not relivant.
36058  *
36059  * Fork - LGPL
36060  * <script type="text/javascript">
36061  */
36062  
36063 /**
36064  * @class Roo.bootstrap.layout.Region
36065  * @extends Roo.bootstrap.layout.Basic
36066  * This class represents a region in a layout manager.
36067  
36068  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
36069  * @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})
36070  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
36071  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
36072  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
36073  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
36074  * @cfg {String}    title           The title for the region (overrides panel titles)
36075  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
36076  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
36077  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
36078  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
36079  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
36080  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
36081  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
36082  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
36083  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
36084  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
36085
36086  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
36087  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
36088  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
36089  * @cfg {Number}    width           For East/West panels
36090  * @cfg {Number}    height          For North/South panels
36091  * @cfg {Boolean}   split           To show the splitter
36092  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
36093  * 
36094  * @cfg {string}   cls             Extra CSS classes to add to region
36095  * 
36096  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
36097  * @cfg {string}   region  the region that it inhabits..
36098  *
36099
36100  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
36101  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
36102
36103  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
36104  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
36105  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
36106  */
36107 Roo.bootstrap.layout.Region = function(config)
36108 {
36109     this.applyConfig(config);
36110
36111     var mgr = config.mgr;
36112     var pos = config.region;
36113     config.skipConfig = true;
36114     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
36115     
36116     if (mgr.el) {
36117         this.onRender(mgr.el);   
36118     }
36119      
36120     this.visible = true;
36121     this.collapsed = false;
36122     this.unrendered_panels = [];
36123 };
36124
36125 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
36126
36127     position: '', // set by wrapper (eg. north/south etc..)
36128     unrendered_panels : null,  // unrendered panels.
36129     
36130     tabPosition : false,
36131     
36132     mgr: false, // points to 'Border'
36133     
36134     
36135     createBody : function(){
36136         /** This region's body element 
36137         * @type Roo.Element */
36138         this.bodyEl = this.el.createChild({
36139                 tag: "div",
36140                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
36141         });
36142     },
36143
36144     onRender: function(ctr, pos)
36145     {
36146         var dh = Roo.DomHelper;
36147         /** This region's container element 
36148         * @type Roo.Element */
36149         this.el = dh.append(ctr.dom, {
36150                 tag: "div",
36151                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
36152             }, true);
36153         /** This region's title element 
36154         * @type Roo.Element */
36155     
36156         this.titleEl = dh.append(this.el.dom,  {
36157                 tag: "div",
36158                 unselectable: "on",
36159                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
36160                 children:[
36161                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
36162                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
36163                 ]
36164             }, true);
36165         
36166         this.titleEl.enableDisplayMode();
36167         /** This region's title text element 
36168         * @type HTMLElement */
36169         this.titleTextEl = this.titleEl.dom.firstChild;
36170         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
36171         /*
36172         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
36173         this.closeBtn.enableDisplayMode();
36174         this.closeBtn.on("click", this.closeClicked, this);
36175         this.closeBtn.hide();
36176     */
36177         this.createBody(this.config);
36178         if(this.config.hideWhenEmpty){
36179             this.hide();
36180             this.on("paneladded", this.validateVisibility, this);
36181             this.on("panelremoved", this.validateVisibility, this);
36182         }
36183         if(this.autoScroll){
36184             this.bodyEl.setStyle("overflow", "auto");
36185         }else{
36186             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
36187         }
36188         //if(c.titlebar !== false){
36189             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
36190                 this.titleEl.hide();
36191             }else{
36192                 this.titleEl.show();
36193                 if(this.config.title){
36194                     this.titleTextEl.innerHTML = this.config.title;
36195                 }
36196             }
36197         //}
36198         if(this.config.collapsed){
36199             this.collapse(true);
36200         }
36201         if(this.config.hidden){
36202             this.hide();
36203         }
36204         
36205         if (this.unrendered_panels && this.unrendered_panels.length) {
36206             for (var i =0;i< this.unrendered_panels.length; i++) {
36207                 this.add(this.unrendered_panels[i]);
36208             }
36209             this.unrendered_panels = null;
36210             
36211         }
36212         
36213     },
36214     
36215     applyConfig : function(c)
36216     {
36217         /*
36218          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
36219             var dh = Roo.DomHelper;
36220             if(c.titlebar !== false){
36221                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
36222                 this.collapseBtn.on("click", this.collapse, this);
36223                 this.collapseBtn.enableDisplayMode();
36224                 /*
36225                 if(c.showPin === true || this.showPin){
36226                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
36227                     this.stickBtn.enableDisplayMode();
36228                     this.stickBtn.on("click", this.expand, this);
36229                     this.stickBtn.hide();
36230                 }
36231                 
36232             }
36233             */
36234             /** This region's collapsed element
36235             * @type Roo.Element */
36236             /*
36237              *
36238             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
36239                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
36240             ]}, true);
36241             
36242             if(c.floatable !== false){
36243                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
36244                this.collapsedEl.on("click", this.collapseClick, this);
36245             }
36246
36247             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
36248                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
36249                    id: "message", unselectable: "on", style:{"float":"left"}});
36250                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
36251              }
36252             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
36253             this.expandBtn.on("click", this.expand, this);
36254             
36255         }
36256         
36257         if(this.collapseBtn){
36258             this.collapseBtn.setVisible(c.collapsible == true);
36259         }
36260         
36261         this.cmargins = c.cmargins || this.cmargins ||
36262                          (this.position == "west" || this.position == "east" ?
36263                              {top: 0, left: 2, right:2, bottom: 0} :
36264                              {top: 2, left: 0, right:0, bottom: 2});
36265         */
36266         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
36267         
36268         
36269         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
36270         
36271         this.autoScroll = c.autoScroll || false;
36272         
36273         
36274        
36275         
36276         this.duration = c.duration || .30;
36277         this.slideDuration = c.slideDuration || .45;
36278         this.config = c;
36279        
36280     },
36281     /**
36282      * Returns true if this region is currently visible.
36283      * @return {Boolean}
36284      */
36285     isVisible : function(){
36286         return this.visible;
36287     },
36288
36289     /**
36290      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
36291      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
36292      */
36293     //setCollapsedTitle : function(title){
36294     //    title = title || "&#160;";
36295      //   if(this.collapsedTitleTextEl){
36296       //      this.collapsedTitleTextEl.innerHTML = title;
36297        // }
36298     //},
36299
36300     getBox : function(){
36301         var b;
36302       //  if(!this.collapsed){
36303             b = this.el.getBox(false, true);
36304        // }else{
36305           //  b = this.collapsedEl.getBox(false, true);
36306         //}
36307         return b;
36308     },
36309
36310     getMargins : function(){
36311         return this.margins;
36312         //return this.collapsed ? this.cmargins : this.margins;
36313     },
36314 /*
36315     highlight : function(){
36316         this.el.addClass("x-layout-panel-dragover");
36317     },
36318
36319     unhighlight : function(){
36320         this.el.removeClass("x-layout-panel-dragover");
36321     },
36322 */
36323     updateBox : function(box)
36324     {
36325         if (!this.bodyEl) {
36326             return; // not rendered yet..
36327         }
36328         
36329         this.box = box;
36330         if(!this.collapsed){
36331             this.el.dom.style.left = box.x + "px";
36332             this.el.dom.style.top = box.y + "px";
36333             this.updateBody(box.width, box.height);
36334         }else{
36335             this.collapsedEl.dom.style.left = box.x + "px";
36336             this.collapsedEl.dom.style.top = box.y + "px";
36337             this.collapsedEl.setSize(box.width, box.height);
36338         }
36339         if(this.tabs){
36340             this.tabs.autoSizeTabs();
36341         }
36342     },
36343
36344     updateBody : function(w, h)
36345     {
36346         if(w !== null){
36347             this.el.setWidth(w);
36348             w -= this.el.getBorderWidth("rl");
36349             if(this.config.adjustments){
36350                 w += this.config.adjustments[0];
36351             }
36352         }
36353         if(h !== null && h > 0){
36354             this.el.setHeight(h);
36355             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
36356             h -= this.el.getBorderWidth("tb");
36357             if(this.config.adjustments){
36358                 h += this.config.adjustments[1];
36359             }
36360             this.bodyEl.setHeight(h);
36361             if(this.tabs){
36362                 h = this.tabs.syncHeight(h);
36363             }
36364         }
36365         if(this.panelSize){
36366             w = w !== null ? w : this.panelSize.width;
36367             h = h !== null ? h : this.panelSize.height;
36368         }
36369         if(this.activePanel){
36370             var el = this.activePanel.getEl();
36371             w = w !== null ? w : el.getWidth();
36372             h = h !== null ? h : el.getHeight();
36373             this.panelSize = {width: w, height: h};
36374             this.activePanel.setSize(w, h);
36375         }
36376         if(Roo.isIE && this.tabs){
36377             this.tabs.el.repaint();
36378         }
36379     },
36380
36381     /**
36382      * Returns the container element for this region.
36383      * @return {Roo.Element}
36384      */
36385     getEl : function(){
36386         return this.el;
36387     },
36388
36389     /**
36390      * Hides this region.
36391      */
36392     hide : function(){
36393         //if(!this.collapsed){
36394             this.el.dom.style.left = "-2000px";
36395             this.el.hide();
36396         //}else{
36397          //   this.collapsedEl.dom.style.left = "-2000px";
36398          //   this.collapsedEl.hide();
36399        // }
36400         this.visible = false;
36401         this.fireEvent("visibilitychange", this, false);
36402     },
36403
36404     /**
36405      * Shows this region if it was previously hidden.
36406      */
36407     show : function(){
36408         //if(!this.collapsed){
36409             this.el.show();
36410         //}else{
36411         //    this.collapsedEl.show();
36412        // }
36413         this.visible = true;
36414         this.fireEvent("visibilitychange", this, true);
36415     },
36416 /*
36417     closeClicked : function(){
36418         if(this.activePanel){
36419             this.remove(this.activePanel);
36420         }
36421     },
36422
36423     collapseClick : function(e){
36424         if(this.isSlid){
36425            e.stopPropagation();
36426            this.slideIn();
36427         }else{
36428            e.stopPropagation();
36429            this.slideOut();
36430         }
36431     },
36432 */
36433     /**
36434      * Collapses this region.
36435      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
36436      */
36437     /*
36438     collapse : function(skipAnim, skipCheck = false){
36439         if(this.collapsed) {
36440             return;
36441         }
36442         
36443         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
36444             
36445             this.collapsed = true;
36446             if(this.split){
36447                 this.split.el.hide();
36448             }
36449             if(this.config.animate && skipAnim !== true){
36450                 this.fireEvent("invalidated", this);
36451                 this.animateCollapse();
36452             }else{
36453                 this.el.setLocation(-20000,-20000);
36454                 this.el.hide();
36455                 this.collapsedEl.show();
36456                 this.fireEvent("collapsed", this);
36457                 this.fireEvent("invalidated", this);
36458             }
36459         }
36460         
36461     },
36462 */
36463     animateCollapse : function(){
36464         // overridden
36465     },
36466
36467     /**
36468      * Expands this region if it was previously collapsed.
36469      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
36470      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
36471      */
36472     /*
36473     expand : function(e, skipAnim){
36474         if(e) {
36475             e.stopPropagation();
36476         }
36477         if(!this.collapsed || this.el.hasActiveFx()) {
36478             return;
36479         }
36480         if(this.isSlid){
36481             this.afterSlideIn();
36482             skipAnim = true;
36483         }
36484         this.collapsed = false;
36485         if(this.config.animate && skipAnim !== true){
36486             this.animateExpand();
36487         }else{
36488             this.el.show();
36489             if(this.split){
36490                 this.split.el.show();
36491             }
36492             this.collapsedEl.setLocation(-2000,-2000);
36493             this.collapsedEl.hide();
36494             this.fireEvent("invalidated", this);
36495             this.fireEvent("expanded", this);
36496         }
36497     },
36498 */
36499     animateExpand : function(){
36500         // overridden
36501     },
36502
36503     initTabs : function()
36504     {
36505         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
36506         
36507         var ts = new Roo.bootstrap.panel.Tabs({
36508             el: this.bodyEl.dom,
36509             region : this,
36510             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
36511             disableTooltips: this.config.disableTabTips,
36512             toolbar : this.config.toolbar
36513         });
36514         
36515         if(this.config.hideTabs){
36516             ts.stripWrap.setDisplayed(false);
36517         }
36518         this.tabs = ts;
36519         ts.resizeTabs = this.config.resizeTabs === true;
36520         ts.minTabWidth = this.config.minTabWidth || 40;
36521         ts.maxTabWidth = this.config.maxTabWidth || 250;
36522         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
36523         ts.monitorResize = false;
36524         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
36525         ts.bodyEl.addClass('roo-layout-tabs-body');
36526         this.panels.each(this.initPanelAsTab, this);
36527     },
36528
36529     initPanelAsTab : function(panel){
36530         var ti = this.tabs.addTab(
36531             panel.getEl().id,
36532             panel.getTitle(),
36533             null,
36534             this.config.closeOnTab && panel.isClosable(),
36535             panel.tpl
36536         );
36537         if(panel.tabTip !== undefined){
36538             ti.setTooltip(panel.tabTip);
36539         }
36540         ti.on("activate", function(){
36541               this.setActivePanel(panel);
36542         }, this);
36543         
36544         if(this.config.closeOnTab){
36545             ti.on("beforeclose", function(t, e){
36546                 e.cancel = true;
36547                 this.remove(panel);
36548             }, this);
36549         }
36550         
36551         panel.tabItem = ti;
36552         
36553         return ti;
36554     },
36555
36556     updatePanelTitle : function(panel, title)
36557     {
36558         if(this.activePanel == panel){
36559             this.updateTitle(title);
36560         }
36561         if(this.tabs){
36562             var ti = this.tabs.getTab(panel.getEl().id);
36563             ti.setText(title);
36564             if(panel.tabTip !== undefined){
36565                 ti.setTooltip(panel.tabTip);
36566             }
36567         }
36568     },
36569
36570     updateTitle : function(title){
36571         if(this.titleTextEl && !this.config.title){
36572             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
36573         }
36574     },
36575
36576     setActivePanel : function(panel)
36577     {
36578         panel = this.getPanel(panel);
36579         if(this.activePanel && this.activePanel != panel){
36580             if(this.activePanel.setActiveState(false) === false){
36581                 return;
36582             }
36583         }
36584         this.activePanel = panel;
36585         panel.setActiveState(true);
36586         if(this.panelSize){
36587             panel.setSize(this.panelSize.width, this.panelSize.height);
36588         }
36589         if(this.closeBtn){
36590             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
36591         }
36592         this.updateTitle(panel.getTitle());
36593         if(this.tabs){
36594             this.fireEvent("invalidated", this);
36595         }
36596         this.fireEvent("panelactivated", this, panel);
36597     },
36598
36599     /**
36600      * Shows the specified panel.
36601      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
36602      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
36603      */
36604     showPanel : function(panel)
36605     {
36606         panel = this.getPanel(panel);
36607         if(panel){
36608             if(this.tabs){
36609                 var tab = this.tabs.getTab(panel.getEl().id);
36610                 if(tab.isHidden()){
36611                     this.tabs.unhideTab(tab.id);
36612                 }
36613                 tab.activate();
36614             }else{
36615                 this.setActivePanel(panel);
36616             }
36617         }
36618         return panel;
36619     },
36620
36621     /**
36622      * Get the active panel for this region.
36623      * @return {Roo.ContentPanel} The active panel or null
36624      */
36625     getActivePanel : function(){
36626         return this.activePanel;
36627     },
36628
36629     validateVisibility : function(){
36630         if(this.panels.getCount() < 1){
36631             this.updateTitle("&#160;");
36632             this.closeBtn.hide();
36633             this.hide();
36634         }else{
36635             if(!this.isVisible()){
36636                 this.show();
36637             }
36638         }
36639     },
36640
36641     /**
36642      * Adds the passed ContentPanel(s) to this region.
36643      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
36644      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
36645      */
36646     add : function(panel)
36647     {
36648         if(arguments.length > 1){
36649             for(var i = 0, len = arguments.length; i < len; i++) {
36650                 this.add(arguments[i]);
36651             }
36652             return null;
36653         }
36654         
36655         // if we have not been rendered yet, then we can not really do much of this..
36656         if (!this.bodyEl) {
36657             this.unrendered_panels.push(panel);
36658             return panel;
36659         }
36660         
36661         
36662         
36663         
36664         if(this.hasPanel(panel)){
36665             this.showPanel(panel);
36666             return panel;
36667         }
36668         panel.setRegion(this);
36669         this.panels.add(panel);
36670        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
36671             // sinle panel - no tab...?? would it not be better to render it with the tabs,
36672             // and hide them... ???
36673             this.bodyEl.dom.appendChild(panel.getEl().dom);
36674             if(panel.background !== true){
36675                 this.setActivePanel(panel);
36676             }
36677             this.fireEvent("paneladded", this, panel);
36678             return panel;
36679         }
36680         */
36681         if(!this.tabs){
36682             this.initTabs();
36683         }else{
36684             this.initPanelAsTab(panel);
36685         }
36686         
36687         
36688         if(panel.background !== true){
36689             this.tabs.activate(panel.getEl().id);
36690         }
36691         this.fireEvent("paneladded", this, panel);
36692         return panel;
36693     },
36694
36695     /**
36696      * Hides the tab for the specified panel.
36697      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36698      */
36699     hidePanel : function(panel){
36700         if(this.tabs && (panel = this.getPanel(panel))){
36701             this.tabs.hideTab(panel.getEl().id);
36702         }
36703     },
36704
36705     /**
36706      * Unhides the tab for a previously hidden panel.
36707      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36708      */
36709     unhidePanel : function(panel){
36710         if(this.tabs && (panel = this.getPanel(panel))){
36711             this.tabs.unhideTab(panel.getEl().id);
36712         }
36713     },
36714
36715     clearPanels : function(){
36716         while(this.panels.getCount() > 0){
36717              this.remove(this.panels.first());
36718         }
36719     },
36720
36721     /**
36722      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36723      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36724      * @param {Boolean} preservePanel Overrides the config preservePanel option
36725      * @return {Roo.ContentPanel} The panel that was removed
36726      */
36727     remove : function(panel, preservePanel)
36728     {
36729         panel = this.getPanel(panel);
36730         if(!panel){
36731             return null;
36732         }
36733         var e = {};
36734         this.fireEvent("beforeremove", this, panel, e);
36735         if(e.cancel === true){
36736             return null;
36737         }
36738         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
36739         var panelId = panel.getId();
36740         this.panels.removeKey(panelId);
36741         if(preservePanel){
36742             document.body.appendChild(panel.getEl().dom);
36743         }
36744         if(this.tabs){
36745             this.tabs.removeTab(panel.getEl().id);
36746         }else if (!preservePanel){
36747             this.bodyEl.dom.removeChild(panel.getEl().dom);
36748         }
36749         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
36750             var p = this.panels.first();
36751             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
36752             tempEl.appendChild(p.getEl().dom);
36753             this.bodyEl.update("");
36754             this.bodyEl.dom.appendChild(p.getEl().dom);
36755             tempEl = null;
36756             this.updateTitle(p.getTitle());
36757             this.tabs = null;
36758             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
36759             this.setActivePanel(p);
36760         }
36761         panel.setRegion(null);
36762         if(this.activePanel == panel){
36763             this.activePanel = null;
36764         }
36765         if(this.config.autoDestroy !== false && preservePanel !== true){
36766             try{panel.destroy();}catch(e){}
36767         }
36768         this.fireEvent("panelremoved", this, panel);
36769         return panel;
36770     },
36771
36772     /**
36773      * Returns the TabPanel component used by this region
36774      * @return {Roo.TabPanel}
36775      */
36776     getTabs : function(){
36777         return this.tabs;
36778     },
36779
36780     createTool : function(parentEl, className){
36781         var btn = Roo.DomHelper.append(parentEl, {
36782             tag: "div",
36783             cls: "x-layout-tools-button",
36784             children: [ {
36785                 tag: "div",
36786                 cls: "roo-layout-tools-button-inner " + className,
36787                 html: "&#160;"
36788             }]
36789         }, true);
36790         btn.addClassOnOver("roo-layout-tools-button-over");
36791         return btn;
36792     }
36793 });/*
36794  * Based on:
36795  * Ext JS Library 1.1.1
36796  * Copyright(c) 2006-2007, Ext JS, LLC.
36797  *
36798  * Originally Released Under LGPL - original licence link has changed is not relivant.
36799  *
36800  * Fork - LGPL
36801  * <script type="text/javascript">
36802  */
36803  
36804
36805
36806 /**
36807  * @class Roo.SplitLayoutRegion
36808  * @extends Roo.LayoutRegion
36809  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
36810  */
36811 Roo.bootstrap.layout.Split = function(config){
36812     this.cursor = config.cursor;
36813     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
36814 };
36815
36816 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
36817 {
36818     splitTip : "Drag to resize.",
36819     collapsibleSplitTip : "Drag to resize. Double click to hide.",
36820     useSplitTips : false,
36821
36822     applyConfig : function(config){
36823         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
36824     },
36825     
36826     onRender : function(ctr,pos) {
36827         
36828         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
36829         if(!this.config.split){
36830             return;
36831         }
36832         if(!this.split){
36833             
36834             var splitEl = Roo.DomHelper.append(ctr.dom,  {
36835                             tag: "div",
36836                             id: this.el.id + "-split",
36837                             cls: "roo-layout-split roo-layout-split-"+this.position,
36838                             html: "&#160;"
36839             });
36840             /** The SplitBar for this region 
36841             * @type Roo.SplitBar */
36842             // does not exist yet...
36843             Roo.log([this.position, this.orientation]);
36844             
36845             this.split = new Roo.bootstrap.SplitBar({
36846                 dragElement : splitEl,
36847                 resizingElement: this.el,
36848                 orientation : this.orientation
36849             });
36850             
36851             this.split.on("moved", this.onSplitMove, this);
36852             this.split.useShim = this.config.useShim === true;
36853             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
36854             if(this.useSplitTips){
36855                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
36856             }
36857             //if(config.collapsible){
36858             //    this.split.el.on("dblclick", this.collapse,  this);
36859             //}
36860         }
36861         if(typeof this.config.minSize != "undefined"){
36862             this.split.minSize = this.config.minSize;
36863         }
36864         if(typeof this.config.maxSize != "undefined"){
36865             this.split.maxSize = this.config.maxSize;
36866         }
36867         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
36868             this.hideSplitter();
36869         }
36870         
36871     },
36872
36873     getHMaxSize : function(){
36874          var cmax = this.config.maxSize || 10000;
36875          var center = this.mgr.getRegion("center");
36876          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
36877     },
36878
36879     getVMaxSize : function(){
36880          var cmax = this.config.maxSize || 10000;
36881          var center = this.mgr.getRegion("center");
36882          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
36883     },
36884
36885     onSplitMove : function(split, newSize){
36886         this.fireEvent("resized", this, newSize);
36887     },
36888     
36889     /** 
36890      * Returns the {@link Roo.SplitBar} for this region.
36891      * @return {Roo.SplitBar}
36892      */
36893     getSplitBar : function(){
36894         return this.split;
36895     },
36896     
36897     hide : function(){
36898         this.hideSplitter();
36899         Roo.bootstrap.layout.Split.superclass.hide.call(this);
36900     },
36901
36902     hideSplitter : function(){
36903         if(this.split){
36904             this.split.el.setLocation(-2000,-2000);
36905             this.split.el.hide();
36906         }
36907     },
36908
36909     show : function(){
36910         if(this.split){
36911             this.split.el.show();
36912         }
36913         Roo.bootstrap.layout.Split.superclass.show.call(this);
36914     },
36915     
36916     beforeSlide: function(){
36917         if(Roo.isGecko){// firefox overflow auto bug workaround
36918             this.bodyEl.clip();
36919             if(this.tabs) {
36920                 this.tabs.bodyEl.clip();
36921             }
36922             if(this.activePanel){
36923                 this.activePanel.getEl().clip();
36924                 
36925                 if(this.activePanel.beforeSlide){
36926                     this.activePanel.beforeSlide();
36927                 }
36928             }
36929         }
36930     },
36931     
36932     afterSlide : function(){
36933         if(Roo.isGecko){// firefox overflow auto bug workaround
36934             this.bodyEl.unclip();
36935             if(this.tabs) {
36936                 this.tabs.bodyEl.unclip();
36937             }
36938             if(this.activePanel){
36939                 this.activePanel.getEl().unclip();
36940                 if(this.activePanel.afterSlide){
36941                     this.activePanel.afterSlide();
36942                 }
36943             }
36944         }
36945     },
36946
36947     initAutoHide : function(){
36948         if(this.autoHide !== false){
36949             if(!this.autoHideHd){
36950                 var st = new Roo.util.DelayedTask(this.slideIn, this);
36951                 this.autoHideHd = {
36952                     "mouseout": function(e){
36953                         if(!e.within(this.el, true)){
36954                             st.delay(500);
36955                         }
36956                     },
36957                     "mouseover" : function(e){
36958                         st.cancel();
36959                     },
36960                     scope : this
36961                 };
36962             }
36963             this.el.on(this.autoHideHd);
36964         }
36965     },
36966
36967     clearAutoHide : function(){
36968         if(this.autoHide !== false){
36969             this.el.un("mouseout", this.autoHideHd.mouseout);
36970             this.el.un("mouseover", this.autoHideHd.mouseover);
36971         }
36972     },
36973
36974     clearMonitor : function(){
36975         Roo.get(document).un("click", this.slideInIf, this);
36976     },
36977
36978     // these names are backwards but not changed for compat
36979     slideOut : function(){
36980         if(this.isSlid || this.el.hasActiveFx()){
36981             return;
36982         }
36983         this.isSlid = true;
36984         if(this.collapseBtn){
36985             this.collapseBtn.hide();
36986         }
36987         this.closeBtnState = this.closeBtn.getStyle('display');
36988         this.closeBtn.hide();
36989         if(this.stickBtn){
36990             this.stickBtn.show();
36991         }
36992         this.el.show();
36993         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
36994         this.beforeSlide();
36995         this.el.setStyle("z-index", 10001);
36996         this.el.slideIn(this.getSlideAnchor(), {
36997             callback: function(){
36998                 this.afterSlide();
36999                 this.initAutoHide();
37000                 Roo.get(document).on("click", this.slideInIf, this);
37001                 this.fireEvent("slideshow", this);
37002             },
37003             scope: this,
37004             block: true
37005         });
37006     },
37007
37008     afterSlideIn : function(){
37009         this.clearAutoHide();
37010         this.isSlid = false;
37011         this.clearMonitor();
37012         this.el.setStyle("z-index", "");
37013         if(this.collapseBtn){
37014             this.collapseBtn.show();
37015         }
37016         this.closeBtn.setStyle('display', this.closeBtnState);
37017         if(this.stickBtn){
37018             this.stickBtn.hide();
37019         }
37020         this.fireEvent("slidehide", this);
37021     },
37022
37023     slideIn : function(cb){
37024         if(!this.isSlid || this.el.hasActiveFx()){
37025             Roo.callback(cb);
37026             return;
37027         }
37028         this.isSlid = false;
37029         this.beforeSlide();
37030         this.el.slideOut(this.getSlideAnchor(), {
37031             callback: function(){
37032                 this.el.setLeftTop(-10000, -10000);
37033                 this.afterSlide();
37034                 this.afterSlideIn();
37035                 Roo.callback(cb);
37036             },
37037             scope: this,
37038             block: true
37039         });
37040     },
37041     
37042     slideInIf : function(e){
37043         if(!e.within(this.el)){
37044             this.slideIn();
37045         }
37046     },
37047
37048     animateCollapse : function(){
37049         this.beforeSlide();
37050         this.el.setStyle("z-index", 20000);
37051         var anchor = this.getSlideAnchor();
37052         this.el.slideOut(anchor, {
37053             callback : function(){
37054                 this.el.setStyle("z-index", "");
37055                 this.collapsedEl.slideIn(anchor, {duration:.3});
37056                 this.afterSlide();
37057                 this.el.setLocation(-10000,-10000);
37058                 this.el.hide();
37059                 this.fireEvent("collapsed", this);
37060             },
37061             scope: this,
37062             block: true
37063         });
37064     },
37065
37066     animateExpand : function(){
37067         this.beforeSlide();
37068         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
37069         this.el.setStyle("z-index", 20000);
37070         this.collapsedEl.hide({
37071             duration:.1
37072         });
37073         this.el.slideIn(this.getSlideAnchor(), {
37074             callback : function(){
37075                 this.el.setStyle("z-index", "");
37076                 this.afterSlide();
37077                 if(this.split){
37078                     this.split.el.show();
37079                 }
37080                 this.fireEvent("invalidated", this);
37081                 this.fireEvent("expanded", this);
37082             },
37083             scope: this,
37084             block: true
37085         });
37086     },
37087
37088     anchors : {
37089         "west" : "left",
37090         "east" : "right",
37091         "north" : "top",
37092         "south" : "bottom"
37093     },
37094
37095     sanchors : {
37096         "west" : "l",
37097         "east" : "r",
37098         "north" : "t",
37099         "south" : "b"
37100     },
37101
37102     canchors : {
37103         "west" : "tl-tr",
37104         "east" : "tr-tl",
37105         "north" : "tl-bl",
37106         "south" : "bl-tl"
37107     },
37108
37109     getAnchor : function(){
37110         return this.anchors[this.position];
37111     },
37112
37113     getCollapseAnchor : function(){
37114         return this.canchors[this.position];
37115     },
37116
37117     getSlideAnchor : function(){
37118         return this.sanchors[this.position];
37119     },
37120
37121     getAlignAdj : function(){
37122         var cm = this.cmargins;
37123         switch(this.position){
37124             case "west":
37125                 return [0, 0];
37126             break;
37127             case "east":
37128                 return [0, 0];
37129             break;
37130             case "north":
37131                 return [0, 0];
37132             break;
37133             case "south":
37134                 return [0, 0];
37135             break;
37136         }
37137     },
37138
37139     getExpandAdj : function(){
37140         var c = this.collapsedEl, cm = this.cmargins;
37141         switch(this.position){
37142             case "west":
37143                 return [-(cm.right+c.getWidth()+cm.left), 0];
37144             break;
37145             case "east":
37146                 return [cm.right+c.getWidth()+cm.left, 0];
37147             break;
37148             case "north":
37149                 return [0, -(cm.top+cm.bottom+c.getHeight())];
37150             break;
37151             case "south":
37152                 return [0, cm.top+cm.bottom+c.getHeight()];
37153             break;
37154         }
37155     }
37156 });/*
37157  * Based on:
37158  * Ext JS Library 1.1.1
37159  * Copyright(c) 2006-2007, Ext JS, LLC.
37160  *
37161  * Originally Released Under LGPL - original licence link has changed is not relivant.
37162  *
37163  * Fork - LGPL
37164  * <script type="text/javascript">
37165  */
37166 /*
37167  * These classes are private internal classes
37168  */
37169 Roo.bootstrap.layout.Center = function(config){
37170     config.region = "center";
37171     Roo.bootstrap.layout.Region.call(this, config);
37172     this.visible = true;
37173     this.minWidth = config.minWidth || 20;
37174     this.minHeight = config.minHeight || 20;
37175 };
37176
37177 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
37178     hide : function(){
37179         // center panel can't be hidden
37180     },
37181     
37182     show : function(){
37183         // center panel can't be hidden
37184     },
37185     
37186     getMinWidth: function(){
37187         return this.minWidth;
37188     },
37189     
37190     getMinHeight: function(){
37191         return this.minHeight;
37192     }
37193 });
37194
37195
37196
37197
37198  
37199
37200
37201
37202
37203
37204
37205 Roo.bootstrap.layout.North = function(config)
37206 {
37207     config.region = 'north';
37208     config.cursor = 'n-resize';
37209     
37210     Roo.bootstrap.layout.Split.call(this, config);
37211     
37212     
37213     if(this.split){
37214         this.split.placement = Roo.bootstrap.SplitBar.TOP;
37215         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37216         this.split.el.addClass("roo-layout-split-v");
37217     }
37218     var size = config.initialSize || config.height;
37219     if(typeof size != "undefined"){
37220         this.el.setHeight(size);
37221     }
37222 };
37223 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
37224 {
37225     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37226     
37227     
37228     
37229     getBox : function(){
37230         if(this.collapsed){
37231             return this.collapsedEl.getBox();
37232         }
37233         var box = this.el.getBox();
37234         if(this.split){
37235             box.height += this.split.el.getHeight();
37236         }
37237         return box;
37238     },
37239     
37240     updateBox : function(box){
37241         if(this.split && !this.collapsed){
37242             box.height -= this.split.el.getHeight();
37243             this.split.el.setLeft(box.x);
37244             this.split.el.setTop(box.y+box.height);
37245             this.split.el.setWidth(box.width);
37246         }
37247         if(this.collapsed){
37248             this.updateBody(box.width, null);
37249         }
37250         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37251     }
37252 });
37253
37254
37255
37256
37257
37258 Roo.bootstrap.layout.South = function(config){
37259     config.region = 'south';
37260     config.cursor = 's-resize';
37261     Roo.bootstrap.layout.Split.call(this, config);
37262     if(this.split){
37263         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
37264         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37265         this.split.el.addClass("roo-layout-split-v");
37266     }
37267     var size = config.initialSize || config.height;
37268     if(typeof size != "undefined"){
37269         this.el.setHeight(size);
37270     }
37271 };
37272
37273 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
37274     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37275     getBox : function(){
37276         if(this.collapsed){
37277             return this.collapsedEl.getBox();
37278         }
37279         var box = this.el.getBox();
37280         if(this.split){
37281             var sh = this.split.el.getHeight();
37282             box.height += sh;
37283             box.y -= sh;
37284         }
37285         return box;
37286     },
37287     
37288     updateBox : function(box){
37289         if(this.split && !this.collapsed){
37290             var sh = this.split.el.getHeight();
37291             box.height -= sh;
37292             box.y += sh;
37293             this.split.el.setLeft(box.x);
37294             this.split.el.setTop(box.y-sh);
37295             this.split.el.setWidth(box.width);
37296         }
37297         if(this.collapsed){
37298             this.updateBody(box.width, null);
37299         }
37300         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37301     }
37302 });
37303
37304 Roo.bootstrap.layout.East = function(config){
37305     config.region = "east";
37306     config.cursor = "e-resize";
37307     Roo.bootstrap.layout.Split.call(this, config);
37308     if(this.split){
37309         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
37310         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37311         this.split.el.addClass("roo-layout-split-h");
37312     }
37313     var size = config.initialSize || config.width;
37314     if(typeof size != "undefined"){
37315         this.el.setWidth(size);
37316     }
37317 };
37318 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
37319     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37320     getBox : function(){
37321         if(this.collapsed){
37322             return this.collapsedEl.getBox();
37323         }
37324         var box = this.el.getBox();
37325         if(this.split){
37326             var sw = this.split.el.getWidth();
37327             box.width += sw;
37328             box.x -= sw;
37329         }
37330         return box;
37331     },
37332
37333     updateBox : function(box){
37334         if(this.split && !this.collapsed){
37335             var sw = this.split.el.getWidth();
37336             box.width -= sw;
37337             this.split.el.setLeft(box.x);
37338             this.split.el.setTop(box.y);
37339             this.split.el.setHeight(box.height);
37340             box.x += sw;
37341         }
37342         if(this.collapsed){
37343             this.updateBody(null, box.height);
37344         }
37345         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37346     }
37347 });
37348
37349 Roo.bootstrap.layout.West = function(config){
37350     config.region = "west";
37351     config.cursor = "w-resize";
37352     
37353     Roo.bootstrap.layout.Split.call(this, config);
37354     if(this.split){
37355         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
37356         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37357         this.split.el.addClass("roo-layout-split-h");
37358     }
37359     
37360 };
37361 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
37362     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37363     
37364     onRender: function(ctr, pos)
37365     {
37366         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
37367         var size = this.config.initialSize || this.config.width;
37368         if(typeof size != "undefined"){
37369             this.el.setWidth(size);
37370         }
37371     },
37372     
37373     getBox : function(){
37374         if(this.collapsed){
37375             return this.collapsedEl.getBox();
37376         }
37377         var box = this.el.getBox();
37378         if(this.split){
37379             box.width += this.split.el.getWidth();
37380         }
37381         return box;
37382     },
37383     
37384     updateBox : function(box){
37385         if(this.split && !this.collapsed){
37386             var sw = this.split.el.getWidth();
37387             box.width -= sw;
37388             this.split.el.setLeft(box.x+box.width);
37389             this.split.el.setTop(box.y);
37390             this.split.el.setHeight(box.height);
37391         }
37392         if(this.collapsed){
37393             this.updateBody(null, box.height);
37394         }
37395         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37396     }
37397 });Roo.namespace("Roo.bootstrap.panel");/*
37398  * Based on:
37399  * Ext JS Library 1.1.1
37400  * Copyright(c) 2006-2007, Ext JS, LLC.
37401  *
37402  * Originally Released Under LGPL - original licence link has changed is not relivant.
37403  *
37404  * Fork - LGPL
37405  * <script type="text/javascript">
37406  */
37407 /**
37408  * @class Roo.ContentPanel
37409  * @extends Roo.util.Observable
37410  * A basic ContentPanel element.
37411  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
37412  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
37413  * @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
37414  * @cfg {Boolean}   closable      True if the panel can be closed/removed
37415  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
37416  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
37417  * @cfg {Toolbar}   toolbar       A toolbar for this panel
37418  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
37419  * @cfg {String} title          The title for this panel
37420  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
37421  * @cfg {String} url            Calls {@link #setUrl} with this value
37422  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
37423  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
37424  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
37425  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
37426  * @cfg {Boolean} badges render the badges
37427
37428  * @constructor
37429  * Create a new ContentPanel.
37430  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
37431  * @param {String/Object} config A string to set only the title or a config object
37432  * @param {String} content (optional) Set the HTML content for this panel
37433  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37434  */
37435 Roo.bootstrap.panel.Content = function( config){
37436     
37437     this.tpl = config.tpl || false;
37438     
37439     var el = config.el;
37440     var content = config.content;
37441
37442     if(config.autoCreate){ // xtype is available if this is called from factory
37443         el = Roo.id();
37444     }
37445     this.el = Roo.get(el);
37446     if(!this.el && config && config.autoCreate){
37447         if(typeof config.autoCreate == "object"){
37448             if(!config.autoCreate.id){
37449                 config.autoCreate.id = config.id||el;
37450             }
37451             this.el = Roo.DomHelper.append(document.body,
37452                         config.autoCreate, true);
37453         }else{
37454             var elcfg =  {   tag: "div",
37455                             cls: "roo-layout-inactive-content",
37456                             id: config.id||el
37457                             };
37458             if (config.html) {
37459                 elcfg.html = config.html;
37460                 
37461             }
37462                         
37463             this.el = Roo.DomHelper.append(document.body, elcfg , true);
37464         }
37465     } 
37466     this.closable = false;
37467     this.loaded = false;
37468     this.active = false;
37469    
37470       
37471     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
37472         
37473         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
37474         
37475         this.wrapEl = this.el; //this.el.wrap();
37476         var ti = [];
37477         if (config.toolbar.items) {
37478             ti = config.toolbar.items ;
37479             delete config.toolbar.items ;
37480         }
37481         
37482         var nitems = [];
37483         this.toolbar.render(this.wrapEl, 'before');
37484         for(var i =0;i < ti.length;i++) {
37485           //  Roo.log(['add child', items[i]]);
37486             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37487         }
37488         this.toolbar.items = nitems;
37489         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
37490         delete config.toolbar;
37491         
37492     }
37493     /*
37494     // xtype created footer. - not sure if will work as we normally have to render first..
37495     if (this.footer && !this.footer.el && this.footer.xtype) {
37496         if (!this.wrapEl) {
37497             this.wrapEl = this.el.wrap();
37498         }
37499     
37500         this.footer.container = this.wrapEl.createChild();
37501          
37502         this.footer = Roo.factory(this.footer, Roo);
37503         
37504     }
37505     */
37506     
37507      if(typeof config == "string"){
37508         this.title = config;
37509     }else{
37510         Roo.apply(this, config);
37511     }
37512     
37513     if(this.resizeEl){
37514         this.resizeEl = Roo.get(this.resizeEl, true);
37515     }else{
37516         this.resizeEl = this.el;
37517     }
37518     // handle view.xtype
37519     
37520  
37521     
37522     
37523     this.addEvents({
37524         /**
37525          * @event activate
37526          * Fires when this panel is activated. 
37527          * @param {Roo.ContentPanel} this
37528          */
37529         "activate" : true,
37530         /**
37531          * @event deactivate
37532          * Fires when this panel is activated. 
37533          * @param {Roo.ContentPanel} this
37534          */
37535         "deactivate" : true,
37536
37537         /**
37538          * @event resize
37539          * Fires when this panel is resized if fitToFrame is true.
37540          * @param {Roo.ContentPanel} this
37541          * @param {Number} width The width after any component adjustments
37542          * @param {Number} height The height after any component adjustments
37543          */
37544         "resize" : true,
37545         
37546          /**
37547          * @event render
37548          * Fires when this tab is created
37549          * @param {Roo.ContentPanel} this
37550          */
37551         "render" : true
37552         
37553         
37554         
37555     });
37556     
37557
37558     
37559     
37560     if(this.autoScroll){
37561         this.resizeEl.setStyle("overflow", "auto");
37562     } else {
37563         // fix randome scrolling
37564         //this.el.on('scroll', function() {
37565         //    Roo.log('fix random scolling');
37566         //    this.scrollTo('top',0); 
37567         //});
37568     }
37569     content = content || this.content;
37570     if(content){
37571         this.setContent(content);
37572     }
37573     if(config && config.url){
37574         this.setUrl(this.url, this.params, this.loadOnce);
37575     }
37576     
37577     
37578     
37579     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
37580     
37581     if (this.view && typeof(this.view.xtype) != 'undefined') {
37582         this.view.el = this.el.appendChild(document.createElement("div"));
37583         this.view = Roo.factory(this.view); 
37584         this.view.render  &&  this.view.render(false, '');  
37585     }
37586     
37587     
37588     this.fireEvent('render', this);
37589 };
37590
37591 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
37592     
37593     tabTip : '',
37594     
37595     setRegion : function(region){
37596         this.region = region;
37597         this.setActiveClass(region && !this.background);
37598     },
37599     
37600     
37601     setActiveClass: function(state)
37602     {
37603         if(state){
37604            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
37605            this.el.setStyle('position','relative');
37606         }else{
37607            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
37608            this.el.setStyle('position', 'absolute');
37609         } 
37610     },
37611     
37612     /**
37613      * Returns the toolbar for this Panel if one was configured. 
37614      * @return {Roo.Toolbar} 
37615      */
37616     getToolbar : function(){
37617         return this.toolbar;
37618     },
37619     
37620     setActiveState : function(active)
37621     {
37622         this.active = active;
37623         this.setActiveClass(active);
37624         if(!active){
37625             if(this.fireEvent("deactivate", this) === false){
37626                 return false;
37627             }
37628             return true;
37629         }
37630         this.fireEvent("activate", this);
37631         return true;
37632     },
37633     /**
37634      * Updates this panel's element
37635      * @param {String} content The new content
37636      * @param {Boolean} loadScripts (optional) true to look for and process scripts
37637     */
37638     setContent : function(content, loadScripts){
37639         this.el.update(content, loadScripts);
37640     },
37641
37642     ignoreResize : function(w, h){
37643         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
37644             return true;
37645         }else{
37646             this.lastSize = {width: w, height: h};
37647             return false;
37648         }
37649     },
37650     /**
37651      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
37652      * @return {Roo.UpdateManager} The UpdateManager
37653      */
37654     getUpdateManager : function(){
37655         return this.el.getUpdateManager();
37656     },
37657      /**
37658      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
37659      * @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:
37660 <pre><code>
37661 panel.load({
37662     url: "your-url.php",
37663     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
37664     callback: yourFunction,
37665     scope: yourObject, //(optional scope)
37666     discardUrl: false,
37667     nocache: false,
37668     text: "Loading...",
37669     timeout: 30,
37670     scripts: false
37671 });
37672 </code></pre>
37673      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
37674      * 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.
37675      * @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}
37676      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
37677      * @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.
37678      * @return {Roo.ContentPanel} this
37679      */
37680     load : function(){
37681         var um = this.el.getUpdateManager();
37682         um.update.apply(um, arguments);
37683         return this;
37684     },
37685
37686
37687     /**
37688      * 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.
37689      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
37690      * @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)
37691      * @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)
37692      * @return {Roo.UpdateManager} The UpdateManager
37693      */
37694     setUrl : function(url, params, loadOnce){
37695         if(this.refreshDelegate){
37696             this.removeListener("activate", this.refreshDelegate);
37697         }
37698         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
37699         this.on("activate", this.refreshDelegate);
37700         return this.el.getUpdateManager();
37701     },
37702     
37703     _handleRefresh : function(url, params, loadOnce){
37704         if(!loadOnce || !this.loaded){
37705             var updater = this.el.getUpdateManager();
37706             updater.update(url, params, this._setLoaded.createDelegate(this));
37707         }
37708     },
37709     
37710     _setLoaded : function(){
37711         this.loaded = true;
37712     }, 
37713     
37714     /**
37715      * Returns this panel's id
37716      * @return {String} 
37717      */
37718     getId : function(){
37719         return this.el.id;
37720     },
37721     
37722     /** 
37723      * Returns this panel's element - used by regiosn to add.
37724      * @return {Roo.Element} 
37725      */
37726     getEl : function(){
37727         return this.wrapEl || this.el;
37728     },
37729     
37730    
37731     
37732     adjustForComponents : function(width, height)
37733     {
37734         //Roo.log('adjustForComponents ');
37735         if(this.resizeEl != this.el){
37736             width -= this.el.getFrameWidth('lr');
37737             height -= this.el.getFrameWidth('tb');
37738         }
37739         if(this.toolbar){
37740             var te = this.toolbar.getEl();
37741             te.setWidth(width);
37742             height -= te.getHeight();
37743         }
37744         if(this.footer){
37745             var te = this.footer.getEl();
37746             te.setWidth(width);
37747             height -= te.getHeight();
37748         }
37749         
37750         
37751         if(this.adjustments){
37752             width += this.adjustments[0];
37753             height += this.adjustments[1];
37754         }
37755         return {"width": width, "height": height};
37756     },
37757     
37758     setSize : function(width, height){
37759         if(this.fitToFrame && !this.ignoreResize(width, height)){
37760             if(this.fitContainer && this.resizeEl != this.el){
37761                 this.el.setSize(width, height);
37762             }
37763             var size = this.adjustForComponents(width, height);
37764             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
37765             this.fireEvent('resize', this, size.width, size.height);
37766         }
37767     },
37768     
37769     /**
37770      * Returns this panel's title
37771      * @return {String} 
37772      */
37773     getTitle : function(){
37774         
37775         if (typeof(this.title) != 'object') {
37776             return this.title;
37777         }
37778         
37779         var t = '';
37780         for (var k in this.title) {
37781             if (!this.title.hasOwnProperty(k)) {
37782                 continue;
37783             }
37784             
37785             if (k.indexOf('-') >= 0) {
37786                 var s = k.split('-');
37787                 for (var i = 0; i<s.length; i++) {
37788                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
37789                 }
37790             } else {
37791                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
37792             }
37793         }
37794         return t;
37795     },
37796     
37797     /**
37798      * Set this panel's title
37799      * @param {String} title
37800      */
37801     setTitle : function(title){
37802         this.title = title;
37803         if(this.region){
37804             this.region.updatePanelTitle(this, title);
37805         }
37806     },
37807     
37808     /**
37809      * Returns true is this panel was configured to be closable
37810      * @return {Boolean} 
37811      */
37812     isClosable : function(){
37813         return this.closable;
37814     },
37815     
37816     beforeSlide : function(){
37817         this.el.clip();
37818         this.resizeEl.clip();
37819     },
37820     
37821     afterSlide : function(){
37822         this.el.unclip();
37823         this.resizeEl.unclip();
37824     },
37825     
37826     /**
37827      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
37828      *   Will fail silently if the {@link #setUrl} method has not been called.
37829      *   This does not activate the panel, just updates its content.
37830      */
37831     refresh : function(){
37832         if(this.refreshDelegate){
37833            this.loaded = false;
37834            this.refreshDelegate();
37835         }
37836     },
37837     
37838     /**
37839      * Destroys this panel
37840      */
37841     destroy : function(){
37842         this.el.removeAllListeners();
37843         var tempEl = document.createElement("span");
37844         tempEl.appendChild(this.el.dom);
37845         tempEl.innerHTML = "";
37846         this.el.remove();
37847         this.el = null;
37848     },
37849     
37850     /**
37851      * form - if the content panel contains a form - this is a reference to it.
37852      * @type {Roo.form.Form}
37853      */
37854     form : false,
37855     /**
37856      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
37857      *    This contains a reference to it.
37858      * @type {Roo.View}
37859      */
37860     view : false,
37861     
37862       /**
37863      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
37864      * <pre><code>
37865
37866 layout.addxtype({
37867        xtype : 'Form',
37868        items: [ .... ]
37869    }
37870 );
37871
37872 </code></pre>
37873      * @param {Object} cfg Xtype definition of item to add.
37874      */
37875     
37876     
37877     getChildContainer: function () {
37878         return this.getEl();
37879     }
37880     
37881     
37882     /*
37883         var  ret = new Roo.factory(cfg);
37884         return ret;
37885         
37886         
37887         // add form..
37888         if (cfg.xtype.match(/^Form$/)) {
37889             
37890             var el;
37891             //if (this.footer) {
37892             //    el = this.footer.container.insertSibling(false, 'before');
37893             //} else {
37894                 el = this.el.createChild();
37895             //}
37896
37897             this.form = new  Roo.form.Form(cfg);
37898             
37899             
37900             if ( this.form.allItems.length) {
37901                 this.form.render(el.dom);
37902             }
37903             return this.form;
37904         }
37905         // should only have one of theses..
37906         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
37907             // views.. should not be just added - used named prop 'view''
37908             
37909             cfg.el = this.el.appendChild(document.createElement("div"));
37910             // factory?
37911             
37912             var ret = new Roo.factory(cfg);
37913              
37914              ret.render && ret.render(false, ''); // render blank..
37915             this.view = ret;
37916             return ret;
37917         }
37918         return false;
37919     }
37920     \*/
37921 });
37922  
37923 /**
37924  * @class Roo.bootstrap.panel.Grid
37925  * @extends Roo.bootstrap.panel.Content
37926  * @constructor
37927  * Create a new GridPanel.
37928  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
37929  * @param {Object} config A the config object
37930   
37931  */
37932
37933
37934
37935 Roo.bootstrap.panel.Grid = function(config)
37936 {
37937     
37938       
37939     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
37940         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
37941
37942     config.el = this.wrapper;
37943     //this.el = this.wrapper;
37944     
37945       if (config.container) {
37946         // ctor'ed from a Border/panel.grid
37947         
37948         
37949         this.wrapper.setStyle("overflow", "hidden");
37950         this.wrapper.addClass('roo-grid-container');
37951
37952     }
37953     
37954     
37955     if(config.toolbar){
37956         var tool_el = this.wrapper.createChild();    
37957         this.toolbar = Roo.factory(config.toolbar);
37958         var ti = [];
37959         if (config.toolbar.items) {
37960             ti = config.toolbar.items ;
37961             delete config.toolbar.items ;
37962         }
37963         
37964         var nitems = [];
37965         this.toolbar.render(tool_el);
37966         for(var i =0;i < ti.length;i++) {
37967           //  Roo.log(['add child', items[i]]);
37968             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37969         }
37970         this.toolbar.items = nitems;
37971         
37972         delete config.toolbar;
37973     }
37974     
37975     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
37976     config.grid.scrollBody = true;;
37977     config.grid.monitorWindowResize = false; // turn off autosizing
37978     config.grid.autoHeight = false;
37979     config.grid.autoWidth = false;
37980     
37981     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
37982     
37983     if (config.background) {
37984         // render grid on panel activation (if panel background)
37985         this.on('activate', function(gp) {
37986             if (!gp.grid.rendered) {
37987                 gp.grid.render(this.wrapper);
37988                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
37989             }
37990         });
37991             
37992     } else {
37993         this.grid.render(this.wrapper);
37994         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
37995
37996     }
37997     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
37998     // ??? needed ??? config.el = this.wrapper;
37999     
38000     
38001     
38002   
38003     // xtype created footer. - not sure if will work as we normally have to render first..
38004     if (this.footer && !this.footer.el && this.footer.xtype) {
38005         
38006         var ctr = this.grid.getView().getFooterPanel(true);
38007         this.footer.dataSource = this.grid.dataSource;
38008         this.footer = Roo.factory(this.footer, Roo);
38009         this.footer.render(ctr);
38010         
38011     }
38012     
38013     
38014     
38015     
38016      
38017 };
38018
38019 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content, {
38020     getId : function(){
38021         return this.grid.id;
38022     },
38023     
38024     /**
38025      * Returns the grid for this panel
38026      * @return {Roo.bootstrap.Table} 
38027      */
38028     getGrid : function(){
38029         return this.grid;    
38030     },
38031     
38032     setSize : function(width, height){
38033         if(!this.ignoreResize(width, height)){
38034             var grid = this.grid;
38035             var size = this.adjustForComponents(width, height);
38036             var gridel = grid.getGridEl();
38037             gridel.setSize(size.width, size.height);
38038             /*
38039             var thd = grid.getGridEl().select('thead',true).first();
38040             var tbd = grid.getGridEl().select('tbody', true).first();
38041             if (tbd) {
38042                 tbd.setSize(width, height - thd.getHeight());
38043             }
38044             */
38045             grid.autoSize();
38046         }
38047     },
38048      
38049     
38050     
38051     beforeSlide : function(){
38052         this.grid.getView().scroller.clip();
38053     },
38054     
38055     afterSlide : function(){
38056         this.grid.getView().scroller.unclip();
38057     },
38058     
38059     destroy : function(){
38060         this.grid.destroy();
38061         delete this.grid;
38062         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
38063     }
38064 });
38065
38066 /**
38067  * @class Roo.bootstrap.panel.Nest
38068  * @extends Roo.bootstrap.panel.Content
38069  * @constructor
38070  * Create a new Panel, that can contain a layout.Border.
38071  * 
38072  * 
38073  * @param {Roo.BorderLayout} layout The layout for this panel
38074  * @param {String/Object} config A string to set only the title or a config object
38075  */
38076 Roo.bootstrap.panel.Nest = function(config)
38077 {
38078     // construct with only one argument..
38079     /* FIXME - implement nicer consturctors
38080     if (layout.layout) {
38081         config = layout;
38082         layout = config.layout;
38083         delete config.layout;
38084     }
38085     if (layout.xtype && !layout.getEl) {
38086         // then layout needs constructing..
38087         layout = Roo.factory(layout, Roo);
38088     }
38089     */
38090     
38091     config.el =  config.layout.getEl();
38092     
38093     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
38094     
38095     config.layout.monitorWindowResize = false; // turn off autosizing
38096     this.layout = config.layout;
38097     this.layout.getEl().addClass("roo-layout-nested-layout");
38098     this.layout.parent = this;
38099     
38100     
38101     
38102     
38103 };
38104
38105 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
38106
38107     setSize : function(width, height){
38108         if(!this.ignoreResize(width, height)){
38109             var size = this.adjustForComponents(width, height);
38110             var el = this.layout.getEl();
38111             if (size.height < 1) {
38112                 el.setWidth(size.width);   
38113             } else {
38114                 el.setSize(size.width, size.height);
38115             }
38116             var touch = el.dom.offsetWidth;
38117             this.layout.layout();
38118             // ie requires a double layout on the first pass
38119             if(Roo.isIE && !this.initialized){
38120                 this.initialized = true;
38121                 this.layout.layout();
38122             }
38123         }
38124     },
38125     
38126     // activate all subpanels if not currently active..
38127     
38128     setActiveState : function(active){
38129         this.active = active;
38130         this.setActiveClass(active);
38131         
38132         if(!active){
38133             this.fireEvent("deactivate", this);
38134             return;
38135         }
38136         
38137         this.fireEvent("activate", this);
38138         // not sure if this should happen before or after..
38139         if (!this.layout) {
38140             return; // should not happen..
38141         }
38142         var reg = false;
38143         for (var r in this.layout.regions) {
38144             reg = this.layout.getRegion(r);
38145             if (reg.getActivePanel()) {
38146                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
38147                 reg.setActivePanel(reg.getActivePanel());
38148                 continue;
38149             }
38150             if (!reg.panels.length) {
38151                 continue;
38152             }
38153             reg.showPanel(reg.getPanel(0));
38154         }
38155         
38156         
38157         
38158         
38159     },
38160     
38161     /**
38162      * Returns the nested BorderLayout for this panel
38163      * @return {Roo.BorderLayout} 
38164      */
38165     getLayout : function(){
38166         return this.layout;
38167     },
38168     
38169      /**
38170      * Adds a xtype elements to the layout of the nested panel
38171      * <pre><code>
38172
38173 panel.addxtype({
38174        xtype : 'ContentPanel',
38175        region: 'west',
38176        items: [ .... ]
38177    }
38178 );
38179
38180 panel.addxtype({
38181         xtype : 'NestedLayoutPanel',
38182         region: 'west',
38183         layout: {
38184            center: { },
38185            west: { }   
38186         },
38187         items : [ ... list of content panels or nested layout panels.. ]
38188    }
38189 );
38190 </code></pre>
38191      * @param {Object} cfg Xtype definition of item to add.
38192      */
38193     addxtype : function(cfg) {
38194         return this.layout.addxtype(cfg);
38195     
38196     }
38197 });/*
38198  * Based on:
38199  * Ext JS Library 1.1.1
38200  * Copyright(c) 2006-2007, Ext JS, LLC.
38201  *
38202  * Originally Released Under LGPL - original licence link has changed is not relivant.
38203  *
38204  * Fork - LGPL
38205  * <script type="text/javascript">
38206  */
38207 /**
38208  * @class Roo.TabPanel
38209  * @extends Roo.util.Observable
38210  * A lightweight tab container.
38211  * <br><br>
38212  * Usage:
38213  * <pre><code>
38214 // basic tabs 1, built from existing content
38215 var tabs = new Roo.TabPanel("tabs1");
38216 tabs.addTab("script", "View Script");
38217 tabs.addTab("markup", "View Markup");
38218 tabs.activate("script");
38219
38220 // more advanced tabs, built from javascript
38221 var jtabs = new Roo.TabPanel("jtabs");
38222 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
38223
38224 // set up the UpdateManager
38225 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
38226 var updater = tab2.getUpdateManager();
38227 updater.setDefaultUrl("ajax1.htm");
38228 tab2.on('activate', updater.refresh, updater, true);
38229
38230 // Use setUrl for Ajax loading
38231 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
38232 tab3.setUrl("ajax2.htm", null, true);
38233
38234 // Disabled tab
38235 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
38236 tab4.disable();
38237
38238 jtabs.activate("jtabs-1");
38239  * </code></pre>
38240  * @constructor
38241  * Create a new TabPanel.
38242  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
38243  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
38244  */
38245 Roo.bootstrap.panel.Tabs = function(config){
38246     /**
38247     * The container element for this TabPanel.
38248     * @type Roo.Element
38249     */
38250     this.el = Roo.get(config.el);
38251     delete config.el;
38252     if(config){
38253         if(typeof config == "boolean"){
38254             this.tabPosition = config ? "bottom" : "top";
38255         }else{
38256             Roo.apply(this, config);
38257         }
38258     }
38259     
38260     if(this.tabPosition == "bottom"){
38261         // if tabs are at the bottom = create the body first.
38262         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38263         this.el.addClass("roo-tabs-bottom");
38264     }
38265     // next create the tabs holders
38266     
38267     if (this.tabPosition == "west"){
38268         
38269         var reg = this.region; // fake it..
38270         while (reg) {
38271             if (!reg.mgr.parent) {
38272                 break;
38273             }
38274             reg = reg.mgr.parent.region;
38275         }
38276         Roo.log("got nest?");
38277         Roo.log(reg);
38278         if (reg.mgr.getRegion('west')) {
38279             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
38280             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
38281             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38282             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38283             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38284         
38285             
38286         }
38287         
38288         
38289     } else {
38290      
38291         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
38292         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38293         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38294         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38295     }
38296     
38297     
38298     if(Roo.isIE){
38299         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
38300     }
38301     
38302     // finally - if tabs are at the top, then create the body last..
38303     if(this.tabPosition != "bottom"){
38304         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
38305          * @type Roo.Element
38306          */
38307         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38308         this.el.addClass("roo-tabs-top");
38309     }
38310     this.items = [];
38311
38312     this.bodyEl.setStyle("position", "relative");
38313
38314     this.active = null;
38315     this.activateDelegate = this.activate.createDelegate(this);
38316
38317     this.addEvents({
38318         /**
38319          * @event tabchange
38320          * Fires when the active tab changes
38321          * @param {Roo.TabPanel} this
38322          * @param {Roo.TabPanelItem} activePanel The new active tab
38323          */
38324         "tabchange": true,
38325         /**
38326          * @event beforetabchange
38327          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
38328          * @param {Roo.TabPanel} this
38329          * @param {Object} e Set cancel to true on this object to cancel the tab change
38330          * @param {Roo.TabPanelItem} tab The tab being changed to
38331          */
38332         "beforetabchange" : true
38333     });
38334
38335     Roo.EventManager.onWindowResize(this.onResize, this);
38336     this.cpad = this.el.getPadding("lr");
38337     this.hiddenCount = 0;
38338
38339
38340     // toolbar on the tabbar support...
38341     if (this.toolbar) {
38342         alert("no toolbar support yet");
38343         this.toolbar  = false;
38344         /*
38345         var tcfg = this.toolbar;
38346         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
38347         this.toolbar = new Roo.Toolbar(tcfg);
38348         if (Roo.isSafari) {
38349             var tbl = tcfg.container.child('table', true);
38350             tbl.setAttribute('width', '100%');
38351         }
38352         */
38353         
38354     }
38355    
38356
38357
38358     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
38359 };
38360
38361 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
38362     /*
38363      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
38364      */
38365     tabPosition : "top",
38366     /*
38367      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
38368      */
38369     currentTabWidth : 0,
38370     /*
38371      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
38372      */
38373     minTabWidth : 40,
38374     /*
38375      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
38376      */
38377     maxTabWidth : 250,
38378     /*
38379      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
38380      */
38381     preferredTabWidth : 175,
38382     /*
38383      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
38384      */
38385     resizeTabs : false,
38386     /*
38387      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
38388      */
38389     monitorResize : true,
38390     /*
38391      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
38392      */
38393     toolbar : false,  // set by caller..
38394     
38395     region : false, /// set by caller
38396     
38397     disableTooltips : true, // not used yet...
38398
38399     /**
38400      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
38401      * @param {String} id The id of the div to use <b>or create</b>
38402      * @param {String} text The text for the tab
38403      * @param {String} content (optional) Content to put in the TabPanelItem body
38404      * @param {Boolean} closable (optional) True to create a close icon on the tab
38405      * @return {Roo.TabPanelItem} The created TabPanelItem
38406      */
38407     addTab : function(id, text, content, closable, tpl)
38408     {
38409         var item = new Roo.bootstrap.panel.TabItem({
38410             panel: this,
38411             id : id,
38412             text : text,
38413             closable : closable,
38414             tpl : tpl
38415         });
38416         this.addTabItem(item);
38417         if(content){
38418             item.setContent(content);
38419         }
38420         return item;
38421     },
38422
38423     /**
38424      * Returns the {@link Roo.TabPanelItem} with the specified id/index
38425      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
38426      * @return {Roo.TabPanelItem}
38427      */
38428     getTab : function(id){
38429         return this.items[id];
38430     },
38431
38432     /**
38433      * Hides the {@link Roo.TabPanelItem} with the specified id/index
38434      * @param {String/Number} id The id or index of the TabPanelItem to hide.
38435      */
38436     hideTab : function(id){
38437         var t = this.items[id];
38438         if(!t.isHidden()){
38439            t.setHidden(true);
38440            this.hiddenCount++;
38441            this.autoSizeTabs();
38442         }
38443     },
38444
38445     /**
38446      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
38447      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
38448      */
38449     unhideTab : function(id){
38450         var t = this.items[id];
38451         if(t.isHidden()){
38452            t.setHidden(false);
38453            this.hiddenCount--;
38454            this.autoSizeTabs();
38455         }
38456     },
38457
38458     /**
38459      * Adds an existing {@link Roo.TabPanelItem}.
38460      * @param {Roo.TabPanelItem} item The TabPanelItem to add
38461      */
38462     addTabItem : function(item)
38463     {
38464         this.items[item.id] = item;
38465         this.items.push(item);
38466         this.autoSizeTabs();
38467       //  if(this.resizeTabs){
38468     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
38469   //         this.autoSizeTabs();
38470 //        }else{
38471 //            item.autoSize();
38472        // }
38473     },
38474
38475     /**
38476      * Removes a {@link Roo.TabPanelItem}.
38477      * @param {String/Number} id The id or index of the TabPanelItem to remove.
38478      */
38479     removeTab : function(id){
38480         var items = this.items;
38481         var tab = items[id];
38482         if(!tab) { return; }
38483         var index = items.indexOf(tab);
38484         if(this.active == tab && items.length > 1){
38485             var newTab = this.getNextAvailable(index);
38486             if(newTab) {
38487                 newTab.activate();
38488             }
38489         }
38490         this.stripEl.dom.removeChild(tab.pnode.dom);
38491         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
38492             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
38493         }
38494         items.splice(index, 1);
38495         delete this.items[tab.id];
38496         tab.fireEvent("close", tab);
38497         tab.purgeListeners();
38498         this.autoSizeTabs();
38499     },
38500
38501     getNextAvailable : function(start){
38502         var items = this.items;
38503         var index = start;
38504         // look for a next tab that will slide over to
38505         // replace the one being removed
38506         while(index < items.length){
38507             var item = items[++index];
38508             if(item && !item.isHidden()){
38509                 return item;
38510             }
38511         }
38512         // if one isn't found select the previous tab (on the left)
38513         index = start;
38514         while(index >= 0){
38515             var item = items[--index];
38516             if(item && !item.isHidden()){
38517                 return item;
38518             }
38519         }
38520         return null;
38521     },
38522
38523     /**
38524      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
38525      * @param {String/Number} id The id or index of the TabPanelItem to disable.
38526      */
38527     disableTab : function(id){
38528         var tab = this.items[id];
38529         if(tab && this.active != tab){
38530             tab.disable();
38531         }
38532     },
38533
38534     /**
38535      * Enables a {@link Roo.TabPanelItem} that is disabled.
38536      * @param {String/Number} id The id or index of the TabPanelItem to enable.
38537      */
38538     enableTab : function(id){
38539         var tab = this.items[id];
38540         tab.enable();
38541     },
38542
38543     /**
38544      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
38545      * @param {String/Number} id The id or index of the TabPanelItem to activate.
38546      * @return {Roo.TabPanelItem} The TabPanelItem.
38547      */
38548     activate : function(id)
38549     {
38550         //Roo.log('activite:'  + id);
38551         
38552         var tab = this.items[id];
38553         if(!tab){
38554             return null;
38555         }
38556         if(tab == this.active || tab.disabled){
38557             return tab;
38558         }
38559         var e = {};
38560         this.fireEvent("beforetabchange", this, e, tab);
38561         if(e.cancel !== true && !tab.disabled){
38562             if(this.active){
38563                 this.active.hide();
38564             }
38565             this.active = this.items[id];
38566             this.active.show();
38567             this.fireEvent("tabchange", this, this.active);
38568         }
38569         return tab;
38570     },
38571
38572     /**
38573      * Gets the active {@link Roo.TabPanelItem}.
38574      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
38575      */
38576     getActiveTab : function(){
38577         return this.active;
38578     },
38579
38580     /**
38581      * Updates the tab body element to fit the height of the container element
38582      * for overflow scrolling
38583      * @param {Number} targetHeight (optional) Override the starting height from the elements height
38584      */
38585     syncHeight : function(targetHeight){
38586         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
38587         var bm = this.bodyEl.getMargins();
38588         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
38589         this.bodyEl.setHeight(newHeight);
38590         return newHeight;
38591     },
38592
38593     onResize : function(){
38594         if(this.monitorResize){
38595             this.autoSizeTabs();
38596         }
38597     },
38598
38599     /**
38600      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
38601      */
38602     beginUpdate : function(){
38603         this.updating = true;
38604     },
38605
38606     /**
38607      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
38608      */
38609     endUpdate : function(){
38610         this.updating = false;
38611         this.autoSizeTabs();
38612     },
38613
38614     /**
38615      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
38616      */
38617     autoSizeTabs : function()
38618     {
38619         var count = this.items.length;
38620         var vcount = count - this.hiddenCount;
38621         
38622         if (vcount < 2) {
38623             this.stripEl.hide();
38624         } else {
38625             this.stripEl.show();
38626         }
38627         
38628         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
38629             return;
38630         }
38631         
38632         
38633         var w = Math.max(this.el.getWidth() - this.cpad, 10);
38634         var availWidth = Math.floor(w / vcount);
38635         var b = this.stripBody;
38636         if(b.getWidth() > w){
38637             var tabs = this.items;
38638             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
38639             if(availWidth < this.minTabWidth){
38640                 /*if(!this.sleft){    // incomplete scrolling code
38641                     this.createScrollButtons();
38642                 }
38643                 this.showScroll();
38644                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
38645             }
38646         }else{
38647             if(this.currentTabWidth < this.preferredTabWidth){
38648                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
38649             }
38650         }
38651     },
38652
38653     /**
38654      * Returns the number of tabs in this TabPanel.
38655      * @return {Number}
38656      */
38657      getCount : function(){
38658          return this.items.length;
38659      },
38660
38661     /**
38662      * Resizes all the tabs to the passed width
38663      * @param {Number} The new width
38664      */
38665     setTabWidth : function(width){
38666         this.currentTabWidth = width;
38667         for(var i = 0, len = this.items.length; i < len; i++) {
38668                 if(!this.items[i].isHidden()) {
38669                 this.items[i].setWidth(width);
38670             }
38671         }
38672     },
38673
38674     /**
38675      * Destroys this TabPanel
38676      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
38677      */
38678     destroy : function(removeEl){
38679         Roo.EventManager.removeResizeListener(this.onResize, this);
38680         for(var i = 0, len = this.items.length; i < len; i++){
38681             this.items[i].purgeListeners();
38682         }
38683         if(removeEl === true){
38684             this.el.update("");
38685             this.el.remove();
38686         }
38687     },
38688     
38689     createStrip : function(container)
38690     {
38691         var strip = document.createElement("nav");
38692         strip.className = Roo.bootstrap.version == 4 ?
38693             "navbar-light bg-light" : 
38694             "navbar navbar-default"; //"x-tabs-wrap";
38695         container.appendChild(strip);
38696         return strip;
38697     },
38698     
38699     createStripList : function(strip)
38700     {
38701         // div wrapper for retard IE
38702         // returns the "tr" element.
38703         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
38704         //'<div class="x-tabs-strip-wrap">'+
38705           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
38706           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
38707         return strip.firstChild; //.firstChild.firstChild.firstChild;
38708     },
38709     createBody : function(container)
38710     {
38711         var body = document.createElement("div");
38712         Roo.id(body, "tab-body");
38713         //Roo.fly(body).addClass("x-tabs-body");
38714         Roo.fly(body).addClass("tab-content");
38715         container.appendChild(body);
38716         return body;
38717     },
38718     createItemBody :function(bodyEl, id){
38719         var body = Roo.getDom(id);
38720         if(!body){
38721             body = document.createElement("div");
38722             body.id = id;
38723         }
38724         //Roo.fly(body).addClass("x-tabs-item-body");
38725         Roo.fly(body).addClass("tab-pane");
38726          bodyEl.insertBefore(body, bodyEl.firstChild);
38727         return body;
38728     },
38729     /** @private */
38730     createStripElements :  function(stripEl, text, closable, tpl)
38731     {
38732         var td = document.createElement("li"); // was td..
38733         td.className = 'nav-item';
38734         
38735         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
38736         
38737         
38738         stripEl.appendChild(td);
38739         /*if(closable){
38740             td.className = "x-tabs-closable";
38741             if(!this.closeTpl){
38742                 this.closeTpl = new Roo.Template(
38743                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38744                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
38745                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
38746                 );
38747             }
38748             var el = this.closeTpl.overwrite(td, {"text": text});
38749             var close = el.getElementsByTagName("div")[0];
38750             var inner = el.getElementsByTagName("em")[0];
38751             return {"el": el, "close": close, "inner": inner};
38752         } else {
38753         */
38754         // not sure what this is..
38755 //            if(!this.tabTpl){
38756                 //this.tabTpl = new Roo.Template(
38757                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38758                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
38759                 //);
38760 //                this.tabTpl = new Roo.Template(
38761 //                   '<a href="#">' +
38762 //                   '<span unselectable="on"' +
38763 //                            (this.disableTooltips ? '' : ' title="{text}"') +
38764 //                            ' >{text}</span></a>'
38765 //                );
38766 //                
38767 //            }
38768
38769
38770             var template = tpl || this.tabTpl || false;
38771             
38772             if(!template){
38773                 template =  new Roo.Template(
38774                         Roo.bootstrap.version == 4 ? 
38775                             (
38776                                 '<a class="nav-link" href="#" unselectable="on"' +
38777                                      (this.disableTooltips ? '' : ' title="{text}"') +
38778                                      ' >{text}</a>'
38779                             ) : (
38780                                 '<a class="nav-link" href="#">' +
38781                                 '<span unselectable="on"' +
38782                                          (this.disableTooltips ? '' : ' title="{text}"') +
38783                                     ' >{text}</span></a>'
38784                             )
38785                 );
38786             }
38787             
38788             switch (typeof(template)) {
38789                 case 'object' :
38790                     break;
38791                 case 'string' :
38792                     template = new Roo.Template(template);
38793                     break;
38794                 default :
38795                     break;
38796             }
38797             
38798             var el = template.overwrite(td, {"text": text});
38799             
38800             var inner = el.getElementsByTagName("span")[0];
38801             
38802             return {"el": el, "inner": inner};
38803             
38804     }
38805         
38806     
38807 });
38808
38809 /**
38810  * @class Roo.TabPanelItem
38811  * @extends Roo.util.Observable
38812  * Represents an individual item (tab plus body) in a TabPanel.
38813  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
38814  * @param {String} id The id of this TabPanelItem
38815  * @param {String} text The text for the tab of this TabPanelItem
38816  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
38817  */
38818 Roo.bootstrap.panel.TabItem = function(config){
38819     /**
38820      * The {@link Roo.TabPanel} this TabPanelItem belongs to
38821      * @type Roo.TabPanel
38822      */
38823     this.tabPanel = config.panel;
38824     /**
38825      * The id for this TabPanelItem
38826      * @type String
38827      */
38828     this.id = config.id;
38829     /** @private */
38830     this.disabled = false;
38831     /** @private */
38832     this.text = config.text;
38833     /** @private */
38834     this.loaded = false;
38835     this.closable = config.closable;
38836
38837     /**
38838      * The body element for this TabPanelItem.
38839      * @type Roo.Element
38840      */
38841     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
38842     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
38843     this.bodyEl.setStyle("display", "block");
38844     this.bodyEl.setStyle("zoom", "1");
38845     //this.hideAction();
38846
38847     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
38848     /** @private */
38849     this.el = Roo.get(els.el);
38850     this.inner = Roo.get(els.inner, true);
38851      this.textEl = Roo.bootstrap.version == 4 ?
38852         this.el : Roo.get(this.el.dom.firstChild, true);
38853
38854     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
38855     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
38856
38857     
38858 //    this.el.on("mousedown", this.onTabMouseDown, this);
38859     this.el.on("click", this.onTabClick, this);
38860     /** @private */
38861     if(config.closable){
38862         var c = Roo.get(els.close, true);
38863         c.dom.title = this.closeText;
38864         c.addClassOnOver("close-over");
38865         c.on("click", this.closeClick, this);
38866      }
38867
38868     this.addEvents({
38869          /**
38870          * @event activate
38871          * Fires when this tab becomes the active tab.
38872          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38873          * @param {Roo.TabPanelItem} this
38874          */
38875         "activate": true,
38876         /**
38877          * @event beforeclose
38878          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
38879          * @param {Roo.TabPanelItem} this
38880          * @param {Object} e Set cancel to true on this object to cancel the close.
38881          */
38882         "beforeclose": true,
38883         /**
38884          * @event close
38885          * Fires when this tab is closed.
38886          * @param {Roo.TabPanelItem} this
38887          */
38888          "close": true,
38889         /**
38890          * @event deactivate
38891          * Fires when this tab is no longer the active tab.
38892          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38893          * @param {Roo.TabPanelItem} this
38894          */
38895          "deactivate" : true
38896     });
38897     this.hidden = false;
38898
38899     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
38900 };
38901
38902 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
38903            {
38904     purgeListeners : function(){
38905        Roo.util.Observable.prototype.purgeListeners.call(this);
38906        this.el.removeAllListeners();
38907     },
38908     /**
38909      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
38910      */
38911     show : function(){
38912         this.status_node.addClass("active");
38913         this.showAction();
38914         if(Roo.isOpera){
38915             this.tabPanel.stripWrap.repaint();
38916         }
38917         this.fireEvent("activate", this.tabPanel, this);
38918     },
38919
38920     /**
38921      * Returns true if this tab is the active tab.
38922      * @return {Boolean}
38923      */
38924     isActive : function(){
38925         return this.tabPanel.getActiveTab() == this;
38926     },
38927
38928     /**
38929      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
38930      */
38931     hide : function(){
38932         this.status_node.removeClass("active");
38933         this.hideAction();
38934         this.fireEvent("deactivate", this.tabPanel, this);
38935     },
38936
38937     hideAction : function(){
38938         this.bodyEl.hide();
38939         this.bodyEl.setStyle("position", "absolute");
38940         this.bodyEl.setLeft("-20000px");
38941         this.bodyEl.setTop("-20000px");
38942     },
38943
38944     showAction : function(){
38945         this.bodyEl.setStyle("position", "relative");
38946         this.bodyEl.setTop("");
38947         this.bodyEl.setLeft("");
38948         this.bodyEl.show();
38949     },
38950
38951     /**
38952      * Set the tooltip for the tab.
38953      * @param {String} tooltip The tab's tooltip
38954      */
38955     setTooltip : function(text){
38956         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
38957             this.textEl.dom.qtip = text;
38958             this.textEl.dom.removeAttribute('title');
38959         }else{
38960             this.textEl.dom.title = text;
38961         }
38962     },
38963
38964     onTabClick : function(e){
38965         e.preventDefault();
38966         this.tabPanel.activate(this.id);
38967     },
38968
38969     onTabMouseDown : function(e){
38970         e.preventDefault();
38971         this.tabPanel.activate(this.id);
38972     },
38973 /*
38974     getWidth : function(){
38975         return this.inner.getWidth();
38976     },
38977
38978     setWidth : function(width){
38979         var iwidth = width - this.linode.getPadding("lr");
38980         this.inner.setWidth(iwidth);
38981         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
38982         this.linode.setWidth(width);
38983     },
38984 */
38985     /**
38986      * Show or hide the tab
38987      * @param {Boolean} hidden True to hide or false to show.
38988      */
38989     setHidden : function(hidden){
38990         this.hidden = hidden;
38991         this.linode.setStyle("display", hidden ? "none" : "");
38992     },
38993
38994     /**
38995      * Returns true if this tab is "hidden"
38996      * @return {Boolean}
38997      */
38998     isHidden : function(){
38999         return this.hidden;
39000     },
39001
39002     /**
39003      * Returns the text for this tab
39004      * @return {String}
39005      */
39006     getText : function(){
39007         return this.text;
39008     },
39009     /*
39010     autoSize : function(){
39011         //this.el.beginMeasure();
39012         this.textEl.setWidth(1);
39013         /*
39014          *  #2804 [new] Tabs in Roojs
39015          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
39016          */
39017         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
39018         //this.el.endMeasure();
39019     //},
39020
39021     /**
39022      * Sets the text for the tab (Note: this also sets the tooltip text)
39023      * @param {String} text The tab's text and tooltip
39024      */
39025     setText : function(text){
39026         this.text = text;
39027         this.textEl.update(text);
39028         this.setTooltip(text);
39029         //if(!this.tabPanel.resizeTabs){
39030         //    this.autoSize();
39031         //}
39032     },
39033     /**
39034      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
39035      */
39036     activate : function(){
39037         this.tabPanel.activate(this.id);
39038     },
39039
39040     /**
39041      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
39042      */
39043     disable : function(){
39044         if(this.tabPanel.active != this){
39045             this.disabled = true;
39046             this.status_node.addClass("disabled");
39047         }
39048     },
39049
39050     /**
39051      * Enables this TabPanelItem if it was previously disabled.
39052      */
39053     enable : function(){
39054         this.disabled = false;
39055         this.status_node.removeClass("disabled");
39056     },
39057
39058     /**
39059      * Sets the content for this TabPanelItem.
39060      * @param {String} content The content
39061      * @param {Boolean} loadScripts true to look for and load scripts
39062      */
39063     setContent : function(content, loadScripts){
39064         this.bodyEl.update(content, loadScripts);
39065     },
39066
39067     /**
39068      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
39069      * @return {Roo.UpdateManager} The UpdateManager
39070      */
39071     getUpdateManager : function(){
39072         return this.bodyEl.getUpdateManager();
39073     },
39074
39075     /**
39076      * Set a URL to be used to load the content for this TabPanelItem.
39077      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
39078      * @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)
39079      * @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)
39080      * @return {Roo.UpdateManager} The UpdateManager
39081      */
39082     setUrl : function(url, params, loadOnce){
39083         if(this.refreshDelegate){
39084             this.un('activate', this.refreshDelegate);
39085         }
39086         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
39087         this.on("activate", this.refreshDelegate);
39088         return this.bodyEl.getUpdateManager();
39089     },
39090
39091     /** @private */
39092     _handleRefresh : function(url, params, loadOnce){
39093         if(!loadOnce || !this.loaded){
39094             var updater = this.bodyEl.getUpdateManager();
39095             updater.update(url, params, this._setLoaded.createDelegate(this));
39096         }
39097     },
39098
39099     /**
39100      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
39101      *   Will fail silently if the setUrl method has not been called.
39102      *   This does not activate the panel, just updates its content.
39103      */
39104     refresh : function(){
39105         if(this.refreshDelegate){
39106            this.loaded = false;
39107            this.refreshDelegate();
39108         }
39109     },
39110
39111     /** @private */
39112     _setLoaded : function(){
39113         this.loaded = true;
39114     },
39115
39116     /** @private */
39117     closeClick : function(e){
39118         var o = {};
39119         e.stopEvent();
39120         this.fireEvent("beforeclose", this, o);
39121         if(o.cancel !== true){
39122             this.tabPanel.removeTab(this.id);
39123         }
39124     },
39125     /**
39126      * The text displayed in the tooltip for the close icon.
39127      * @type String
39128      */
39129     closeText : "Close this tab"
39130 });
39131 /**
39132 *    This script refer to:
39133 *    Title: International Telephone Input
39134 *    Author: Jack O'Connor
39135 *    Code version:  v12.1.12
39136 *    Availability: https://github.com/jackocnr/intl-tel-input.git
39137 **/
39138
39139 Roo.bootstrap.PhoneInputData = function() {
39140     var d = [
39141       [
39142         "Afghanistan (‫افغانستان‬‎)",
39143         "af",
39144         "93"
39145       ],
39146       [
39147         "Albania (Shqipëri)",
39148         "al",
39149         "355"
39150       ],
39151       [
39152         "Algeria (‫الجزائر‬‎)",
39153         "dz",
39154         "213"
39155       ],
39156       [
39157         "American Samoa",
39158         "as",
39159         "1684"
39160       ],
39161       [
39162         "Andorra",
39163         "ad",
39164         "376"
39165       ],
39166       [
39167         "Angola",
39168         "ao",
39169         "244"
39170       ],
39171       [
39172         "Anguilla",
39173         "ai",
39174         "1264"
39175       ],
39176       [
39177         "Antigua and Barbuda",
39178         "ag",
39179         "1268"
39180       ],
39181       [
39182         "Argentina",
39183         "ar",
39184         "54"
39185       ],
39186       [
39187         "Armenia (Հայաստան)",
39188         "am",
39189         "374"
39190       ],
39191       [
39192         "Aruba",
39193         "aw",
39194         "297"
39195       ],
39196       [
39197         "Australia",
39198         "au",
39199         "61",
39200         0
39201       ],
39202       [
39203         "Austria (Österreich)",
39204         "at",
39205         "43"
39206       ],
39207       [
39208         "Azerbaijan (Azərbaycan)",
39209         "az",
39210         "994"
39211       ],
39212       [
39213         "Bahamas",
39214         "bs",
39215         "1242"
39216       ],
39217       [
39218         "Bahrain (‫البحرين‬‎)",
39219         "bh",
39220         "973"
39221       ],
39222       [
39223         "Bangladesh (বাংলাদেশ)",
39224         "bd",
39225         "880"
39226       ],
39227       [
39228         "Barbados",
39229         "bb",
39230         "1246"
39231       ],
39232       [
39233         "Belarus (Беларусь)",
39234         "by",
39235         "375"
39236       ],
39237       [
39238         "Belgium (België)",
39239         "be",
39240         "32"
39241       ],
39242       [
39243         "Belize",
39244         "bz",
39245         "501"
39246       ],
39247       [
39248         "Benin (Bénin)",
39249         "bj",
39250         "229"
39251       ],
39252       [
39253         "Bermuda",
39254         "bm",
39255         "1441"
39256       ],
39257       [
39258         "Bhutan (འབྲུག)",
39259         "bt",
39260         "975"
39261       ],
39262       [
39263         "Bolivia",
39264         "bo",
39265         "591"
39266       ],
39267       [
39268         "Bosnia and Herzegovina (Босна и Херцеговина)",
39269         "ba",
39270         "387"
39271       ],
39272       [
39273         "Botswana",
39274         "bw",
39275         "267"
39276       ],
39277       [
39278         "Brazil (Brasil)",
39279         "br",
39280         "55"
39281       ],
39282       [
39283         "British Indian Ocean Territory",
39284         "io",
39285         "246"
39286       ],
39287       [
39288         "British Virgin Islands",
39289         "vg",
39290         "1284"
39291       ],
39292       [
39293         "Brunei",
39294         "bn",
39295         "673"
39296       ],
39297       [
39298         "Bulgaria (България)",
39299         "bg",
39300         "359"
39301       ],
39302       [
39303         "Burkina Faso",
39304         "bf",
39305         "226"
39306       ],
39307       [
39308         "Burundi (Uburundi)",
39309         "bi",
39310         "257"
39311       ],
39312       [
39313         "Cambodia (កម្ពុជា)",
39314         "kh",
39315         "855"
39316       ],
39317       [
39318         "Cameroon (Cameroun)",
39319         "cm",
39320         "237"
39321       ],
39322       [
39323         "Canada",
39324         "ca",
39325         "1",
39326         1,
39327         ["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"]
39328       ],
39329       [
39330         "Cape Verde (Kabu Verdi)",
39331         "cv",
39332         "238"
39333       ],
39334       [
39335         "Caribbean Netherlands",
39336         "bq",
39337         "599",
39338         1
39339       ],
39340       [
39341         "Cayman Islands",
39342         "ky",
39343         "1345"
39344       ],
39345       [
39346         "Central African Republic (République centrafricaine)",
39347         "cf",
39348         "236"
39349       ],
39350       [
39351         "Chad (Tchad)",
39352         "td",
39353         "235"
39354       ],
39355       [
39356         "Chile",
39357         "cl",
39358         "56"
39359       ],
39360       [
39361         "China (中国)",
39362         "cn",
39363         "86"
39364       ],
39365       [
39366         "Christmas Island",
39367         "cx",
39368         "61",
39369         2
39370       ],
39371       [
39372         "Cocos (Keeling) Islands",
39373         "cc",
39374         "61",
39375         1
39376       ],
39377       [
39378         "Colombia",
39379         "co",
39380         "57"
39381       ],
39382       [
39383         "Comoros (‫جزر القمر‬‎)",
39384         "km",
39385         "269"
39386       ],
39387       [
39388         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
39389         "cd",
39390         "243"
39391       ],
39392       [
39393         "Congo (Republic) (Congo-Brazzaville)",
39394         "cg",
39395         "242"
39396       ],
39397       [
39398         "Cook Islands",
39399         "ck",
39400         "682"
39401       ],
39402       [
39403         "Costa Rica",
39404         "cr",
39405         "506"
39406       ],
39407       [
39408         "Côte d’Ivoire",
39409         "ci",
39410         "225"
39411       ],
39412       [
39413         "Croatia (Hrvatska)",
39414         "hr",
39415         "385"
39416       ],
39417       [
39418         "Cuba",
39419         "cu",
39420         "53"
39421       ],
39422       [
39423         "Curaçao",
39424         "cw",
39425         "599",
39426         0
39427       ],
39428       [
39429         "Cyprus (Κύπρος)",
39430         "cy",
39431         "357"
39432       ],
39433       [
39434         "Czech Republic (Česká republika)",
39435         "cz",
39436         "420"
39437       ],
39438       [
39439         "Denmark (Danmark)",
39440         "dk",
39441         "45"
39442       ],
39443       [
39444         "Djibouti",
39445         "dj",
39446         "253"
39447       ],
39448       [
39449         "Dominica",
39450         "dm",
39451         "1767"
39452       ],
39453       [
39454         "Dominican Republic (República Dominicana)",
39455         "do",
39456         "1",
39457         2,
39458         ["809", "829", "849"]
39459       ],
39460       [
39461         "Ecuador",
39462         "ec",
39463         "593"
39464       ],
39465       [
39466         "Egypt (‫مصر‬‎)",
39467         "eg",
39468         "20"
39469       ],
39470       [
39471         "El Salvador",
39472         "sv",
39473         "503"
39474       ],
39475       [
39476         "Equatorial Guinea (Guinea Ecuatorial)",
39477         "gq",
39478         "240"
39479       ],
39480       [
39481         "Eritrea",
39482         "er",
39483         "291"
39484       ],
39485       [
39486         "Estonia (Eesti)",
39487         "ee",
39488         "372"
39489       ],
39490       [
39491         "Ethiopia",
39492         "et",
39493         "251"
39494       ],
39495       [
39496         "Falkland Islands (Islas Malvinas)",
39497         "fk",
39498         "500"
39499       ],
39500       [
39501         "Faroe Islands (Føroyar)",
39502         "fo",
39503         "298"
39504       ],
39505       [
39506         "Fiji",
39507         "fj",
39508         "679"
39509       ],
39510       [
39511         "Finland (Suomi)",
39512         "fi",
39513         "358",
39514         0
39515       ],
39516       [
39517         "France",
39518         "fr",
39519         "33"
39520       ],
39521       [
39522         "French Guiana (Guyane française)",
39523         "gf",
39524         "594"
39525       ],
39526       [
39527         "French Polynesia (Polynésie française)",
39528         "pf",
39529         "689"
39530       ],
39531       [
39532         "Gabon",
39533         "ga",
39534         "241"
39535       ],
39536       [
39537         "Gambia",
39538         "gm",
39539         "220"
39540       ],
39541       [
39542         "Georgia (საქართველო)",
39543         "ge",
39544         "995"
39545       ],
39546       [
39547         "Germany (Deutschland)",
39548         "de",
39549         "49"
39550       ],
39551       [
39552         "Ghana (Gaana)",
39553         "gh",
39554         "233"
39555       ],
39556       [
39557         "Gibraltar",
39558         "gi",
39559         "350"
39560       ],
39561       [
39562         "Greece (Ελλάδα)",
39563         "gr",
39564         "30"
39565       ],
39566       [
39567         "Greenland (Kalaallit Nunaat)",
39568         "gl",
39569         "299"
39570       ],
39571       [
39572         "Grenada",
39573         "gd",
39574         "1473"
39575       ],
39576       [
39577         "Guadeloupe",
39578         "gp",
39579         "590",
39580         0
39581       ],
39582       [
39583         "Guam",
39584         "gu",
39585         "1671"
39586       ],
39587       [
39588         "Guatemala",
39589         "gt",
39590         "502"
39591       ],
39592       [
39593         "Guernsey",
39594         "gg",
39595         "44",
39596         1
39597       ],
39598       [
39599         "Guinea (Guinée)",
39600         "gn",
39601         "224"
39602       ],
39603       [
39604         "Guinea-Bissau (Guiné Bissau)",
39605         "gw",
39606         "245"
39607       ],
39608       [
39609         "Guyana",
39610         "gy",
39611         "592"
39612       ],
39613       [
39614         "Haiti",
39615         "ht",
39616         "509"
39617       ],
39618       [
39619         "Honduras",
39620         "hn",
39621         "504"
39622       ],
39623       [
39624         "Hong Kong (香港)",
39625         "hk",
39626         "852"
39627       ],
39628       [
39629         "Hungary (Magyarország)",
39630         "hu",
39631         "36"
39632       ],
39633       [
39634         "Iceland (Ísland)",
39635         "is",
39636         "354"
39637       ],
39638       [
39639         "India (भारत)",
39640         "in",
39641         "91"
39642       ],
39643       [
39644         "Indonesia",
39645         "id",
39646         "62"
39647       ],
39648       [
39649         "Iran (‫ایران‬‎)",
39650         "ir",
39651         "98"
39652       ],
39653       [
39654         "Iraq (‫العراق‬‎)",
39655         "iq",
39656         "964"
39657       ],
39658       [
39659         "Ireland",
39660         "ie",
39661         "353"
39662       ],
39663       [
39664         "Isle of Man",
39665         "im",
39666         "44",
39667         2
39668       ],
39669       [
39670         "Israel (‫ישראל‬‎)",
39671         "il",
39672         "972"
39673       ],
39674       [
39675         "Italy (Italia)",
39676         "it",
39677         "39",
39678         0
39679       ],
39680       [
39681         "Jamaica",
39682         "jm",
39683         "1876"
39684       ],
39685       [
39686         "Japan (日本)",
39687         "jp",
39688         "81"
39689       ],
39690       [
39691         "Jersey",
39692         "je",
39693         "44",
39694         3
39695       ],
39696       [
39697         "Jordan (‫الأردن‬‎)",
39698         "jo",
39699         "962"
39700       ],
39701       [
39702         "Kazakhstan (Казахстан)",
39703         "kz",
39704         "7",
39705         1
39706       ],
39707       [
39708         "Kenya",
39709         "ke",
39710         "254"
39711       ],
39712       [
39713         "Kiribati",
39714         "ki",
39715         "686"
39716       ],
39717       [
39718         "Kosovo",
39719         "xk",
39720         "383"
39721       ],
39722       [
39723         "Kuwait (‫الكويت‬‎)",
39724         "kw",
39725         "965"
39726       ],
39727       [
39728         "Kyrgyzstan (Кыргызстан)",
39729         "kg",
39730         "996"
39731       ],
39732       [
39733         "Laos (ລາວ)",
39734         "la",
39735         "856"
39736       ],
39737       [
39738         "Latvia (Latvija)",
39739         "lv",
39740         "371"
39741       ],
39742       [
39743         "Lebanon (‫لبنان‬‎)",
39744         "lb",
39745         "961"
39746       ],
39747       [
39748         "Lesotho",
39749         "ls",
39750         "266"
39751       ],
39752       [
39753         "Liberia",
39754         "lr",
39755         "231"
39756       ],
39757       [
39758         "Libya (‫ليبيا‬‎)",
39759         "ly",
39760         "218"
39761       ],
39762       [
39763         "Liechtenstein",
39764         "li",
39765         "423"
39766       ],
39767       [
39768         "Lithuania (Lietuva)",
39769         "lt",
39770         "370"
39771       ],
39772       [
39773         "Luxembourg",
39774         "lu",
39775         "352"
39776       ],
39777       [
39778         "Macau (澳門)",
39779         "mo",
39780         "853"
39781       ],
39782       [
39783         "Macedonia (FYROM) (Македонија)",
39784         "mk",
39785         "389"
39786       ],
39787       [
39788         "Madagascar (Madagasikara)",
39789         "mg",
39790         "261"
39791       ],
39792       [
39793         "Malawi",
39794         "mw",
39795         "265"
39796       ],
39797       [
39798         "Malaysia",
39799         "my",
39800         "60"
39801       ],
39802       [
39803         "Maldives",
39804         "mv",
39805         "960"
39806       ],
39807       [
39808         "Mali",
39809         "ml",
39810         "223"
39811       ],
39812       [
39813         "Malta",
39814         "mt",
39815         "356"
39816       ],
39817       [
39818         "Marshall Islands",
39819         "mh",
39820         "692"
39821       ],
39822       [
39823         "Martinique",
39824         "mq",
39825         "596"
39826       ],
39827       [
39828         "Mauritania (‫موريتانيا‬‎)",
39829         "mr",
39830         "222"
39831       ],
39832       [
39833         "Mauritius (Moris)",
39834         "mu",
39835         "230"
39836       ],
39837       [
39838         "Mayotte",
39839         "yt",
39840         "262",
39841         1
39842       ],
39843       [
39844         "Mexico (México)",
39845         "mx",
39846         "52"
39847       ],
39848       [
39849         "Micronesia",
39850         "fm",
39851         "691"
39852       ],
39853       [
39854         "Moldova (Republica Moldova)",
39855         "md",
39856         "373"
39857       ],
39858       [
39859         "Monaco",
39860         "mc",
39861         "377"
39862       ],
39863       [
39864         "Mongolia (Монгол)",
39865         "mn",
39866         "976"
39867       ],
39868       [
39869         "Montenegro (Crna Gora)",
39870         "me",
39871         "382"
39872       ],
39873       [
39874         "Montserrat",
39875         "ms",
39876         "1664"
39877       ],
39878       [
39879         "Morocco (‫المغرب‬‎)",
39880         "ma",
39881         "212",
39882         0
39883       ],
39884       [
39885         "Mozambique (Moçambique)",
39886         "mz",
39887         "258"
39888       ],
39889       [
39890         "Myanmar (Burma) (မြန်မာ)",
39891         "mm",
39892         "95"
39893       ],
39894       [
39895         "Namibia (Namibië)",
39896         "na",
39897         "264"
39898       ],
39899       [
39900         "Nauru",
39901         "nr",
39902         "674"
39903       ],
39904       [
39905         "Nepal (नेपाल)",
39906         "np",
39907         "977"
39908       ],
39909       [
39910         "Netherlands (Nederland)",
39911         "nl",
39912         "31"
39913       ],
39914       [
39915         "New Caledonia (Nouvelle-Calédonie)",
39916         "nc",
39917         "687"
39918       ],
39919       [
39920         "New Zealand",
39921         "nz",
39922         "64"
39923       ],
39924       [
39925         "Nicaragua",
39926         "ni",
39927         "505"
39928       ],
39929       [
39930         "Niger (Nijar)",
39931         "ne",
39932         "227"
39933       ],
39934       [
39935         "Nigeria",
39936         "ng",
39937         "234"
39938       ],
39939       [
39940         "Niue",
39941         "nu",
39942         "683"
39943       ],
39944       [
39945         "Norfolk Island",
39946         "nf",
39947         "672"
39948       ],
39949       [
39950         "North Korea (조선 민주주의 인민 공화국)",
39951         "kp",
39952         "850"
39953       ],
39954       [
39955         "Northern Mariana Islands",
39956         "mp",
39957         "1670"
39958       ],
39959       [
39960         "Norway (Norge)",
39961         "no",
39962         "47",
39963         0
39964       ],
39965       [
39966         "Oman (‫عُمان‬‎)",
39967         "om",
39968         "968"
39969       ],
39970       [
39971         "Pakistan (‫پاکستان‬‎)",
39972         "pk",
39973         "92"
39974       ],
39975       [
39976         "Palau",
39977         "pw",
39978         "680"
39979       ],
39980       [
39981         "Palestine (‫فلسطين‬‎)",
39982         "ps",
39983         "970"
39984       ],
39985       [
39986         "Panama (Panamá)",
39987         "pa",
39988         "507"
39989       ],
39990       [
39991         "Papua New Guinea",
39992         "pg",
39993         "675"
39994       ],
39995       [
39996         "Paraguay",
39997         "py",
39998         "595"
39999       ],
40000       [
40001         "Peru (Perú)",
40002         "pe",
40003         "51"
40004       ],
40005       [
40006         "Philippines",
40007         "ph",
40008         "63"
40009       ],
40010       [
40011         "Poland (Polska)",
40012         "pl",
40013         "48"
40014       ],
40015       [
40016         "Portugal",
40017         "pt",
40018         "351"
40019       ],
40020       [
40021         "Puerto Rico",
40022         "pr",
40023         "1",
40024         3,
40025         ["787", "939"]
40026       ],
40027       [
40028         "Qatar (‫قطر‬‎)",
40029         "qa",
40030         "974"
40031       ],
40032       [
40033         "Réunion (La Réunion)",
40034         "re",
40035         "262",
40036         0
40037       ],
40038       [
40039         "Romania (România)",
40040         "ro",
40041         "40"
40042       ],
40043       [
40044         "Russia (Россия)",
40045         "ru",
40046         "7",
40047         0
40048       ],
40049       [
40050         "Rwanda",
40051         "rw",
40052         "250"
40053       ],
40054       [
40055         "Saint Barthélemy",
40056         "bl",
40057         "590",
40058         1
40059       ],
40060       [
40061         "Saint Helena",
40062         "sh",
40063         "290"
40064       ],
40065       [
40066         "Saint Kitts and Nevis",
40067         "kn",
40068         "1869"
40069       ],
40070       [
40071         "Saint Lucia",
40072         "lc",
40073         "1758"
40074       ],
40075       [
40076         "Saint Martin (Saint-Martin (partie française))",
40077         "mf",
40078         "590",
40079         2
40080       ],
40081       [
40082         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
40083         "pm",
40084         "508"
40085       ],
40086       [
40087         "Saint Vincent and the Grenadines",
40088         "vc",
40089         "1784"
40090       ],
40091       [
40092         "Samoa",
40093         "ws",
40094         "685"
40095       ],
40096       [
40097         "San Marino",
40098         "sm",
40099         "378"
40100       ],
40101       [
40102         "São Tomé and Príncipe (São Tomé e Príncipe)",
40103         "st",
40104         "239"
40105       ],
40106       [
40107         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
40108         "sa",
40109         "966"
40110       ],
40111       [
40112         "Senegal (Sénégal)",
40113         "sn",
40114         "221"
40115       ],
40116       [
40117         "Serbia (Србија)",
40118         "rs",
40119         "381"
40120       ],
40121       [
40122         "Seychelles",
40123         "sc",
40124         "248"
40125       ],
40126       [
40127         "Sierra Leone",
40128         "sl",
40129         "232"
40130       ],
40131       [
40132         "Singapore",
40133         "sg",
40134         "65"
40135       ],
40136       [
40137         "Sint Maarten",
40138         "sx",
40139         "1721"
40140       ],
40141       [
40142         "Slovakia (Slovensko)",
40143         "sk",
40144         "421"
40145       ],
40146       [
40147         "Slovenia (Slovenija)",
40148         "si",
40149         "386"
40150       ],
40151       [
40152         "Solomon Islands",
40153         "sb",
40154         "677"
40155       ],
40156       [
40157         "Somalia (Soomaaliya)",
40158         "so",
40159         "252"
40160       ],
40161       [
40162         "South Africa",
40163         "za",
40164         "27"
40165       ],
40166       [
40167         "South Korea (대한민국)",
40168         "kr",
40169         "82"
40170       ],
40171       [
40172         "South Sudan (‫جنوب السودان‬‎)",
40173         "ss",
40174         "211"
40175       ],
40176       [
40177         "Spain (España)",
40178         "es",
40179         "34"
40180       ],
40181       [
40182         "Sri Lanka (ශ්‍රී ලංකාව)",
40183         "lk",
40184         "94"
40185       ],
40186       [
40187         "Sudan (‫السودان‬‎)",
40188         "sd",
40189         "249"
40190       ],
40191       [
40192         "Suriname",
40193         "sr",
40194         "597"
40195       ],
40196       [
40197         "Svalbard and Jan Mayen",
40198         "sj",
40199         "47",
40200         1
40201       ],
40202       [
40203         "Swaziland",
40204         "sz",
40205         "268"
40206       ],
40207       [
40208         "Sweden (Sverige)",
40209         "se",
40210         "46"
40211       ],
40212       [
40213         "Switzerland (Schweiz)",
40214         "ch",
40215         "41"
40216       ],
40217       [
40218         "Syria (‫سوريا‬‎)",
40219         "sy",
40220         "963"
40221       ],
40222       [
40223         "Taiwan (台灣)",
40224         "tw",
40225         "886"
40226       ],
40227       [
40228         "Tajikistan",
40229         "tj",
40230         "992"
40231       ],
40232       [
40233         "Tanzania",
40234         "tz",
40235         "255"
40236       ],
40237       [
40238         "Thailand (ไทย)",
40239         "th",
40240         "66"
40241       ],
40242       [
40243         "Timor-Leste",
40244         "tl",
40245         "670"
40246       ],
40247       [
40248         "Togo",
40249         "tg",
40250         "228"
40251       ],
40252       [
40253         "Tokelau",
40254         "tk",
40255         "690"
40256       ],
40257       [
40258         "Tonga",
40259         "to",
40260         "676"
40261       ],
40262       [
40263         "Trinidad and Tobago",
40264         "tt",
40265         "1868"
40266       ],
40267       [
40268         "Tunisia (‫تونس‬‎)",
40269         "tn",
40270         "216"
40271       ],
40272       [
40273         "Turkey (Türkiye)",
40274         "tr",
40275         "90"
40276       ],
40277       [
40278         "Turkmenistan",
40279         "tm",
40280         "993"
40281       ],
40282       [
40283         "Turks and Caicos Islands",
40284         "tc",
40285         "1649"
40286       ],
40287       [
40288         "Tuvalu",
40289         "tv",
40290         "688"
40291       ],
40292       [
40293         "U.S. Virgin Islands",
40294         "vi",
40295         "1340"
40296       ],
40297       [
40298         "Uganda",
40299         "ug",
40300         "256"
40301       ],
40302       [
40303         "Ukraine (Україна)",
40304         "ua",
40305         "380"
40306       ],
40307       [
40308         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
40309         "ae",
40310         "971"
40311       ],
40312       [
40313         "United Kingdom",
40314         "gb",
40315         "44",
40316         0
40317       ],
40318       [
40319         "United States",
40320         "us",
40321         "1",
40322         0
40323       ],
40324       [
40325         "Uruguay",
40326         "uy",
40327         "598"
40328       ],
40329       [
40330         "Uzbekistan (Oʻzbekiston)",
40331         "uz",
40332         "998"
40333       ],
40334       [
40335         "Vanuatu",
40336         "vu",
40337         "678"
40338       ],
40339       [
40340         "Vatican City (Città del Vaticano)",
40341         "va",
40342         "39",
40343         1
40344       ],
40345       [
40346         "Venezuela",
40347         "ve",
40348         "58"
40349       ],
40350       [
40351         "Vietnam (Việt Nam)",
40352         "vn",
40353         "84"
40354       ],
40355       [
40356         "Wallis and Futuna (Wallis-et-Futuna)",
40357         "wf",
40358         "681"
40359       ],
40360       [
40361         "Western Sahara (‫الصحراء الغربية‬‎)",
40362         "eh",
40363         "212",
40364         1
40365       ],
40366       [
40367         "Yemen (‫اليمن‬‎)",
40368         "ye",
40369         "967"
40370       ],
40371       [
40372         "Zambia",
40373         "zm",
40374         "260"
40375       ],
40376       [
40377         "Zimbabwe",
40378         "zw",
40379         "263"
40380       ],
40381       [
40382         "Åland Islands",
40383         "ax",
40384         "358",
40385         1
40386       ]
40387   ];
40388   
40389   return d;
40390 }/**
40391 *    This script refer to:
40392 *    Title: International Telephone Input
40393 *    Author: Jack O'Connor
40394 *    Code version:  v12.1.12
40395 *    Availability: https://github.com/jackocnr/intl-tel-input.git
40396 **/
40397
40398 /**
40399  * @class Roo.bootstrap.PhoneInput
40400  * @extends Roo.bootstrap.TriggerField
40401  * An input with International dial-code selection
40402  
40403  * @cfg {String} defaultDialCode default '+852'
40404  * @cfg {Array} preferedCountries default []
40405   
40406  * @constructor
40407  * Create a new PhoneInput.
40408  * @param {Object} config Configuration options
40409  */
40410
40411 Roo.bootstrap.PhoneInput = function(config) {
40412     Roo.bootstrap.PhoneInput.superclass.constructor.call(this, config);
40413 };
40414
40415 Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
40416         
40417         listWidth: undefined,
40418         
40419         selectedClass: 'active',
40420         
40421         invalidClass : "has-warning",
40422         
40423         validClass: 'has-success',
40424         
40425         allowed: '0123456789',
40426         
40427         max_length: 15,
40428         
40429         /**
40430          * @cfg {String} defaultDialCode The default dial code when initializing the input
40431          */
40432         defaultDialCode: '+852',
40433         
40434         /**
40435          * @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
40436          */
40437         preferedCountries: false,
40438         
40439         getAutoCreate : function()
40440         {
40441             var data = Roo.bootstrap.PhoneInputData();
40442             var align = this.labelAlign || this.parentLabelAlign();
40443             var id = Roo.id();
40444             
40445             this.allCountries = [];
40446             this.dialCodeMapping = [];
40447             
40448             for (var i = 0; i < data.length; i++) {
40449               var c = data[i];
40450               this.allCountries[i] = {
40451                 name: c[0],
40452                 iso2: c[1],
40453                 dialCode: c[2],
40454                 priority: c[3] || 0,
40455                 areaCodes: c[4] || null
40456               };
40457               this.dialCodeMapping[c[2]] = {
40458                   name: c[0],
40459                   iso2: c[1],
40460                   priority: c[3] || 0,
40461                   areaCodes: c[4] || null
40462               };
40463             }
40464             
40465             var cfg = {
40466                 cls: 'form-group',
40467                 cn: []
40468             };
40469             
40470             var input =  {
40471                 tag: 'input',
40472                 id : id,
40473                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
40474                 maxlength: this.max_length,
40475                 cls : 'form-control tel-input',
40476                 autocomplete: 'new-password'
40477             };
40478             
40479             var hiddenInput = {
40480                 tag: 'input',
40481                 type: 'hidden',
40482                 cls: 'hidden-tel-input'
40483             };
40484             
40485             if (this.name) {
40486                 hiddenInput.name = this.name;
40487             }
40488             
40489             if (this.disabled) {
40490                 input.disabled = true;
40491             }
40492             
40493             var flag_container = {
40494                 tag: 'div',
40495                 cls: 'flag-box',
40496                 cn: [
40497                     {
40498                         tag: 'div',
40499                         cls: 'flag'
40500                     },
40501                     {
40502                         tag: 'div',
40503                         cls: 'caret'
40504                     }
40505                 ]
40506             };
40507             
40508             var box = {
40509                 tag: 'div',
40510                 cls: this.hasFeedback ? 'has-feedback' : '',
40511                 cn: [
40512                     hiddenInput,
40513                     input,
40514                     {
40515                         tag: 'input',
40516                         cls: 'dial-code-holder',
40517                         disabled: true
40518                     }
40519                 ]
40520             };
40521             
40522             var container = {
40523                 cls: 'roo-select2-container input-group',
40524                 cn: [
40525                     flag_container,
40526                     box
40527                 ]
40528             };
40529             
40530             if (this.fieldLabel.length) {
40531                 var indicator = {
40532                     tag: 'i',
40533                     tooltip: 'This field is required'
40534                 };
40535                 
40536                 var label = {
40537                     tag: 'label',
40538                     'for':  id,
40539                     cls: 'control-label',
40540                     cn: []
40541                 };
40542                 
40543                 var label_text = {
40544                     tag: 'span',
40545                     html: this.fieldLabel
40546                 };
40547                 
40548                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
40549                 label.cn = [
40550                     indicator,
40551                     label_text
40552                 ];
40553                 
40554                 if(this.indicatorpos == 'right') {
40555                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
40556                     label.cn = [
40557                         label_text,
40558                         indicator
40559                     ];
40560                 }
40561                 
40562                 if(align == 'left') {
40563                     container = {
40564                         tag: 'div',
40565                         cn: [
40566                             container
40567                         ]
40568                     };
40569                     
40570                     if(this.labelWidth > 12){
40571                         label.style = "width: " + this.labelWidth + 'px';
40572                     }
40573                     if(this.labelWidth < 13 && this.labelmd == 0){
40574                         this.labelmd = this.labelWidth;
40575                     }
40576                     if(this.labellg > 0){
40577                         label.cls += ' col-lg-' + this.labellg;
40578                         input.cls += ' col-lg-' + (12 - this.labellg);
40579                     }
40580                     if(this.labelmd > 0){
40581                         label.cls += ' col-md-' + this.labelmd;
40582                         container.cls += ' col-md-' + (12 - this.labelmd);
40583                     }
40584                     if(this.labelsm > 0){
40585                         label.cls += ' col-sm-' + this.labelsm;
40586                         container.cls += ' col-sm-' + (12 - this.labelsm);
40587                     }
40588                     if(this.labelxs > 0){
40589                         label.cls += ' col-xs-' + this.labelxs;
40590                         container.cls += ' col-xs-' + (12 - this.labelxs);
40591                     }
40592                 }
40593             }
40594             
40595             cfg.cn = [
40596                 label,
40597                 container
40598             ];
40599             
40600             var settings = this;
40601             
40602             ['xs','sm','md','lg'].map(function(size){
40603                 if (settings[size]) {
40604                     cfg.cls += ' col-' + size + '-' + settings[size];
40605                 }
40606             });
40607             
40608             this.store = new Roo.data.Store({
40609                 proxy : new Roo.data.MemoryProxy({}),
40610                 reader : new Roo.data.JsonReader({
40611                     fields : [
40612                         {
40613                             'name' : 'name',
40614                             'type' : 'string'
40615                         },
40616                         {
40617                             'name' : 'iso2',
40618                             'type' : 'string'
40619                         },
40620                         {
40621                             'name' : 'dialCode',
40622                             'type' : 'string'
40623                         },
40624                         {
40625                             'name' : 'priority',
40626                             'type' : 'string'
40627                         },
40628                         {
40629                             'name' : 'areaCodes',
40630                             'type' : 'string'
40631                         }
40632                     ]
40633                 })
40634             });
40635             
40636             if(!this.preferedCountries) {
40637                 this.preferedCountries = [
40638                     'hk',
40639                     'gb',
40640                     'us'
40641                 ];
40642             }
40643             
40644             var p = this.preferedCountries.reverse();
40645             
40646             if(p) {
40647                 for (var i = 0; i < p.length; i++) {
40648                     for (var j = 0; j < this.allCountries.length; j++) {
40649                         if(this.allCountries[j].iso2 == p[i]) {
40650                             var t = this.allCountries[j];
40651                             this.allCountries.splice(j,1);
40652                             this.allCountries.unshift(t);
40653                         }
40654                     } 
40655                 }
40656             }
40657             
40658             this.store.proxy.data = {
40659                 success: true,
40660                 data: this.allCountries
40661             };
40662             
40663             return cfg;
40664         },
40665         
40666         initEvents : function()
40667         {
40668             this.createList();
40669             Roo.bootstrap.PhoneInput.superclass.initEvents.call(this);
40670             
40671             this.indicator = this.indicatorEl();
40672             this.flag = this.flagEl();
40673             this.dialCodeHolder = this.dialCodeHolderEl();
40674             
40675             this.trigger = this.el.select('div.flag-box',true).first();
40676             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40677             
40678             var _this = this;
40679             
40680             (function(){
40681                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
40682                 _this.list.setWidth(lw);
40683             }).defer(100);
40684             
40685             this.list.on('mouseover', this.onViewOver, this);
40686             this.list.on('mousemove', this.onViewMove, this);
40687             this.inputEl().on("keyup", this.onKeyUp, this);
40688             this.inputEl().on("keypress", this.onKeyPress, this);
40689             
40690             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
40691
40692             this.view = new Roo.View(this.list, this.tpl, {
40693                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
40694             });
40695             
40696             this.view.on('click', this.onViewClick, this);
40697             this.setValue(this.defaultDialCode);
40698         },
40699         
40700         onTriggerClick : function(e)
40701         {
40702             Roo.log('trigger click');
40703             if(this.disabled){
40704                 return;
40705             }
40706             
40707             if(this.isExpanded()){
40708                 this.collapse();
40709                 this.hasFocus = false;
40710             }else {
40711                 this.store.load({});
40712                 this.hasFocus = true;
40713                 this.expand();
40714             }
40715         },
40716         
40717         isExpanded : function()
40718         {
40719             return this.list.isVisible();
40720         },
40721         
40722         collapse : function()
40723         {
40724             if(!this.isExpanded()){
40725                 return;
40726             }
40727             this.list.hide();
40728             Roo.get(document).un('mousedown', this.collapseIf, this);
40729             Roo.get(document).un('mousewheel', this.collapseIf, this);
40730             this.fireEvent('collapse', this);
40731             this.validate();
40732         },
40733         
40734         expand : function()
40735         {
40736             Roo.log('expand');
40737
40738             if(this.isExpanded() || !this.hasFocus){
40739                 return;
40740             }
40741             
40742             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
40743             this.list.setWidth(lw);
40744             
40745             this.list.show();
40746             this.restrictHeight();
40747             
40748             Roo.get(document).on('mousedown', this.collapseIf, this);
40749             Roo.get(document).on('mousewheel', this.collapseIf, this);
40750             
40751             this.fireEvent('expand', this);
40752         },
40753         
40754         restrictHeight : function()
40755         {
40756             this.list.alignTo(this.inputEl(), this.listAlign);
40757             this.list.alignTo(this.inputEl(), this.listAlign);
40758         },
40759         
40760         onViewOver : function(e, t)
40761         {
40762             if(this.inKeyMode){
40763                 return;
40764             }
40765             var item = this.view.findItemFromChild(t);
40766             
40767             if(item){
40768                 var index = this.view.indexOf(item);
40769                 this.select(index, false);
40770             }
40771         },
40772
40773         // private
40774         onViewClick : function(view, doFocus, el, e)
40775         {
40776             var index = this.view.getSelectedIndexes()[0];
40777             
40778             var r = this.store.getAt(index);
40779             
40780             if(r){
40781                 this.onSelect(r, index);
40782             }
40783             if(doFocus !== false && !this.blockFocus){
40784                 this.inputEl().focus();
40785             }
40786         },
40787         
40788         onViewMove : function(e, t)
40789         {
40790             this.inKeyMode = false;
40791         },
40792         
40793         select : function(index, scrollIntoView)
40794         {
40795             this.selectedIndex = index;
40796             this.view.select(index);
40797             if(scrollIntoView !== false){
40798                 var el = this.view.getNode(index);
40799                 if(el){
40800                     this.list.scrollChildIntoView(el, false);
40801                 }
40802             }
40803         },
40804         
40805         createList : function()
40806         {
40807             this.list = Roo.get(document.body).createChild({
40808                 tag: 'ul',
40809                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
40810                 style: 'display:none'
40811             });
40812             
40813             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
40814         },
40815         
40816         collapseIf : function(e)
40817         {
40818             var in_combo  = e.within(this.el);
40819             var in_list =  e.within(this.list);
40820             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
40821             
40822             if (in_combo || in_list || is_list) {
40823                 return;
40824             }
40825             this.collapse();
40826         },
40827         
40828         onSelect : function(record, index)
40829         {
40830             if(this.fireEvent('beforeselect', this, record, index) !== false){
40831                 
40832                 this.setFlagClass(record.data.iso2);
40833                 this.setDialCode(record.data.dialCode);
40834                 this.hasFocus = false;
40835                 this.collapse();
40836                 this.fireEvent('select', this, record, index);
40837             }
40838         },
40839         
40840         flagEl : function()
40841         {
40842             var flag = this.el.select('div.flag',true).first();
40843             if(!flag){
40844                 return false;
40845             }
40846             return flag;
40847         },
40848         
40849         dialCodeHolderEl : function()
40850         {
40851             var d = this.el.select('input.dial-code-holder',true).first();
40852             if(!d){
40853                 return false;
40854             }
40855             return d;
40856         },
40857         
40858         setDialCode : function(v)
40859         {
40860             this.dialCodeHolder.dom.value = '+'+v;
40861         },
40862         
40863         setFlagClass : function(n)
40864         {
40865             this.flag.dom.className = 'flag '+n;
40866         },
40867         
40868         getValue : function()
40869         {
40870             var v = this.inputEl().getValue();
40871             if(this.dialCodeHolder) {
40872                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
40873             }
40874             return v;
40875         },
40876         
40877         setValue : function(v)
40878         {
40879             var d = this.getDialCode(v);
40880             
40881             //invalid dial code
40882             if(v.length == 0 || !d || d.length == 0) {
40883                 if(this.rendered){
40884                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
40885                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
40886                 }
40887                 return;
40888             }
40889             
40890             //valid dial code
40891             this.setFlagClass(this.dialCodeMapping[d].iso2);
40892             this.setDialCode(d);
40893             this.inputEl().dom.value = v.replace('+'+d,'');
40894             this.hiddenEl().dom.value = this.getValue();
40895             
40896             this.validate();
40897         },
40898         
40899         getDialCode : function(v)
40900         {
40901             v = v ||  '';
40902             
40903             if (v.length == 0) {
40904                 return this.dialCodeHolder.dom.value;
40905             }
40906             
40907             var dialCode = "";
40908             if (v.charAt(0) != "+") {
40909                 return false;
40910             }
40911             var numericChars = "";
40912             for (var i = 1; i < v.length; i++) {
40913               var c = v.charAt(i);
40914               if (!isNaN(c)) {
40915                 numericChars += c;
40916                 if (this.dialCodeMapping[numericChars]) {
40917                   dialCode = v.substr(1, i);
40918                 }
40919                 if (numericChars.length == 4) {
40920                   break;
40921                 }
40922               }
40923             }
40924             return dialCode;
40925         },
40926         
40927         reset : function()
40928         {
40929             this.setValue(this.defaultDialCode);
40930             this.validate();
40931         },
40932         
40933         hiddenEl : function()
40934         {
40935             return this.el.select('input.hidden-tel-input',true).first();
40936         },
40937         
40938         // after setting val
40939         onKeyUp : function(e){
40940             this.setValue(this.getValue());
40941         },
40942         
40943         onKeyPress : function(e){
40944             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
40945                 e.stopEvent();
40946             }
40947         }
40948         
40949 });
40950 /**
40951  * @class Roo.bootstrap.MoneyField
40952  * @extends Roo.bootstrap.ComboBox
40953  * Bootstrap MoneyField class
40954  * 
40955  * @constructor
40956  * Create a new MoneyField.
40957  * @param {Object} config Configuration options
40958  */
40959
40960 Roo.bootstrap.MoneyField = function(config) {
40961     
40962     Roo.bootstrap.MoneyField.superclass.constructor.call(this, config);
40963     
40964 };
40965
40966 Roo.extend(Roo.bootstrap.MoneyField, Roo.bootstrap.ComboBox, {
40967     
40968     /**
40969      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40970      */
40971     allowDecimals : true,
40972     /**
40973      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40974      */
40975     decimalSeparator : ".",
40976     /**
40977      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40978      */
40979     decimalPrecision : 0,
40980     /**
40981      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40982      */
40983     allowNegative : true,
40984     /**
40985      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
40986      */
40987     allowZero: true,
40988     /**
40989      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40990      */
40991     minValue : Number.NEGATIVE_INFINITY,
40992     /**
40993      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40994      */
40995     maxValue : Number.MAX_VALUE,
40996     /**
40997      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40998      */
40999     minText : "The minimum value for this field is {0}",
41000     /**
41001      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
41002      */
41003     maxText : "The maximum value for this field is {0}",
41004     /**
41005      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
41006      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
41007      */
41008     nanText : "{0} is not a valid number",
41009     /**
41010      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
41011      */
41012     castInt : true,
41013     /**
41014      * @cfg {String} defaults currency of the MoneyField
41015      * value should be in lkey
41016      */
41017     defaultCurrency : false,
41018     /**
41019      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
41020      */
41021     thousandsDelimiter : false,
41022     /**
41023      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
41024      */
41025     max_length: false,
41026     
41027     inputlg : 9,
41028     inputmd : 9,
41029     inputsm : 9,
41030     inputxs : 6,
41031     
41032     store : false,
41033     
41034     getAutoCreate : function()
41035     {
41036         var align = this.labelAlign || this.parentLabelAlign();
41037         
41038         var id = Roo.id();
41039
41040         var cfg = {
41041             cls: 'form-group',
41042             cn: []
41043         };
41044
41045         var input =  {
41046             tag: 'input',
41047             id : id,
41048             cls : 'form-control roo-money-amount-input',
41049             autocomplete: 'new-password'
41050         };
41051         
41052         var hiddenInput = {
41053             tag: 'input',
41054             type: 'hidden',
41055             id: Roo.id(),
41056             cls: 'hidden-number-input'
41057         };
41058         
41059         if(this.max_length) {
41060             input.maxlength = this.max_length; 
41061         }
41062         
41063         if (this.name) {
41064             hiddenInput.name = this.name;
41065         }
41066
41067         if (this.disabled) {
41068             input.disabled = true;
41069         }
41070
41071         var clg = 12 - this.inputlg;
41072         var cmd = 12 - this.inputmd;
41073         var csm = 12 - this.inputsm;
41074         var cxs = 12 - this.inputxs;
41075         
41076         var container = {
41077             tag : 'div',
41078             cls : 'row roo-money-field',
41079             cn : [
41080                 {
41081                     tag : 'div',
41082                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
41083                     cn : [
41084                         {
41085                             tag : 'div',
41086                             cls: 'roo-select2-container input-group',
41087                             cn: [
41088                                 {
41089                                     tag : 'input',
41090                                     cls : 'form-control roo-money-currency-input',
41091                                     autocomplete: 'new-password',
41092                                     readOnly : 1,
41093                                     name : this.currencyName
41094                                 },
41095                                 {
41096                                     tag :'span',
41097                                     cls : 'input-group-addon',
41098                                     cn : [
41099                                         {
41100                                             tag: 'span',
41101                                             cls: 'caret'
41102                                         }
41103                                     ]
41104                                 }
41105                             ]
41106                         }
41107                     ]
41108                 },
41109                 {
41110                     tag : 'div',
41111                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
41112                     cn : [
41113                         {
41114                             tag: 'div',
41115                             cls: this.hasFeedback ? 'has-feedback' : '',
41116                             cn: [
41117                                 input
41118                             ]
41119                         }
41120                     ]
41121                 }
41122             ]
41123             
41124         };
41125         
41126         if (this.fieldLabel.length) {
41127             var indicator = {
41128                 tag: 'i',
41129                 tooltip: 'This field is required'
41130             };
41131
41132             var label = {
41133                 tag: 'label',
41134                 'for':  id,
41135                 cls: 'control-label',
41136                 cn: []
41137             };
41138
41139             var label_text = {
41140                 tag: 'span',
41141                 html: this.fieldLabel
41142             };
41143
41144             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
41145             label.cn = [
41146                 indicator,
41147                 label_text
41148             ];
41149
41150             if(this.indicatorpos == 'right') {
41151                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
41152                 label.cn = [
41153                     label_text,
41154                     indicator
41155                 ];
41156             }
41157
41158             if(align == 'left') {
41159                 container = {
41160                     tag: 'div',
41161                     cn: [
41162                         container
41163                     ]
41164                 };
41165
41166                 if(this.labelWidth > 12){
41167                     label.style = "width: " + this.labelWidth + 'px';
41168                 }
41169                 if(this.labelWidth < 13 && this.labelmd == 0){
41170                     this.labelmd = this.labelWidth;
41171                 }
41172                 if(this.labellg > 0){
41173                     label.cls += ' col-lg-' + this.labellg;
41174                     input.cls += ' col-lg-' + (12 - this.labellg);
41175                 }
41176                 if(this.labelmd > 0){
41177                     label.cls += ' col-md-' + this.labelmd;
41178                     container.cls += ' col-md-' + (12 - this.labelmd);
41179                 }
41180                 if(this.labelsm > 0){
41181                     label.cls += ' col-sm-' + this.labelsm;
41182                     container.cls += ' col-sm-' + (12 - this.labelsm);
41183                 }
41184                 if(this.labelxs > 0){
41185                     label.cls += ' col-xs-' + this.labelxs;
41186                     container.cls += ' col-xs-' + (12 - this.labelxs);
41187                 }
41188             }
41189         }
41190
41191         cfg.cn = [
41192             label,
41193             container,
41194             hiddenInput
41195         ];
41196         
41197         var settings = this;
41198
41199         ['xs','sm','md','lg'].map(function(size){
41200             if (settings[size]) {
41201                 cfg.cls += ' col-' + size + '-' + settings[size];
41202             }
41203         });
41204         
41205         return cfg;
41206     },
41207     
41208     initEvents : function()
41209     {
41210         this.indicator = this.indicatorEl();
41211         
41212         this.initCurrencyEvent();
41213         
41214         this.initNumberEvent();
41215     },
41216     
41217     initCurrencyEvent : function()
41218     {
41219         if (!this.store) {
41220             throw "can not find store for combo";
41221         }
41222         
41223         this.store = Roo.factory(this.store, Roo.data);
41224         this.store.parent = this;
41225         
41226         this.createList();
41227         
41228         this.triggerEl = this.el.select('.input-group-addon', true).first();
41229         
41230         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
41231         
41232         var _this = this;
41233         
41234         (function(){
41235             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
41236             _this.list.setWidth(lw);
41237         }).defer(100);
41238         
41239         this.list.on('mouseover', this.onViewOver, this);
41240         this.list.on('mousemove', this.onViewMove, this);
41241         this.list.on('scroll', this.onViewScroll, this);
41242         
41243         if(!this.tpl){
41244             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
41245         }
41246         
41247         this.view = new Roo.View(this.list, this.tpl, {
41248             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41249         });
41250         
41251         this.view.on('click', this.onViewClick, this);
41252         
41253         this.store.on('beforeload', this.onBeforeLoad, this);
41254         this.store.on('load', this.onLoad, this);
41255         this.store.on('loadexception', this.onLoadException, this);
41256         
41257         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
41258             "up" : function(e){
41259                 this.inKeyMode = true;
41260                 this.selectPrev();
41261             },
41262
41263             "down" : function(e){
41264                 if(!this.isExpanded()){
41265                     this.onTriggerClick();
41266                 }else{
41267                     this.inKeyMode = true;
41268                     this.selectNext();
41269                 }
41270             },
41271
41272             "enter" : function(e){
41273                 this.collapse();
41274                 
41275                 if(this.fireEvent("specialkey", this, e)){
41276                     this.onViewClick(false);
41277                 }
41278                 
41279                 return true;
41280             },
41281
41282             "esc" : function(e){
41283                 this.collapse();
41284             },
41285
41286             "tab" : function(e){
41287                 this.collapse();
41288                 
41289                 if(this.fireEvent("specialkey", this, e)){
41290                     this.onViewClick(false);
41291                 }
41292                 
41293                 return true;
41294             },
41295
41296             scope : this,
41297
41298             doRelay : function(foo, bar, hname){
41299                 if(hname == 'down' || this.scope.isExpanded()){
41300                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41301                 }
41302                 return true;
41303             },
41304
41305             forceKeyDown: true
41306         });
41307         
41308         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
41309         
41310     },
41311     
41312     initNumberEvent : function(e)
41313     {
41314         this.inputEl().on("keydown" , this.fireKey,  this);
41315         this.inputEl().on("focus", this.onFocus,  this);
41316         this.inputEl().on("blur", this.onBlur,  this);
41317         
41318         this.inputEl().relayEvent('keyup', this);
41319         
41320         if(this.indicator){
41321             this.indicator.addClass('invisible');
41322         }
41323  
41324         this.originalValue = this.getValue();
41325         
41326         if(this.validationEvent == 'keyup'){
41327             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41328             this.inputEl().on('keyup', this.filterValidation, this);
41329         }
41330         else if(this.validationEvent !== false){
41331             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41332         }
41333         
41334         if(this.selectOnFocus){
41335             this.on("focus", this.preFocus, this);
41336             
41337         }
41338         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41339             this.inputEl().on("keypress", this.filterKeys, this);
41340         } else {
41341             this.inputEl().relayEvent('keypress', this);
41342         }
41343         
41344         var allowed = "0123456789";
41345         
41346         if(this.allowDecimals){
41347             allowed += this.decimalSeparator;
41348         }
41349         
41350         if(this.allowNegative){
41351             allowed += "-";
41352         }
41353         
41354         if(this.thousandsDelimiter) {
41355             allowed += ",";
41356         }
41357         
41358         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41359         
41360         var keyPress = function(e){
41361             
41362             var k = e.getKey();
41363             
41364             var c = e.getCharCode();
41365             
41366             if(
41367                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
41368                     allowed.indexOf(String.fromCharCode(c)) === -1
41369             ){
41370                 e.stopEvent();
41371                 return;
41372             }
41373             
41374             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41375                 return;
41376             }
41377             
41378             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41379                 e.stopEvent();
41380             }
41381         };
41382         
41383         this.inputEl().on("keypress", keyPress, this);
41384         
41385     },
41386     
41387     onTriggerClick : function(e)
41388     {   
41389         if(this.disabled){
41390             return;
41391         }
41392         
41393         this.page = 0;
41394         this.loadNext = false;
41395         
41396         if(this.isExpanded()){
41397             this.collapse();
41398             return;
41399         }
41400         
41401         this.hasFocus = true;
41402         
41403         if(this.triggerAction == 'all') {
41404             this.doQuery(this.allQuery, true);
41405             return;
41406         }
41407         
41408         this.doQuery(this.getRawValue());
41409     },
41410     
41411     getCurrency : function()
41412     {   
41413         var v = this.currencyEl().getValue();
41414         
41415         return v;
41416     },
41417     
41418     restrictHeight : function()
41419     {
41420         this.list.alignTo(this.currencyEl(), this.listAlign);
41421         this.list.alignTo(this.currencyEl(), this.listAlign);
41422     },
41423     
41424     onViewClick : function(view, doFocus, el, e)
41425     {
41426         var index = this.view.getSelectedIndexes()[0];
41427         
41428         var r = this.store.getAt(index);
41429         
41430         if(r){
41431             this.onSelect(r, index);
41432         }
41433     },
41434     
41435     onSelect : function(record, index){
41436         
41437         if(this.fireEvent('beforeselect', this, record, index) !== false){
41438         
41439             this.setFromCurrencyData(index > -1 ? record.data : false);
41440             
41441             this.collapse();
41442             
41443             this.fireEvent('select', this, record, index);
41444         }
41445     },
41446     
41447     setFromCurrencyData : function(o)
41448     {
41449         var currency = '';
41450         
41451         this.lastCurrency = o;
41452         
41453         if (this.currencyField) {
41454             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
41455         } else {
41456             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
41457         }
41458         
41459         this.lastSelectionText = currency;
41460         
41461         //setting default currency
41462         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
41463             this.setCurrency(this.defaultCurrency);
41464             return;
41465         }
41466         
41467         this.setCurrency(currency);
41468     },
41469     
41470     setFromData : function(o)
41471     {
41472         var c = {};
41473         
41474         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
41475         
41476         this.setFromCurrencyData(c);
41477         
41478         var value = '';
41479         
41480         if (this.name) {
41481             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
41482         } else {
41483             Roo.log('no value set for '+ (this.name ? this.name : this.id));
41484         }
41485         
41486         this.setValue(value);
41487         
41488     },
41489     
41490     setCurrency : function(v)
41491     {   
41492         this.currencyValue = v;
41493         
41494         if(this.rendered){
41495             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
41496             this.validate();
41497         }
41498     },
41499     
41500     setValue : function(v)
41501     {
41502         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
41503         
41504         this.value = v;
41505         
41506         if(this.rendered){
41507             
41508             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
41509             
41510             this.inputEl().dom.value = (v == '') ? '' :
41511                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
41512             
41513             if(!this.allowZero && v === '0') {
41514                 this.hiddenEl().dom.value = '';
41515                 this.inputEl().dom.value = '';
41516             }
41517             
41518             this.validate();
41519         }
41520     },
41521     
41522     getRawValue : function()
41523     {
41524         var v = this.inputEl().getValue();
41525         
41526         return v;
41527     },
41528     
41529     getValue : function()
41530     {
41531         return this.fixPrecision(this.parseValue(this.getRawValue()));
41532     },
41533     
41534     parseValue : function(value)
41535     {
41536         if(this.thousandsDelimiter) {
41537             value += "";
41538             r = new RegExp(",", "g");
41539             value = value.replace(r, "");
41540         }
41541         
41542         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41543         return isNaN(value) ? '' : value;
41544         
41545     },
41546     
41547     fixPrecision : function(value)
41548     {
41549         if(this.thousandsDelimiter) {
41550             value += "";
41551             r = new RegExp(",", "g");
41552             value = value.replace(r, "");
41553         }
41554         
41555         var nan = isNaN(value);
41556         
41557         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41558             return nan ? '' : value;
41559         }
41560         return parseFloat(value).toFixed(this.decimalPrecision);
41561     },
41562     
41563     decimalPrecisionFcn : function(v)
41564     {
41565         return Math.floor(v);
41566     },
41567     
41568     validateValue : function(value)
41569     {
41570         if(!Roo.bootstrap.MoneyField.superclass.validateValue.call(this, value)){
41571             return false;
41572         }
41573         
41574         var num = this.parseValue(value);
41575         
41576         if(isNaN(num)){
41577             this.markInvalid(String.format(this.nanText, value));
41578             return false;
41579         }
41580         
41581         if(num < this.minValue){
41582             this.markInvalid(String.format(this.minText, this.minValue));
41583             return false;
41584         }
41585         
41586         if(num > this.maxValue){
41587             this.markInvalid(String.format(this.maxText, this.maxValue));
41588             return false;
41589         }
41590         
41591         return true;
41592     },
41593     
41594     validate : function()
41595     {
41596         if(this.disabled || this.allowBlank){
41597             this.markValid();
41598             return true;
41599         }
41600         
41601         var currency = this.getCurrency();
41602         
41603         if(this.validateValue(this.getRawValue()) && currency.length){
41604             this.markValid();
41605             return true;
41606         }
41607         
41608         this.markInvalid();
41609         return false;
41610     },
41611     
41612     getName: function()
41613     {
41614         return this.name;
41615     },
41616     
41617     beforeBlur : function()
41618     {
41619         if(!this.castInt){
41620             return;
41621         }
41622         
41623         var v = this.parseValue(this.getRawValue());
41624         
41625         if(v || v == 0){
41626             this.setValue(v);
41627         }
41628     },
41629     
41630     onBlur : function()
41631     {
41632         this.beforeBlur();
41633         
41634         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
41635             //this.el.removeClass(this.focusClass);
41636         }
41637         
41638         this.hasFocus = false;
41639         
41640         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
41641             this.validate();
41642         }
41643         
41644         var v = this.getValue();
41645         
41646         if(String(v) !== String(this.startValue)){
41647             this.fireEvent('change', this, v, this.startValue);
41648         }
41649         
41650         this.fireEvent("blur", this);
41651     },
41652     
41653     inputEl : function()
41654     {
41655         return this.el.select('.roo-money-amount-input', true).first();
41656     },
41657     
41658     currencyEl : function()
41659     {
41660         return this.el.select('.roo-money-currency-input', true).first();
41661     },
41662     
41663     hiddenEl : function()
41664     {
41665         return this.el.select('input.hidden-number-input',true).first();
41666     }
41667     
41668 });/**
41669  * @class Roo.bootstrap.BezierSignature
41670  * @extends Roo.bootstrap.Component
41671  * Bootstrap BezierSignature class
41672  * This script refer to:
41673  *    Title: Signature Pad
41674  *    Author: szimek
41675  *    Availability: https://github.com/szimek/signature_pad
41676  *
41677  * @constructor
41678  * Create a new BezierSignature
41679  * @param {Object} config The config object
41680  */
41681
41682 Roo.bootstrap.BezierSignature = function(config){
41683     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
41684     this.addEvents({
41685         "resize" : true
41686     });
41687 };
41688
41689 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
41690 {
41691      
41692     curve_data: [],
41693     
41694     is_empty: true,
41695     
41696     mouse_btn_down: true,
41697     
41698     /**
41699      * @cfg {int} canvas height
41700      */
41701     canvas_height: '200px',
41702     
41703     /**
41704      * @cfg {float|function} Radius of a single dot.
41705      */ 
41706     dot_size: false,
41707     
41708     /**
41709      * @cfg {float} Minimum width of a line. Defaults to 0.5.
41710      */
41711     min_width: 0.5,
41712     
41713     /**
41714      * @cfg {float} Maximum width of a line. Defaults to 2.5.
41715      */
41716     max_width: 2.5,
41717     
41718     /**
41719      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
41720      */
41721     throttle: 16,
41722     
41723     /**
41724      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
41725      */
41726     min_distance: 5,
41727     
41728     /**
41729      * @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.
41730      */
41731     bg_color: 'rgba(0, 0, 0, 0)',
41732     
41733     /**
41734      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
41735      */
41736     dot_color: 'black',
41737     
41738     /**
41739      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
41740      */ 
41741     velocity_filter_weight: 0.7,
41742     
41743     /**
41744      * @cfg {function} Callback when stroke begin. 
41745      */
41746     onBegin: false,
41747     
41748     /**
41749      * @cfg {function} Callback when stroke end.
41750      */
41751     onEnd: false,
41752     
41753     getAutoCreate : function()
41754     {
41755         var cls = 'roo-signature column';
41756         
41757         if(this.cls){
41758             cls += ' ' + this.cls;
41759         }
41760         
41761         var col_sizes = [
41762             'lg',
41763             'md',
41764             'sm',
41765             'xs'
41766         ];
41767         
41768         for(var i = 0; i < col_sizes.length; i++) {
41769             if(this[col_sizes[i]]) {
41770                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
41771             }
41772         }
41773         
41774         var cfg = {
41775             tag: 'div',
41776             cls: cls,
41777             cn: [
41778                 {
41779                     tag: 'div',
41780                     cls: 'roo-signature-body',
41781                     cn: [
41782                         {
41783                             tag: 'canvas',
41784                             cls: 'roo-signature-body-canvas',
41785                             height: this.canvas_height,
41786                             width: this.canvas_width
41787                         }
41788                     ]
41789                 },
41790                 {
41791                     tag: 'input',
41792                     type: 'file',
41793                     style: 'display: none'
41794                 }
41795             ]
41796         };
41797         
41798         return cfg;
41799     },
41800     
41801     initEvents: function() 
41802     {
41803         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
41804         
41805         var canvas = this.canvasEl();
41806         
41807         // mouse && touch event swapping...
41808         canvas.dom.style.touchAction = 'none';
41809         canvas.dom.style.msTouchAction = 'none';
41810         
41811         this.mouse_btn_down = false;
41812         canvas.on('mousedown', this._handleMouseDown, this);
41813         canvas.on('mousemove', this._handleMouseMove, this);
41814         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
41815         
41816         if (window.PointerEvent) {
41817             canvas.on('pointerdown', this._handleMouseDown, this);
41818             canvas.on('pointermove', this._handleMouseMove, this);
41819             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
41820         }
41821         
41822         if ('ontouchstart' in window) {
41823             canvas.on('touchstart', this._handleTouchStart, this);
41824             canvas.on('touchmove', this._handleTouchMove, this);
41825             canvas.on('touchend', this._handleTouchEnd, this);
41826         }
41827         
41828         Roo.EventManager.onWindowResize(this.resize, this, true);
41829         
41830         // file input event
41831         this.fileEl().on('change', this.uploadImage, this);
41832         
41833         this.clear();
41834         
41835         this.resize();
41836     },
41837     
41838     resize: function(){
41839         
41840         var canvas = this.canvasEl().dom;
41841         var ctx = this.canvasElCtx();
41842         var img_data = false;
41843         
41844         if(canvas.width > 0) {
41845             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
41846         }
41847         // setting canvas width will clean img data
41848         canvas.width = 0;
41849         
41850         var style = window.getComputedStyle ? 
41851             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
41852             
41853         var padding_left = parseInt(style.paddingLeft) || 0;
41854         var padding_right = parseInt(style.paddingRight) || 0;
41855         
41856         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
41857         
41858         if(img_data) {
41859             ctx.putImageData(img_data, 0, 0);
41860         }
41861     },
41862     
41863     _handleMouseDown: function(e)
41864     {
41865         if (e.browserEvent.which === 1) {
41866             this.mouse_btn_down = true;
41867             this.strokeBegin(e);
41868         }
41869     },
41870     
41871     _handleMouseMove: function (e)
41872     {
41873         if (this.mouse_btn_down) {
41874             this.strokeMoveUpdate(e);
41875         }
41876     },
41877     
41878     _handleMouseUp: function (e)
41879     {
41880         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
41881             this.mouse_btn_down = false;
41882             this.strokeEnd(e);
41883         }
41884     },
41885     
41886     _handleTouchStart: function (e) {
41887         
41888         e.preventDefault();
41889         if (e.browserEvent.targetTouches.length === 1) {
41890             // var touch = e.browserEvent.changedTouches[0];
41891             // this.strokeBegin(touch);
41892             
41893              this.strokeBegin(e); // assume e catching the correct xy...
41894         }
41895     },
41896     
41897     _handleTouchMove: function (e) {
41898         e.preventDefault();
41899         // var touch = event.targetTouches[0];
41900         // _this._strokeMoveUpdate(touch);
41901         this.strokeMoveUpdate(e);
41902     },
41903     
41904     _handleTouchEnd: function (e) {
41905         var wasCanvasTouched = e.target === this.canvasEl().dom;
41906         if (wasCanvasTouched) {
41907             e.preventDefault();
41908             // var touch = event.changedTouches[0];
41909             // _this._strokeEnd(touch);
41910             this.strokeEnd(e);
41911         }
41912     },
41913     
41914     reset: function () {
41915         this._lastPoints = [];
41916         this._lastVelocity = 0;
41917         this._lastWidth = (this.min_width + this.max_width) / 2;
41918         this.canvasElCtx().fillStyle = this.dot_color;
41919     },
41920     
41921     strokeMoveUpdate: function(e)
41922     {
41923         this.strokeUpdate(e);
41924         
41925         if (this.throttle) {
41926             this.throttleStroke(this.strokeUpdate, this.throttle);
41927         }
41928         else {
41929             this.strokeUpdate(e);
41930         }
41931     },
41932     
41933     strokeBegin: function(e)
41934     {
41935         var newPointGroup = {
41936             color: this.dot_color,
41937             points: []
41938         };
41939         
41940         if (typeof this.onBegin === 'function') {
41941             this.onBegin(e);
41942         }
41943         
41944         this.curve_data.push(newPointGroup);
41945         this.reset();
41946         this.strokeUpdate(e);
41947     },
41948     
41949     strokeUpdate: function(e)
41950     {
41951         var rect = this.canvasEl().dom.getBoundingClientRect();
41952         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
41953         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
41954         var lastPoints = lastPointGroup.points;
41955         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
41956         var isLastPointTooClose = lastPoint
41957             ? point.distanceTo(lastPoint) <= this.min_distance
41958             : false;
41959         var color = lastPointGroup.color;
41960         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
41961             var curve = this.addPoint(point);
41962             if (!lastPoint) {
41963                 this.drawDot({color: color, point: point});
41964             }
41965             else if (curve) {
41966                 this.drawCurve({color: color, curve: curve});
41967             }
41968             lastPoints.push({
41969                 time: point.time,
41970                 x: point.x,
41971                 y: point.y
41972             });
41973         }
41974     },
41975     
41976     strokeEnd: function(e)
41977     {
41978         this.strokeUpdate(e);
41979         if (typeof this.onEnd === 'function') {
41980             this.onEnd(e);
41981         }
41982     },
41983     
41984     addPoint:  function (point) {
41985         var _lastPoints = this._lastPoints;
41986         _lastPoints.push(point);
41987         if (_lastPoints.length > 2) {
41988             if (_lastPoints.length === 3) {
41989                 _lastPoints.unshift(_lastPoints[0]);
41990             }
41991             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
41992             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
41993             _lastPoints.shift();
41994             return curve;
41995         }
41996         return null;
41997     },
41998     
41999     calculateCurveWidths: function (startPoint, endPoint) {
42000         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
42001             (1 - this.velocity_filter_weight) * this._lastVelocity;
42002
42003         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
42004         var widths = {
42005             end: newWidth,
42006             start: this._lastWidth
42007         };
42008         
42009         this._lastVelocity = velocity;
42010         this._lastWidth = newWidth;
42011         return widths;
42012     },
42013     
42014     drawDot: function (_a) {
42015         var color = _a.color, point = _a.point;
42016         var ctx = this.canvasElCtx();
42017         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
42018         ctx.beginPath();
42019         this.drawCurveSegment(point.x, point.y, width);
42020         ctx.closePath();
42021         ctx.fillStyle = color;
42022         ctx.fill();
42023     },
42024     
42025     drawCurve: function (_a) {
42026         var color = _a.color, curve = _a.curve;
42027         var ctx = this.canvasElCtx();
42028         var widthDelta = curve.endWidth - curve.startWidth;
42029         var drawSteps = Math.floor(curve.length()) * 2;
42030         ctx.beginPath();
42031         ctx.fillStyle = color;
42032         for (var i = 0; i < drawSteps; i += 1) {
42033         var t = i / drawSteps;
42034         var tt = t * t;
42035         var ttt = tt * t;
42036         var u = 1 - t;
42037         var uu = u * u;
42038         var uuu = uu * u;
42039         var x = uuu * curve.startPoint.x;
42040         x += 3 * uu * t * curve.control1.x;
42041         x += 3 * u * tt * curve.control2.x;
42042         x += ttt * curve.endPoint.x;
42043         var y = uuu * curve.startPoint.y;
42044         y += 3 * uu * t * curve.control1.y;
42045         y += 3 * u * tt * curve.control2.y;
42046         y += ttt * curve.endPoint.y;
42047         var width = curve.startWidth + ttt * widthDelta;
42048         this.drawCurveSegment(x, y, width);
42049         }
42050         ctx.closePath();
42051         ctx.fill();
42052     },
42053     
42054     drawCurveSegment: function (x, y, width) {
42055         var ctx = this.canvasElCtx();
42056         ctx.moveTo(x, y);
42057         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
42058         this.is_empty = false;
42059     },
42060     
42061     clear: function()
42062     {
42063         var ctx = this.canvasElCtx();
42064         var canvas = this.canvasEl().dom;
42065         ctx.fillStyle = this.bg_color;
42066         ctx.clearRect(0, 0, canvas.width, canvas.height);
42067         ctx.fillRect(0, 0, canvas.width, canvas.height);
42068         this.curve_data = [];
42069         this.reset();
42070         this.is_empty = true;
42071     },
42072     
42073     fileEl: function()
42074     {
42075         return  this.el.select('input',true).first();
42076     },
42077     
42078     canvasEl: function()
42079     {
42080         return this.el.select('canvas',true).first();
42081     },
42082     
42083     canvasElCtx: function()
42084     {
42085         return this.el.select('canvas',true).first().dom.getContext('2d');
42086     },
42087     
42088     getImage: function(type)
42089     {
42090         if(this.is_empty) {
42091             return false;
42092         }
42093         
42094         // encryption ?
42095         return this.canvasEl().dom.toDataURL('image/'+type, 1);
42096     },
42097     
42098     drawFromImage: function(img_src)
42099     {
42100         var img = new Image();
42101         
42102         img.onload = function(){
42103             this.canvasElCtx().drawImage(img, 0, 0);
42104         }.bind(this);
42105         
42106         img.src = img_src;
42107         
42108         this.is_empty = false;
42109     },
42110     
42111     selectImage: function()
42112     {
42113         this.fileEl().dom.click();
42114     },
42115     
42116     uploadImage: function(e)
42117     {
42118         var reader = new FileReader();
42119         
42120         reader.onload = function(e){
42121             var img = new Image();
42122             img.onload = function(){
42123                 this.reset();
42124                 this.canvasElCtx().drawImage(img, 0, 0);
42125             }.bind(this);
42126             img.src = e.target.result;
42127         }.bind(this);
42128         
42129         reader.readAsDataURL(e.target.files[0]);
42130     },
42131     
42132     // Bezier Point Constructor
42133     Point: (function () {
42134         function Point(x, y, time) {
42135             this.x = x;
42136             this.y = y;
42137             this.time = time || Date.now();
42138         }
42139         Point.prototype.distanceTo = function (start) {
42140             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
42141         };
42142         Point.prototype.equals = function (other) {
42143             return this.x === other.x && this.y === other.y && this.time === other.time;
42144         };
42145         Point.prototype.velocityFrom = function (start) {
42146             return this.time !== start.time
42147             ? this.distanceTo(start) / (this.time - start.time)
42148             : 0;
42149         };
42150         return Point;
42151     }()),
42152     
42153     
42154     // Bezier Constructor
42155     Bezier: (function () {
42156         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
42157             this.startPoint = startPoint;
42158             this.control2 = control2;
42159             this.control1 = control1;
42160             this.endPoint = endPoint;
42161             this.startWidth = startWidth;
42162             this.endWidth = endWidth;
42163         }
42164         Bezier.fromPoints = function (points, widths, scope) {
42165             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
42166             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
42167             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
42168         };
42169         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
42170             var dx1 = s1.x - s2.x;
42171             var dy1 = s1.y - s2.y;
42172             var dx2 = s2.x - s3.x;
42173             var dy2 = s2.y - s3.y;
42174             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
42175             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
42176             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
42177             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
42178             var dxm = m1.x - m2.x;
42179             var dym = m1.y - m2.y;
42180             var k = l2 / (l1 + l2);
42181             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
42182             var tx = s2.x - cm.x;
42183             var ty = s2.y - cm.y;
42184             return {
42185                 c1: new scope.Point(m1.x + tx, m1.y + ty),
42186                 c2: new scope.Point(m2.x + tx, m2.y + ty)
42187             };
42188         };
42189         Bezier.prototype.length = function () {
42190             var steps = 10;
42191             var length = 0;
42192             var px;
42193             var py;
42194             for (var i = 0; i <= steps; i += 1) {
42195                 var t = i / steps;
42196                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
42197                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
42198                 if (i > 0) {
42199                     var xdiff = cx - px;
42200                     var ydiff = cy - py;
42201                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
42202                 }
42203                 px = cx;
42204                 py = cy;
42205             }
42206             return length;
42207         };
42208         Bezier.prototype.point = function (t, start, c1, c2, end) {
42209             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
42210             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
42211             + (3.0 * c2 * (1.0 - t) * t * t)
42212             + (end * t * t * t);
42213         };
42214         return Bezier;
42215     }()),
42216     
42217     throttleStroke: function(fn, wait) {
42218       if (wait === void 0) { wait = 250; }
42219       var previous = 0;
42220       var timeout = null;
42221       var result;
42222       var storedContext;
42223       var storedArgs;
42224       var later = function () {
42225           previous = Date.now();
42226           timeout = null;
42227           result = fn.apply(storedContext, storedArgs);
42228           if (!timeout) {
42229               storedContext = null;
42230               storedArgs = [];
42231           }
42232       };
42233       return function wrapper() {
42234           var args = [];
42235           for (var _i = 0; _i < arguments.length; _i++) {
42236               args[_i] = arguments[_i];
42237           }
42238           var now = Date.now();
42239           var remaining = wait - (now - previous);
42240           storedContext = this;
42241           storedArgs = args;
42242           if (remaining <= 0 || remaining > wait) {
42243               if (timeout) {
42244                   clearTimeout(timeout);
42245                   timeout = null;
42246               }
42247               previous = now;
42248               result = fn.apply(storedContext, storedArgs);
42249               if (!timeout) {
42250                   storedContext = null;
42251                   storedArgs = [];
42252               }
42253           }
42254           else if (!timeout) {
42255               timeout = window.setTimeout(later, remaining);
42256           }
42257           return result;
42258       };
42259   }
42260   
42261 });
42262
42263  
42264
42265